mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-23 04:25:11 +00:00
2f7d432143
Eyerok was synchronized, but I'm still not super pleased with the result. I had to sacrifice dialog to prevent weird states and he's completely controlled by the server. His synchronization should be revisited in the future. SSL should be fully synchronized now.
40 lines
1.2 KiB
Bash
Executable file
40 lines
1.2 KiB
Bash
Executable file
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
|
|
|
|
# no debug, discord
|
|
#$FILE --discord 2 --configfile sm64config_server.txt &
|
|
#$FILE --discord 1 --configfile sm64config_client.txt &
|
|
#exit
|
|
|
|
# no debug, direct
|
|
#$FILE --server 27015 --configfile sm64config_server.txt &
|
|
#$FILE --client 127.0.0.1 27015 --configfile sm64config_client.txt &
|
|
#exit
|
|
|
|
# debug on server
|
|
#$FILE --client 127.0.0.1 27015 --configfile sm64config_client.txt &
|
|
#winpty cgdb $FILE -ex 'break debug_breakpoint_here' -ex 'run --server 27015 --configfile sm64config_server.txt' -ex 'quit'
|
|
#exit
|
|
|
|
###################
|
|
# debug on client #
|
|
###################
|
|
|
|
$FILE --server 27015 --configfile sm64config_server.txt &
|
|
|
|
# debug if cgdb exists
|
|
if ! [ -x "$(command -v cgdb)" ]; then
|
|
$FILE --client 127.0.0.1 27015 --configfile sm64config_client.txt &
|
|
else
|
|
winpty cgdb $FILE -ex 'break debug_breakpoint_here' -ex 'run --client 127.0.0.1 27015 --configfile sm64config_client.txt' -ex 'quit'
|
|
fi
|