]> git.pond.sub.org Git - empserver/blob - src/lib/subs/disloan.c
Update copyright notice.
[empserver] / src / lib / subs / disloan.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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, struct lonstr *loan)
55 {
56     time_t now;
57     time_t accept;
58
59     if (loan->l_status == LS_FREE)
60         return 0;
61     if (loan->l_ldur == 0)
62         return 0;
63     if (loan->l_loner != player->cnum && loan->l_lonee != player->cnum)
64         return 0;
65     (void)time(&now);
66     pr("\nLoan #%d from %s to", n, cname(loan->l_loner));
67     pr(" %s\n", cname(loan->l_lonee));
68     if (loan->l_status == LS_PROPOSED) {
69         pr("(proposed) principal=$%ld interest rate=%d%%",
70            loan->l_amtdue, loan->l_irate);
71         pr(" duration(days)=%d\n", loan->l_ldur);
72         if (loan->l_duedate < now) {
73             loan->l_status = LS_FREE;
74             putloan(n, loan);
75             pr("This offer has expired\n");
76             return 0;
77         }
78         accept = loan->l_lastpay + loan->l_ldur * SECS_PER_DAY;
79         pr("Loan must be accepted by %s", ctime(&accept));
80         return 1;
81     }
82
83     pr("Amount paid to date $%ld\n", loan->l_amtpaid);
84     pr("Amount due (if paid now) $%.2f", loan_owed(loan, now));
85     if (now <= loan->l_duedate) {
86         pr(" (if paid on due date) $%.2f\n",
87            loan_owed(loan, loan->l_duedate));
88         pr("Due date is %s", ctime(&loan->l_duedate));
89     } else
90         pr(" ** In Arrears **\n");
91     return 1;
92 }