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