]> git.pond.sub.org Git - empserver/blob - src/lib/commands/scut.c
9454f3e28edc44133a7641633ccde903e8a79b9f
[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             mpr(sp->shp_own, "%s has gone %d sects\n", prship(sp), dist);
174         if (dist < trade_1_dist)
175             cash = 0;
176         else if (dist < trade_2_dist)
177             cash = 1.0 + trade_1 * dist;
178         else if (dist < trade_3_dist)
179             cash = 1.0 + trade_2 * dist;
180         else
181             cash = 1.0 + trade_3 * dist;
182         cash *= mp->m_cost;
183         cash *= sp->shp_effic / 100.0;
184
185         if (sect.sct_own != sp->shp_own) {
186             ally_cash = cash * trade_ally_cut;
187             cash *= (1.0 + trade_ally_bonus);
188         }
189     }
190
191     if (!cash && (dist < 0 || sp->shp_own == sp->shp_orig_own)) {
192         if (interactive) {
193             pr("You won't get any money if you scuttle in %s!",
194                xyas(sp->shp_x, sp->shp_y, player->cnum));
195             sprintf(buf, "Are you sure you want to scuttle %s? ", prship(sp));
196             return confirm(buf);
197         } else
198             return 0;
199     }
200
201     if (interactive) {
202         player->dolcost -= cash;
203     } else {
204         natp = getnatp(sp->shp_own);
205         natp->nat_money += cash;
206         putnat(natp);
207         wu(0, sp->shp_own, "You just made $%d.\n", (int)cash);
208     }
209
210     if (ally_cash) {
211         np = getnatp(sect.sct_own);
212         np->nat_money += ally_cash;
213         putnat(np);
214         wu(0, sect.sct_own,
215            "Trade with %s nets you $%d at %s\n",
216            cname(sp->shp_own),
217            (int)ally_cash, xyas(sect.sct_x, sect.sct_y, sect.sct_own));
218         if (sp->shp_own != sp->shp_orig_own)
219             nreport(sp->shp_own, N_PIRATE_TRADE, sp->shp_orig_own, 1);
220         else
221             nreport(sp->shp_own, N_TRADE, sect.sct_own, 1);
222     } else if (sp->shp_own != sp->shp_orig_own)
223         nreport(sp->shp_own, N_PIRATE_KEEP, sp->shp_orig_own, 1);
224
225     return 1;
226 }
227
228 void
229 scuttle_ship(struct shpstr *sp)
230 {
231     struct nstr_item ni;
232     struct sctstr sect;
233     struct plnstr plane;
234     struct lndstr land;
235
236     getsect(sp->shp_x, sp->shp_y, &sect);
237     snxtitem_cargo(&ni, EF_PLANE, EF_SHIP, sp->shp_uid);
238     while (nxtitem(&ni, &plane)) {
239         plane.pln_ship = -1;
240         if (sect.sct_own != sp->shp_own) {
241             wu(0, plane.pln_own, "Plane %d scuttled in %s\n",
242                plane.pln_uid,
243                xyas(plane.pln_x, plane.pln_y, plane.pln_own));
244             plane.pln_effic = 0;
245         } else {
246             wu(0, plane.pln_own,
247                "Plane %d transferred off ship %d to %s\n",
248                plane.pln_uid, sp->shp_uid,
249                xyas(plane.pln_x, plane.pln_y, plane.pln_own));
250         }
251         putplane(plane.pln_uid, &plane);
252     }
253     snxtitem_cargo(&ni, EF_LAND, EF_SHIP, sp->shp_uid);
254     while (nxtitem(&ni, &land)) {
255         land.lnd_ship = -1;
256         if (sect.sct_own == sp->shp_own) {
257             wu(0, land.lnd_own,
258                "Land unit %d transferred off ship %d to %s\n",
259                land.lnd_uid, sp->shp_uid,
260                xyas(land.lnd_x, land.lnd_y, land.lnd_own));
261             putland(land.lnd_uid, &land);
262         } else
263             scuttle_land(&land);
264     }
265     sp->shp_effic = 0;
266     putship(sp->shp_uid, sp);
267 }
268
269 static void
270 scuttle_land(struct lndstr *lp)
271 {
272     struct nstr_item ni;
273     struct sctstr sect;
274     struct plnstr plane;
275     struct lndstr land;
276
277     getsect(lp->lnd_x, lp->lnd_y, &sect);
278     snxtitem_cargo(&ni, EF_PLANE, EF_LAND, lp->lnd_uid);
279     while (nxtitem(&ni, &plane)) {
280         plane.pln_land = -1;
281         if (sect.sct_own != lp->lnd_own) {
282             wu(0, plane.pln_own, "Plane %d scuttled in %s\n",
283                plane.pln_uid,
284                xyas(plane.pln_x, plane.pln_y, plane.pln_own));
285             plane.pln_effic = 0;
286         } else {
287             wu(0, plane.pln_own,
288                "Plane %d transferred off unit %d to %s\n",
289                plane.pln_uid, lp->lnd_uid,
290                xyas(plane.pln_x, plane.pln_y, plane.pln_own));
291         }
292         putplane(plane.pln_uid, &plane);
293     }
294     snxtitem_cargo(&ni, EF_LAND, EF_LAND, lp->lnd_uid);
295     while (nxtitem(&ni, &land)) {
296         land.lnd_land = -1;
297         if (sect.sct_own == lp->lnd_own) {
298             wu(0, land.lnd_own,
299                "Land unit %d transferred off unit %d to %s\n",
300                land.lnd_uid, lp->lnd_uid,
301                xyas(land.lnd_x, land.lnd_y, land.lnd_own));
302             putland(land.lnd_uid, &land);
303         } else
304             scuttle_land(&land);
305     }
306     lp->lnd_effic = 0;
307     putland(lp->lnd_uid, lp);
308 }