]> git.pond.sub.org Git - empserver/blob - src/lib/commands/arm.c
42e2430708a8e7afb013fde6b928a9ffeaaac3ae
[empserver] / src / lib / commands / arm.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, 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  *  arm.c: Arm planes (missiles) with nuclear devices
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Ken Stevens, 1995
33  *     Steve McClure, 2000
34  *     Markus Armbruster, 2006
35  */
36
37 #include <config.h>
38
39 #include <stdio.h>
40 #include "commands.h"
41 #include "nuke.h"
42 #include "optlist.h"
43 #include "plane.h"
44
45 int
46 arm(void)
47 {
48     struct nchrstr *ncp;
49     struct plchrstr *plc;
50     struct plnstr pl;
51     struct nukstr nuke;
52     char *p;
53     int nukno;
54     struct nstr_item ni;
55     char buf[1024];
56     char prompt[128];
57
58     if (!snxtitem(&ni, EF_PLANE, player->argp[1]))
59         return RET_SYN;
60     while (nxtitem(&ni, &pl)) {
61         if (!player->owner
62             && getrel(getnatp(pl.pln_own), player->cnum) != ALLIED)
63             continue;
64         plc = &plchr[(int)pl.pln_type];
65         if ((plc->pl_flags & (P_O | P_M)) == (P_O | P_M)) {
66             pr("A %s cannot carry nuclear devices!\n", plc->pl_name);
67             return RET_FAIL;
68         }
69         if (opt_MARKET) {
70             if (ontradingblock(EF_PLANE, &pl)) {
71                 pr("You cannot arm %s while it is on the trading block!\n",
72                    prplane(&pl));
73                 return RET_FAIL;
74             }
75         }
76         if (pl.pln_nuketype < 0) {
77             sprintf(prompt, "Nuclear device for %s: ", prplane(&pl));
78             p = getstarg(player->argp[2], prompt, buf);
79             if (!p || !*p)
80                 return RET_SYN;
81             if (!check_plane_ok(&pl))
82                 return RET_FAIL;
83             nukno = atoi(p);
84             if (!getnuke(nukno, &nuke) || !player->owner)
85                 return RET_FAIL;
86         } else {
87             if (nuk_on_plane(&nuke, pl.pln_uid) < 0) {
88                 CANT_REACH();
89                 continue;
90             }
91         }
92         ncp = &nchr[nuke.nuk_type];
93         if (pl.pln_load < ncp->n_weight) {
94             pr("A %s cannot carry %s devices!\n",
95                plc->pl_name, ncp->n_name);
96             return RET_FAIL;
97         }
98         p = getstarg(player->argp[3], "Airburst [n]? ", buf);
99
100         if (!check_plane_ok(&pl) || !check_nuke_ok(&nuke))
101             return RET_FAIL;
102
103         if (nuke.nuk_plane >= 0 && nuke.nuk_plane != pl.pln_uid) {
104             pr("%s is already armed on plane #%d!\n",
105                prnuke(&nuke), nuke.nuk_plane);
106             return RET_FAIL;
107         }
108
109         if (p && (*p == 'y' || *p == 'Y'))
110             pl.pln_flags |= PLN_AIRBURST;
111         else
112             pl.pln_flags &= ~PLN_AIRBURST;
113
114         snprintf(buf, sizeof(buf), "armed on your %s in %s",
115                  prplane(&pl), xyas(pl.pln_x, pl.pln_y, pl.pln_own));
116         gift(pl.pln_own, player->cnum, &nuke, buf);
117         pl.pln_nuketype = nuke.nuk_type;
118         nuke.nuk_plane = pl.pln_uid;
119         putplane(pl.pln_uid, &pl);
120         putnuke(nuke.nuk_uid, &nuke);
121         pr("%s armed with %s.\n", prplane(&pl), prnuke(&nuke));
122         pr("Warhead on %s is programmed to %s\n",
123            prplane(&pl),
124            pl.pln_flags & PLN_AIRBURST ? "airburst" : "groundburst");
125     }
126
127     return RET_OK;
128 }
129
130 int
131 disarm(void)
132 {
133     struct plnstr pl;
134     struct nukstr nuke;
135     struct nstr_item ni;
136     struct sctstr sect;
137     char buf[128];
138
139     if (!snxtitem(&ni, EF_PLANE, player->argp[1]))
140         return RET_SYN;
141     while (nxtitem(&ni, &pl)) {
142         if (!player->owner)
143             continue;
144         if (pl.pln_nuketype == -1)
145             continue;
146         if (opt_MARKET) {
147             if (ontradingblock(EF_PLANE, &pl)) {
148                 pr("You cannot disarm %s while it is on the trading block!\n",
149                    prplane(&pl));
150                 return RET_FAIL;
151             }
152         }
153         if (nuk_on_plane(&nuke, pl.pln_uid) < 0) {
154             CANT_REACH();
155             continue;
156         }
157         getsect(nuke.nuk_x, nuke.nuk_y, &sect);
158         if (!player->owner
159             && getrel(getnatp(sect.sct_own), player->cnum) != ALLIED) {
160             pr("Disarming %s in sector %s requires an alliance!\n",
161                prplane(&pl), xyas(sect.sct_x, sect.sct_y, player->cnum));
162             continue;
163         }
164         snprintf(buf, sizeof(buf), "unloaded in your %s at %s",
165                  dchr[sect.sct_type].d_name,
166                  xyas(sect.sct_x, sect.sct_y, sect.sct_own));
167         gift(sect.sct_own, player->cnum, &nuke, buf);
168         nuke.nuk_plane = -1;
169         pl.pln_nuketype = -1;
170         pl.pln_flags &= ~PLN_AIRBURST;
171         putplane(pl.pln_uid, &pl);
172         putnuke(nuke.nuk_uid, &nuke);
173         pr("%s removed from %s and added to %s\n",
174            prnuke(&nuke), prplane(&pl),
175            xyas(pl.pln_x, pl.pln_y, player->cnum));
176     }
177     return RET_OK;
178 }