]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/set.c
Indented with src/scripts/indent-emp.
[empserver] / src / lib / commands / set.c
index 17af3794648fdf00e98e24515da33d41d9a95db3..dde4b40428d8562c9fe1bf0ecee80a4d79f49e17 100644 (file)
 int
 set(void)
 {
-       char   *p;
-       int     type;
-       int     price;
-       char    prompt[80];
-       struct  trdstr trade;
-       struct  nstr_item ni;
-       struct  nstr_item ni_trade;
-       union   trdgenstr item;
-       union   trdgenstr check;
-       struct  sctstr sect;
-       int     freeslot;
-       int     foundslot;
-       int     id;
-       time_t  now;
-       s_char buf[1024];
+    char *p;
+    int type;
+    int price;
+    char prompt[80];
+    struct trdstr trade;
+    struct nstr_item ni;
+    struct nstr_item ni_trade;
+    union trdgenstr item;
+    union trdgenstr check;
+    struct sctstr sect;
+    int freeslot;
+    int foundslot;
+    int id;
+    time_t now;
+    s_char buf[1024];
 
-       if (!opt_MARKET) {
-           pr("The market is disabled.\n");
-           return RET_FAIL;
-       }       
-       check_market();
-       check_trade();
+    if (!opt_MARKET) {
+       pr("The market is disabled.\n");
+       return RET_FAIL;
+    }
+    check_market();
+    check_trade();
 
-       if ((p = getstarg(player->argp[1], "Item type? ", buf)) == 0)
-               return RET_SYN;
-       if ((type = ef_byname(p)) < 0) {
-               pr("%s: not an item type\n", p);
-               return RET_SYN;
+    if ((p = getstarg(player->argp[1], "Item type? ", buf)) == 0)
+       return RET_SYN;
+    if ((type = ef_byname(p)) < 0) {
+       pr("%s: not an item type\n", p);
+       return RET_SYN;
+    }
+    if (type == EF_SECTOR)
+       type = EF_SHIP;
+    if (type == EF_NEWS)
+       type = EF_NUKE;
+    if (type == EF_LOAN)
+       type = EF_LAND;
+    if (!snxtitem(&ni, type, player->argp[2]))
+       return RET_SYN;
+    while (nxtitem(&ni, (char *)&item)) {
+       if (!player->owner && !player->god)
+           continue;
+       getsect(item.gen.trg_x, item.gen.trg_y, &sect);
+       /*
+        * military control necessary to sell
+        * goodies in occupied territory.
+        */
+       if (sect.sct_oldown != player->cnum && !player->god) {
+           int tot_mil = 0;
+           struct nstr_item ni;
+           struct lndstr land;
+           snxtitem_xy(&ni, EF_LAND, sect.sct_x, sect.sct_y);
+           while (nxtitem(&ni, (s_char *)&land)) {
+               if (land.lnd_own == player->cnum)
+                   tot_mil += total_mil(&land);
+           }
+           if (tot_mil + (getvar(V_MILIT, (char *)&sect, EF_SECTOR)) * 10
+               < getvar(V_CIVIL, (char *)&sect, EF_SECTOR)) {
+               pr("Military control required to sell goods.\n");
+               return RET_FAIL;
+           }
+       }
+       trade.trd_type = type;
+       sprintf(prompt, "%s #%d; Price? ",
+               trade_nameof(&trade, &item), ni.cur);
+       memcpy(&check, &item, sizeof(union trdgenstr));
+       if ((p = getstarg(player->argp[3], prompt, buf)) == 0)
+           break;
+       if (memcmp(&check, &item, sizeof(union trdgenstr))) {
+           pr("That item has changed!\n");
+           return RET_FAIL;
+       }
+       if ((price = atoi(p)) < 0)
+           continue;
+       if (!ef_lock(EF_TRADE)) {
+           logerror("can't lock trade file");
+           return RET_SYS;
+       }
+       foundslot = -1;
+       freeslot = -1;
+       snxtitem_all(&ni_trade, EF_TRADE);
+       while (nxtitem(&ni_trade, (char *)&trade)) {
+           if (trade.trd_unitid < 0)
+               freeslot = ni_trade.cur;
+           if (trade.trd_unitid == ni.cur && trade.trd_type == type) {
+               foundslot = ni_trade.cur;
+               break;
+           }
        }
-       if (type == EF_SECTOR)
-               type = EF_SHIP;
-       if (type == EF_NEWS)
-               type = EF_NUKE;
-       if (type == EF_LOAN)
-               type = EF_LAND;
-       if (!snxtitem(&ni, type, player->argp[2]))
-               return RET_SYN;
-       while (nxtitem(&ni, (char *)&item)) {
-               if (!player->owner && !player->god)
-                       continue;
-               getsect(item.gen.trg_x, item.gen.trg_y, &sect);
-               /*
-                * military control necessary to sell
-                * goodies in occupied territory.
-                */
-               if (sect.sct_oldown != player->cnum && !player->god) {
-                        int     tot_mil=0;
-                        struct  nstr_item ni;
-                        struct  lndstr land;
-                        snxtitem_xy(&ni, EF_LAND, sect.sct_x, sect.sct_y);
-                        while (nxtitem(&ni, (s_char *)&land)){
-                                if (land.lnd_own == player->cnum)
-                                        tot_mil  += total_mil(&land);
-                        }
-                       if (tot_mil+(getvar(V_MILIT, (char *)&sect, EF_SECTOR)) * 10
-                           < getvar(V_CIVIL, (char *)&sect, EF_SECTOR)) {
-                             pr("Military control required to sell goods.\n");
-                               return RET_FAIL;
-                       }
-               }
-               trade.trd_type = type;
-               sprintf(prompt, "%s #%d; Price? ",
-                       trade_nameof(&trade, &item), ni.cur);
-               memcpy(&check, &item, sizeof(union trdgenstr));
-               if ((p = getstarg(player->argp[3], prompt, buf))==0)
-                       break;
-               if (memcmp(&check, &item, sizeof(union trdgenstr))) {
-                   pr("That item has changed!\n");
-                   return RET_FAIL;
-               }
-               if ((price = atoi(p)) < 0)
-                       continue;
-               if (!ef_lock(EF_TRADE)) {
-                       logerror("can't lock trade file");
-                       return RET_SYS;
-               }
-               foundslot = -1;
-               freeslot = -1;
-               snxtitem_all(&ni_trade, EF_TRADE);
-               while (nxtitem(&ni_trade, (char *)&trade)) {
-                       if (trade.trd_unitid < 0)
-                               freeslot = ni_trade.cur;
-                       if (trade.trd_unitid == ni.cur &&
-                           trade.trd_type == type) {
-                               foundslot = ni_trade.cur;
-                               break;
-                       }
-               }
-               if (price == 0 && foundslot >= 0) {
-                       pr("%s #%d (lot #%d) removed from trading\n",
-                               trade_nameof(&trade, &item),
-                               ni.cur, foundslot);
-                       trade.trd_type = 0;
-                       trade.trd_owner = 0;
-                       trade.trd_unitid = -1;
-                       trade.trd_price = 0;
-                       (void) time(&now);
-                       trade.trd_markettime = now;
-                       trade.trd_maxbidder = player->cnum;
-                       trade.trd_maxprice = 0;
-                       puttrade(ni_trade.cur, &trade);
-               } else if (price > 0) {
-                       trade.trd_x = item.gen.trg_x;
-                       trade.trd_y = item.gen.trg_x;
-                       trade.trd_type = type;
-                       trade.trd_owner = player->cnum;
-                       trade.trd_unitid = ni.cur;
-                       trade.trd_price = price;
-                       (void) time(&now);
-                       trade.trd_markettime = now;
-                       trade.trd_maxbidder = player->cnum;
-                       trade.trd_maxprice = price;
-                       if (foundslot >= 0)
-                               id = foundslot;
-                       else if (freeslot >= 0)
-                               id = freeslot;
-                       else {
-                               ef_extend(EF_TRADE, 1);
-                               id = ni_trade.cur;
-                       }
-                       puttrade(id, &trade);
-                       pr("%s #%d (lot #%d) price %s to $%d\n",
-                               trade_nameof(&trade, &item), ni.cur,
-                               id, foundslot >= 0 ? "reset" : "set", price);
-               }
-               ef_unlock(EF_TRADE);
+       if (price == 0 && foundslot >= 0) {
+           pr("%s #%d (lot #%d) removed from trading\n",
+              trade_nameof(&trade, &item), ni.cur, foundslot);
+           trade.trd_type = 0;
+           trade.trd_owner = 0;
+           trade.trd_unitid = -1;
+           trade.trd_price = 0;
+           (void)time(&now);
+           trade.trd_markettime = now;
+           trade.trd_maxbidder = player->cnum;
+           trade.trd_maxprice = 0;
+           puttrade(ni_trade.cur, &trade);
+       } else if (price > 0) {
+           trade.trd_x = item.gen.trg_x;
+           trade.trd_y = item.gen.trg_x;
+           trade.trd_type = type;
+           trade.trd_owner = player->cnum;
+           trade.trd_unitid = ni.cur;
+           trade.trd_price = price;
+           (void)time(&now);
+           trade.trd_markettime = now;
+           trade.trd_maxbidder = player->cnum;
+           trade.trd_maxprice = price;
+           if (foundslot >= 0)
+               id = foundslot;
+           else if (freeslot >= 0)
+               id = freeslot;
+           else {
+               ef_extend(EF_TRADE, 1);
+               id = ni_trade.cur;
+           }
+           puttrade(id, &trade);
+           pr("%s #%d (lot #%d) price %s to $%d\n",
+              trade_nameof(&trade, &item), ni.cur,
+              id, foundslot >= 0 ? "reset" : "set", price);
        }
-       return RET_OK;
+       ef_unlock(EF_TRADE);
+    }
+    return RET_OK;
 }