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