]> git.pond.sub.org Git - empserver/blob - src/lib/commands/mark.c
Indented with src/scripts/indent-emp.
[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 void
61 pr_mark(struct comstr *comm)
62 {
63     time_t now;
64     double tleft;
65     extern int MARK_DELAY;
66
67     (void)time(&now);
68     tleft = MARK_DELAY / 3600.0 - (now - comm->com_markettime) / 3600.0;
69     if (tleft < 0.0)
70         tleft = 0.0;
71     pr(" %3d  $%12.2f  %2d  %5.2f hrs  (%3d)   %c    %6d  ",
72        comm->com_uid,
73        comm->com_maxprice,
74        comm->com_maxbidder,
75        tleft, comm->com_owner, comm->com_type, comm->com_amount);
76     if (comm->com_owner == player->cnum || player->god)
77         pr("%s", xyas(comm->sell_x, comm->sell_y, player->cnum));
78     pr("\n");
79 }
80
81 int
82 display_mark(s_char *arg)
83 {
84     struct comstr comm;
85     struct comstr comm2;
86     int sellers = 0;
87     int cnt = 0;
88     char c;
89     s_char *p;
90     struct ichrstr *ip;
91     s_char buf[1024];
92     int cheapest_items[I_MAX + 2];
93     int i;
94     int all = 0;
95
96 /* First, we execute all trades, so that we can only buy what is available. */
97     check_market();
98     check_trade();
99
100     p = getstarg(arg, "What commodity (or 'all')? ", buf);
101     c = (char)0;
102     if (p && *p)
103         c = *p;
104     for (ip = &ichr[0]; ip && ip->i_mnem; ip++)
105         if (ip->i_mnem == c)
106             break;
107     c = ip->i_mnem;
108
109     pr("\n     Empire Market Report\n   ");
110     prdate();
111     pr(" lot  high bid/unit  by  time left  owner  item  amount  sector\n");
112     pr(" ---  -------------  --  ---------  -----  ----  ------  ------\n");
113
114     if (arg) {
115         if (strcmp(arg, "all"))
116             all = 1;
117     }
118     if (all && !c) {
119         /* Ok, just printing the lowest of all of them */
120         for (i = 0; i < I_MAX + 2; i++)
121             cheapest_items[i] = -1;
122         for (sellers = 0; getcomm(sellers, &comm); sellers++) {
123             if (comm.com_owner == 0)
124                 continue;
125             for (i = 0, ip = &ichr[0]; ip && ip->i_mnem; ip++, i++)
126                 if (ip->i_mnem == comm.com_type)
127                     break;
128             if (!ip->i_mnem)
129                 continue;
130             if (cheapest_items[i] != -1) {
131                 getcomm(cheapest_items[i], &comm2);
132                 if (comm.com_maxprice < comm2.com_maxprice) {
133                     cheapest_items[i] = sellers;
134                 }
135             } else {
136                 cheapest_items[i] = sellers;
137             }
138         }
139         for (i = 0; i < I_MAX + 2; i++) {
140             if (cheapest_items[i] == -1)
141                 continue;
142             getcomm(cheapest_items[i], &comm);
143             cnt = 1;
144             pr_mark(&comm);
145         }
146     } else {
147         /* Ok, print them all, or all of this type */
148         for (sellers = 0; getcomm(sellers, &comm); sellers++) {
149             if (comm.com_owner == 0)
150                 continue;
151             if (c && comm.com_type != c)
152                 continue;
153             cnt = 1;
154             pr_mark(&comm);
155         }
156     }
157     if (cnt <= 0)
158         pr("\nHmmmm, the market seems to be empty today.\n");
159     else
160         pr("\nLooks just like Christmas at K-mart, doesn't it!\n");
161     return RET_OK;
162 }