]> git.pond.sub.org Git - empserver/blob - src/lib/commands/buy.c
Update copyright notice
[empserver] / src / lib / commands / buy.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2021, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  buy.c: Buy commodities from other nations
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Pat Loney, 1992
32  *     Steve McClure, 1996-2000
33  *     Markus Armbruster, 2004-2018
34  */
35
36 #include <config.h>
37
38 #include "chance.h"
39 #include "commands.h"
40 #include "commodity.h"
41 #include "item.h"
42 #include "news.h"
43 #include "optlist.h"
44 #include "trade.h"
45
46 /*
47  * format: buy <COMMODITY>
48  *
49  */
50 int
51 buy(void)
52 {
53     struct sctstr sect;
54     struct natstr *natp;
55     struct comstr comm;
56     struct comstr comt;
57     struct trdstr tmpt;
58     struct ichrstr *ip;
59     int qty;
60     int o, n;
61     coord x, y;
62     char *p;
63     float bid;
64     time_t now;
65     double tally;
66     double canspend;
67     char buf[1024];
68
69     if (!opt_MARKET) {
70         pr("The market is disabled.\n");
71         return RET_FAIL;
72     }
73     natp = getnatp(player->cnum);
74     ip = whatitem(player->argp[1], "Commodity you want to buy: ");
75     if (!ip)
76         return RET_SYN;
77     display_mark(ip->i_uid, 0);
78     pr("\n");
79     p = getstarg(player->argp[2], "Which lot are you bidding on: ", buf);
80     if (!p)
81         return RET_SYN;
82     if (*p == 0)
83         return RET_SYN;
84     o = atoi(p);
85     if (o < 0)
86         return RET_SYN;
87     if (!getcomm(o, &comm) || comm.com_owner == 0) {
88         pr("Invalid lot number.\n");
89         return RET_OK;
90     }
91     if (comm.com_type != ip->i_uid) {
92         pr("That lot is not of the type you specified.\n");
93         return RET_OK;
94     }
95     if (comm.com_owner == player->cnum) {
96         pr("You can't bid on your own lot.\n");
97         return RET_OK;
98     }
99     if (!(p = getstarg(player->argp[3], "How much per unit: ", buf)))
100         return RET_SYN;
101     bid = atof(p);
102     if (bid <= 0)
103         return RET_FAIL;
104     if (natp->nat_money < bid * comm.com_amount * buytax) {
105         pr("This purchase would cost %.2f, %.2f more than you have.\n",
106            bid * comm.com_amount * buytax,
107            bid * comm.com_amount * buytax - natp->nat_money);
108         return RET_FAIL;
109     }
110 /*  check to see if all of the bids that this player has out plus this new bid
111     would make him go broke.  Ken, I ought to skin you alive for making me code
112     this part up.*/
113     tally = 0.0;
114     for (n = 0; gettrade(n, &tmpt); n++) {
115         if (!tmpt.trd_owner)
116             continue;
117         if (tmpt.trd_maxbidder == player->cnum &&
118             tmpt.trd_owner != player->cnum) {
119             tally += tmpt.trd_price * tradetax;
120         }
121     }
122     for (n = 0; getcomm(n, &comt); n++) {
123         if (comt.com_maxbidder == player->cnum &&
124             comt.com_owner != 0 && comt.com_owner != player->cnum) {
125             tally += comt.com_price * comt.com_amount * buytax;
126         }
127     }
128     canspend = natp->nat_money - tally;
129     check_comm_ok(&comm);
130     if (bid * comm.com_amount * buytax > canspend) {
131         pr("You have overextended yourself in the market\n");
132         pr("You can not bid on the current items at that price.\n");
133         return RET_OK;
134     }
135     if (!(p = getstarg(player->argp[4], "destination sector : ", buf)))
136         return RET_SYN;
137     if (!sarg_xy(p, &x, &y))
138         return RET_SYN;
139     if (!getsect(x, y, &sect)) {
140         pr("Could not access sector");
141         return RET_FAIL;
142     }
143     if ((sect.sct_type != SCT_WAREH && sect.sct_type != SCT_HARBR) ||
144         sect.sct_own != player->cnum) {
145         pr("The destination sector is not one of your warehouses.\n");
146         return RET_FAIL;
147     }
148     if (sect.sct_effic < 60) {
149         pr("That sector is under construction.\n");
150         return RET_FAIL;
151     }
152     n = sect.sct_item[ip->i_uid];
153     qty = comm.com_amount;
154     if (qty + n > ITEM_MAX) {
155         pr("That sector cannot hold %d more %s. It currently holds %d.\n",
156            qty, ip->i_name, n);
157         return RET_FAIL;
158     }
159     if (bid * comm.com_amount > natp->nat_money) {
160         pr("You don't have that much to spend!\n");
161         return RET_FAIL;
162     }
163     if (!check_comm_ok(&comm))
164         return RET_FAIL;
165     if (bid > 0.04 + comm.com_price) {
166         comm.com_price = bid;
167         time(&now);
168         if (comm.com_markettime + MARK_DELAY - now < minutes(5) &&
169             comm.com_maxbidder != player->cnum)
170             comm.com_markettime = now + minutes(5) - MARK_DELAY;
171         comm.com_maxbidder = player->cnum;
172         comm.com_x = x;
173         comm.com_y = y;
174         putcomm(o, &comm);
175         pr("Your bid is being considered.\n");
176     } else {
177         pr("Your bid wasn't high enough (you need to bid at least $0.05 higher\n");
178         pr("than the last bid.\n");
179         return RET_OK;
180     }
181
182     check_market();
183
184     return RET_OK;
185 }
186
187 int
188 check_market(void)
189 {
190     struct comstr comm;
191     struct sctstr *sect;
192     struct natstr *natp;
193     int m;
194     int n;
195     time_t now;
196     double gain;
197     double price;
198
199     for (n = 0; getcomm(n, &comm); n++) {
200         if (comm.com_maxbidder == comm.com_owner || comm.com_owner == 0)
201             continue;
202         (void)time(&now);
203         if (comm.com_markettime + MARK_DELAY > now)
204             continue;
205         if (CANT_HAPPEN(comm.com_type <= I_NONE || comm.com_type > I_MAX))
206             continue;
207         sect = getsectp(comm.com_x, comm.com_y);
208         m = sect->sct_item[comm.com_type];
209
210         price = comm.com_price * comm.com_amount * buytax;
211         gain = comm.com_price * comm.com_amount;
212
213         natp = getnatp(comm.com_maxbidder);
214         if (natp->nat_money < price) {
215             nreport(comm.com_maxbidder, N_WELCH_DEAL, comm.com_owner, 1);
216             wu(0, comm.com_maxbidder,
217                "You didn't have enough cash to cover the cost.\n");
218             wu(0, comm.com_owner,
219                "Sale #%d fell through.  Goods remain on the market.\n", n);
220             comm.com_maxbidder = comm.com_owner;
221         } else if (sect->sct_type != SCT_WAREH
222                    && sect->sct_type != SCT_HARBR) {
223             wu(0, comm.com_maxbidder,
224                "Sector not a warehouse now, sale #%d fell though.\n", n);
225             wu(0, comm.com_owner,
226                "Sale #%d fell through.  Goods remain on the market.\n", n);
227             comm.com_maxbidder = comm.com_owner;
228         } else if (m + comm.com_amount > ITEM_MAX) {
229             wu(0, comm.com_maxbidder,
230                "Warehouse full,  sale #%d fell though.\n", n);
231             wu(0, comm.com_owner,
232                "Sale #%d fell through.  Goods remain on the market.\n", n);
233             comm.com_maxbidder = comm.com_owner;
234         } else {
235             sect->sct_item[comm.com_type] = m + comm.com_amount;
236             putsect(sect);
237             nreport(comm.com_owner, N_MAKE_SALE, comm.com_maxbidder, 1);
238             wu(0, comm.com_owner, "%s bought %d %s from you for $%.2f\n",
239                cname(comm.com_maxbidder), comm.com_amount,
240                ichr[comm.com_type].i_name, gain);
241             wu(0, comm.com_maxbidder,
242                "You just bought %d %s from %s for $%.2f\n",
243                comm.com_amount, ichr[comm.com_type].i_name,
244                cname(comm.com_owner), price);
245             natp->nat_money -= roundavg(price);
246             putnat(natp);
247             natp = getnatp(comm.com_owner);
248             natp->nat_money += roundavg(gain);
249             putnat(natp);
250             comm.com_owner = 0;
251         }
252         comm.com_owner = 0;
253         putcomm(n, &comm);
254     }
255     return RET_OK;
256 }