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