mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 20:15:17 +00:00
b6959dc7ea
Added packet_level_respawn_info to inform the players of entity deletions in a different area of the same level. Currently it's massively noisy due to sending out a new packet for each entity destroyed. This can cause chaos when collecting a series of coins. Ideally this information would be batched and sent in one big blob every so often.
42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
#!/bin/bash
|
|
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 &
|
|
sleep 7
|
|
$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
|