X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=start_server_client_union.sh;h=a6fe32ad4fbec901ea611f02b4f637299f64aa96;hp=74872c773f59651df3d5b893eb515b0864bca33f;hb=HEAD;hpb=a50806df8116a81729220bd79870639b18da9d8c diff --git a/start_server_client_union.sh b/start_server_client_union.sh index 74872c7..a6fe32a 100755 --- a/start_server_client_union.sh +++ b/start_server_client_union.sh @@ -3,6 +3,9 @@ # Abort the script on error. set -e +# Run script in its own process group so SIGINT doesn't kill parent script. +set -m + # Don't let any log leftovers from before interfere. if [ -e ./log ] then @@ -21,8 +24,8 @@ fi # Give helpful message to players that want to start without compiling first. if [ ! -e ./libplomrogue.so ] then - echo 'No ./libplomrogue.so library found. Try "./build.sh" first?' - false + echo 'No ./libplomrogue.so library found. Building …' + ./build.sh fi # Use shell script's arguments for server and pipe server output to log file. @@ -30,7 +33,7 @@ fi python3 ./roguelike-server "$@" > log 2>&1 & # Give server some time to start up and exit on error. -sleep 0.01 +sleep 0.1 # The client should not start if the server is not running. (If the server was # running in the foreground, any error exit of it so far would be caught by "set @@ -39,14 +42,19 @@ kill -0 $! 2> /dev/null # Give server some time (max. 10 seconds) to generate its worldstate file. i=0 -while [ ! -e server/worldstate ] && [ $i -le 1000 ] +echo -n "Waiting for server to set up world: " +while [ ! -e server_run/worldstate ] && [ $i -le 100 ] do - sleep 0.01 + echo -n '.' + sleep 0.1 i=`expr $i + 1` done -if [ ! -e server/worldstate ] +echo +if [ ! -e server_run/worldstate ] then - echo "Server failed generating worldstate file within given time limit." + kill -9 $! + rm -rf server_run + echo "Server failed generating worldstate file within time limit." false fi