More boolean cleanups.
authorEric S. Raymond <esr@thyrsus.com>
Tue, 19 Sep 2006 19:35:24 +0000 (19:35 +0000)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 19 Sep 2006 19:35:24 +0000 (19:35 +0000)
src/events.c
src/io.c
src/moving.c
src/reports.c
src/setup.c
src/sst.c
src/sst.h

index 5f1c6008604957c805d8960105454b9e13d9050b..3281291ed6a96c80b1cdb03f300740ddd4b90c89 100644 (file)
@@ -139,7 +139,7 @@ void events(void)
            prout(_("   surveillance reports are coming in."));
            skip(1);
            if (game.iseenit==0) {
-               attakreport(0);
+               attakreport(false);
                game.iseenit = 1;
            }
            rechart();
@@ -198,7 +198,7 @@ void events(void)
            crmshp();
            prout(_(" caught in long range tractor beam--"));
            /* If Kirk & Co. screwing around on planet, handle */
-           atover(1); /* atover(1) is Grab */
+           atover(true); /* atover(true) is Grab */
            if (game.alldone) return;
            if (game.icraft == 1) { /* Caught in Galileo? */
                finish(FSTRACTOR);
index 559a93dbceb127f6cff2a4cd0e39c39d016fd884..3db1c459b8d62f4a5fa3f11493ca632eb663465e 100644 (file)
--- a/src/io.c
+++ b/src/io.c
@@ -316,17 +316,17 @@ void commandhook(char *cmd, bool before) {
  * Things past this point have policy implications.
  */
 
-void drawmaps(short l)
+void drawmaps(int mode)
 /* hook to be called after moving to redraw maps */
 {
     if (game.options & OPTION_CURSES) {
-       if (l == 1)
+       if (mode == 1)
            sensor();
         setwnd(srscan_window);
         wmove(curwnd, 0, 0);
         enqueue("no");
         srscan(SCAN_FULL);
-       if (l != 2) {
+       if (mode != 2) {
            setwnd(report_window);
            wclear(report_window);
            wmove(report_window, 0, 0);
@@ -429,6 +429,6 @@ void makechart(void)
     if (game.options & OPTION_CURSES) {
        setwnd(message_window);
        wclear(message_window);
-       chart(0);
+       chart(false);
     }
 }
index 4908236004714ff29d1b7bd1e126859eea5d6d74..4621a1d7a9ccc10617934f9752377ee4bc299798 100644 (file)
@@ -242,7 +242,7 @@ void dock(bool verbose)
        (is_scheduled(FCDBAS) || game.isatb == 1) && game.iseenit == 0) {
        /* get attack report from base */
        prout(_("Lt. Uhura- \"Captain, an important message from the starbase:\""));
-       attakreport(0);
+       attakreport(false);
        game.iseenit = 1;
     }
 }
@@ -675,7 +675,7 @@ void setwrp(void)
     return;
 }
 
-void atover(int igrab) 
+void atover(bool igrab) 
 {
     double power, distreq;
 
index 7f4a13e72bad3bf955f2d031722e9abbab3d3457..b36f56c30667e9c253ccc18e596234c92ddfa5d6 100644 (file)
@@ -3,7 +3,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-void attakreport(int curt) 
+void attakreport(bool curt) 
 {
     if (!curt) {
        if (is_scheduled(FCDBAS)) {
@@ -72,7 +72,7 @@ void report(void)
     if (!damaged(DRADIO) || game.condit == IHDOCKED || game.iseenit) {
        /* Don't report this if not seen and
           either the radio is dead or not at base! */
-       attakreport(0);
+       attakreport(false);
        game.iseenit = 1;
     }
     if (game.casual) prout(_("%d casualt%s suffered so far."),
@@ -185,7 +185,7 @@ void rechart(void)
            }
 }
 
-void chart(int nn
+void chart(bool title
 {
     int i,j;
     chew();
@@ -198,7 +198,7 @@ void chart(int nn)
        rechart();
     }
 
-    if (nn == 0) prout(_("       STAR CHART FOR THE KNOWN GALAXY"));
+    if (!title) prout(_("       STAR CHART FOR THE KNOWN GALAXY"));
     if (game.state.date > game.lastchart)
        prout(_("(Last surveillance update %d stardates ago)."),
              (int)(game.state.date-game.lastchart));
@@ -325,7 +325,7 @@ static void status(int req)
 
        break;
     case 11:
-       attakreport(1);
+       attakreport(true);
        break;
     }
 }
@@ -337,7 +337,7 @@ int srscan(int l)
        {"","da","co","po","ls","wa","en","to","sh","kl","sy", "ti"};
     
     int i, j, jj, req=0;
-    int goodScan=true, leftside=true, rightside=true, nn=false; 
+    int goodScan=true, leftside=true, rightside=true, title=false; 
     switch (l) {
     case SCAN_FULL: // SRSCAN
        if (damaged(DSRSENS)) {
@@ -357,7 +357,7 @@ int srscan(int l)
            game.state.galaxy[game.quadrant.x][game.quadrant.y].charted = true;
        }
        scan();
-       if (isit("chart")) nn = true;
+       if (isit("chart")) title = true;
        if (isit("no")) rightside = false;
        chew();
        prout("    1 2 3 4 5 6 7 8 9 10");
@@ -400,7 +400,7 @@ int srscan(int l)
        if (req!=0) return(goodScan);
     }
     prout("");
-    if (nn) chart(1);
+    if (title) chart(true);
     return(goodScan);
 }
                        
index e56e1e3f3585b5540009e5095f732d806ea650e3..3eba6fe3dd8e3691edbd8d78f24a8af095a8a9da 100644 (file)
@@ -225,14 +225,14 @@ void abandn(void)
     return;
 }
        
-void setup(int needprompt) 
+void setup(bool needprompt) 
 {
     int i,j, krem, klumper;
     int ix, iy;
     //  Decide how many of everything
     if (choose(needprompt)) return; // frozen game
     // Prepare the Enterprise
-    game.alldone = game.gamewon = 0;
+    game.alldone = game.gamewon = false;
     game.ship = IHE;
     game.state.crew = FULLCREW;
     game.energy = game.inenrg = 5000.0;
index 95ab355dadb846d11bf906a4757b8644d28c91cd..96e5edb68b34f4af481980f8c9ca80b134faf68e 100644 (file)
--- a/src/sst.c
+++ b/src/sst.c
@@ -469,7 +469,7 @@ static void makemoves(void)
            dreprt();
            break;
        case CHART:                     // chart
-           chart(0);
+           chart(false);
            break;
        case IMPULSE:                   // impulse
            impuls();
@@ -570,14 +570,14 @@ static void makemoves(void)
                if (game.alldone) break;        // Events did us in
            }
            if (game.state.galaxy[game.quadrant.x][game.quadrant.y].supernova) { // Galaxy went Nova!
-               atover(0);
+               atover(false);
                continue;
            }
-           if (hitme && game.justin==0) {
+           if (hitme && !game.justin) {
                attack(2);
                if (game.alldone) break;
                if (game.state.galaxy[game.quadrant.x][game.quadrant.y].supernova) {    // went NOVA! 
-                   atover(0);
+                   atover(false);
                    hitme = true;
                    continue;
                }
@@ -940,6 +940,6 @@ void debugme(void)
     proutn("Induce supernova here? ");
     if (ja()) {
        game.state.galaxy[game.quadrant.x][game.quadrant.y].supernova = true;
-       atover(1);
+       atover(true);
     }
 }
index 27040e8ae52f194d5b2eedd07d8a9b1374ac059e..bccb6c27609f94247ee2611ca361e103ca4ae526 100644 (file)
--- a/src/sst.h
+++ b/src/sst.h
@@ -330,9 +330,9 @@ enum loctype {neither, quadrant, sector};
 void prelim(void);
 void attack(int);
 bool choose(bool);
-void setup(int);
+void setup(bool);
 void score(void);
-void atover(int);
+void atover(bool);
 int srscan(int);
 void lrscan(void);
 void phasers(void);
@@ -341,7 +341,7 @@ void warp(bool);
 void doshield(int);
 void dock(bool);
 void dreprt(void);
-void chart(int);
+void chart(bool);
 void rechart(void);
 void impuls(void);
 void wait(void);
@@ -397,21 +397,21 @@ int isit(char *);
 void preport(void);
 void orbit(void);
 void sensor(void);
-void drawmaps(short);
+void drawmaps(int);
 void beam(void);
 void mine(void);
 void usecrystals(void);
 void shuttle(void);
 void deathray(void);
 void debugme(void);
-void attakreport(int);
+void attakreport(bool);
 void movetho(void);
 void probe(void);
 void iostart(void);
 void setwnd(WINDOW *);
 void warble(void);
-void boom(int ii, int jj);
-void tracktorpedo(int ix, int iy, int l, int i, int n, int iquad);
+void boom(int, int);
+void tracktorpedo(int, int, int, int, int, int);
 void cgetline(char *, int);
 void waitfor(void);
 void setpassword(void);