]> git.pond.sub.org Git - empserver/blob - src/lib/commands/coll.c
Fix trailing whitespace
[empserver] / src / lib / commands / coll.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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  *  coll.c: Collet on a loan
29  *
30  *  Known contributors to this file:
31  *     Pat Loney, 1992
32  *     Steve McClure, 1996-2000
33  */
34
35 #include <config.h>
36
37 #include "commands.h"
38 #include "item.h"
39 #include "loan.h"
40 #include "lost.h"
41 #include "news.h"
42 #include "optlist.h"
43
44 int
45 coll(void)
46 {
47     int arg;
48     int i;
49     int val;
50     time_t now;
51     char *p;
52     struct lonstr loan;
53     struct sctstr sect;
54     coord x, y;
55     double owed;
56     double pay;
57     char buf[1024];
58
59     if (!opt_LOANS) {
60         pr("Loans are not enabled.\n");
61         return RET_FAIL;
62     }
63     if ((arg = onearg(player->argp[1], "Collect on loan # ")) < 0)
64         return RET_SYN;
65     /* Check if it's a valid loan.  That means, is it a valid loan,
66        owed to this player, with a valid duration and it's been signed. */
67     if (!getloan(arg, &loan) || (loan.l_loner != player->cnum) ||
68         (loan.l_ldur == 0) || (loan.l_status != LS_SIGNED)) {
69         pr("You aren't owed anything on that loan...\n");
70         return RET_FAIL;
71     }
72     /* If we got here, we check to see if it's been defaulted on.  We
73        already know it's owed to this player. */
74     owed = loan_owed(&loan, time(&now));
75     if (now <= loan.l_duedate) {
76         pr("There has been no default on loan %d\n", arg);
77         return RET_FAIL;
78     }
79
80     pr("You are owed $%.2f on that loan.\n", owed);
81     if (!(p = getstarg(player->argp[2],
82                        "What sector do you wish to confiscate? ", buf)))
83         return RET_SYN;
84     if (!check_loan_ok(&loan))
85         return RET_FAIL;
86     if (!sarg_xy(p, &x, &y) || !getsect(x, y, &sect))
87         return RET_SYN;
88     if (!neigh(x, y, player->cnum)) {
89         pr("You are not adjacent to %s\n", xyas(x, y, player->cnum));
90         return RET_FAIL;
91     }
92     if (sect.sct_own != loan.l_lonee) {
93         pr("%s is not owned by %s.\n",
94            xyas(x, y, player->cnum), cname(loan.l_lonee));
95         return RET_FAIL;
96     }
97     pay = dchr[sect.sct_type].d_value * (sect.sct_effic + 100.0);
98     for (i = 0; ichr[i].i_name; i++) {
99         if (ichr[i].i_value == 0 || ichr[i].i_uid == I_NONE)
100             continue;
101         val = sect.sct_item[ichr[i].i_uid];
102         pay += val * ichr[i].i_value;
103     }
104     pr("That sector (and its contents) is valued at $%.2f\n", pay);
105     if (pay > owed * 1.2) {
106         pr("That is more than is owed!\n");
107         return RET_FAIL;
108     }
109     sect.sct_item[I_MILIT] = 1; /* FIXME now where did this guy come from? */
110
111     /*
112      * Used to call takeover() here a long time ago, but that does
113      * unwanted things, like generate che.
114      */
115     sect.sct_own = player->cnum;
116
117     memset(sect.sct_dist, 0, sizeof(sect.sct_dist));
118     memset(sect.sct_del, 0, sizeof(sect.sct_del));
119     sect.sct_off = 1;
120     sect.sct_dist_x = sect.sct_x;
121     sect.sct_dist_y = sect.sct_y;
122
123     if (sect.sct_type == SCT_CAPIT || sect.sct_type == SCT_MOUNT)
124         caploss(&sect, loan.l_lonee, "that was %s's capital!\n");
125     putsect(&sect);
126     nreport(player->cnum, N_SEIZE_SECT, loan.l_lonee, 1);
127     owed = loan_owed(&loan, time(&now));
128     if (pay >= owed) {
129         loan.l_status = LS_FREE;
130         loan.l_ldur = 0;
131         nreport(loan.l_lonee, N_REPAY_LOAN, player->cnum, 1);
132         wu(0, loan.l_lonee,
133            "%s seized %s to satisfy loan #%d\n",
134            cname(player->cnum),
135            xyas(sect.sct_x, sect.sct_y, loan.l_lonee), arg);
136         pr("That loan is now considered repaid.\n");
137     } else {
138         (void)time(&loan.l_lastpay);
139         owed -= pay;
140         loan.l_amtdue = (long)owed;
141         pay += loan.l_amtpaid;
142         loan.l_amtpaid = pay;
143         wu(0, loan.l_lonee,
144            "%s seized %s in partial payment of loan %d.\n",
145            cname(player->cnum),
146            xyas(sect.sct_x, sect.sct_y, loan.l_lonee), arg);
147         pr("You are still owed $%.2f on loan %d.\n", owed, arg);
148     }
149     putloan(arg, &loan);
150     return RET_OK;
151 }