]> granicus.if.org Git - nethack/commitdiff
formatting cleanup src/*.c
authorPatR <rankin@nethack.org>
Tue, 2 Oct 2018 23:53:22 +0000 (16:53 -0700)
committerPatR <rankin@nethack.org>
Tue, 2 Oct 2018 23:53:22 +0000 (16:53 -0700)
Remove trailing spaces, and remove tabs from the files that had
trailing spaces.

Also, rndorcname() was using a random value to terminate a loop
and was recalculating a new one each iteration.

16 files changed:
src/allmain.c
src/botl.c
src/do_name.c
src/dog.c
src/dokick.c
src/dothrow.c
src/engrave.c
src/files.c
src/invent.c
src/makemon.c
src/mhitm.c
src/mkmaze.c
src/mon.c
src/monmove.c
src/pager.c
src/version.c

index 2c1364d75d01e66bbb5b714ed827ee9f4bc94e30..d0b2c5302b1698b0a2144c794251697bf689ac66 100644 (file)
@@ -793,44 +793,42 @@ enum earlyarg e_arg;
             userea = &argv[i][1];
         }
         match = match_optname(userea, earlyopts[idx].name,
-                    earlyopts[idx].minlength, earlyopts[idx].valallowed);
+                              earlyopts[idx].minlength,
+                              earlyopts[idx].valallowed);
         if (match) break;
     }
 
     if (match) {
-        const char *extended_opt = index(userea,':');
+        const char *extended_opt = index(userea, ':');
 
         if (!extended_opt)
             extended_opt = index(userea, '=');
         switch(e_arg) {
-            case ARG_DEBUG:
-                        if (extended_opt) {
-                            extended_opt++;
-                            debug_fields(extended_opt);
-                        }
-                        return 1;
-                        break;
-            case ARG_VERSION: {
-                        boolean insert_into_pastebuf = FALSE;
-
-                        if (extended_opt) {
-                            extended_opt++;
-                            if (match_optname(extended_opt, "paste",
-                                                   5, FALSE)) {
-                                insert_into_pastebuf = TRUE;
-                            } else {
-                                raw_printf(
-                     "-%sversion can only be extended with -%sversion:paste.\n",
-                                            dashdash, dashdash);
-                                return TRUE;
-                           }
-                       }
-                        early_version_info(insert_into_pastebuf);
-                        return 2;
-                        break;
+        case ARG_DEBUG:
+            if (extended_opt) {
+                extended_opt++;
+                debug_fields(extended_opt);
             }
-            default:
-                        break;
+            return 1;
+        case ARG_VERSION: {
+            boolean insert_into_pastebuf = FALSE;
+
+            if (extended_opt) {
+                extended_opt++;
+                if (match_optname(extended_opt, "paste", 5, FALSE)) {
+                    insert_into_pastebuf = TRUE;
+                } else {
+                    raw_printf(
+                   "-%sversion can only be extended with -%sversion:paste.\n",
+                               dashdash, dashdash);
+                    return TRUE;
+                }
+            }
+            early_version_info(insert_into_pastebuf);
+            return 2;
+        }
+        default:
+            break;
         }
     };
     return FALSE;
@@ -843,7 +841,7 @@ enum earlyarg e_arg;
  * are documented is right here. No gameplay is altered.
  *
  * test             - test whether this parser is working
- * ttystatus        - TTY: 
+ * ttystatus        - TTY:
  * immediateflips   - WIN32: turn off display performance
  *                    optimization so that display output
  *                    can be debugged without buffering.
index 721ad23166f83349559c894a290b282177eadf5e..fde46e2fb7e45129594eb83fc9d71bf206c96c6f 100644 (file)
@@ -799,7 +799,7 @@ boolean *valsetlist;
      * all of the fields when context.botlx is set. The tty port in
      * particular has a problem if that isn't done, since the core sets
      * context.botlx when a menu or text display obliterates the status
-     * line. 
+     * line.
      *
      * For those situations, to trigger the full update of every field
      * whether changed or not, call status_update() with BL_RESET.
@@ -817,7 +817,7 @@ boolean *valsetlist;
     else if ((windowprocs.wincap2 & WC2_FLUSH_STATUS) != 0L)
         status_update(BL_FLUSH, (genericptr_t) 0, 0, 0,
                       NO_COLOR, &cond_hilites[0]);
-    
+
     context.botl = context.botlx = 0;
     update_all = FALSE;
 }
index b6decaa86d9d6919f3d74ad40517c834382eace2..aa688765ad9fb2273e7d97385c2c4869e7b5269a 100644 (file)
@@ -175,7 +175,7 @@ const char *goal;
         }
         /* disgusting hack; the alternate selection characters work for any
            getpos call, but only matter for dowhatis (and doquickwhatis) */
-       doing_what_is = (goal == what_is_an_unknown_object);
+        doing_what_is = (goal == what_is_an_unknown_object);
         if (doing_what_is) {
             Sprintf(kbuf, "'%s' or '%s' or '%s' or '%s'",
                     visctrl(Cmd.spkeys[NHKF_GETPOS_PICK]),
@@ -2071,20 +2071,17 @@ char *
 rndorcname(s)
 char *s;
 {
-    int i;
-    const char *v[] = {"a", "ai", "og", "u"};
-    const char *snd[] = {"gor", "gris", "un", "bane", "ruk",
-                         "oth","ul", "z", "thos","akh","hai"};
-    int vstart = rn2(2);
-    
+    static const char *v[] = { "a", "ai", "og", "u" };
+    static const char *snd[] = { "gor", "gris", "un", "bane", "ruk",
+                                 "oth","ul", "z", "thos","akh","hai" };
+    int i, iend = rn1(2, 3), vstart = rn2(2);
+
     if (s) {
         *s = '\0';
-        for (i = 0; i  < rn2(2) + 3; ++i) { 
+        for (i = 0; i < iend; ++i) {
             vstart = 1 - vstart;                /* 0 -> 1, 1 -> 0 */
-            if (!rn2(30) && i > 0)
-                (void) strcat(s, "-");
-            (void) sprintf(eos(s), "%s", vstart ? v[rn2(SIZE(v))] :
-                            snd[rn2(SIZE(snd))]);
+            Sprintf(eos(s), "%s%s", (i > 0 && !rn2(30)) ? "-" : "",
+                    vstart ? v[rn2(SIZE(v))] : snd[rn2(SIZE(snd))]);
         }
     }
     return s;
index 1dc4018b999c3adee2990727f0cb29753040b508..e5767103a8a51e31ef39fb82c0905167f42e1dae 100644 (file)
--- a/src/dog.c
+++ b/src/dog.c
@@ -412,7 +412,7 @@ boolean with_you;
         if (migrating_objs)
             deliver_obj_to_mon(mtmp, 0, DF_ALL);
     }
-    
+
     if (xlocale && wander) {
         /* monster moved a bit; pick a nearby location */
         /* mnearto() deals w/stone, et al */
index 99858a62ffc36cb7f3d27022990678bafb91ab10..1bea20ab68f4a92730dea7ac530bfdad60e70196 100644 (file)
@@ -1694,7 +1694,7 @@ unsigned long deliverflags;
         where = (int) (otmp->owornmask & 0x7fffL); /* destination code */
         if ((where & MIGR_TO_SPECIES) == 0)
             continue;
-        
+
         if ((mtmp->data->mflags2 & otmp->corpsenm) != 0) {
             obj_extract_self(otmp);
             otmp->owornmask = 0L;
index 5a559ae4eb947b2d21c843e033391316701899f6..8dd71a8f27745e70cac755c7d30a68ed308a43be 100644 (file)
@@ -1292,7 +1292,7 @@ boolean twoweap; /* used to restore twoweapon mode if wielded weapon returns */
         if ((obj->oartifact == ART_MJOLLNIR && Role_if(PM_VALKYRIE))
             || tethered_weapon) {
             if (rn2(100)) {
-                if (tethered_weapon)        
+                if (tethered_weapon)
                     tmp_at(DISP_END, BACKTRACK);
                 else
                     sho_obj_return_to_u(obj); /* display its flight */
index abd531abf016d96799850b343c723791c8f040f6..39c4005be252d72355acd4ab52a4696f3c87c977 100644 (file)
@@ -690,7 +690,7 @@ doengrave()
                         xcrypt(blengr(), buf);
                     }
                     dengr = TRUE;
-                } 
+                }
                 break;
             case WAN_NOTHING:
             case WAN_UNDEAD_TURNING:
index c122c3794246b443589e3ca66ace9298bdff6ee8..77ff211c84761375c8cf39a9e198d3ddc443fa45 100644 (file)
@@ -666,7 +666,7 @@ void
 really_close()
 {
     int fd;
-    
+
     if (lftrack.init) {
         fd = lftrack.fd;
 
@@ -2156,24 +2156,27 @@ char sep;
         return (char *) 0;
 
     while (*str) {
-       if (*str == sep) nsep++;
-       str++;
+        if (*str == sep)
+            nsep++;
+        str++;
     }
     csep = rn2(nsep);
     str = begin;
     while ((csep > 0) && *str) {
-       str++;
-       if (*str == sep) csep--;
+        str++;
+        if (*str == sep)
+            csep--;
     }
     if (*str) {
-       if (*str == sep) str++;
-       begin = str;
-       while (*str && *str != sep) {
-           str++;
-           len++;
-       }
-       *str = '\0';
-       if (len)
+        if (*str == sep)
+            str++;
+        begin = str;
+        while (*str && *str != sep) {
+            str++;
+            len++;
+        }
+        *str = '\0';
+        if (len)
             return begin;
     }
     return (char *) 0;
@@ -3582,7 +3585,7 @@ const char *reason; /* explanation */
 void
 testinglog(filenm, type, reason)
 const char *filenm;   /* ad hoc file name */
-const char *type; 
+const char *type;
 const char *reason;   /* explanation */
 {
     FILE *lfile;
index 84e6367df18ba8fc924ff2cce7bed4c6a59c458d..34b784475bda99f326ef9d492467a681430c3bf3 100644 (file)
@@ -2592,7 +2592,7 @@ long *out_cnt;
         int unid_cnt;
         char prompt[QBUFSZ];
 
-        unid_cnt = count_unidentified(invent); 
+        unid_cnt = count_unidentified(invent);
         Sprintf(prompt, "Debug Identify"); /* 'title' rather than 'prompt' */
         if (unid_cnt)
             Sprintf(eos(prompt),
index ee87d332eda5b69743eac89f71e2c7d4d3679f19..a589d65b7effb6787e7aa4a3f527170afc5fe529 100644 (file)
@@ -1391,8 +1391,8 @@ int mmflags;
     }
 
     if (allow_minvent && migrating_objs)
-        deliver_obj_to_mon(mtmp, 1, DF_NONE); /* in case there's waiting items */
-    
+        deliver_obj_to_mon(mtmp, 1, DF_NONE); /* in case of waiting items */
+
     if (!in_mklev)
         newsym(mtmp->mx, mtmp->my); /* make sure the mon shows up */
 
index dfff12b26b280b9273f163667b159bb7fe2290cb..ba322a8caeea3ab972b685f129538d4d98b8531a 100644 (file)
@@ -782,13 +782,13 @@ struct attack *mattk;
 
     /* Kill off aggressor if it didn't die. */
     if (!(result & MM_AGR_DIED)) {
-        boolean was_leashed = (magr->mleashed);
+        boolean was_leashed = (magr->mleashed != 0);
 
         mondead(magr);
         if (!DEADMONSTER(magr))
             return result; /* life saved */
         result |= MM_AGR_DIED;
-        
+
         /* mondead() -> m_detach() -> m_unleash() always suppresses
            the m_unleash() slack message, so deliver it here instead */
         if (was_leashed)
index be6fcfd7f3ac7ef9fcf8d509dcd584ec69cb0953..1c2aca8daa654a65a35beea5c2d1b09ae67bee5d 100644 (file)
@@ -801,11 +801,10 @@ stolen_booty(VOID_ARGS)
         mtyp = rn2((PM_ORC_SHAMAN - PM_ORC) + 1) + PM_ORC;
         mtmp = makemon(&mons[mtyp], 0, 0, MM_NONAME);
         if (mtmp) {
-            shiny_orc_stuff(mtmp);        
+            shiny_orc_stuff(mtmp);
             migrate_orc(mtmp, 0UL);
         }
     }
-       
     ransacked = 0;
 }
 
index 72f3df1a67a41d9a05f1a8b99ede70aafa708c52..49ab5ac6a67d645fd7a6db399bf176a262a9de4a 100644 (file)
--- a/src/mon.c
+++ b/src/mon.c
@@ -462,7 +462,7 @@ unsigned corpseflags;
      *  underneath it, you could be told the corpse type of a
      *  monster that you never knew was there without this.
      *  The code in hitmu() substitutes the word "something"
-     *  if the corpses obj->dknown is 0.
+     *  if the corpse's obj->dknown is 0.
      */
     if (Blind && !sensemon(mtmp))
         obj->dknown = 0;
index fc32ebfb87982a267e220916fcee862d245327d9..5694a31b8ddd616bc2f37d23a54153aeadceaf84 100644 (file)
@@ -255,14 +255,12 @@ struct monst *mon;
     }
 }
 
-#define flees_light(mon) ((mon)->data == &mons[PM_GREMLIN] &&                          \
-                        (uwep && artifact_light(uwep) && uwep->lamplit))
-
+#define flees_light(mon) ((mon)->data == &mons[PM_GREMLIN]     \
+                          && (uwep && artifact_light(uwep) && uwep->lamplit))
 /* we could include this in the above macro, but probably overkill/overhead */
-/*      (!((which_armor((mon), W_ARMC) != 0) && ((which_armor((mon), W_ARMH) != 0))) && */
-
+/*      && (!(which_armor((mon), W_ARMC) != 0                               */
+/*            && which_armor((mon), W_ARMH) != 0))                          */
 
-                        
 /* monster begins fleeing for the specified time, 0 means untimed flee
  * if first, only adds fleetime if monster isn't already fleeing
  * if fleemsg, prints a message about new flight, otherwise, caller should */
index 4515ea8e8b48805daf758fcb0074aa5c39ec758a..c1824d2f867b811bc952489106bd1741375ee3ad 100644 (file)
@@ -1390,7 +1390,7 @@ boolean without_asking;
             }
             display_nhwindow(datawin, FALSE);
             destroy_nhwindow(datawin), datawin = WIN_ERR;
-       }
+        }
     }
 }
 
@@ -1470,7 +1470,7 @@ doidtrap()
     commands:  basic letters vs digits, 'g' vs 'G' for '5', phone
     keypad vs normal layout of digits, and QWERTZ keyboard swap between
     y/Y/^Y/M-y/M-Y/M-^Y and z/Z/^Z/M-z/M-Z/M-^Z.)
-    
+
     The interpretor understands
      '&#' for comment,
      '&? option' for 'if' (also '&? !option'
@@ -1481,7 +1481,7 @@ doidtrap()
      '&:' for 'else' (also '&: #comment';
                       0 or 1 instance for a given 'if'), and
      '&.' for 'endif' (also '&. #comment'; required for each 'if').
-    
+
     The option handling is a bit of a mess, with no generality for
     which options to deal with and only a comma separated list of
     integer values for the '=value' part.  number_pad is the only
index 5055e8df6cfd1c49ff03b260403ca757550ad375..9b3763841e9b4121a115b24acd5efa9f64823217 100644 (file)
@@ -57,7 +57,7 @@ char *buf;
 
         Sprintf(eos(buf), " (");
 #if defined(RUNTIME_PORT_ID)
-        tmp = get_port_id(tmpbuf);        
+        tmp = get_port_id(tmpbuf);
         if (tmp)
             Sprintf(eos(buf), "%s%s", c++ ? "," : "", tmp);
 #endif