]> git.pond.sub.org Git - empserver/blob - src/lib/commands/scut.c
Fix when scuttle_tradeship() asks for confirmation
[empserver] / src / lib / commands / scut.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  *  scut.c: Scuttle ships, planes or land units
29  * 
30  *  Known contributors to this file:
31  *     
32  */
33
34 #include <config.h>
35
36 #include <ctype.h>
37 #include "commands.h"
38 #include "empobj.h"
39 #include "optlist.h"
40
41 static void scuttle_land(struct lndstr *);
42
43 int
44 scut(void)
45 {
46     struct nstr_item ni;
47     union empobj_storage item;
48     int type;
49     struct mchrstr *mp;
50     char *p;
51     char prompt[128];
52     char buf[1024];
53
54     if (!(p = getstarg(player->argp[1], "Ship, land, or plane? ", buf)))
55         return RET_SYN;
56     switch (*p) {
57     case 's':
58         type = EF_SHIP;
59         break;
60     case 'p':
61         type = EF_PLANE;
62         break;
63     case 'l':
64         type = EF_LAND;
65         break;
66     default:
67         pr("Ships, land units, or planes only! (s, l, p)\n");
68         return RET_SYN;
69     }
70     sprintf(prompt, "%s(s)? ", ef_nameof(type));
71     if ((p = getstarg(player->argp[2], prompt, buf)) == 0)
72         return RET_SYN;
73     if (!snxtitem(&ni, type, p, NULL))
74         return RET_SYN;
75     if (p && (isalpha(*p) || (*p == '*') || (*p == '~') || issector(p)
76               || islist(p))) {
77         char y_or_n[80], bbuf[80];
78
79         if (type == EF_SHIP) {
80             if (*p == '*')
81                 sprintf(bbuf, "all ships");
82             else if (*p == '~')
83                 sprintf(bbuf, "all unassigned ships");
84             else if (issector(p))
85                 sprintf(bbuf, "all ships in %s", p);
86             else if (isalpha(*p))
87                 sprintf(bbuf, "fleet %c", *p);
88             else
89                 sprintf(bbuf, "ships %s", p);
90         } else if (type == EF_LAND) {
91             if (*p == '*')
92                 sprintf(bbuf, "all land units");
93             else if (*p == '~')
94                 sprintf(bbuf, "all unassigned land units");
95             else if (issector(p))
96                 sprintf(bbuf, "all units in %s", p);
97             else if (isalpha(*p))
98                 sprintf(bbuf, "army %c", *p);
99             else
100                 sprintf(bbuf, "units %s", p);
101         } else {
102             if (*p == '*')
103                 sprintf(bbuf, "all planes");
104             else if (*p == '~')
105                 sprintf(bbuf, "all unassigned planes");
106             else if (issector(p))
107                 sprintf(bbuf, "all planes in %s", p);
108             else if (isalpha(*p))
109                 sprintf(bbuf, "wing %c", *p);
110             else
111                 sprintf(bbuf, "planes %s", p);
112         }
113         sprintf(y_or_n, "Really scuttle %s? ", bbuf);
114         if (!confirm(y_or_n))
115             return RET_FAIL;
116     }
117     while (nxtitem(&ni, &item)) {
118         if (!player->owner)
119             continue;
120         if (opt_MARKET) {
121             if (ontradingblock(type, &item.ship)) {
122                 pr("You cannot scuttle an item on the trading block!\n");
123                 continue;
124             }
125         }
126
127         if (type == EF_SHIP) {
128             mp = &mchr[(int)item.ship.shp_type];
129             if (opt_TRADESHIPS) {
130                 if (mp->m_flags & M_TRADE)
131                     if (!scuttle_tradeship(&item.ship, 1))
132                         continue;
133             }
134             scuttle_ship(&item.ship);
135         } else if (type == EF_LAND) {
136             if (item.land.lnd_ship >= 0) {
137                 pr("%s is on a ship, and cannot be scuttled!\n",
138                    prland(&item.land));
139                 continue;
140             }
141             scuttle_land(&item.land);
142         } else {
143             item.plane.pln_effic = 0;
144             putplane(item.plane.pln_uid, &item.plane);
145         }
146         pr("%s scuttled in %s\n",
147            obj_nameof(&item.gen),
148            xyas(item.gen.x, item.gen.y, player->cnum));
149     }
150
151     return RET_OK;
152 }
153
154 int
155 scuttle_tradeship(struct shpstr *sp, int interactive)
156 {
157     float cash = 0;
158     float ally_cash = 0;
159     int dist = -1;
160     struct sctstr sect;
161     struct mchrstr *mp;
162     struct natstr *np;
163     char buf[512];
164     struct natstr *natp;
165
166     mp = &mchr[(int)sp->shp_type];
167     getsect(sp->shp_x, sp->shp_y, &sect);
168     if (sect.sct_own && sect.sct_type == SCT_HARBR && sect.sct_effic >= 2) {
169         dist = mapdist(sp->shp_x, sp->shp_y,
170                        sp->shp_orig_x, sp->shp_orig_y);
171         /* Don't disclose distance to to pirates */
172         if (sp->shp_own == sp->shp_orig_own) {
173             if (interactive)
174                 pr("%s has gone %d sects\n", prship(sp), dist);
175             else
176                 wu(0, sp->shp_own, "%s has gone %d sects\n",
177                    prship(sp), dist);
178         }
179         if (dist < trade_1_dist)
180             cash = 0;
181         else if (dist < trade_2_dist)
182             cash = 1.0 + trade_1 * dist;
183         else if (dist < trade_3_dist)
184             cash = 1.0 + trade_2 * dist;
185         else
186             cash = 1.0 + trade_3 * dist;
187         cash *= mp->m_cost;
188         cash *= sp->shp_effic / 100.0;
189
190         if (sect.sct_own != sp->shp_own) {
191             ally_cash = cash * trade_ally_cut;
192             cash *= (1.0 + trade_ally_bonus);
193         }
194     }
195
196     if (!interactive && cash) {
197         natp = getnatp(sp->shp_own);
198         natp->nat_money += cash;
199         putnat(natp);
200         wu(0, sp->shp_own, "You just made $%d.\n", (int)cash);
201     } else if (!cash && !interactive) {
202         wu(0, sp->shp_own, "Unfortunately, you make $0 on this trade.\n");
203     } else if (cash && interactive) {
204         player->dolcost -= cash;
205     } else if (interactive && (dist < 0 || sp->shp_own == sp->shp_orig_own)) {
206         pr("You won't get any money if you scuttle in %s!",
207            xyas(sp->shp_x, sp->shp_y, player->cnum));
208         sprintf(buf, "Are you sure you want to scuttle %s? ", prship(sp));
209         return confirm(buf);
210     }
211
212     if (ally_cash) {
213         np = getnatp(sect.sct_own);
214         np->nat_money += ally_cash;
215         putnat(np);
216         wu(0, sect.sct_own,
217            "Trade with %s nets you $%d at %s\n",
218            cname(sp->shp_own),
219            (int)ally_cash, xyas(sect.sct_x, sect.sct_y, sect.sct_own));
220         if (sp->shp_own != sp->shp_orig_own)
221             nreport(sp->shp_own, N_PIRATE_TRADE, sp->shp_orig_own, 1);
222         else
223             nreport(sp->shp_own, N_TRADE, sect.sct_own, 1);
224     } else if (sp->shp_own != sp->shp_orig_own)
225         nreport(sp->shp_own, N_PIRATE_KEEP, sp->shp_orig_own, 1);
226
227     return 1;
228 }
229
230 void
231 scuttle_ship(struct shpstr *sp)
232 {
233     struct nstr_item ni;
234     struct sctstr sect;
235     struct plnstr plane;
236     struct lndstr land;
237
238     getsect(sp->shp_x, sp->shp_y, &sect);
239     snxtitem_cargo(&ni, EF_PLANE, EF_SHIP, sp->shp_uid);
240     while (nxtitem(&ni, &plane)) {
241         plane.pln_ship = -1;
242         if (sect.sct_own != sp->shp_own) {
243             wu(0, plane.pln_own, "Plane %d scuttled in %s\n",
244                plane.pln_uid,
245                xyas(plane.pln_x, plane.pln_y, plane.pln_own));
246             plane.pln_effic = 0;
247         } else {
248             wu(0, plane.pln_own,
249                "Plane %d transferred off ship %d to %s\n",
250                plane.pln_uid, sp->shp_uid,
251                xyas(plane.pln_x, plane.pln_y, plane.pln_own));
252         }
253         putplane(plane.pln_uid, &plane);
254     }
255     snxtitem_cargo(&ni, EF_LAND, EF_SHIP, sp->shp_uid);
256     while (nxtitem(&ni, &land)) {
257         land.lnd_ship = -1;
258         if (sect.sct_own == sp->shp_own) {
259             wu(0, land.lnd_own,
260                "Land unit %d transferred off ship %d to %s\n",
261                land.lnd_uid, sp->shp_uid,
262                xyas(land.lnd_x, land.lnd_y, land.lnd_own));
263             putland(land.lnd_uid, &land);
264         } else
265             scuttle_land(&land);
266     }
267     sp->shp_effic = 0;
268     putship(sp->shp_uid, sp);
269 }
270
271 static void
272 scuttle_land(struct lndstr *lp)
273 {
274     struct nstr_item ni;
275     struct sctstr sect;
276     struct plnstr plane;
277     struct lndstr land;
278
279     getsect(lp->lnd_x, lp->lnd_y, &sect);
280     snxtitem_cargo(&ni, EF_PLANE, EF_LAND, lp->lnd_uid);
281     while (nxtitem(&ni, &plane)) {
282         plane.pln_land = -1;
283         if (sect.sct_own != lp->lnd_own) {
284             wu(0, plane.pln_own, "Plane %d scuttled in %s\n",
285                plane.pln_uid,
286                xyas(plane.pln_x, plane.pln_y, plane.pln_own));
287             plane.pln_effic = 0;
288         } else {
289             wu(0, plane.pln_own,
290                "Plane %d transferred off unit %d to %s\n",
291                plane.pln_uid, lp->lnd_uid,
292                xyas(plane.pln_x, plane.pln_y, plane.pln_own));
293         }
294         putplane(plane.pln_uid, &plane);
295     }
296     snxtitem_cargo(&ni, EF_LAND, EF_LAND, lp->lnd_uid);
297     while (nxtitem(&ni, &land)) {
298         land.lnd_land = -1;
299         if (sect.sct_own == lp->lnd_own) {
300             wu(0, land.lnd_own,
301                "Land unit %d transferred off unit %d to %s\n",
302                land.lnd_uid, lp->lnd_uid,
303                xyas(land.lnd_x, land.lnd_y, land.lnd_own));
304             putland(land.lnd_uid, &land);
305         } else
306             scuttle_land(&land);
307     }
308     lp->lnd_effic = 0;
309     putland(lp->lnd_uid, lp);
310 }