#
/*   StarTrek  by Robert Haar, Computer Vision Lab., U. of Md.
 *
 *
 *                      --------------------------------------------------
 *                              parameters for grinnell display version
 *                      --------------------------------------------------
 *
 */

#define TITLE "          CVL GRINNELL-STARTREK  3/29/80 version\n\n"


#define GRINNELL 1              /* forces inclusion of grinnel display calls  */

#define DEL '\177'              /* DEL or RUBOUT character */
#define EOT '\004'              /* CTRL-D = End-Of-Transmission */
#define DAYS 150                /* # of stardates allowed to play game */
#define QUADS 3                 /* # of quadrants across the galaxy */
#define SECTORS 10              /* # of sectors per quadrant  */
#define GSIZE 30                /* linear size of the galaxy map */
#define GSIZE2 900              /* total size of the galaxy in sq. sectors */
#define BASES 3                 /* number of starbases */
#define STARS 30
#define KI 40                   /* initial number of klingons */
#define RI 5                    /* initial number of romulans */

#define MAXQ 5000               /* max # of quarks */
#define MAXDFL 2000             /* maximum deflector power  */
#define PRANGE 4                /* phaser range */
#define TRANGE 5                /* torpedo range */
#define TMIN 2                  /* torpedo minimum range */
#define MAXTOW 2                /* maximum # of vessels in tow  */
#define SRANGE 4                /* range of hyper-scan  */


#define HRANGE 5                /* enemy hit range */
#define CMAX 15                 /* max range on movable klingon (in chase) */
#define CMIN 3                  /* min range on movable klingons */
#define CPROB 25                /* probabilty that a klingon will move
					( in percent)   */


/* parameters which define screen display positions */

#define SCANROW 0               /* line scanner output printed on */
#define SCANCOL 2
#define GMROW 0                 /* starting line of galaxy map */
#define GMCOL 35
#define POSLINE 8               /* line where Enterprise position printed */
#define KHLINE 9                /* line where Klingon hit printed */
#define KVALINE 10              /* line Klingon angles printed on */
#define PCLINE 11               /* line where Procyon call is printed */
#define GPLINE 12               /* line where Galileo pickup printed */
#define COMLINE 13              /* line where commands and data requested */
#define MSGLINE 14              /* line where all messages printed */
#define STATLINE 15             /* line where status starts */
#define STATCOL 37              /* column where statistics start */
#define COMPCOL 35              /* column where computer messages printed */

#define PASSWD 42946            /* password for debug option */

#define REALTIME 1              /* switch for real time action */
				/*  delete to eliminate time check in getcom */
