]> git.pond.sub.org Git - empserver/blob - src/lib/commands/buy.c
(buy, move, prod, dodistribute, produce): Obey ITEM_MAX. Previous
[empserver] / src / lib / commands / buy.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  *  buy.c: Buy commodities from other nations
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Pat Loney, 1992
33  *     Steve McClure, 1996-2000
34  */
35
36 #include "misc.h"
37 #include "xy.h"
38 #include "file.h"
39 #include "var.h"
40 #include "sect.h"
41 #include "nat.h"
42 #include "news.h"
43 #include "nsc.h"
44 #include "item.h"
45 #include "land.h"
46 #include "commodity.h"
47 #include "plane.h"
48 #include "nuke.h"
49 #include "ship.h"
50 #include "trade.h"
51 #include "player.h"
52 #include "loan.h"
53 #include "commands.h"
54 #include "optlist.h"
55
56 /*
57  * format: buy <COMMODITY>
58  *
59  */
60 int
61 buy(void)
62 {
63     struct sctstr sect;
64     struct natstr *natp;
65     struct comstr comm;
66     struct comstr ncomm;
67     struct comstr comt;
68     struct trdstr tmpt;
69     struct ichrstr *ip;
70     int qty;
71     int o, n, q;
72     coord x, y;
73     char *p;
74     float bid;
75     time_t now;
76     double tally;
77     double canspend;
78     s_char buf[1024];
79
80     if (!opt_MARKET) {
81         pr("The market is disabled.\n");
82         return RET_FAIL;
83     }
84     natp = getnatp(player->cnum);
85     display_mark(player->argp[1]);
86     pr("\n");
87     p = getstarg(player->argp[2], "Which lot are you bidding on: ", buf);
88     if (p == 0)
89         return RET_SYN;
90     if (*p == 0)
91         return RET_SYN;
92     o = atoi(p);
93     if (o < 0)
94         return RET_SYN;
95     if (!getcomm(o, &comm) || comm.com_owner == 0) {
96         pr("Invalid lot number.\n");
97         return RET_OK;
98     }
99     if (player->argp[1] && *(player->argp[1]) &&
100         comm.com_type != player->argp[1][0]) {
101         pr("That lot is not of the type you specified.\n");
102         return RET_OK;
103     }
104     if (comm.com_owner == player->cnum) {
105         pr("You can't bid on your own lot.\n");
106         return RET_OK;
107     }
108     pr("WARNING!  This market issues credit.  If you make more\n");
109     pr("  bids than your treasury can cover at the time of sale,\n");
110     pr("  you can potentially go into financial ruin, and see no\n");
111     pr("  gains.  You have been warned.\n\n");
112     if ((p = getstarg(player->argp[3], "How much per unit: ", buf)) == 0)
113         return RET_SYN;
114     bid = atof(p);
115     if (bid <= 0)
116         return RET_FAIL;
117     if (natp->nat_money < (bid * comm.com_amount * buytax)) {
118         pr("This purchase would cost %.2f, %.2f more than you have.\n",
119            bid * comm.com_amount * buytax,
120            bid * comm.com_amount * buytax - natp->nat_money);
121         return RET_FAIL;
122     }
123 /*  check to see if all of the bids that this player has out plus this new bid
124     would make him go broke.  Ken, I ought to skin you alive for making me code
125     this part up.*/
126     tally = 0.0;
127     for (q = 0; gettrade(q, &tmpt); q++) {
128         if (tmpt.trd_maxbidder == player->cnum &&
129             tmpt.trd_unitid >= 0 && tmpt.trd_owner != player->cnum) {
130             tally += tmpt.trd_price * tradetax;
131         }
132     }
133     for (q = 0; getcomm(q, &comt); q++) {
134         if (comt.com_maxbidder == player->cnum &&
135             comt.com_owner != 0 && comt.com_owner != player->cnum) {
136             tally += (comt.com_price * comt.com_amount) * buytax;
137         }
138     }
139     canspend = natp->nat_money - tally;
140     getcomm(o, &comm);
141     if ((bid * comm.com_amount * buytax) > canspend) {
142         pr("You have overextended yourself in the market\n");
143         pr("You can not bid on the current items at that price.\n");
144         return RET_OK;
145     }
146     if (!(p = getstarg(player->argp[4], "destination sector : ", buf)))
147         return RET_SYN;
148     if (!sarg_xy(p, &x, &y))
149         return RET_SYN;
150     if (!getsect(x, y, &sect)) {
151         pr("Could not access sector");
152         return RET_FAIL;
153     }
154     if ((sect.sct_type != SCT_WAREH && sect.sct_type != SCT_HARBR) ||
155         sect.sct_own != player->cnum) {
156         pr("The destination sector is not one of your warehouses.\n");
157         return RET_FAIL;
158     }
159     if (sect.sct_effic < 60) {
160         pr("That sector is under construction.\n");
161         return RET_FAIL;
162     }
163     ip = whichitem(comm.com_type);
164     n = sect.sct_item[ip->i_vtype];
165     qty = comm.com_amount;
166     if (qty + n > ITEM_MAX) {
167         pr("That sector cannot hold %d more %s. It currently holds %d.\n",
168            qty, ip->i_name, n);
169         return RET_FAIL;
170     }
171     if ((bid * comm.com_amount) > natp->nat_money) {
172         pr("You don't have that much to spend!\n");
173         return RET_FAIL;
174     }
175     getcomm(o, &ncomm);
176     if (!ncomm.com_owner) {
177         pr("That lot has been taken off the market.\n");
178         return RET_FAIL;
179     }
180     if (bid > 0.04 + comm.com_price) {
181         comm.com_price = bid;
182         /* Add five minutes to the time if less than 5 minutes */
183         time(&now);
184         if (((MARK_DELAY - (now - comm.com_markettime)) < 300) &&
185             comm.com_maxbidder != player->cnum) {
186             comm.com_markettime += 300;
187             /* Special case - what if so much time has gone by?  Well,
188                Just reset the markettime  so that only 5 minutes are left */
189             if ((MARK_DELAY - (now - comm.com_markettime)) < 0)
190                 comm.com_markettime = (now - (MARK_DELAY - 300));
191         }
192         comm.com_maxbidder = player->cnum;
193         comm.com_x = x;
194         comm.com_y = y;
195         putcomm(o, &comm);
196         pr("Your bid is being considered.\n");
197     } else {
198         pr("Your bid wasn't high enough (you need to bid at least $0.05 higher\n");
199         pr("than the last bid.\n");
200         return RET_OK;
201     }
202
203     check_market();
204
205     return RET_OK;
206 }
207
208 int
209 check_market(void)
210 {
211     struct comstr comm;
212     struct sctstr *sect;
213     struct ichrstr *ip;
214     struct natstr *natp;
215     int m;
216     int n;
217     time_t now;
218     double tmoney;
219     double tleft;
220     double subleft;
221     double monleft;
222     double gain;
223     double price;
224     struct lonstr loan;
225     long outstanding;           /* Outstanding debt */
226     long couval;                /* Value of country's goods */
227     int foundloan;
228     int j;
229
230 /*    logerror("Checking the market.\n");*/
231     for (n = 0; getcomm(n, &comm); n++) {
232         if (comm.com_maxbidder == comm.com_owner || comm.com_owner == 0)
233             continue;
234         (void)time(&now);
235         tleft = MARK_DELAY / 3600.0 - (now - comm.com_markettime) / 3600.0;
236         if (tleft < 0)
237             tleft = 0;
238         if (tleft > 0.0)
239             continue;
240         ip = whichitem(comm.com_type);
241         sect = getsectp(comm.com_x, comm.com_y);
242         m = sect->sct_item[ip->i_vtype];
243
244         monleft = 0;
245
246         price = comm.com_price * comm.com_amount * buytax;
247         gain = comm.com_price * comm.com_amount;
248
249         natp = getnatp(comm.com_maxbidder);
250         tmoney = natp->nat_money;
251         if (tmoney <= 0)
252             monleft = price;
253         if (tmoney < price && tmoney > 0) {
254             monleft = price - (tmoney - 1);
255             tmoney = 1;
256             price = price - monleft;
257         } else if (tmoney > 0) {
258             monleft = 0;
259             tmoney = tmoney - price;
260         }
261
262         /* Subtract the amount of money that needs to come out in a loan. */
263         subleft = monleft;
264
265         if (opt_LOANS) {
266             /* Try to make a loan for the rest from the owner. */
267             if (monleft > 0 && tmoney > 0) {
268                 if ((float)((float)price / (float)(price + monleft)) < 0.1) {
269                     wu(0, comm.com_maxbidder,
270                        "You need at least 10 percent down to purchase something on credit.\n");
271                 } else {
272                     couval = get_couval(comm.com_maxbidder);
273                     outstanding = get_outstand(comm.com_maxbidder);
274                     couval = couval - outstanding;
275                     if (couval > monleft) {
276                         /*  Make the loan */
277                         foundloan = 0;
278                         for (j = 0; getloan(j, &loan); j++) {
279                             if (loan.l_status != LS_FREE)
280                                 continue;
281                             foundloan = 1;
282                             break;
283                         }
284                         if (!foundloan)
285                             ef_extend(EF_LOAN, 1);
286                         loan.l_status = LS_SIGNED;
287                         loan.l_loner = comm.com_owner;
288                         loan.l_lonee = comm.com_maxbidder;
289                         loan.l_irate = 25;
290                         loan.l_ldur = 4;
291                         loan.l_amtpaid = 0;
292                         loan.l_amtdue = monleft;
293                         time(&loan.l_lastpay);
294                         loan.l_duedate =
295                             (loan.l_ldur * SECS_PER_DAY) + loan.l_lastpay;
296                         loan.l_uid = j;
297                         if (!putloan(j, &loan))
298                             logerror("Error writing to the loan file.\n");
299                         else
300                             monleft = 0;
301                         nreport(comm.com_maxbidder, N_FIN_TROUBLE,
302                                 comm.com_owner, 1);
303                         wu(0, comm.com_maxbidder,
304                            "You just took loan #%d for $%ld to cover the cost of your purchase.\n",
305                            j, loan.l_amtdue);
306                         wu(0, comm.com_owner,
307                            "You just extended loan #%d to %s to help with the purchase cose.\n",
308                            j, cname(comm.com_maxbidder));
309                     } else {
310                         nreport(comm.com_maxbidder, N_CREDIT_JUNK,
311                                 comm.com_owner, 1);
312                         wu(0, comm.com_maxbidder,
313                            "You don't have enough credit to get a loan.\n");
314                         wu(0, comm.com_owner,
315                            "You just turned down a loan to %s.\n",
316                            cname(comm.com_maxbidder));
317                     }
318                 }
319             }
320         }
321
322         if (monleft > 0) {
323             nreport(comm.com_maxbidder, N_WELCH_DEAL, comm.com_owner, 1);
324             wu(0, comm.com_maxbidder,
325                "You didn't have enough cash/credit to cover the cost.\n");
326             wu(0, comm.com_owner,
327                "Sale #%d fell through.  Goods remain on the market.\n", n);
328             comm.com_maxbidder = comm.com_owner;
329         } else if (sect->sct_type != SCT_WAREH
330                    && sect->sct_type != SCT_HARBR) {
331             wu(0, comm.com_maxbidder,
332                "Sector not a warehouse now, sale #%d fell though.\n", n);
333             wu(0, comm.com_owner,
334                "Sale #%d fell through.  Goods remain on the market.\n", n);
335             comm.com_maxbidder = comm.com_owner;
336         } else if (m + comm.com_amount > ITEM_MAX) {
337             wu(0, comm.com_maxbidder,
338                "Warehouse full,  sale #%d fell though.\n", n);
339             wu(0, comm.com_owner,
340                "Sale #%d fell through.  Goods remain on the market.\n", n);
341             comm.com_maxbidder = comm.com_owner;
342         } else {
343             sect->sct_item[ip->i_vtype] = m + comm.com_amount;
344             putsect(sect);
345             nreport(comm.com_owner, N_MAKE_SALE, comm.com_maxbidder, 1);
346             wu(0, comm.com_owner, "%s bought %d %c's from you for $%.2f\n",
347                cname(comm.com_maxbidder), comm.com_amount,
348                comm.com_type, gain);
349             wu(0, comm.com_maxbidder,
350                "You just bought %d %c's from %s for $%.2f\n",
351                comm.com_amount, comm.com_type, cname(comm.com_owner),
352                gain * buytax);
353             natp = getnatp(comm.com_owner);
354             /* Make sure we subtract the amount that came out in a loan */
355             natp->nat_money += (gain - subleft);
356             natp = getnatp(comm.com_maxbidder);
357             natp->nat_money = tmoney;
358             comm.com_owner = 0;
359         }
360         comm.com_owner = 0;
361         putcomm(n, &comm);
362     }
363 /*    logerror("Done checking the market.\n");*/
364     return RET_OK;
365 }