]> git.pond.sub.org Git - empserver/blob - src/lib/commands/scut.c
Fix buffer overflow in scrap and scuttle
[empserver] / src / lib / commands / scut.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, 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  *  scut.c: Scuttle ships, planes or land units
28  *
29  *  Known contributors to this file:
30  *     Markus Armbruster, 2004-2012
31  */
32
33 #include <config.h>
34
35 #include <ctype.h>
36 #include "commands.h"
37 #include "news.h"
38 #include "optlist.h"
39 #include "unit.h"
40
41 int
42 scut(void)
43 {
44     struct nstr_item ni;
45     union empobj_storage item;
46     int type, n;
47     struct mchrstr *mp;
48     char *p;
49     char prompt[128];
50     char buf[1024];
51     struct sctstr sect;
52
53     if (!(p = getstarg(player->argp[1], "Ship, land, or plane? ", buf)))
54         return RET_SYN;
55     switch (*p) {
56     case 's':
57         type = EF_SHIP;
58         break;
59     case 'p':
60         type = EF_PLANE;
61         break;
62     case 'l':
63         type = EF_LAND;
64         break;
65     default:
66         pr("Ships, land units, or planes only! (s, l, p)\n");
67         return RET_SYN;
68     }
69
70     if (!snxtitem(&ni, type, player->argp[2], NULL))
71         return RET_SYN;
72     n = 0;
73     while (nxtitem(&ni, &item)) {
74         if (!player->owner)
75             continue;
76         n++;
77     }
78     snprintf(prompt, sizeof(prompt), "Really scuttle %d %s%s [n]? ",
79                             n, ef_nameof(type), splur(n));
80     if (!confirm(prompt))
81         return RET_FAIL;
82
83     snxtitem_rewind(&ni);
84     while (nxtitem(&ni, &item)) {
85         if (!player->owner)
86             continue;
87         if (opt_MARKET) {
88             if (ontradingblock(type, &item.ship)) {
89                 pr("You cannot scuttle an item on the trading block!\n");
90                 continue;
91             }
92         }
93
94         if (type == EF_SHIP) {
95             mp = &mchr[(int)item.ship.shp_type];
96             if (mp->m_flags & M_TRADE) {
97                 if (!scuttle_tradeship(&item.ship, 1))
98                     continue;
99             }
100         } else if (type == EF_LAND) {
101             if (item.land.lnd_ship >= 0) {
102                 pr("%s is on a ship, and cannot be scuttled!\n",
103                    prland(&item.land));
104                 continue;
105             }
106         }
107         pr("%s scuttled in %s\n",
108            unit_nameof(&item.gen),
109            xyas(item.gen.x, item.gen.y, player->cnum));
110         getsect(item.gen.x, item.gen.y, &sect);
111         if (sect.sct_own == item.gen.own)
112             unit_drop_cargo(&item.gen, sect.sct_own);
113         item.gen.effic = 0;
114         put_empobj(type, item.gen.uid, &item.gen);
115     }
116
117     return RET_OK;
118 }
119
120 int
121 scuttle_tradeship(struct shpstr *sp, int interactive)
122 {
123     float cash = 0;
124     float ally_cash = 0;
125     int dist = -1;
126     struct sctstr sect;
127     struct mchrstr *mp;
128     struct natstr *np;
129     char buf[512];
130     struct natstr *natp;
131
132     mp = &mchr[(int)sp->shp_type];
133     getsect(sp->shp_x, sp->shp_y, &sect);
134     if (sect.sct_own && sect.sct_type == SCT_HARBR && sect.sct_effic >= 2
135         && relations_with(sect.sct_own, sp->shp_own) >= FRIENDLY) {
136         dist = mapdist(sp->shp_x, sp->shp_y,
137                        sp->shp_orig_x, sp->shp_orig_y);
138         /* Don't disclose distance to to pirates */
139         if (sp->shp_own == sp->shp_orig_own)
140             mpr(sp->shp_own, "%s has gone %d sects\n", prship(sp), dist);
141         if (dist < trade_1_dist)
142             cash = 0;
143         else if (dist < trade_2_dist)
144             cash = 1.0 + trade_1 * dist;
145         else if (dist < trade_3_dist)
146             cash = 1.0 + trade_2 * dist;
147         else
148             cash = 1.0 + trade_3 * dist;
149         cash *= mp->m_cost;
150         cash *= sp->shp_effic / 100.0;
151
152         if (sect.sct_own != sp->shp_own) {
153             ally_cash = cash * trade_ally_cut;
154             cash *= (1.0 + trade_ally_bonus);
155         }
156     }
157
158     if (!cash && (dist < 0 || sp->shp_own == sp->shp_orig_own)) {
159         if (interactive) {
160             pr("You won't get any money if you scuttle in %s!",
161                xyas(sp->shp_x, sp->shp_y, player->cnum));
162             sprintf(buf, "Are you sure you want to scuttle %s? ", prship(sp));
163             return confirm(buf);
164         } else
165             return 0;
166     }
167
168     if (interactive) {
169         player->dolcost -= cash;
170     } else {
171         natp = getnatp(sp->shp_own);
172         natp->nat_money += cash;
173         putnat(natp);
174         wu(0, sp->shp_own, "You just made $%d.\n", (int)cash);
175     }
176
177     if (ally_cash) {
178         np = getnatp(sect.sct_own);
179         np->nat_money += ally_cash;
180         putnat(np);
181         wu(0, sect.sct_own,
182            "Trade with %s nets you $%d at %s\n",
183            cname(sp->shp_own),
184            (int)ally_cash, xyas(sect.sct_x, sect.sct_y, sect.sct_own));
185         if (sp->shp_own != sp->shp_orig_own)
186             nreport(sp->shp_own, N_PIRATE_TRADE, sp->shp_orig_own, 1);
187         else
188             nreport(sp->shp_own, N_TRADE, sect.sct_own, 1);
189     } else if (sp->shp_own != sp->shp_orig_own)
190         nreport(sp->shp_own, N_PIRATE_KEEP, sp->shp_orig_own, 1);
191
192     return 1;
193 }