]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/add.c
Indented with src/scripts/indent-emp.
[empserver] / src / lib / commands / add.c
index 1d87bd1e415b8dd0a7b00685735ab5d9db0fd193..91e736cd3ed9394ab693279e936e839e149e5dab 100644 (file)
@@ -51,181 +51,184 @@ extern float start_technology, start_research;
 int
 add(void)
 {
-       struct  natstr *natp;
-       struct  sctstr sect;
-       struct  nstr_sect nstr;
-       register int i;
-       s_char  cntryname[21];
-       s_char  pname[21];
-       natid   coun;
-       natid   freecn;
-       s_char  prompt[128];
-       s_char  buf[1024];
-       s_char  *p;
-       s_char  loopflag;
-       int     stat;
-       struct  nstr_item ni;
-       struct  lndstr land;
+    struct natstr *natp;
+    struct sctstr sect;
+    struct nstr_sect nstr;
+    register int i;
+    s_char cntryname[21];
+    s_char pname[21];
+    natid coun;
+    natid freecn;
+    s_char prompt[128];
+    s_char buf[1024];
+    s_char *p;
+    s_char loopflag;
+    int stat;
+    struct nstr_item ni;
+    struct lndstr land;
 
-       for (freecn=0; NULL != (natp = getnatp(freecn)); freecn++) {
-               if ((natp->nat_stat & STAT_INUSE) == 0)
-                       break;
+    for (freecn = 0; NULL != (natp = getnatp(freecn)); freecn++) {
+       if ((natp->nat_stat & STAT_INUSE) == 0)
+           break;
+    }
+    if (freecn < MAXNOC)
+       sprintf(prompt, "New country number? (%d is unused) ", freecn);
+    else
+       strcpy(prompt, "New country number? (they all seem to be used) ");
+    while ((p = getstarg(player->argp[1], prompt, buf)) && *p) {
+       coun = atoi(p);
+       if (coun < MAXNOC)
+           break;
+       pr("Max # countries is %d\n", MAXNOC);
+       player->argp[1] = 0;
+    }
+    if (p == 0 || *p == 0)
+       return RET_FAIL;
+    if (coun == 0) {
+       pr("Not allowed to add country #0\n");
+       return RET_FAIL;
+    }
+    natp = getnatp(coun);
+    while ((p = getstarg(player->argp[2], "Country Name? ", buf)) && *p) {
+       if (strlen(p) < 20) {
+           (void)strcpy(cntryname, p);
+           break;
        }
-       if (freecn < MAXNOC)
-               sprintf(prompt, "New country number? (%d is unused) ", freecn);
-       else
-               strcpy(prompt, "New country number? (they all seem to be used) ");
-       while ((p = getstarg(player->argp[1], prompt, buf)) && *p) {
-               coun = atoi(p);
-               if (coun < MAXNOC)
-                       break;
-               pr("Max # countries is %d\n", MAXNOC);
-               player->argp[1] = 0;
+       pr("Too long.\n");
+       player->argp[2] = 0;
+    }
+    if (p == 0 || *p == 0)
+       return RET_OK;
+    while ((p = getstarg(player->argp[3], "Representative? ", buf)) && *p) {
+       if (strlen(p) < 20) {
+           (void)strcpy(pname, p);
+           break;
        }
-       if (p == 0 || *p == 0)
-               return RET_FAIL;
-       if (coun == 0) {
-               pr("Not allowed to add country #0\n");
-               return RET_FAIL;
+       pr("Too long.\n");
+       player->argp[3] = 0;
+    }
+    if (p == 0 || *p == 0)
+       return RET_OK;
+    loopflag = 1;
+    stat = natp->nat_stat;
+    strcpy(prompt, "Status? (visitor, new, active, god, delete) ");
+    while (loopflag && (p = getstarg(player->argp[4], prompt, buf))) {
+       loopflag = 0;
+       switch (*p) {
+       case 'v':
+           stat = STAT_INUSE;
+           break;
+       case 'n':
+           stat = STAT_NEW | STAT_INUSE;
+           break;
+       case 'a':
+           stat = STAT_NORM | STAT_INUSE;
+           break;
+       case 'g':
+           stat = STAT_GOD | STAT_NORM | STAT_INUSE;
+           break;
+       case 'd':
+           stat = 0;
+           break;
+       default:
+           pr("Illegal selection\n");
+           loopflag = 1;
+           break;
        }
-       natp = getnatp(coun);
-       while ((p = getstarg(player->argp[2], "Country Name? ", buf)) && *p) {
-               if (strlen(p) < 20) {
-                       (void) strcpy(cntryname, p);
-                       break;
-               }
-               pr("Too long.\n");
-               player->argp[2] = 0;
-       }
-       if (p == 0 || *p == 0)
-               return RET_OK;
-       while ((p = getstarg(player->argp[3], "Representative? ", buf)) && *p) {
-               if (strlen(p) < 20) {
-                       (void) strcpy(pname, p);
-                       break;
-               }
-               pr("Too long.\n");
-               player->argp[3] = 0;
-       }
-       if (p == 0 || *p == 0)
-               return RET_OK;
-       loopflag = 1;
-       stat = natp->nat_stat;
-       strcpy(prompt, "Status? (visitor, new, active, god, delete) ");
-       while (loopflag && (p = getstarg(player->argp[4], prompt, buf))) {
-               loopflag = 0;
-               switch (*p) {
-               case 'v':
-                       stat = STAT_INUSE;
-                       break;
-               case 'n':
-                       stat = STAT_NEW|STAT_INUSE;  
-                       break;
-               case 'a':
-                       stat = STAT_NORM|STAT_INUSE;
-                       break;
-               case 'g':
-                       stat = STAT_GOD|STAT_NORM|STAT_INUSE;
-                       break;
-               case 'd':
-                       stat = 0;
-                       break;
-               default:
-                       pr("Illegal selection\n");
-                       loopflag = 1;
-                       break;
-               }
-               player->argp[4] = 0;
-       }
-       if (p == 0)
-               return RET_OK;
-       p = getstarg(player->argp[5],
-               "Check, wipe, or ignore existing sectors (c|w|i) ", buf);
-       if (p == 0)
-               return RET_OK;
-       snxtitem_all(&ni,EF_LAND);
-       while(nxtitem(&ni, (s_char *)&land)) {
-               if (land.lnd_own == coun){
-                       makelost(EF_LAND, land.lnd_own, land.lnd_uid, land.lnd_x, land.lnd_y);
-                       land.lnd_own = 0;
-                       pr("Land unit %d wiped\n",land.lnd_uid);
-                       putland(land.lnd_uid,&land);
-               }
+       player->argp[4] = 0;
+    }
+    if (p == 0)
+       return RET_OK;
+    p = getstarg(player->argp[5],
+                "Check, wipe, or ignore existing sectors (c|w|i) ", buf);
+    if (p == 0)
+       return RET_OK;
+    snxtitem_all(&ni, EF_LAND);
+    while (nxtitem(&ni, (s_char *)&land)) {
+       if (land.lnd_own == coun) {
+           makelost(EF_LAND, land.lnd_own, land.lnd_uid, land.lnd_x,
+                    land.lnd_y);
+           land.lnd_own = 0;
+           pr("Land unit %d wiped\n", land.lnd_uid);
+           putland(land.lnd_uid, &land);
        }
-       natp->nat_stat = stat;
-       strcpy(natp->nat_cnam, cntryname);
-       strcpy(natp->nat_pnam, pname);
-       if (*p != 'w' && *p != 'c') {
-               pr("Any existing sectors ignored\n");
-       } else {
-               pr("Checking sectors...\n");
-               snxtsct_all(&nstr);
-               while (nxtsct(&nstr, &sect)) {
-                       if (sect.sct_own != coun)
-                               continue;
-                       pr("%s ", xyas(nstr.x, nstr.y, player->cnum));
-                       if (*p == 'w') {
-                               sect.sct_mobil = 0;
-                               sect.sct_effic = 0;
-                               sect.sct_road = 0;
-                               sect.sct_rail = 0;
-                               sect.sct_defense = 0;
-                               sect.sct_own = 0;
-                               sect.sct_oldown = 0;
-                               if (sect.sct_type != SCT_MOUNT &&
-                                   sect.sct_type != SCT_PLAINS) {
-                                       sect.sct_type = SCT_RURAL;
-                                       sect.sct_newtype = SCT_RURAL;
-                               }
-                               /* No dist path */
-                               sect.sct_dist_x = sect.sct_x;
-                               sect.sct_dist_y = sect.sct_y;
-                               sect.sct_nv = 0;
-                               putsect(&sect);
-                               pr("wiped\n");
-                       } else {
-                               pr("\n");
-                       }
+    }
+    natp->nat_stat = stat;
+    strcpy(natp->nat_cnam, cntryname);
+    strcpy(natp->nat_pnam, pname);
+    if (*p != 'w' && *p != 'c') {
+       pr("Any existing sectors ignored\n");
+    } else {
+       pr("Checking sectors...\n");
+       snxtsct_all(&nstr);
+       while (nxtsct(&nstr, &sect)) {
+           if (sect.sct_own != coun)
+               continue;
+           pr("%s ", xyas(nstr.x, nstr.y, player->cnum));
+           if (*p == 'w') {
+               sect.sct_mobil = 0;
+               sect.sct_effic = 0;
+               sect.sct_road = 0;
+               sect.sct_rail = 0;
+               sect.sct_defense = 0;
+               sect.sct_own = 0;
+               sect.sct_oldown = 0;
+               if (sect.sct_type != SCT_MOUNT &&
+                   sect.sct_type != SCT_PLAINS) {
+                   sect.sct_type = SCT_RURAL;
+                   sect.sct_newtype = SCT_RURAL;
                }
+               /* No dist path */
+               sect.sct_dist_x = sect.sct_x;
+               sect.sct_dist_y = sect.sct_y;
+               sect.sct_nv = 0;
+               putsect(&sect);
+               pr("wiped\n");
+           } else {
+               pr("\n");
+           }
        }
+    }
 
-       if ((natp->nat_stat & (STAT_INUSE|STAT_NORM|STAT_GOD)) == STAT_INUSE) {
-               *natp->nat_hostaddr = '\0';
-               *natp->nat_hostname = '\0';
-               *natp->nat_userid = '\0';
-               natp->nat_btu = 0;
-               natp->nat_connected = 0;
-               natp->nat_reserve = 0;
-               natp->nat_tgms = 0;
-               natp->nat_ystart = 0;
-               natp->nat_xstart = 0;
-               natp->nat_ycap = 0;
-               natp->nat_xcap = 0;
-               natp->nat_yorg = 0;
-               natp->nat_xorg = 0;
-               natp->nat_dayno = 0;
-               natp->nat_minused = 0;
-               bzero((s_char *)natp->nat_b, sizeof (natp->nat_b));
-               (void) time(&natp->nat_last_login);
-               (void) time(&natp->nat_last_logout);
-               natp->nat_money = 0;
-               natp->nat_level[NAT_TLEV] = start_technology;
-               natp->nat_level[NAT_RLEV] = start_research;
-               natp->nat_level[NAT_ELEV] = start_education;
-               natp->nat_level[NAT_HLEV] = start_happiness;
-               for (i=0; i<MAXNOC/4; i++)
-                       natp->nat_rejects[i] = 0;
-               natp->nat_newstim = 0;
-               natp->nat_annotim = 0;
-               (void) creat(mailbox(buf, coun), 0660);
-       } else
-               pr("No special initializations done...\n");
+    if ((natp->nat_stat & (STAT_INUSE | STAT_NORM | STAT_GOD)) ==
+       STAT_INUSE) {
+       *natp->nat_hostaddr = '\0';
+       *natp->nat_hostname = '\0';
+       *natp->nat_userid = '\0';
+       natp->nat_btu = 0;
+       natp->nat_connected = 0;
+       natp->nat_reserve = 0;
+       natp->nat_tgms = 0;
+       natp->nat_ystart = 0;
+       natp->nat_xstart = 0;
+       natp->nat_ycap = 0;
+       natp->nat_xcap = 0;
+       natp->nat_yorg = 0;
+       natp->nat_xorg = 0;
+       natp->nat_dayno = 0;
+       natp->nat_minused = 0;
+       bzero((s_char *)natp->nat_b, sizeof(natp->nat_b));
+       (void)time(&natp->nat_last_login);
+       (void)time(&natp->nat_last_logout);
+       natp->nat_money = 0;
+       natp->nat_level[NAT_TLEV] = start_technology;
+       natp->nat_level[NAT_RLEV] = start_research;
+       natp->nat_level[NAT_ELEV] = start_education;
+       natp->nat_level[NAT_HLEV] = start_happiness;
+       for (i = 0; i < MAXNOC / 4; i++)
+           natp->nat_rejects[i] = 0;
+       natp->nat_newstim = 0;
+       natp->nat_annotim = 0;
+       (void)creat(mailbox(buf, coun), 0660);
+    } else
+       pr("No special initializations done...\n");
 
-       for (i=0; i<SCT_MAXDEF+8; i++)
-               natp->nat_priorities[i] = -1;
-       natp->nat_flags = NF_FLASH | NF_BEEP | NF_COASTWATCH | NF_SONAR | NF_TECHLISTS;
-       for (i=0; i<MAXNOC; i++)
-               natp->nat_relate[i] = NEUTRAL;
-       putnat(natp);
-       return 0;
+    for (i = 0; i < SCT_MAXDEF + 8; i++)
+       natp->nat_priorities[i] = -1;
+    natp->nat_flags =
+       NF_FLASH | NF_BEEP | NF_COASTWATCH | NF_SONAR | NF_TECHLISTS;
+    for (i = 0; i < MAXNOC; i++)
+       natp->nat_relate[i] = NEUTRAL;
+    putnat(natp);
+    return 0;
 }