This commit is contained in:
Richard
2026-03-26 18:43:01 +01:00
commit 9616a8236b
25 changed files with 2773 additions and 0 deletions

9
generate_maps.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
echo "Building image..."
pushd maps
docker build -qt ants-maps .
popd
echo "Generating maps..."
docker run --rm -ti -v $PWD/data:/maps ants-maps generate -n 120 -t open -o /maps/open.maps
docker run --rm -ti -v $PWD/data:/maps ants-maps generate -n 120 -t random -o /maps/random.maps
echo "DONE"