]> git.pond.sub.org Git - empserver/blob - src/lib/commands/mark.c
Update copyright notice
[empserver] / src / lib / commands / mark.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future 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 <config.h>
37
38 #include "commands.h"
39 #include "commodity.h"
40 #include "item.h"
41 #include "optlist.h"
42
43 int
44 mark(void)
45 {
46     char buf[1024];
47     char *p;
48     struct ichrstr *ip;
49
50     if (!opt_MARKET) {
51         pr("The market is disabled.\n");
52         return RET_FAIL;
53     }
54
55     if (player->argp[1] && player->argp[1]) {
56         p = getstarg(player->argp[1], "What commodity (or 'all')? ", buf);
57         if (!p)
58             return RET_SYN;
59         if (!strcmp(p, "all"))
60             return display_mark(I_NONE, 0);
61         else {
62             ip = item_by_name(p);
63             if (!ip)
64                 return RET_SYN;
65             return display_mark(ip->i_uid, 0);
66         }
67     }
68     return display_mark(I_NONE, 1);
69 }
70
71 static void
72 pr_mark(struct comstr *comm)
73 {
74     time_t now;
75     double tleft;
76
77     (void)time(&now);
78     tleft = MARK_DELAY / 3600.0 - (now - comm->com_markettime) / 3600.0;
79     if (tleft < 0.0)
80         tleft = 0.0;
81     pr(" %3d  $%12.2f  %2d  %5.2f hrs  (%3d)   %c    %6d  ",
82        comm->com_uid, comm->com_price, comm->com_maxbidder, tleft,
83        comm->com_owner, ichr[comm->com_type].i_mnem, comm->com_amount);
84     if (comm->com_owner == player->cnum || player->god)
85         pr("%s", xyas(comm->sell_x, comm->sell_y, player->cnum));
86     pr("\n");
87 }
88
89 int
90 display_mark(i_type only_itype, int only_cheapest)
91 {
92     struct comstr comm;
93     struct comstr comm2;
94     int sellers = 0;
95     int cnt = 0;
96     int cheapest_items[I_MAX + 1];
97     i_type i;
98
99     /* Execute trades so report lists only lots that are still available.  */
100     check_market();
101     check_trade();
102
103     pr("\n     Empire Market Report\n   ");
104     prdate();
105     pr(" lot  high bid/unit  by  time left  owner  item  amount  sector\n");
106     pr(" ---  -------------  --  ---------  -----  ----  ------  ------\n");
107
108     if (only_cheapest) {
109         for (i = I_NONE + 1; i <= I_MAX; i++)
110             cheapest_items[i] = -1;
111         for (sellers = 0; getcomm(sellers, &comm); sellers++) {
112             if (comm.com_owner == 0)
113                 continue;
114             if (CANT_HAPPEN(comm.com_type <= I_NONE || comm.com_type > I_MAX))
115                 continue;
116             if (cheapest_items[comm.com_type] != -1) {
117                 getcomm(cheapest_items[comm.com_type], &comm2);
118                 if (comm.com_price < comm2.com_price) {
119                     cheapest_items[comm.com_type] = sellers;
120                 }
121             } else {
122                 cheapest_items[comm.com_type] = sellers;
123             }
124         }
125         CANT_HAPPEN(only_itype != I_NONE); /* not implemented */
126         for (i = I_NONE + 1; i <= I_MAX; i++) {
127             if (cheapest_items[i] == -1)
128                 continue;
129             getcomm(cheapest_items[i], &comm);
130             cnt = 1;
131             pr_mark(&comm);
132         }
133     } else {
134         for (sellers = 0; getcomm(sellers, &comm); sellers++) {
135             if (comm.com_owner == 0)
136                 continue;
137             if (only_itype != I_NONE && comm.com_type != only_itype)
138                 continue;
139             cnt = 1;
140             pr_mark(&comm);
141         }
142     }
143     if (cnt <= 0)
144         pr("\nHmmmm, the market seems to be empty today.\n");
145     else
146         pr("\nLooks just like Christmas at K-mart, doesn't it!\n");
147     return RET_OK;
148 }