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