More type cleanup.
[super-star-trek.git] / src / planets.c
index 6c5f3654a7f35c5c305437b3a5eca5714359caf9..c1ead062244db3436a38cc3f00dd6f45b234be17 100644 (file)
@@ -11,17 +11,17 @@ static int consumeTime(void)
     game.ididit = 1;
 #if 0
     /* Don't worry about this */
-    if (future[FTBEAM] <= game.state.date+game.optime && game.state.remcom != 0 && game.condit != IHDOCKED) {
+    if (scheduled(FTBEAM) <= game.state.date+game.optime && game.state.remcom != 0 && game.condit != IHDOCKED) {
        /* We are about to be tractor beamed -- operation fails */
        return 1;
     }
 #endif
-//     asave = future[FSNOVA];
-//     future[FSNOVA] = FOREVER; /* defer supernovas */
-    events();  /* Used to avoid if future[FSCMOVE] within time */
-//     future[FSNOVA] = asave;
+//     asave = scheduled(FSNOVA);
+//     unschedule(FSNOVA); /* defer supernovas */
+    events();  /* Used to avoid if FSCMOVE is scheduled within time */
+//     schedule(FSNOVA, asave-game.state.time);
     /*fails if game over, quadrant super-novas or we've moved to new quadrant*/
-    if (game.alldone || game.state.galaxy[game.quadx][game.quady].supernova || game.justin != 0) return 1;
+    if (game.alldone || game.state.galaxy[game.quadrant.x][game.quadrant.y].supernova || game.justin != 0) return 1;
     return 0;
 }
 
@@ -33,7 +33,8 @@ void preport(void)
     prout("Spock-  \"Planet report follows, Captain.\"");
     skip(1);
     for (i = 0; i < game.inplan; i++) {
-       if (game.state.plnets[i].known != unknown
+       if ((game.state.plnets[i].known != unknown
+           && game.state.plnets[i].crystals != 0)
 #ifdef DEBUG
            || ( game.idebug && game.state.plnets[i].x !=0)
 #endif
@@ -42,11 +43,11 @@ void preport(void)
 #ifdef DEBUG
            if (game.idebug && game.state.plnets[i].known==unknown) proutn("(Unknown) ");
 #endif
-           proutn(cramlc(quadrant, game.state.plnets[i].x, game.state.plnets[i].y));
+           proutn(cramlc(quadrant, game.state.plnets[i].w));
            proutn("   class ");
            proutn(classes[game.state.plnets[i].pclass]);
            proutn("   ");
-           if (game.state.plnets[i].crystals == 0) proutn("no ");
+           if (game.state.plnets[i].crystals <= 0) proutn("no ");
            prout("dilithium crystals present.");
            if (game.state.plnets[i].known==shuttle_down) 
                prout("    Shuttle Craft Galileo on surface.");
@@ -67,7 +68,7 @@ void orbit(void)
        prout("Both warp and impulse engines damaged.");
        return;
     }
-    if (game.plnetx == 0 || abs(game.sectx-game.plnetx) > 1 || abs(game.secty-game.plnety) > 1) {
+    if (game.plnet.x == 0 || abs(game.sector.x-game.plnet.x) > 1 || abs(game.sector.y-game.plnet.y) > 1) {
        crmshp();
        prout(" not adjacent to planet.");
        skip(1);
@@ -91,15 +92,15 @@ void sensor(void)
        prout("Short range sensors damaged.");
        return;
     }
-    if (!game.plnetx && (game.options & OPTION_TTY)) {
+    if (!game.plnet.x && (game.options & OPTION_TTY)) {
        prout("Spock- \"No planet in this quadrant, Captain.\"");
        return;
     }
-    if ((game.plnetx != 0)&& (game.state.plnets[game.iplnet].known == unknown)) {
-       prout("Spock-  \"Sensor scan for %s-", cramlc(quadrant, game.quadx, game.quady));
+    if ((game.plnet.x != 0)&& (game.state.plnets[game.iplnet].known == unknown)) {
+       prout("Spock-  \"Sensor scan for %s-", cramlc(quadrant, game.quadrant));
        skip(1);
-       prout("         Planet at %s is of class %s.", 
-             cramlc(sector, game.plnetx, game.plnety),
+       prout("         Planet at %s is of class %s.",
+             cramlc(sector,game.plnet),
              classes[game.state.plnets[game.iplnet].pclass]);
        if (game.state.plnets[game.iplnet].known==shuttle_down) 
            prout("         Sensors show Galileo still on surface.");
@@ -206,7 +207,11 @@ void mine(void)
        prout("Mining party not on planet.");
        return;
     }
-    if (game.state.plnets[game.iplnet].crystals == 0) {
+    if (game.state.plnets[game.iplnet].crystals == MINED) {
+       prout("This planet has already been strip-mined for dilithium.");
+       return;
+    }
+    else if (game.state.plnets[game.iplnet].crystals == 0) {
        prout("No dilithium crystals on this planet.");
        return;
     }
@@ -224,6 +229,7 @@ void mine(void)
     game.optime = (0.1+0.2*Rand())*game.state.plnets[game.iplnet].pclass;
     if (consumeTime()) return;
     prout("Mining operation complete.");
+    game.state.plnets[game.iplnet].crystals = MINED;
     game.imine = 1;
     game.ididit=1;
 }
@@ -437,7 +443,7 @@ void deathray(void)
        prouts("Sulu- \"Captain!  It's working!\"");
        skip(2);
        while (game.nenhere > 0)
-           deadkl(game.kx[1],game.ky[1],game.quad[game.kx[1]][game.ky[1]],game.kx[1],game.ky[1]);
+           deadkl(game.ks[1], game.quad[game.ks[1].x][game.ks[1].y],game.ks[1].x,game.ks[1].y);
        prout("Ensign Chekov-  \"Congratulations, Captain!\"");
        if (KLINGREM == 0) finish(FWON);
        if ((game.options & OPTION_PLAIN) == 0) {
@@ -504,3 +510,79 @@ void deathray(void)
     finish(FTRIBBLE);
     return;
 }
+
+char *systemname(planet *planet)
+{
+    static char        *names[NINHAB] =
+    {
+       /*
+        * This started out life as the BSD Trek inhabited-planets list,
+        * but I used <http://www.memory-alpha.org> to weed out planets
+        * with no references in ST:TOS and to fill it out again to the
+        * required length from "The Worlds of The Federation" list,
+        * <http://memory-alpha.org/en/wiki/The_Worlds_of_the_Federation>.
+        * Some misspellings have been silently corrected.  (To be
+        * fair, there was no Web when Eric Allman did his list.)
+        *
+        * 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",
+       // Added Federation Worlds
+       "Deneva",               /* TOS: "Operation -- Annihilate!" */
+       "Eminiar VII",          /* TOS: "A Taste of Armageddon" */
+       "Hansen's Planet",      /* TOS: "The Galileo Seven" */
+       "Taurus IV",            /* TOS: "The Galileo Seven" (class G) */
+       "Aldebaran III",        /* TOS: "The Deadly Years" */
+       "Vulcan (T'Khasi)",     /* many episodes */
+       "Tellar Prime (Miracht)",       /* TOS: "Journey to Babel" */
+       "Andoria (Fesoan)",     /* several episodes */
+       "Antos IV (Doraphane)", /* TOS: "Whom Gods Destroy", "Who Mourns for Adonais?" */
+       "Catulla (Cendo-Prae)", /* TOS: "The Way to Eden" */
+       "Izar",                 /* TOS: "Whom Gods Destroy" */
+       "Tiburon",              /* TOS: "The Way to Eden" */
+       "Merak II",             /* TOS: "The Cloud Minders" */
+       "Argelius II (Nelphia)",        /* TOS: "Wolf in the Fold" ("IV" in BSD) */
+       "Daran V",              /* TOS: "For the World is Hollow and I Have Touched the Sky" */
+       "Medusa",               /* TOS: "Is There in Truth No Beauty?" */
+       "Coridan (Desotriana)", /* TOS: "Journey to Babel" */
+       "Berengaria IV",        /* TOS: "This Side of Paradise" */
+       "Capella IV (Kohath)",  /* TOS: "Friday's Child" (Class G) */
+       "Gideon",               /* TOS: "The Mark of Gideon" */
+       "Iotia",                /* TOS: "A Piece of the Action" */
+       /* Worlds from BSD Trek */
+       //"Talos IV",           /* TOS: "The Cage" (interdicted world) */
+       "Rigel II",             /* TOS: "Shore Leave" ("III" in BSD) */
+       "Deneb II",             /* TOS: "Wolf in the Fold" ("IV" in BSD) */
+       //"Canopus V",          /* noncanonical */
+       //"Icarus I",           /* noncanonical */
+       //"Prometheus II",      /* noncanonical */
+       //"Omega VII",          /* noncanonical */
+       //"Elysium I",          /* noncanonical */
+       "Scalos IV",            /* TOS: "Wink of an Eye" */
+       //"Procyon IV",         /* noncanonical */
+       //"Arachnid I",         /* noncanonical */
+       //"Argo VIII",          /* noncanonical */
+       //"Triad III",          /* noncanonical */
+       //"Echo IV",            /* noncanonical */
+       //"Nimrod III",         /* noncanonical */
+       //"Nemisis IV",         /* noncanonical */
+       //"Centarurus I",       /* noncanonical */
+       //"Kronos III",         /* noncanonical */
+       //"Spectros V",         /* noncanonical */
+       "Beta III",             /* TOS: "The Return of the Archons" */
+       "Gamma Tranguli VI (Vaalel)",   /* TOS: "The Apple" */
+       "Pyris VII",            /* TOS: "Catspaw" ("III" in BSD) */
+       "Triacus",              /* TOS: "And the Children Shall Lead", */
+       "Marcos XII",           /* TOS: "And the Children Shall Lead", */
+       //"Kaland",             /* noncanonical */
+       "Ardana",               /* TOS: "The Cloud Minders" */
+       //"Stratos",            /* noncanonical */
+       //"Eden",               /* TOS: "The Way to Eden" (in Romulan space) */
+       //"Arrikis",            /* noncanonical */
+       //"Epsilon Eridani IV", /* noncanonical */
+       "Exo III",              /* TOS: "What Are Little Girls Made Of?" (Class P) */
+    };
+
+    return names[planet->inhabited];
+}