X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=src%2Fsetup.c;h=efd70473264e899205ab14fbcdb4de3cb2b6984c;hp=c8112e0ff17a2beffdd71e61e83e7a06b9cb1469;hb=05845f1a048926f08b0df44ed8c729a8797a2d85;hpb=321425c10831f63599c41c31e9d42bc4ec8001d0 diff --git a/src/setup.c b/src/setup.c index c8112e0..efd7047 100644 --- a/src/setup.c +++ b/src/setup.c @@ -104,7 +104,6 @@ bool thaw(void) * Some planets marked Class G and P here will be displayed as class M \ * because of the way planets are generated. This is a known bug. \ */ \ - "ERROR", \ /* Federation Worlds */ \ _("Andoria (Fesoan)"), /* several episodes */ \ _("Tellar Prime (Miracht)"), /* TOS: "Journey to Babel" */ \ @@ -337,7 +336,7 @@ void setup(bool needprompt) do w = randplace(GALSIZE); while (game.state.galaxy[w.x][w.y].planet != NOPLANET); game.state.planets[i].w = w; - if (i < NINHAB) { + if ((game.options & OPTION_WORLDS) && i < NINHAB) { game.state.planets[i].pclass = M; // All inhabited planets are class M game.state.planets[i].crystals = absent; game.state.planets[i].known = known; @@ -348,8 +347,7 @@ void setup(bool needprompt) game.state.planets[i].known = unknown; game.state.planets[i].inhabited = UNINHABITED; } - if ((game.options & OPTION_WORLDS) || i >= NINHAB) - game.state.galaxy[w.x][w.y].planet = i; + game.state.galaxy[w.x][w.y].planet = i; } // Locate Romulans for (i = 1; i <= game.state.nromrem; i++) { @@ -379,7 +377,7 @@ void setup(bool needprompt) prout(_("a deadly Klingon invasion force. As captain of the United")); prout(_("Starship U.S.S. Enterprise, it is your mission to seek out")); prout(_("and destroy this invasion force of %d battle cruisers."), - INKLINGTOT); + (game.inkling + game.incom + game.inscom)); prout(_("You have an initial allotment of %d stardates to complete"), (int)game.intime); prout(_("your mission. As you proceed you may be given more time.")); skip(1); @@ -389,7 +387,7 @@ void setup(bool needprompt) else { prout(_("Stardate %d."), (int)game.state.date); skip(1); - prout(_("%d Klingons."), INKLINGTOT); + prout(_("%d Klingons."), game.inkling + game.incom + game.inscom); prout(_("An unknown number of Romulans.")); if (game.state.nscrem) prout(_("And one (GULP) Super-Commander.")); @@ -527,8 +525,11 @@ bool choose(bool needprompt) game.damfac = 0.5 * game.skill; game.state.rembase = 2.0 + Rand()*(BASEMAX-2.0); game.inbase = game.state.rembase; + game.inplan = 0; if (game.options & OPTION_PLANETS) - game.inplan = NINHAB + (MAXUNINHAB/2) + (MAXUNINHAB/2+1)*Rand(); + game.inplan += (MAXUNINHAB/2) + (MAXUNINHAB/2+1)*Rand(); + if (game.options & OPTION_WORLDS) + game.inplan += NINHAB; game.state.nromrem = game.inrom = (2.0+Rand())*game.skill; game.state.nscrem = game.inscom = (game.skill > SKILL_FAIR ? 1 : 0); game.state.remtime = 7.0 * game.length; @@ -671,7 +672,7 @@ void newqad(bool shutup) dropin(IHSTAR); // Check for RNZ - if (game.irhere > 0 && game.klhere == 0 && (q->planet == NOPLANET || game.state.planets[q->planet].inhabited == UNINHABITED)) { + if (game.irhere > 0 && game.klhere == 0) { game.neutz = true; if (!damaged(DRADIO)) { skip(1);