#!/bin/sh
/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 "+----------------------------------------------------+"
/bin/echo
/bin/echo For an easy NetDoom interface, type \"netdoom\" at the athena% prompt.
/bin/echo

DOOMWADDIR=/mit/idgames/share/doom-1.8
export DOOMWADDIR

BINDIR=`/usr/athena/bin/athdir /mit/idgames`
PATH=${BINDIR}:${PATH}
export PATH

SAVEDIR=${HOME}/.doomgames
test -d ${SAVEDIR} || /bin/mkdir ${SAVEDIR}
cd ${SAVEDIR}

PROG=sgixdoom
exec ${BINDIR}/${PROG} "$@"
