]> git.pond.sub.org Git - empserver/blob - src/lib/commands/fina.c
62de6ab051658591f8927a7281e888a597b69915
[empserver] / src / lib / commands / fina.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2015, 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  *  fina.c: Financial report on current status of loans to countries
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Steve McClure, 1996
32  */
33
34 #include <config.h>
35
36 #include <math.h>
37 #include "commands.h"
38 #include "loan.h"
39 #include "optlist.h"
40
41 /*
42  * format: fina
43  */
44 int
45 fina(void)
46 {
47     struct lonstr loan;
48     struct nstr_item ni;
49     time_t now;
50
51     if (!opt_LOANS) {
52         pr("Loans are not enabled.\n");
53         return RET_FAIL;
54     }
55     if (!snxtitem(&ni, EF_LOAN, "*", NULL))
56         return RET_SYN;
57     (void)time(&now);
58     pr("\n");
59     pr("             -= Empire Financial Status Report =-\n");
60     pr("                  ");
61     prdate();
62     pr("Loan       From            To        Rate   Dur     Paid      Total\n");
63     while (nxtitem(&ni, &loan)) {
64         if (loan.l_status != LS_SIGNED)
65             continue;
66         pr(" %-2d  (%3d) %-8.8s  (%3d) %-8.8s  ", ni.cur,
67            loan.l_loner, cname(loan.l_loner),
68            loan.l_lonee, cname(loan.l_lonee));
69         pr("%3d%%   %3d    %5d    %7.0f",
70            loan.l_irate, loan.l_ldur, loan.l_amtpaid,
71            ceil(loan_owed(&loan, now)));
72         if (now > loan.l_duedate)
73             pr(" (in arrears)\n");
74         else
75             pr("\n");
76     }
77     pr("\n");
78     return RET_OK;
79 }