; Sample configuration file for the Core War game.
; Usage: corewar -f <this_file> file file
;
; All comments and blank lines are ignored.  Comments must begin with a 
; semi-colon, and may appear anywwhere.  Commands are case-insensitive.  All
; of the commands and their default options are shown below.  For all numbers
; listed, I have not tested the maximums and minimums.  For any ON listed, 
; there is an OFF, and for any OFF listed, there is an ON.  For the FIGHT
; command, the legal values are SINGLES, CHALLENGE, ROUNDS, and DEBUG.  In
; singles mode, all programs in the arena fight all other programs in the arena
; at the same time.  In challenge mode, the first program will fight itself and
; all the other programs one at a time, similar to a program challenging all
; the programs in a Top Ten list.  In rounds mode, all programs will fight all
; other programs one at a time, similar to a typical Round Robin tournament.
; When BATTLES 1 and FIGHT SINGLES used then the curses display will be used
; instead of a summary report.  The screen will be refreshed after x cycles,
; x being determined by DISPLAY x.  If x = 0, then the curses display will not
; be used, but instead the summary report will be used.  All numerical value
; must be greater than or equal to 0.  Negative values report as an error.
; Note that all commands and parameters may not be abbreviated, but must be 
; spelled out in full.  I may add that in a future release.  The REDCODE 
; command takes a directory name as its parameter.  Keep in mind that when
; using anything but the current directory, that wild cards will not work,
; since wild cards only expand files in the current directory.  The ARENA 
; command will allow you to play up to 16 programs against each other in the
; arena at one time.  This only works in SINGLES mode, and will default to 
; 2 programs in the arena for all other modes.
;
; If you would like recommendations to new commands or modifications to old
; old commands, please contact me and I will be glad to work it in.  I may
; reached at sadkins@bigbird.cs.ohiou.edu or sadkins@oucsace.cs.ohiou.edu.

SIZE 8000		;Default size of Core.
CYCLES 100000		;Number of cycles that each battle lasts before tie.
BATTLES 1		;Number of battles to conduct for each program.
DISPLAY 100		;Refresh screen after this many cycles for curses.
FADE 1000		;Fade memory locations after being idle this long.
ARENA 3			;Allowable maximum of programs in arena at one time.
STATS ON		;Print loading statistics for programs.
CONFIG ON		;Print the current configuration.
RESULTS ON		;Display results of program vs program.
TOTALS ON		;Display total results after everything is done.
FIGHT SINGLES		;Fight in one vs one mode.
REDCODE .		;Programs are found in the current directory.
