#!/bin/sh

/bin/echo 
/bin/echo "Read /mit/games/doc/Maelstrom/README.network for netplay details."
/bin/echo 
/bin/echo "Specify \"-big\" as the first command-line option for pixel doubling."
/bin/echo 
/bin/echo "If you are running as root at console, Maelstrom will use SVGALib mode."
/bin/echo 
/bin/echo "+----------------------------------------------------+"
/bin/echo "|    Please use headphones when playing this game    |"
/bin/echo "|    so as not to disturb other users.  Otherwise    |"
/bin/echo "|    games will be viewed poorly at MIT and might    |"
/bin/echo "|    be removed.  Thank you,                         |"
/bin/echo "|                                                    |"
/bin/echo "|                     -the Games Administrators-     |"
/bin/echo "+----------------------------------------------------+"

PATH=/afs/athena.mit.edu/contrib/games/arch/@sys/bin:$PATH; export PATH
cd /afs/athena.mit.edu/contrib/games/arch/@sys/bin

if [ "$1" = "-big" ] ; then
   shift
   exec Maelstrom.big "$@"
else
   exec Maelstrom.small "$@"
fi

xset r on
 
