X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=src%2Fplanets.c;h=0b554381e4395fa8761b524a47ba05f6532708cf;hp=c1fdb16ba9ad5ac69813e75a4185ae2c3481477c;hb=dc45b3ccf42344c238ddb146d79dc62086624848;hpb=459d6afcbe13be588b29c8bd1fbffb39b13fdee1 diff --git a/src/planets.c b/src/planets.c index c1fdb16..0b55438 100644 --- a/src/planets.c +++ b/src/planets.c @@ -58,7 +58,7 @@ void orbit(void) { skip(1); chew(); - if (game.inorbit!=0) { + if (game.inorbit) { prout("Already in standard orbit."); return; } @@ -78,8 +78,8 @@ void orbit(void) if (consumeTime()) return; game.height = (1400.0+7200.0*Rand()); prout("Sulu- \"Entered orbit at altitude %.2f kilometers.\"", game.height); - game.inorbit = 1; - game.ididit=1; + game.inorbit = true; + game.ididit = true; } void sensor(void) @@ -122,12 +122,12 @@ void beam(void) } return; } - if (game.inorbit==0) { + if (!game.inorbit) { crmshp(); prout(" not in standard orbit."); return; } - if (game.shldup!=0) { + if (game.shldup) { prout("Impossible to transport through shields."); return; } @@ -299,7 +299,7 @@ void shuttle(void) else prout("Shuttle craft is now serving Big Macs."); return; } - if (game.inorbit==0) { + if (!game.inorbit) { crmshp(); prout(" not in standard orbit."); return; @@ -312,7 +312,7 @@ void shuttle(void) prout("You will have to beam down to retrieve the shuttle craft."); return; } - if (game.shldup!=0 || game.condit == IHDOCKED) { + if (game.shldup || game.condit == IHDOCKED) { prout("Shuttle craft cannot pass through shields."); return; } @@ -509,7 +509,7 @@ void deathray(void) return; } -char *systemname(planet *planet) +char *systemname(int pindx) { static char *names[NINHAB] = { @@ -582,5 +582,5 @@ char *systemname(planet *planet) "Exo III", /* TOS: "What Are Little Girls Made Of?" (Class P) */ }; - return names[planet->inhabited]; + return names[pindx]; }