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