]> git.pond.sub.org Git - empserver/blob - src/lib/commands/fina.c
Import of Empire 4.2.12
[empserver] / src / lib / commands / fina.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  *  fina.c: Financial report on current status of loans to countries
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Steve McClure, 1996
33  */
34
35 #include <math.h>
36 #include "misc.h"
37 #include "player.h"
38 #include "loan.h"
39 #include "file.h"
40 #include "xy.h"
41 #include "nsc.h"
42 #include "nat.h"
43 #include "commands.h"
44 #include "optlist.h"
45
46 /*
47  * format: fina
48  */
49 int
50 fina(void)
51 {
52         struct  lonstr loan;
53         struct  nstr_item ni;
54       time_t  now;
55         int     rdur;
56         int     xdur;
57         double  rate;
58         double  amt;
59       time_t  due;
60       time_t  last;
61
62         if (!opt_LOANS) {
63             pr("Loans are not enabled.\n");
64             return RET_FAIL;
65         }
66         (void)time(&now);
67         pr("\n");
68         pr("             -= Empire Financial Status Report =- \n");
69         pr("                  ");
70         prdate();
71         pr("Loan       From            To        Rate   Dur     Paid      Total\n");
72         snxtitem(&ni, EF_LOAN, "*");
73         while (nxtitem(&ni, (s_char *)&loan)) {
74                 if (loan.l_status != LS_SIGNED)
75                         continue;
76                 due = loan.l_duedate;
77                 last = loan.l_lastpay;
78                 rdur = 0;
79                 xdur = 0;
80                 if (now < due) {
81                         rdur = now - last;
82                         xdur = 0;
83                 }
84                 if (last < due && due < now) {
85                         rdur = due - last;
86                         xdur = now - due;
87                 }
88                 if (due < last) {
89                         rdur = 0;
90                         xdur = now - last;
91                 }
92                 if (loan.l_ldur == 0) {
93                         logerror("loan #%d has zero duration", ni.cur);
94                         continue;
95                 }
96                 rate = loan.l_irate / (loan.l_ldur * 8640000.0);
97
98 /* changed following to avoid overflow 3/27/89 bailey@math-cs.kent.edu
99                 amt = (rdur * rate + xdur * rate * 2.0 + 1.0) * loan.l_amtdue;
100    Begin overflow fix */
101                 amt = (rdur * rate + xdur * rate * 2.0 + 1.0);
102                 if (((1 << 30) / amt) < loan.l_amtdue)
103                         amt = (1 << 30);
104                 else
105                         amt *= loan.l_amtdue;
106 /* End overflow fix */
107
108                 pr(" %-2d  (%3d) %-8.8s  (%3d) %-8.8s  ", ni.cur,
109                        loan.l_loner, cname(loan.l_loner),
110                        loan.l_lonee, cname(loan.l_lonee));
111                 pr("%3d%%   %3d    %5d    %7d",
112                        loan.l_irate, loan.l_ldur, loan.l_amtpaid, (int) amt);
113                 if (now > loan.l_duedate)
114                         pr(" (in arrears)\n");
115                 else
116                         pr("\n");
117         }
118         pr("\n");
119         return RET_OK;
120 }