]> git.pond.sub.org Git - empserver/blob - src/lib/commands/mark.c
Declare all configuration variables in optlist.h. Include that
[empserver] / src / lib / commands / mark.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  mark.c: Display report for commodities
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Pat Loney, 1992
33  *     Steve McClure, 1996
34  */
35
36 #include "misc.h"
37 #include "nat.h"
38 #include "var.h"
39 #include "item.h"
40 #include "deity.h"
41 #include "commodity.h"
42 #include "player.h"
43 #include "file.h"
44 #include "commands.h"
45 #include "optlist.h"
46
47 int
48 mark(void)
49 {
50     if (!opt_MARKET) {
51         pr("The market is disabled.\n");
52         return RET_FAIL;
53     }
54     if (player->argp[1] && *(player->argp[1]))
55         return display_mark(player->argp[1]);
56     else
57         return display_mark("   ");
58 }
59
60 static void
61 pr_mark(struct comstr *comm)
62 {
63     time_t now;
64     double tleft;
65
66     (void)time(&now);
67     tleft = MARK_DELAY / 3600.0 - (now - comm->com_markettime) / 3600.0;
68     if (tleft < 0.0)
69         tleft = 0.0;
70     pr(" %3d  $%12.2f  %2d  %5.2f hrs  (%3d)   %c    %6d  ",
71        comm->com_uid,
72        comm->com_maxprice,
73        comm->com_maxbidder,
74        tleft, comm->com_owner, comm->com_type, comm->com_amount);
75     if (comm->com_owner == player->cnum || player->god)
76         pr("%s", xyas(comm->sell_x, comm->sell_y, player->cnum));
77     pr("\n");
78 }
79
80 int
81 display_mark(s_char *arg)
82 {
83     struct comstr comm;
84     struct comstr comm2;
85     int sellers = 0;
86     int cnt = 0;
87     char c;
88     s_char *p;
89     struct ichrstr *ip;
90     s_char buf[1024];
91     int cheapest_items[I_MAX + 2];
92     int i;
93     int all = 0;
94
95 /* First, we execute all trades, so that we can only buy what is available. */
96     check_market();
97     check_trade();
98
99     p = getstarg(arg, "What commodity (or 'all')? ", buf);
100     c = (char)0;
101     if (p && *p)
102         c = *p;
103     for (ip = &ichr[0]; ip && ip->i_mnem; ip++)
104         if (ip->i_mnem == c)
105             break;
106     c = ip->i_mnem;
107
108     pr("\n     Empire Market Report\n   ");
109     prdate();
110     pr(" lot  high bid/unit  by  time left  owner  item  amount  sector\n");
111     pr(" ---  -------------  --  ---------  -----  ----  ------  ------\n");
112
113     if (arg) {
114         if (strcmp(arg, "all"))
115             all = 1;
116     }
117     if (all && !c) {
118         /* Ok, just printing the lowest of all of them */
119         for (i = 0; i < I_MAX + 2; i++)
120             cheapest_items[i] = -1;
121         for (sellers = 0; getcomm(sellers, &comm); sellers++) {
122             if (comm.com_owner == 0)
123                 continue;
124             for (i = 0, ip = &ichr[0]; ip && ip->i_mnem; ip++, i++)
125                 if (ip->i_mnem == comm.com_type)
126                     break;
127             if (!ip->i_mnem)
128                 continue;
129             if (cheapest_items[i] != -1) {
130                 getcomm(cheapest_items[i], &comm2);
131                 if (comm.com_maxprice < comm2.com_maxprice) {
132                     cheapest_items[i] = sellers;
133                 }
134             } else {
135                 cheapest_items[i] = sellers;
136             }
137         }
138         for (i = 0; i < I_MAX + 2; i++) {
139             if (cheapest_items[i] == -1)
140                 continue;
141             getcomm(cheapest_items[i], &comm);
142             cnt = 1;
143             pr_mark(&comm);
144         }
145     } else {
146         /* Ok, print them all, or all of this type */
147         for (sellers = 0; getcomm(sellers, &comm); sellers++) {
148             if (comm.com_owner == 0)
149                 continue;
150             if (c && comm.com_type != c)
151                 continue;
152             cnt = 1;
153             pr_mark(&comm);
154         }
155     }
156     if (cnt <= 0)
157         pr("\nHmmmm, the market seems to be empty today.\n");
158     else
159         pr("\nLooks just like Christmas at K-mart, doesn't it!\n");
160     return RET_OK;
161 }