]> git.pond.sub.org Git - empserver/blob - src/lib/commands/repa.c
Update copyright notice.
[empserver] / src / lib / commands / repa.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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  *  repa.c: repay loan from a country
29  * 
30  *  Known contributors to this file:
31  *     
32  */
33
34 #include <math.h>
35 #include "misc.h"
36 #include "player.h"
37 #include "nat.h"
38 #include "loan.h"
39 #include "news.h"
40 #include "file.h"
41 #include "commands.h"
42 #include "optlist.h"
43
44 int
45 repa(void)
46 {
47     struct lonstr loan;
48     struct natstr *natp;
49     struct natstr *loaner;
50     int loan_num;
51     int payment;
52     long newdue;
53     char *cp;
54     time_t now;
55     char buf[1024];
56
57     if (!opt_LOANS) {
58         pr("Loans are not enabled.\n");
59         return RET_FAIL;
60     }
61     natp = getnatp(player->cnum);
62     cp = getstarg(player->argp[1], "Repay loan #? ", buf);
63     if (cp == 0)
64         return RET_SYN;
65     loan_num = atoi(cp);
66     if (loan_num < 0)
67         return RET_SYN;
68     if (!getloan(loan_num, &loan) || loan.l_lonee != player->cnum
69         || loan.l_status != LS_SIGNED) {
70         pr("You don't owe anything on that loan.\n");
71         return RET_FAIL;
72     }
73     if ((cp = getstarg(player->argp[2], "amount? ", buf)) == 0)
74         return RET_SYN;
75     if (!check_loan_ok(&loan))
76         return RET_FAIL;
77     payment = atoi(cp);
78     if (payment <= 0)
79         return RET_SYN;
80
81     newdue = (long)ceil(loan_owed(&loan, time(&now)) - payment);
82     if (newdue < 0) {
83         pr("You don't owe that much.\n");
84         return RET_FAIL;
85     }
86     if (natp->nat_money < payment) {
87         pr("You only have $%ld.\n", natp->nat_money);
88         return RET_FAIL;
89     }
90     player->dolcost += payment;
91     loaner = getnatp(loan.l_loner);
92     loaner->nat_money += payment;
93     putnat(loaner);
94     loan.l_lastpay = now;
95     if (newdue == 0) {
96         wu(0, loan.l_loner, "Country #%d paid off loan #%d with $%d\n",
97            player->cnum, loan_num, payment);
98         nreport(player->cnum, N_REPAY_LOAN, loan.l_loner, 1);
99         loan.l_status = LS_FREE;
100         loan.l_ldur = 0;
101         pr("Congratulations, you've paid off the loan!\n");
102     } else {
103         wu(0, loan.l_loner,
104            "Country #%d paid $%d on loan %d\n",
105            player->cnum, payment, loan_num);
106         loan.l_amtdue = newdue;
107         loan.l_amtpaid += payment;
108     }
109     if (!putloan(loan_num, &loan)) {
110         pr("Can't save loan; get help!\n");
111         return RET_SYS;
112     }
113     return RET_OK;
114 }