]> git.pond.sub.org Git - empserver/blob - src/lib/subs/disloan.c
050c083c494a799df187ca44d00183a7bb6802be
[empserver] / src / lib / subs / disloan.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2013, 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  *  disloan.c: Display a loan
28  *
29  *  Known contributors to this file:
30  *     Pat Loney, 1992
31  *     Steve McClure, 1996
32  */
33
34 /*
35  * Display a loan; there's a lot of stuff going
36  * on here to figure out how much people owe.
37  * It would be nice to change loans to work on
38  * some kind of payment plan...like house payments
39  * and such, where the bucks just get paid up each
40  * update or so.
41  *
42  * I'd have made this more like treaty if I weren't
43  * so disgusted with how it works.
44  */
45
46 #include <config.h>
47
48 #include "file.h"
49 #include "loan.h"
50 #include "nat.h"
51 #include "player.h"
52 #include "prototypes.h"
53
54 int
55 disloan(int n, struct lonstr *loan)
56 {
57     time_t now;
58     time_t accept;
59
60     if (loan->l_status == LS_FREE)
61         return 0;
62     if (loan->l_ldur == 0)
63         return 0;
64     if (loan->l_loner != player->cnum && loan->l_lonee != player->cnum)
65         return 0;
66     (void)time(&now);
67     pr("\nLoan #%d from %s to", n, cname(loan->l_loner));
68     pr(" %s\n", cname(loan->l_lonee));
69     if (loan->l_status == LS_PROPOSED) {
70         pr("(proposed) principal=$%ld interest rate=%d%%",
71            loan->l_amtdue, loan->l_irate);
72         pr(" duration(days)=%d\n", loan->l_ldur);
73         if (loan->l_duedate < now) {
74             loan->l_status = LS_FREE;
75             putloan(n, loan);
76             pr("This offer has expired\n");
77             return 0;
78         }
79         accept = loan->l_lastpay + loan->l_ldur * SECS_PER_DAY;
80         pr("Loan must be accepted by %s", ctime(&accept));
81         return 1;
82     }
83
84     pr("Amount paid to date $%ld\n", loan->l_amtpaid);
85     pr("Amount due (if paid now) $%.2f", loan_owed(loan, now));
86     if (now <= loan->l_duedate) {
87         pr(" (if paid on due date) $%.2f\n",
88            loan_owed(loan, loan->l_duedate));
89         pr("Due date is %s", ctime(&loan->l_duedate));
90     } else
91         pr(" ** In Arrears **\n");
92     return 1;
93 }