]> git.pond.sub.org Git - empserver/blob - src/lib/commands/offe.c
Purge the register keyword.
[empserver] / src / lib / commands / offe.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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  *  offe.c: Offer a loan or treaty
29  * 
30  *  Known contributors to this file:
31  *     Pat Loney, 1992
32  *     Steve McClure, 1996
33  */
34
35 #include <config.h>
36
37 #include "misc.h"
38 #include "player.h"
39 #include "xy.h"
40 #include "nsc.h"
41 #include "nat.h"
42 #include "loan.h"
43 #include "treaty.h"
44 #include "file.h"
45 #include "commands.h"
46 #include "optlist.h"
47
48 static int do_treaty(void);
49 static int do_loan(void);
50
51 int
52 offe(void)
53 {
54     char *cp;
55     char buf[1024];
56
57     if (!(cp = getstarg(player->argp[1], "loan or treaty? ", buf)) || !*cp)
58         return RET_SYN;
59
60     switch (*cp) {
61     case 'l':
62         if (!opt_LOANS) {
63             pr("Loans are not enabled.\n");
64             return RET_FAIL;
65         }
66         return do_loan();
67     case 't':
68         if (!opt_TREATIES) {
69             pr("Treaties are not enabled.\n");
70             return RET_FAIL;
71         }
72         return do_treaty();
73     default:
74         pr("You must specify \"loan\" as there are no treaties.\n");
75         return RET_SYN;
76     }
77 }
78
79 static int
80 do_treaty(void)
81 {
82     char *cp;
83     int ourcond, theircond;
84     struct symbol *tfp;
85     struct trtstr trty;
86     struct nstr_item nstr;
87     natid recipient;
88     time_t now;
89     int j, n;
90     struct natstr *natp;
91     char prompt[128];
92     char buf[1024];
93
94     if ((n = natarg(player->argp[2], "Treaty offered to? ")) < 0)
95         return RET_SYN;
96     recipient = n;
97     if (recipient == player->cnum) {
98         pr("You can't sign a treaty with yourself!\n");
99         return RET_FAIL;
100     }
101     natp = getnatp(recipient);
102     if (player->cnum && (getrejects(player->cnum, natp) & REJ_TREA)) {
103         pr("%s is rejecting your treaties.\n", cname(recipient));
104         return RET_SYN;
105     }
106     pr("Terms for %s:\n", cname(recipient));
107     theircond = 0;
108     for (tfp = treaty_flags; tfp && tfp->name; tfp++) {
109         sprintf(prompt, "%s? ", tfp->name);
110         if ((cp = getstring(prompt, buf)) == 0)
111             return RET_FAIL;
112         if (*cp == 'y')
113             theircond |= tfp->value;
114     }
115     pr("Terms for you:\n");
116     ourcond = 0;
117     for (tfp = treaty_flags; tfp && tfp->name; tfp++) {
118         sprintf(prompt, "%s? ", tfp->name);
119         if ((cp = getstring(prompt, buf)) == 0)
120             return RET_FAIL;
121         if (*cp == 'y')
122             ourcond |= tfp->value;
123     }
124     if (ourcond == 0 && theircond == 0) {
125         pr("Treaties with no clauses aren't very useful, boss!\n");
126         return RET_SYN;
127     }
128     cp = getstring("Proposed treaty duration? (days) ", buf);
129     if (cp == 0)
130         return RET_FAIL;
131     j = atoi(cp);
132     if (j <= 0) {
133         pr("Bad treaty duration.\n");
134         return RET_SYN;
135     }
136     (void)time(&now);
137     snxtitem_all(&nstr, EF_TREATY);
138     while (nxtitem(&nstr, &trty)) {
139         if (trty.trt_status == TS_FREE) {
140             break;
141         }
142     }
143     trty.ef_type = EF_TREATY;
144     trty.trt_uid = nstr.cur;
145     trty.trt_acond = ourcond;
146     trty.trt_bcond = theircond;
147     trty.trt_status = TS_PROPOSED;
148     trty.trt_cna = player->cnum;
149     trty.trt_cnb = recipient;
150     trty.trt_exp = j * SECS_PER_DAY + now;
151     if (!puttre(nstr.cur, &trty)) {
152         pr("Couldn't save treaty; get help.\n");
153         return RET_SYS;
154     }
155     wu(0, recipient, "Treaty #%d proposed to you by %s\n",
156        nstr.cur, cname(player->cnum));
157     pr("You have proposed treaty #%d\n", nstr.cur);
158     return RET_OK;
159 }
160
161 static int
162 do_loan(void)
163 {
164     int amt, irate, dur, maxloan;
165     struct nstr_item nstr;
166     struct natstr *natp;
167     struct lonstr loan;
168     natid recipient;
169     int n;
170     char prompt[128];
171
172     if ((n = natarg(player->argp[2], "Lend to? ")) < 0)
173         return RET_SYN;
174     recipient = n;
175     if (recipient == player->cnum) {
176         pr("You can't loan yourself money!\n");
177         return RET_FAIL;
178     }
179     natp = getnatp(recipient);
180     if (player->cnum && (getrejects(player->cnum, natp) & REJ_LOAN)) {
181         pr("%s is rejecting your loans.\n", cname(recipient));
182         return RET_SYN;
183     }
184     natp = getnatp(player->cnum);
185     if (natp->nat_money + 100 > MAXLOAN)
186         maxloan = MAXLOAN;
187     else
188         maxloan = natp->nat_money - 100;
189     if (maxloan < 0) {
190         pr("You don't have enough money to loan!\n");
191         return RET_FAIL;
192     }
193     sprintf(prompt, "Size of loan for country #%d? (max %d) ",
194             recipient, maxloan);
195     amt = onearg(player->argp[3], prompt);
196     if (amt <= 0)
197         return RET_FAIL;
198     if (amt > MAXLOAN) {
199         pr("You can only loan $%d at a time.\n", MAXLOAN);
200         return RET_FAIL;
201     }
202     if (amt > maxloan) {
203         pr("You can't afford that much.\n");
204         return RET_FAIL;
205     }
206     dur = onearg(player->argp[4], "Duration? (days, max 7) ");
207     if (dur <= 0)
208         return RET_FAIL;
209     if (dur > 7)
210         return RET_FAIL;
211     irate = onearg(player->argp[5], "Interest rate? (from 5 to 25%) ");
212     if (irate > 25)
213         return RET_FAIL;
214     if (irate < 5)
215         return RET_FAIL;
216     snxtitem_all(&nstr, EF_LOAN);
217     while (nxtitem(&nstr, &loan)) {
218         if ((loan.l_status == LS_SIGNED) && (loan.l_lonee == player->cnum)
219             && (loan.l_loner == recipient)) {
220             pr("You already owe HIM money - how about repaying your loan?\n");
221             return RET_FAIL;
222         }
223     }
224     snxtitem_all(&nstr, EF_LOAN);
225     while (nxtitem(&nstr, &loan)) {
226         if (loan.l_status == LS_FREE)
227             break;
228     }
229     loan.l_loner = player->cnum;
230     loan.l_lonee = recipient;
231     loan.l_status = LS_PROPOSED;
232     loan.l_irate = MIN(irate, 127);
233     loan.l_ldur = MIN(dur, 127);
234     loan.l_amtpaid = 0;
235     loan.l_amtdue = amt;
236     (void)time(&loan.l_lastpay);
237     loan.l_duedate = loan.l_ldur * SECS_PER_DAY + loan.l_lastpay;
238     loan.l_uid = nstr.cur;
239     if (!putloan(nstr.cur, &loan)) {
240         pr("Couldn't save loan; get help!\n");
241         return RET_SYS;
242     }
243     pr("You have offered loan %d\n", nstr.cur);
244     wu(0, recipient, "Country #%d has offered you a loan (#%d)\n",
245        player->cnum, nstr.cur);
246     return RET_OK;
247 }