]> git.pond.sub.org Git - empserver/blob - src/lib/commands/fina.c
COPYING duplicates information from README. Remove. Move GPL from
[empserver] / src / lib / commands / fina.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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  *  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 <config.h>
36
37 #include <math.h>
38 #include "misc.h"
39 #include "player.h"
40 #include "loan.h"
41 #include "file.h"
42 #include "xy.h"
43 #include "nsc.h"
44 #include "nat.h"
45 #include "commands.h"
46 #include "optlist.h"
47
48 /*
49  * format: fina
50  */
51 int
52 fina(void)
53 {
54     struct lonstr loan;
55     struct nstr_item ni;
56     time_t now;
57
58     if (!opt_LOANS) {
59         pr("Loans are not enabled.\n");
60         return RET_FAIL;
61     }
62     if (!snxtitem(&ni, EF_LOAN, "*"))
63         return RET_SYN;
64     (void)time(&now);
65     pr("\n");
66     pr("             -= Empire Financial Status Report =- \n");
67     pr("                  ");
68     prdate();
69     pr("Loan       From            To        Rate   Dur     Paid      Total\n");
70     while (nxtitem(&ni, &loan)) {
71         if (loan.l_status != LS_SIGNED)
72             continue;
73         pr(" %-2d  (%3d) %-8.8s  (%3d) %-8.8s  ", ni.cur,
74            loan.l_loner, cname(loan.l_loner),
75            loan.l_lonee, cname(loan.l_lonee));
76         pr("%3d%%   %3d    %5ld    %7.0f",
77            loan.l_irate, loan.l_ldur, loan.l_amtpaid,
78            ceil(loan_owed(&loan, now)));
79         if (now > loan.l_duedate)
80             pr(" (in arrears)\n");
81         else
82             pr("\n");
83     }
84     pr("\n");
85     return RET_OK;
86 }