home *** CD-ROM | disk | FTP | other *** search
- echo off
- if x%1 == x goto help
- if %1 == default goto default
- if %1 == custom goto custom
- goto help
- echo hi
- goto done
- :default
- echo WARNING: You are about to accept all DEFAULT values for a new
- echo SeaMine board. If you have any existing data files, such as from a
- echo game currently running that you want to save, press Control-Break
- echo now. Pressing a key will continue and generate the game files.
- echo
- pause
- echo Running SEACFG...
- seacfg default
- echo Running MAPMAKE...
- mapmake default
- echo Running SECMAKE...
- secmake default
- echo Done generating default files!
- goto done
- :custom
- echo WARNING: You are about to begin generating new data files. The old
- echo playing board will be lost. If there is a current playing board that you
- echo would like to keep, press Control-Break now. Pressing a key will
- echo continue and generate the game files.
- echo
- pause
- seacfg
- echo To continue to the MapMaker,
- pause
- mapmake
- echo To continue to the Sector Maker,
- pause
- secmake
- echo Done customizing!
- goto done
- :help
- echo
- echo Instructions for running SEAMAKE.BAT:
- echo
- echo To run the setup programs interactively, so that you can customize
- echo aything you want along the setup process, type:
- echo seamake custom
- echo
- echo To accept all the default values for each program, which creates a
- echo 20x20x10 playing board with 3 ores (Platinum, Bauxite, and Iron),
- echo and all additional required data files, type:
- echo seamake default
- echo
- echo NOTE: Seamake is CASE SENSITIVE. That is, the words 'custom' and
- echo 'default' must be entered in lower case. Also note that it overwrites
- echo any older data files in the directory.
- echo
- :done
- exit
-