X-Git-Url: https://plomlompom.com/repos//%22https:/validator.w3.org/check?a=blobdiff_plain;f=start_server_client_union.sh;h=676e6740b3aac91c7e8f67d29fed5ce9e767f0d7;hb=45f5aed9ded519f5ace770820c2aa84f5c736b8c;hp=3b7dccc387636e8a82b4b7aa05a4d4a8cbae7e40;hpb=5716247b6948176151c97be24be54df8f870c7dd;p=plomrogue diff --git a/start_server_client_union.sh b/start_server_client_union.sh index 3b7dccc..676e674 100755 --- a/start_server_client_union.sh +++ b/start_server_client_union.sh @@ -9,21 +9,25 @@ then rm log fi -# Give helpful message to players that want to start without compiling first. -if [ ! -e ./roguelike-client ] +# Abort if no proper Python version installed. +test=`command -v python3 | wc -l` +if [ 1 -gt $test ] then - echo 'No ./roguelike-client executable found. Try "./redo" first?' - false + echo "FAILURE:" + echo "No python3 installed, but it's needed!" + exit 1 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 "./redo" 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. # This script's wrapper script will read it out on exit. -./roguelike-server "$@" > log 2>&1 & +python3 ./roguelike-server "$@" > log 2>&1 & # Give server some time to start up and exit on error. sleep 0.01 @@ -48,4 +52,4 @@ fi # Only start the interface when everything else went well. kill -0 $! 2> /dev/null -./roguelike-client +python3 ./roguelike-client