2020-08-02 05:22:24 +02:00
|
|
|
set -e
|
2020-09-04 20:43:12 +02:00
|
|
|
if [ $# -eq 0 ]; then
|
|
|
|
make BETTERCAMERA=1 NODRAWINGDISTANCE=1 DEBUG=1 IMMEDIATELOAD=1
|
|
|
|
else
|
|
|
|
make BETTERCAMERA=1 NODRAWINGDISTANCE=1 DEBUG=1 IMMEDIATELOAD=1 STRICT=1
|
|
|
|
fi
|
2020-08-09 22:23:27 +02:00
|
|
|
|
|
|
|
# find file
|
|
|
|
FILE=./build/us_pc/sm64.us.f3dex2e.exe
|
|
|
|
if [ ! -f "$FILE" ]; then
|
|
|
|
FILE=./build/us_pc/sm64.us.f3dex2e
|
|
|
|
fi
|
|
|
|
|
2020-08-14 04:38:15 +02:00
|
|
|
$FILE --server 27015 --configfile sm64config_server.txt &
|
2020-08-09 22:23:27 +02:00
|
|
|
|
|
|
|
# debug if cgdb exists
|
|
|
|
if ! [ -x "$(command -v cgdb)" ]; then
|
2020-08-14 04:38:15 +02:00
|
|
|
$FILE --client 127.0.0.1 27015 --configfile sm64config_client.txt &
|
2020-08-09 22:23:27 +02:00
|
|
|
else
|
2020-08-14 04:38:15 +02:00
|
|
|
winpty cgdb $FILE -ex 'break debug_breakpoint_here' -ex 'run --client 127.0.0.1 27015 --configfile sm64config_client.txt' -ex 'quit'
|
2020-08-09 22:23:27 +02:00
|
|
|
fi
|