]> git.pond.sub.org Git - empserver/blob - src/lib/subs/disloan.c
Use gcc function attribute `format' to catch bad format strings. Fix
[empserver] / src / lib / subs / disloan.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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  *  disloan.c: Display a loan
29  * 
30  *  Known contributors to this file:
31  *     Pat Loney, 1992
32  *     Steve McClure, 1996
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 "misc.h"
47 #include "player.h"
48 #include "loan.h"
49 #include "nat.h"
50 #include "file.h"
51 #include "prototypes.h"
52
53 int
54 disloan(int n, register struct lonstr *loan)
55 {
56     time_t now;
57     time_t due;
58     time_t lastpaydate;
59     time_t normaltime;
60     time_t doubletime;
61     time_t accept;
62     double rate;
63     double owe;
64
65     if (loan->l_status == LS_FREE)
66         return 0;
67     if (loan->l_ldur == 0)
68         return 0;
69     if (loan->l_loner != player->cnum && loan->l_lonee != player->cnum)
70         return 0;
71     (void)time(&now);
72     pr("\nLoan #%d from %s to", n, cname(loan->l_loner));
73     pr(" %s\n", cname(loan->l_lonee));
74     if (loan->l_status == LS_PROPOSED) {
75         pr("(proposed) principal=$%ld interest rate=%d%%",
76            loan->l_amtdue, loan->l_irate);
77         pr(" duration(days)=%d\n", loan->l_ldur);
78         if (loan->l_duedate < now) {
79             loan->l_status = LS_FREE;
80             putloan(n, loan);
81             pr("This offer has expired\n");
82             return 0;
83         }
84         accept = loan->l_lastpay + loan->l_ldur * SECS_PER_DAY;
85         pr("Loan must be accepted by %s", ctime(&accept));
86         return 1;
87     }
88     due = loan->l_duedate;
89     lastpaydate = loan->l_lastpay;
90     if (now < due) {
91         normaltime = now - lastpaydate;
92         doubletime = 0;
93     }
94     if (lastpaydate < due && due < now) {
95         normaltime = due - lastpaydate;
96         doubletime = now - due;
97     }
98     if (due < lastpaydate) {
99         normaltime = 0;
100         doubletime = now - lastpaydate;
101     }
102     rate = ((double)loan->l_irate / 100.0) / (loan->l_ldur * SECS_PER_DAY);
103     owe = ((double)loan->l_amtdue *
104            (((double)normaltime * rate + 1.0) +
105             ((double)doubletime * rate * 2.0))) + 0.5;
106     pr("Amount paid to date $%ld\n", loan->l_amtpaid);
107     pr("Amount due (if paid now) $%.2f", owe);
108     if (doubletime == 0) {
109         pr(" (if paid on due date) $%.2f\n",
110            loan->l_amtdue * ((due - lastpaydate) * rate + 1.0));
111         pr("Due date is %s", ctime(&loan->l_duedate));
112     } else
113         pr(" ** In Arrears **\n");
114     return 1;
115 }