mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
42 lines
976 B
Bash
Executable File
42 lines
976 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
release_mode=""
|
|
for arg in "$@"; do
|
|
if [ "$arg" == "--release" ]; then
|
|
release_mode="--release";
|
|
else
|
|
echo "Unknown argument $arg";
|
|
exit 1;
|
|
fi
|
|
done
|
|
|
|
mkdir -p data/maps/
|
|
|
|
for map_path in `ls data/raw_maps/`; do
|
|
map=`basename $map_path .abst`;
|
|
echo "Precomputing $map with no_edits";
|
|
cd precompute;
|
|
RUST_BACKTRACE=1 cargo run $release_mode ../data/raw_maps/$map.abst --edits_name=no_edits;
|
|
cd ..;
|
|
|
|
if [ -e data/edits/$map ]; then
|
|
# Line based iteration, since filenames might have spaces
|
|
ls data/edits/$map/ | while read edit_path
|
|
do
|
|
edits=`basename "$edit_path" .json`;
|
|
echo "Precomputing $map with $edits";
|
|
cd precompute;
|
|
RUST_BACKTRACE=1 cargo run $release_mode ../data/raw_maps/$map.abst --edits_name="$edits";
|
|
cd ..;
|
|
done
|
|
fi
|
|
done
|
|
|
|
# Re-export all synthetic maps from scratch.
|
|
cd precompute;
|
|
for path in `ls ../data/synthetic_maps/*`; do
|
|
RUST_BACKTRACE=1 cargo run $release_mode $path --edits_name=no_edits;
|
|
done
|