X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=src%2Fsetup.c;h=77f58bd899cb4d6479d9de30a4b8769bad3809d2;hp=5c67f231cdf980fe3a999e5343a945d700f8fb0c;hb=dc45b3ccf42344c238ddb146d79dc62086624848;hpb=d5b31ded06283b5ae9788716c7753108d23b777c diff --git a/src/setup.c b/src/setup.c index 5c67f23..77f58bd 100644 --- a/src/setup.c +++ b/src/setup.c @@ -185,7 +185,7 @@ void abandn(void) game.shield = game.inshld = 1250.0; game.torps = game.intorps = 6; game.lsupres=game.inlsr=3.0; - game.shldup=0; + game.shldup=false; game.warpfac=5.0; game.wfacsq=25.0; return; @@ -195,9 +195,6 @@ void setup(int needprompt) { int i,j, krem, klumper; int ix, iy; -#ifdef DEBUG - game.idebug = 0; -#endif // Decide how many of everything if (choose(needprompt)) return; // frozen game // Prepare the Enterprise @@ -205,7 +202,8 @@ void setup(int needprompt) game.ship = IHE; game.energy = game.inenrg = 5000.0; game.shield = game.inshld = 2500.0; - game.shldchg = game.shldup = 0; + game.shldchg = 0; + game.shldup = false; game.inlsr = 4.0; game.lsupres = 4.0; iran(GALSIZE, &game.quadrant.x, &game.quadrant.y); @@ -219,7 +217,8 @@ void setup(int needprompt) // Set up assorted game parameters game.battle.x = game.battle.y = 0; game.state.date = game.indate = 100.0*(int)(31.0*Rand()+20.0); - game.nkinks = game.nhelp = game.resting = game.casual = 0; + game.nkinks = game.nhelp = game.casual = 0; + game.resting = false; game.isatb = game.iscate = game.imine = game.icrystl = game.icraft = game.state.nplankl = 0; game.state.starkl = game.state.basekl = 0; game.iscraft = 1; @@ -230,14 +229,12 @@ void setup(int needprompt) for_quadrants(j) { struct quadrant *quad = &game.state.galaxy[i][j]; quad->charted = 0; - quad->planet = NULL; + quad->planet = NOPLANET; quad->romulans = 0; quad->klingons = 0; quad->starbase = 0; quad->supernova = 0; -#ifdef EXPERIMENTAL quad->status = secure; -#endif /* EXPERIMENTAL */ } // Initialize times for extraneous events schedule(FSNOVA, expran(0.5 * game.intime)); @@ -251,12 +248,12 @@ void setup(int needprompt) unschedule(FSCMOVE); unschedule(FSCDBAS); unschedule(FDSPROB); -#ifdef EXPERIMENTAL - if (game.options & OPTION_WORLDS) + if ((game.options & OPTION_WORLDS) && game.skill >= SKILL_GOOD) schedule(FDISTR, expran(1.0 + game.intime)); + else + unschedule(FDISTR); unschedule(FENSLV); unschedule(FREPRO); -#endif /* EXPERIMENTAL */ // Starchart is functional but we've never seen it game.lastchart = FOREVER; // Put stars in the galaxy @@ -279,16 +276,14 @@ void setup(int needprompt) double distq = square(ix-game.state.baseq[j].x) + square(iy-game.state.baseq[j].y); if (distq < 6.0*(BASEMAX+1-game.inbase) && Rand() < 0.75) { contflag = true; -#ifdef DEBUG - prout("DEBUG: Abandoning base #%d at %d-%d", i, ix, iy); -#endif + if (idebug) + prout("=== Abandoning base #%d at %d-%d", i, ix, iy); break; } -#ifdef DEBUG else if (distq < 6.0 * (BASEMAX+1-game.inbase)) { - prout("DEBUG: saving base #%d, close to #%d", i, j); + if (idebug) + prout("=== Saving base #%d, close to #%d", i, j); } -#endif } } while (contflag); @@ -300,7 +295,8 @@ void setup(int needprompt) // Position ordinary Klingon Battle Cruisers krem = game.inkling; klumper = 0.25*game.skill*(9.0-game.length)+1.0; - if (klumper > 9) klumper = 9; // Can't have more than 9 in quadrant + if (klumper > MAXKLQUAD) + klumper = MAXKLQUAD; do { double r = Rand(); int klump = (1.0 - r*r)*klumper; @@ -312,20 +308,20 @@ void setup(int needprompt) game.state.galaxy[ix][iy].klingons += klump; } while (krem > 0); // Position Klingon Commander Ships -#ifdef DEBUG +#ifdef ODEBUG klumper = 1; -#endif +#endif /* ODEBUG */ for (i = 1; i <= game.incom; i++) { do { do { /* IF debugging, put commanders by bases, always! */ -#ifdef DEBUG +#ifdef ODEBUG if (game.idebug && klumper <= game.inbase) { ix = game.state.baseq[klumper].x; iy = game.state.baseq[klumper].y; klumper++; } else -#endif +#endif /* ODEBUG */ iran(GALSIZE, &ix, &iy); } while ((!game.state.galaxy[ix][iy].klingons && Rand() < 0.75)|| @@ -341,7 +337,7 @@ void setup(int needprompt) } // Locate planets in galaxy for (i = 0; i < game.inplan; i++) { - do iran(GALSIZE, &ix, &iy); while (game.state.galaxy[ix][iy].planet); + do iran(GALSIZE, &ix, &iy); while (game.state.galaxy[ix][iy].planet != NOPLANET); game.state.plnets[i].w.x = ix; game.state.plnets[i].w.y = iy; if (i < NINHAB) { @@ -356,7 +352,7 @@ void setup(int needprompt) game.state.plnets[i].inhabited = UNINHABITED; } if ((game.options & OPTION_WORLDS) || i >= NINHAB) - game.state.galaxy[ix][iy].planet = game.state.plnets + i; + game.state.galaxy[ix][iy].planet = i; } // Locate Romulans for (i = 1; i <= game.state.nromrem; i++) { @@ -419,7 +415,7 @@ void setup(int needprompt) if (game.state.nscrem) prout(" YOU'LL NEED IT."); waitfor(); newqad(0); - if (game.nenhere-iqhere-game.ithere) game.shldup=1.0; + if (game.nenhere-iqhere-game.ithere) game.shldup = true; if (game.neutz) attack(0); // bad luck to start in a Romulan Neutral Zone } @@ -508,9 +504,10 @@ bool choose(bool needprompt) prout("\"?"); } setpassword(); -#ifdef DEBUG - if (strcmp(game.passwd, "debug")==0) game.idebug = 1; -#endif + if (strcmp(game.passwd, "debug")==0) { + idebug = true; + fputs("=== Debug mode enabled\n", stdout); + } // Use parameters to generate initial values of things game.damfac = 0.5 * game.skill; @@ -566,7 +563,7 @@ void newqad(int shutup) struct quadrant *here; game.iattak = 1; - game.justin = 1; + game.justin = true; game.base.x = game.base.y = 0; game.klhere = 0; game.comhere = 0; @@ -575,8 +572,8 @@ void newqad(int shutup) game.irhere = 0; game.iplnet = 0; game.nenhere = 0; - game.neutz = 0; - game.inorbit = 0; + game.neutz = false; + game.inorbit = false; game.landed = -1; game.ientesc = 0; game.ithere = 0; @@ -637,9 +634,9 @@ void newqad(int shutup) dropin(IHB, &game.base); // If quadrant needs a planet, put it in - if (here->planet) { - game.iplnet = here->planet - game.state.plnets; - if (here->planet->inhabited == UNINHABITED) + if (here->planet != NOPLANET) { + game.iplnet = here->planet; + if (game.state.plnets[here->planet].inhabited == UNINHABITED) dropin(IHP, &game.plnet); else dropin(IHW, &game.plnet); @@ -651,7 +648,7 @@ void newqad(int shutup) dropin(IHSTAR, &w); // Check for RNZ - if (game.irhere > 0 && game.klhere == 0 && (!here->planet || here->planet->inhabited == UNINHABITED)) { + if (game.irhere > 0 && game.klhere == 0 && (here->planet == NOPLANET || game.state.plnets[here->planet].inhabited == UNINHABITED)) { game.neutz = 1; if (game.damage[DRADIO] <= 0.0) { skip(1); @@ -687,9 +684,6 @@ void newqad(int shutup) if ((game.skill < SKILL_GOOD && Rand() <= 0.02) || /* Lighten up if skill is low */ (game.skill == SKILL_GOOD && Rand() <= 0.05) || (game.skill > SKILL_GOOD && Rand() <= 0.08) - #ifdef DEBUG - || strcmp(game.passwd, "tholianx")==0 - #endif ) { do { game.tholian.x = Rand() > 0.5 ? QUADSIZE : 1;