sm64ex-coop/network.sh

18 lines
532 B
Bash
Raw Normal View History

2020-08-02 05:22:24 +02:00
set -e
make BETTERCAMERA=1 NODRAWINGDISTANCE=1 DEBUG=1 IMMEDIATELOAD=1
# 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 &
# 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 &
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'
fi