X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=sst.h;h=8705b8480ce06277cbb4e6c410e2e658f35a99c7;hp=dcbb14ddd2ea732eb389c806d4eb76a842ac27ef;hb=d5826a672dd4afc591476655b4905cb6542cd89c;hpb=b0629033955fcfdcd93a4a2cf3ab29e8adc56200 diff --git a/sst.h b/sst.h index dcbb14d..8705b84 100644 --- a/sst.h +++ b/sst.h @@ -10,55 +10,70 @@ // #define DEBUG -#define ndevice (15) // Number of devices -#define phasefac (2.0) +#define NDEVICES (15) // Number of devices +#define PHASEFAC (2.0) #define PLNETMAX (10) #define NEVENTS (8) typedef struct { - int x; /* Quadrant location of planet */ - int y; - int pclass; /* class M, N, or O (1, 2, or 3) */ - int crystals; /* has crystals */ - int known; /* =1 contents known, =2 shuttle on this planet */ -} PLANETS; + int x; /* Quadrant location of planet */ + int y; + enum {M=0, N=1, O=2} pclass; + int crystals; /* has crystals */ + enum {unknown, known, shuttle_down} known; +} planet; -EXTERN struct foo { - int snap, // snapshot taken - remkl, // remaining klingons - remcom, // remaining commanders - rembase, // remaining bases - starkl, // destroyed stars - basekl, // destroyed bases - killk, // Klingons killed - killc, // commanders killed - galaxy[9][9], // The Galaxy (subscript 0 not used) - cx[11],cy[11], // Commander quadrant coordinates - baseqx[6], // Base quadrant X - baseqy[6], // Base quadrant Y - newstuf[9][9], // Extended galaxy goodies - isx, isy, // Coordinate of Super Commander - nscrem, // remaining super commanders - nromkl, // Romulans killed - nromrem, // Romulans remaining - nsckill, // super commanders killed - nplankl; // destroyed planets - PLANETS plnets[PLNETMAX+1]; // Planet information +#define DESTROY(pl) memset(pl, '\0', sizeof(planet)) + +typedef struct { + int snap, // snapshot taken + remkl, // remaining klingons + remcom, // remaining commanders + rembase, // remaining bases + starkl, // destroyed stars + basekl, // destroyed bases + killk, // Klingons killed + killc, // commanders killed + galaxy[9][9], // The Galaxy (subscript 0 not used) + cx[11],cy[11], // Commander quadrant coordinates + baseqx[6], // Base quadrant X + baseqy[6], // Base quadrant Y + newstuf[9][9], // Extended galaxy goodies + isx, isy, // Coordinate of Super Commander + nscrem, // remaining super commanders + nromkl, // Romulans killed + nromrem, // Romulans remaining + nsckill, // super commanders killed + nplankl; // destroyed planets + planet plnets[PLNETMAX]; // Planet information double date, // stardate - remres, // remaining resources + remres, // remaining resources remtime; // remaining time -} d, snapsht; // Data that is snapshot - -EXTERN char - quad[11][11]; // contents of our quadrant +} snapshot; // Data that is snapshot // Scalar variables that are needed for freezing the game // are placed in a structure. #defines are used to access by their // original names. Gee, I could have done this with the d structure, // but I just didn't think of it back when I started. -EXTERN struct foo2 { - int inkling, +#define SSTMAGIC "SST2.0\n" + +EXTERN struct { + char magic[sizeof(SSTMAGIC)]; + snapshot state; + snapshot snapsht; + char quad[11][11]; // contents of our quadrant + double kpower[21]; // enemy energy levels + double kdist[21]; // enemy distances + double kavgd[21]; // average distances + double damage[NDEVICES+1]; // damage encountered + double future[NEVENTS+1]; // future events + char passwd[10]; // Self Destruct password + int kx[21]; // enemy sector locations + int ky[21]; + int starch[9][9]; // star chart + /* members with macro definitions start here */ + int inkling, inbase, incom, instar, @@ -121,7 +136,7 @@ EXTERN struct foo2 { proben, isarmed, nprobes; - double inresor, + double inresor, intime, inenrg, inshld, @@ -145,129 +160,110 @@ EXTERN struct foo2 { probey, probeinx, probeiny; -} a; +} game; -#define inkling a.inkling // Initial number of klingons -#define inbase a.inbase // Initial number of bases -#define incom a.incom // Initian number of commanders -#define instar a.instar // Initial stars -#define intorps a.intorps // Initial/Max torpedoes -#define condit a.condit // Condition (red, yellow, green docked) -#define torps a.torps // number of torpedoes -#define ship a.ship // Ship type -- 'E' is Enterprise -#define quadx a.quadx // where we are -#define quady a.quady // -#define sectx a.sectx // where we are -#define secty a.secty // -#define length a.length // length of game -#define skill a.skill // skill level -#define basex a.basex // position of base in current quad -#define basey a.basey // -#define klhere a.klhere // klingons here -#define comhere a.comhere // commanders here -#define casual a.casual // causalties -#define nhelp a.nhelp // calls for help -#define nkinks a.nkinks // -#define ididit a.ididit // Action taken -- allows enemy to attack -#define gamewon a.gamewon // Finished! -#define alive a.alive // We are alive (not killed) -#define justin a.justin // just entered quadrant -#define alldone a.alldone // game is now finished -#define shldchg a.shldchg // shield is changing (affects efficiency) -#define thingx a.thingx // location of strange object in galaxy -#define thingy a.thingy // -#define plnetx a.plnetx // location of planet in quadrant -#define plnety a.plnety // -#define inorbit a.inorbit // orbiting -#define landed a.landed // party on planet (1), on ship (-1) -#define iplnet a.iplnet // planet # in quadrant -#define imine a.imine // mining -#define inplan a.inplan // initial planets -#define nenhere a.nenhere // Number of enemies in quadrant -#define ishere a.ishere // Super-commander in quandrant -#define neutz a.neutz // Romulan Neutral Zone -#define irhere a.irhere // Romulans in quadrant -#define icraft a.icraft // Kirk in Galileo -#define ientesc a.ientesc // Attempted escape from supercommander -#define iscraft a.iscraft // =1 if craft on ship, -1 if removed from game -#define isatb a.isatb // =1 if SuperCommander is attacking base -#define iscate a.iscate // Super Commander is here +#define inkling game.inkling // Initial number of klingons +#define inbase game.inbase // Initial number of bases +#define incom game.incom // Initian number of commanders +#define instar game.instar // Initial stars +#define intorps game.intorps // Initial/Max torpedoes +#define condit game.condit // Condition (red, yellow, green docked) +#define torps game.torps // number of torpedoes +#define ship game.ship // Ship type -- 'E' is Enterprise +#define quadx game.quadx // where we are +#define quady game.quady // +#define sectx game.sectx // where we are +#define secty game.secty // +#define length game.length // length of game +#define skill game.skill // skill level +#define basex game.basex // position of base in current quad +#define basey game.basey // +#define klhere game.klhere // klingons here +#define comhere game.comhere // commanders here +#define casual game.casual // causalties +#define nhelp game.nhelp // calls for help +#define nkinks game.nkinks // +#define ididit game.ididit // Action taken -- allows enemy to attack +#define gamewon game.gamewon // Finished! +#define alive game.alive // We are alive (not killed) +#define justin game.justin // just entered quadrant +#define alldone game.alldone // game is now finished +#define shldchg game.shldchg // shield is changing (affects efficiency) +#define thingx game.thingx // location of strange object in galaxy +#define thingy game.thingy // +#define plnetx game.plnetx // location of planet in quadrant +#define plnety game.plnety // +#define inorbit game.inorbit // orbiting +#define landed game.landed // party on planet (1), on ship (-1) +#define iplnet game.iplnet // planet # in quadrant +#define imine game.imine // mining +#define inplan game.inplan // initial planets +#define nenhere game.nenhere // Number of enemies in quadrant +#define ishere game.ishere // Super-commander in quandrant +#define neutz game.neutz // Romulan Neutral Zone +#define irhere game.irhere // Romulans in quadrant +#define icraft game.icraft // Kirk in Galileo +#define ientesc game.ientesc // Attempted escape from supercommander +#define iscraft game.iscraft // =1 if craft on ship, -1 if removed from game +#define isatb game.isatb // =1 if SuperCommander is attacking base +#define iscate game.iscate // Super Commander is here #ifdef DEBUG -#define idebug a.idebug // Debug mode +#define idebug game.idebug // Debug mode #endif -#define iattak a.iattak // attack recursion elimination (was cracks[4]) -#define icrystl a.icrystl // dilithium crystals aboard -#define tourn a.tourn // Tournament number -#define thawed a.thawed // Thawed game -#define batx a.batx // Base coordinates being attacked -#define baty a.baty // -#define ithere a.ithere // Tholean is here -#define ithx a.ithx // coordinates of tholean -#define ithy a.ithy -#define iseenit a.iseenit // Seen base attack report -#define inresor a.inresor // initial resources -#define intime a.intime // initial time -#define inenrg a.inenrg // Initial/Max Energy -#define inshld a.inshld // Initial/Max Shield -#define inlsr a.inlsr // initial life support resources -#define indate a.indate // Initial date -#define energy a.energy // Energy level -#define shield a.shield // Shield level -#define shldup a.shldup // Shields are up -#define warpfac a.warpfac // Warp speed -#define wfacsq a.wfacsq // squared warp factor -#define lsupres a.lsupres // life support reserves -#define dist a.dist // movement distance -#define direc a.direc // movement direction -#define Time a.Time // time taken by current operation -#define docfac a.docfac // repair factor when docking (constant?) -#define resting a.resting // rest time -#define damfac a.damfac // damage factor -#define stdamtim a.stdamtim // time that star chart was damaged -#define cryprob a.cryprob // probability that crystal will work -#define probex a.probex // location of probe -#define probey a.probey -#define probecx a.probecx // current probe quadrant -#define probecy a.probecy -#define probeinx a.probeinx // Probe x,y increment -#define probeiny a.probeiny -#define proben a.proben // number of moves for probe -#define isarmed a.isarmed // Probe is armed -#define nprobes a.nprobes // number of probes available - -EXTERN int - kx[21], // enemy sector locations - ky[21], - starch[9][9]; // star chart +#define iattak game.iattak // attack recursion elimination (was cracks[4]) +#define icrystl game.icrystl // dilithium crystals aboard +#define tourn game.tourn // Tournament number +#define thawed game.thawed // Thawed game +#define batx game.batx // Base coordinates being attacked +#define baty game.baty // +#define ithere game.ithere // Tholean is here +#define ithx game.ithx // coordinates of tholean +#define ithy game.ithy +#define iseenit game.iseenit // Seen base attack report +#define inresor game.inresor // initial resources +#define intime game.intime // initial time +#define inenrg game.inenrg // Initial/Max Energy +#define inshld game.inshld // Initial/Max Shield +#define inlsr game.inlsr // initial life support resources +#define indate game.indate // Initial date +#define energy game.energy // Energy level +#define shield game.shield // Shield level +#define shldup game.shldup // Shields are up +#define warpfac game.warpfac // Warp speed +#define wfacsq game.wfacsq // squared warp factor +#define lsupres game.lsupres // life support reserves +#define dist game.dist // movement distance +#define direc game.direc // movement direction +#define Time game.Time // time taken by current operation +#define docfac game.docfac // repair factor when docking (constant?) +#define resting game.resting // rest time +#define damfac game.damfac // damage factor +#define stdamtim game.stdamtim // time that star chart was damaged +#define cryprob game.cryprob // probability that crystal will work +#define probex game.probex // location of probe +#define probey game.probey +#define probecx game.probecx // current probe quadrant +#define probecy game.probecy +#define probeinx game.probeinx // Probe x,y increment +#define probeiny game.probeiny +#define proben game.proben // number of moves for probe +#define isarmed game.isarmed // Probe is armed +#define nprobes game.nprobes // number of probes available +/* the following global state doesn't need to be saved */ EXTERN int fromcommandline; // Game start from command line options - - -EXTERN char passwd[10], // Self Destruct password - *device[ndevice+1]; - -EXTERN PLANETS nulplanet; // zeroed planet structure - -EXTERN double - kpower[21], // enemy energy levels - kdist[21], // enemy distances - kavgd[21], // average distances - damage[ndevice+1], // damage encountered - future[NEVENTS+1]; // future events - +EXTERN char *device[NDEVICES+1]; EXTERN int iscore, iskill; // Common PLAQ EXTERN double perdate; +EXTERN double aaitem; +EXTERN char citem[10]; typedef enum {FWON, FDEPLETE, FLIFESUP, FNRG, FBATTLE, FNEG3, FNOVA, FSNOVAED, FABANDN, FDILITHIUM, FMATERIALIZE, FPHASER, FLOST, FMINING, FDPLANET, FPNOVA, FSSC, FSTRACTOR, FDRAY, FTRIBBLE, FHOLE} FINTYPE ; - - -EXTERN double aaitem; -EXTERN char citem[10]; - +enum loctype {neither, quadrant, sector}; /* Define devices */ #define DSRSENS 1 @@ -299,8 +295,7 @@ EXTERN char citem[10]; #define FDSPROB 8 // Move deep space probe #ifdef INCLUDED -PLANETS nulplanet = {0}; -char *device[ndevice+1] = { +char *device[NDEVICES+1] = { "", "S. R. Sensors", "L. R. Sensors", @@ -354,7 +349,7 @@ void lrscan(void); void phasers(void); void photon(void); void warp(int); -void sheild(int); +void doshield(int); void dock(void); void dreprt(void); void chart(int); @@ -379,14 +374,14 @@ int scan(void); void chew(void); void chew2(void); void skip(int); -void prout(char *s); -void proutn(char *s); +void prout(char *, ...); +void proutn(char *, ...); void stars(void); void newqad(int); int ja(void); void cramen(int); void crmshp(void); -void cramlc(int, int, int); +char *cramlc(enum loctype, int, int); double expran(double); double Rand(void); void iran8(int *, int *); @@ -402,15 +397,13 @@ void deadkl(int, int, int, int, int); void timwrp(void); void movcom(void); void torpedo(double, double, int, int, double *); -void cramf(double, int, int); -void crami(int, int); void huh(void); void pause(int); void nova(int, int); void snova(int, int); void scom(int *); void hittem(double *); -void prouts(char *); +void prouts(char *, ...); int isit(char *); void preport(void); void orbit(void);