2020-07-24 00:42:20 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-07-27 01:58:14 +03:00
|
|
|
set -e
|
|
|
|
|
2020-11-06 01:05:48 +03:00
|
|
|
rm -fv data/system/seattle/maps/huge_seattle.bin data/input/raw_maps/huge_seattle.bin data/input/seattle/popdat.bin
|
2020-07-27 01:58:14 +03:00
|
|
|
|
|
|
|
./import.sh --raw --map --scenario
|
2020-12-31 00:21:59 +03:00
|
|
|
./import.sh --raw --map --city=bellevue
|
2020-07-27 01:58:14 +03:00
|
|
|
./import.sh --raw --map --city=berlin
|
|
|
|
./import.sh --raw --map --city=krakow
|
2020-12-02 21:42:01 +03:00
|
|
|
./import.sh --raw --map --city=leeds
|
2020-09-04 22:18:53 +03:00
|
|
|
./import.sh --raw --map --city=london
|
2020-12-10 03:15:08 +03:00
|
|
|
./import.sh --raw --map --city_overview --city=nyc
|
2020-11-14 05:22:46 +03:00
|
|
|
./import.sh --raw --map --city_overview --city=paris
|
2020-12-15 17:02:06 +03:00
|
|
|
./import.sh --raw --map --city_overview --city=salzburg
|
2020-08-26 20:25:45 +03:00
|
|
|
./import.sh --raw --map --city=tel_aviv
|
2020-08-19 21:15:36 +03:00
|
|
|
./import.sh --raw --map --city=xian
|
2020-07-27 01:58:14 +03:00
|
|
|
|
|
|
|
cargo run --release --bin game -- --prebake
|
2020-10-01 04:32:18 +03:00
|
|
|
|
2020-11-05 23:42:52 +03:00
|
|
|
cargo run --release --bin tests
|