]> git.pond.sub.org Git - empserver/commitdiff
(buy, mark, display_mark): Move argument evaluation from
authorMarkus Armbruster <armbru@pond.sub.org>
Sat, 10 Apr 2004 08:43:19 +0000 (08:43 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Sat, 10 Apr 2004 08:43:19 +0000 (08:43 +0000)
display_mark() to callers.  buy() no longer accepts "all".  It used to
display all lots, but didn't let you buy any.  Similar nonsense
happened for "" if buy() prompted for it.

(display_mark): Fix size of cheapest_items[].

(player_coms): Document mark accepting "all".

include/prototypes.h
info/Commands/market.t
src/lib/commands/buy.c
src/lib/commands/mark.c
src/lib/player/empmod.c

index d35baf65dbf3557d9971c78a45bd38c88eed4f29..da28cf2163dacf7734296cdd24ff9b966e7b8a5e 100644 (file)
@@ -65,7 +65,7 @@ extern int check_market(void);
 extern void set_coastal(struct sctstr *);
 extern int sendmessage(struct natstr *, struct natstr *, char *, int);
 extern void gift(int, int, s_char *, int, s_char *);
-extern int display_mark(s_char *);
+extern int display_mark(int what);
 extern int want_to_abandon(struct sctstr *, int, int, struct lndstr *);
 extern int would_abandon(struct sctstr *, int, int, struct lndstr *);
 extern int nav_map(int, int, int);
index 60fe957b3d7ecd3b8429b7d13a498413381bf83a..b6de00e748423509b00473eee1ce2107a81bb403 100644 (file)
@@ -1,7 +1,7 @@
 .TH Command MARKET
 .NA market "Report current selling prices in the world market"
 .LV Expert
-.SY "market <ITEM>"
+.SY "market <ITEM|all>"
 The market report displays the lowest price commodity of each type
 currently on the market.
 .s1
index e17edc4df3f5b25c78a17dc891c4620582a35f9e..4e67adaf6089dbfd373fb24403646e034f33f88b 100644 (file)
@@ -82,7 +82,10 @@ buy(void)
        return RET_FAIL;
     }
     natp = getnatp(player->cnum);
-    display_mark(player->argp[1]);
+    ip = whatitem(player->argp[1], "Commodity you want to buy: ");
+    if (!ip)
+       return RET_SYN;
+    display_mark(ip->i_mnem);
     pr("\n");
     p = getstarg(player->argp[2], "Which lot are you bidding on: ", buf);
     if (p == 0)
@@ -96,8 +99,7 @@ buy(void)
        pr("Invalid lot number.\n");
        return RET_OK;
     }
-    if (player->argp[1] && *(player->argp[1]) &&
-       comm.com_type != player->argp[1][0]) {
+    if (comm.com_type != ip->i_mnem) {
        pr("That lot is not of the type you specified.\n");
        return RET_OK;
     }
index a10b992a3456dbf6bdd660f1bf15be3660a9c2b7..8b7af97ce6328f094b4b962a0ab88abec06787e9 100644 (file)
 int
 mark(void)
 {
+    char buf[1024];
+    char *p;
+    struct ichrstr *ip;
+
     if (!opt_MARKET) {
        pr("The market is disabled.\n");
        return RET_FAIL;
     }
-    if (player->argp[1] && *(player->argp[1]))
-       return display_mark(player->argp[1]);
-    else
-       return display_mark("   ");
+
+    if (player->argp[1] && player->argp[1]) {
+       p = getstarg(player->argp[1], "What commodity (or 'all')? ", buf);
+       if (!p)
+           return RET_SYN;
+       if (!strcmp(p, "all"))
+           return display_mark(0);
+       else {
+           ip = item_by_name(p);
+           if (!ip)
+               return RET_SYN;
+           return display_mark(ip->i_mnem);
+       }
+    }
+    return display_mark(-1);
 }
 
 static void
@@ -77,45 +92,28 @@ pr_mark(struct comstr *comm)
 }
 
 int
-display_mark(s_char *arg)
+display_mark(int what)
 {
     struct comstr comm;
     struct comstr comm2;
     int sellers = 0;
     int cnt = 0;
-    char c;
-    s_char *p;
     struct ichrstr *ip;
-    s_char buf[1024];
-    int cheapest_items[I_MAX + 2];
+    int cheapest_items[I_MAX + 1];
     int i;
-    int all = 0;
 
-/* First, we execute all trades, so that we can only buy what is available. */
+    /* Execute trades so report lists only lots that are still available.  */
     check_market();
     check_trade();
 
-    p = getstarg(arg, "What commodity (or 'all')? ", buf);
-    c = (char)0;
-    if (p && *p)
-       c = *p;
-    for (ip = &ichr[0]; ip && ip->i_mnem; ip++)
-       if (ip->i_mnem == c)
-           break;
-    c = ip->i_mnem;
-
     pr("\n     Empire Market Report\n   ");
     prdate();
     pr(" lot  high bid/unit  by  time left  owner  item  amount  sector\n");
     pr(" ---  -------------  --  ---------  -----  ----  ------  ------\n");
 
-    if (arg) {
-       if (strcmp(arg, "all"))
-           all = 1;
-    }
-    if (all && !c) {
+    if (what == -1) {
        /* Ok, just printing the lowest of all of them */
-       for (i = 0; i < I_MAX + 2; i++)
+       for (i = 0; i < I_MAX + 1; i++)
            cheapest_items[i] = -1;
        for (sellers = 0; getcomm(sellers, &comm); sellers++) {
            if (comm.com_owner == 0)
@@ -134,7 +132,7 @@ display_mark(s_char *arg)
                cheapest_items[i] = sellers;
            }
        }
-       for (i = 0; i < I_MAX + 2; i++) {
+       for (i = 0; i < I_MAX + 1; i++) {
            if (cheapest_items[i] == -1)
                continue;
            getcomm(cheapest_items[i], &comm);
@@ -146,7 +144,7 @@ display_mark(s_char *arg)
        for (sellers = 0; getcomm(sellers, &comm); sellers++) {
            if (comm.com_owner == 0)
                continue;
-           if (c && comm.com_type != c)
+           if (what && comm.com_type != what)
                continue;
            cnt = 1;
            pr_mark(&comm);
index 7b50d4b975ae21831770be4b43e6ad5d816973fd..826fa65d56d91e5715d8c5f2f8f59038e2de1f5b 100644 (file)
@@ -150,7 +150,7 @@ struct cmndstr player_coms[] = {
      NORM + CAP},
     {"lunload <COMM|\"land\"|\"plane\"> <UNITS> <NUM|UNITS|PLANES>", 1,
      lload, C_MOD, NORM + CAP},
-    {"market [COMM]", 0, mark, 0, VIS},
+    {"market <COMM|\"all\">", 0, mark, 0, VIS},
     {"map <SECTS|SHIP> [s|l|p|*|h]", 0, map, C_MOD, VIS},
     {"march <UNITS> <PATH|DESTINATION>", 1, march, C_MOD, NORM + CAP},
     {"mine <SHIPS>", 2, mine, C_MOD, NORM + MONEY + CAP},