/
3.1.11/player/
3.1.11/player/c/
3.1.11/player/m/
#! /bin/csh -f
# Written by Furey.
# With additions from Tony.
# With changes from Kahn.
# Latest mythran changes by Maniac

# Set the port number.
set port = 1234
if ( "$1" != "" ) set port="$1"

# Change to area directory.
cd ../area

# Set limits.
nohup
limit stack 1024k
if ( -e SHUTDOWN.TXT ) rm -f SHUTDOWN.TXT

while ( 1 )
    # If you want to have logs in a different directory,
    #   change the 'set logfile' line to reflect the directory name.
    set index = 1000
    while ( 1 )
	set logfile = ../log/$index.log
	if ( ! -e $logfile ) break
	@ index++
    end

    # Update to new code if possible.
    if ( -e ../src/mythran.new ) then
	\mv ../src/mythran3 ../src/mythran.old
	\mv ../src/mythran.new ../src/mythran3
    endif

    # Run Mythran
    ../src/mythran3 $port >&! $logfile

    if ( -e core ) then
	\mv core ../src/
    endif

    # Restart, giving old connections a chance to die.
    if ( -e SHUTDOWN.TXT ) then
	rm -f SHUTDOWN.TXT
	exit 0
    endif

    sleep 10
end