home · contact · privacy
Replace old with new client, drop redo system needed to build old one.
[plomrogue] / start_server_client_union.sh
index 69c959dcab8f633ab03fa514d4d47696e997e964..74872c773f59651df3d5b893eb515b0864bca33f 100755 (executable)
@@ -9,21 +9,25 @@ then
     rm log
 fi
 
-# Give helpful message to players that want to start without compiling first.
-if [ ! -e ./roguelike-server ]
+# Abort if no proper Python version installed.
+test=`command -v python3 | wc -l`
+if [ 1 -gt $test ]
 then
-    echo 'No ./roguelike-server file found to execute. Try "./redo" first?'
-    false
+    echo "FAILURE:"
+    echo "No python3 installed, but it's needed!"
+    exit 1
 fi
-if [ ! -e ./roguelike-client ]
+
+# Give helpful message to players that want to start without compiling first.
+if [ ! -e ./libplomrogue.so ]
 then
-    echo 'No ./roguelike-client file found to execute. Try "./redo" first?'
+    echo 'No ./libplomrogue.so library found. Try "./build.sh" first?'
     false
 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