]> 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-2018, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  repa.c: repay loan from a country
28  *
29  *  Known contributors to this file:
30  *
31  */
32
33 #include <config.h>
34
35 #include <math.h>
36 #include "commands.h"
37 #include "loan.h"
38 #include "news.h"
39 #include "optlist.h"
40
41 int
42 repa(void)
43 {
44     struct lonstr loan;
45     struct natstr *natp;
46     struct natstr *loaner;
47     int loan_num;
48     int payment;
49     int newdue;
50     char *cp;
51     time_t now;
52     char buf[1024];
53
54     if (!opt_LOANS) {
55         pr("Loans are not enabled.\n");
56         return RET_FAIL;
57     }
58     natp = getnatp(player->cnum);
59     cp = getstarg(player->argp[1], "Repay loan #? ", buf);
60     if (!cp)
61         return RET_SYN;
62     loan_num = atoi(cp);
63     if (loan_num < 0)
64         return RET_SYN;
65     if (!getloan(loan_num, &loan) || loan.l_lonee != player->cnum
66         || loan.l_status != LS_SIGNED) {
67         pr("You don't owe anything on that loan.\n");
68         return RET_FAIL;
69     }
70     if (!(cp = getstarg(player->argp[2], "amount? ", buf)))
71         return RET_SYN;
72     if (!check_loan_ok(&loan))
73         return RET_FAIL;
74     payment = atoi(cp);
75     if (payment <= 0)
76         return RET_SYN;
77
78     newdue = (int)ceil(loan_owed(&loan, time(&now)) - payment);
79     if (newdue < 0) {
80         pr("You don't owe that much.\n");
81         return RET_FAIL;
82     }
83     if (natp->nat_money < payment) {
84         pr("You only have $%d.\n", natp->nat_money);
85         return RET_FAIL;
86     }
87     player->dolcost += payment;
88     loaner = getnatp(loan.l_loner);
89     loaner->nat_money += payment;
90     putnat(loaner);
91     loan.l_lastpay = now;
92     if (newdue == 0) {
93         wu(0, loan.l_loner, "Country #%d paid off loan #%d with $%d\n",
94            player->cnum, loan_num, payment);
95         nreport(player->cnum, N_REPAY_LOAN, loan.l_loner, 1);
96         loan.l_status = LS_FREE;
97         loan.l_ldur = 0;
98         pr("Congratulations, you've paid off the loan!\n");
99     } else {
100         wu(0, loan.l_loner,
101            "Country #%d paid $%d on loan %d\n",
102            player->cnum, payment, loan_num);
103         loan.l_amtdue = newdue;
104         loan.l_amtpaid += payment;
105     }
106     if (!putloan(loan_num, &loan)) {
107         logerror("repa: can't write loan");
108         pr("Can't save loan; get help!\n");
109         return RET_FAIL;
110     }
111     return RET_OK;
112 }