]> git.pond.sub.org Git - empserver/blob - src/lib/commands/shark.c
Update copyright notice.
[empserver] / src / lib / commands / shark.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, 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  *  shark.c: Transfer a loan by buying it out
29  * 
30  *  Known contributors to this file:
31  *     Pat Loney, 1992
32  *     Steve McClure, 1996-2000
33  */
34
35 #include <math.h>
36 #include "misc.h"
37 #include "file.h"
38 #include "loan.h"
39 #include "nat.h"
40 #include "xy.h"
41 #include "player.h"
42 #include "commands.h"
43 #include "optlist.h"
44
45 int
46 shark(void)
47 {
48     int arg;
49     time_t now;
50     char *p;
51     struct lonstr loan;
52     struct natstr *natp;
53     struct natstr *oldie;
54     double owed;
55     long payment;
56     char buf[1024];
57
58     if (!opt_LOANS) {
59         pr("Loans are not enabled.\n");
60         return RET_FAIL;
61     }
62     p = getstarg(player->argp[1], "Transfer which loan #: ", buf);
63     if (p == 0)
64         return RET_SYN;
65     if (*p == 0)
66         return RET_SYN;
67     arg = atoi(p);
68     if (arg < 0)
69         return RET_SYN;
70     /* Check if it's a valid loan to shark.  That means, is it a valid loan,
71        not owed to this player, with a valid duration and it's been signed. */
72     if (!getloan(arg, &loan) || (loan.l_loner == player->cnum) ||
73         (loan.l_ldur == 0) || (loan.l_status != LS_SIGNED)) {
74         pr("Invalid loan\n");
75         return RET_FAIL;
76     }
77     /* If we got here, we check to see if it's been defaulted on. */
78     owed = loan_owed(&loan, time(&now));
79     if (now <= loan.l_duedate) {
80         pr("There has been no default on loan %d\n", arg);
81         return RET_FAIL;
82     }
83     pr("That loan is worth $%.2f.\n", owed);
84     natp = getnatp(player->cnum);
85     payment = (long)ceil(owed * (1.0 + loan.l_irate / 100.0));
86     if (payment > natp->nat_money - 100.0) {
87         pr("You do not have enough to cover that loan\n");
88         return RET_FAIL;
89     } else {
90         wu(0, loan.l_lonee,
91            "%s bought loan #%d.  You now owe him!\n",
92            cname(player->cnum), arg);
93         wu(0, loan.l_loner,
94            "%s bought loan #%d out from under you for %ld\n",
95            cname(player->cnum), arg, payment);
96         pr("You now own loan #%d.  Go break some legs.\n", arg);
97     }
98     oldie = getnatp(loan.l_loner);
99     oldie->nat_money += payment;
100     player->dolcost += payment;
101     loan.l_loner = player->cnum;
102     putloan(arg, &loan);
103     return RET_OK;
104 }