2020-10-19 01:33:03 +02:00
|
|
|
#!/bin/bash
|
2020-10-10 06:36:15 +02:00
|
|
|
set -e
|
|
|
|
if [ $# -eq 0 ]; then
|
|
|
|
make BETTERCAMERA=1 NODRAWINGDISTANCE=1 DEBUG=1 IMMEDIATELOAD=1 DEVELOPMENT=1 STRICT=1 -j
|
|
|
|
else
|
|
|
|
make BETTERCAMERA=1 NODRAWINGDISTANCE=1 DEBUG=1 IMMEDIATELOAD=1 DEVELOPMENT=1 -j
|
|
|
|
fi
|
|
|
|
|
|
|
|
# find file
|
|
|
|
FILE=./build/us_pc/sm64.us.f3dex2e.exe
|
|
|
|
if [ ! -f "$FILE" ]; then
|
|
|
|
FILE=./build/us_pc/sm64.us.f3dex2e
|
|
|
|
fi
|
|
|
|
|
|
|
|
$FILE --server 27015 --configfile sm64config_p1.txt &
|
2020-10-13 03:23:48 +02:00
|
|
|
sleep 2
|
|
|
|
$FILE --client 127.0.0.1 27015 --configfile sm64config_p2.txt &
|
|
|
|
sleep 2
|
|
|
|
$FILE --client 127.0.0.1 27015 --configfile sm64config_p3.txt &
|
|
|
|
sleep 2
|
2020-10-13 03:40:38 +02:00
|
|
|
$FILE --client 127.0.0.1 27015 --configfile sm64config_p4.txt &
|
2021-04-05 02:21:37 +02:00
|
|
|
|
|
|
|
#sleep 2
|
|
|
|
#winpty cgdb $FILE -ex 'break debug_breakpoint_here' -ex 'run --server 27015 --configfile sm64config_p1.txt' -ex 'quit'
|
2020-10-13 03:40:38 +02:00
|
|
|
#winpty cgdb $FILE -ex 'break debug_breakpoint_here' -ex 'run --client 127.0.0.1 27015 --configfile sm64config_p4.txt' -ex 'quit'
|