]> git.pond.sub.org Git - empserver/blob - src/lib/commands/arm.c
Enable the new nuk_on_plane(), replacing the old one
[empserver] / src / lib / commands / arm.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  *  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-2008
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], NULL))
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 (!getnuke(nuk_on_plane(&pl), &nuke)) {
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         }
87         ncp = &nchr[nuke.nuk_type];
88         if (pln_load(&pl) < ncp->n_weight) {
89             pr("A %s cannot carry %s devices!\n",
90                plc->pl_name, ncp->n_name);
91             return RET_FAIL;
92         }
93         p = getstarg(player->argp[3], "Airburst [n]? ", buf);
94         if (!p)
95             return RET_FAIL;
96
97         if (!check_plane_ok(&pl) || !check_nuke_ok(&nuke))
98             return RET_FAIL;
99
100         if (nuke.nuk_plane >= 0 && nuke.nuk_plane != pl.pln_uid) {
101             pr("%s is already armed on plane #%d!\n",
102                prnuke(&nuke), nuke.nuk_plane);
103             return RET_FAIL;
104         }
105
106         if (*p == 'y' || *p == 'Y')
107             pl.pln_flags |= PLN_AIRBURST;
108         else
109             pl.pln_flags &= ~PLN_AIRBURST;
110
111         snprintf(buf, sizeof(buf), "armed on your %s in %s",
112                  prplane(&pl), xyas(pl.pln_x, pl.pln_y, pl.pln_own));
113         gift(pl.pln_own, player->cnum, &nuke, buf);
114         pl.pln_nuketype = nuke.nuk_type;
115         nuke.nuk_plane = pl.pln_uid;
116         putplane(pl.pln_uid, &pl);
117         putnuke(nuke.nuk_uid, &nuke);
118         pr("%s armed with %s.\n", prplane(&pl), prnuke(&nuke));
119         pr("Warhead on %s is programmed to %s\n",
120            prplane(&pl),
121            pl.pln_flags & PLN_AIRBURST ? "airburst" : "groundburst");
122     }
123
124     return RET_OK;
125 }
126
127 int
128 disarm(void)
129 {
130     struct plnstr pl;
131     struct nukstr nuke;
132     struct nstr_item ni;
133     struct sctstr sect;
134     char buf[128];
135
136     if (!snxtitem(&ni, EF_PLANE, player->argp[1], NULL))
137         return RET_SYN;
138     while (nxtitem(&ni, &pl)) {
139         if (!player->owner)
140             continue;
141         if (!getnuke(nuk_on_plane(&pl), &nuke))
142             continue;
143         if (opt_MARKET) {
144             if (ontradingblock(EF_PLANE, &pl)) {
145                 pr("You cannot disarm %s while it is on the trading block!\n",
146                    prplane(&pl));
147                 return RET_FAIL;
148             }
149         }
150         getsect(nuke.nuk_x, nuke.nuk_y, &sect);
151         if (!player->owner
152             && getrel(getnatp(sect.sct_own), player->cnum) != ALLIED) {
153             pr("Disarming %s in sector %s requires an alliance!\n",
154                prplane(&pl), xyas(sect.sct_x, sect.sct_y, player->cnum));
155             continue;
156         }
157         snprintf(buf, sizeof(buf), "unloaded in your %s at %s",
158                  dchr[sect.sct_type].d_name,
159                  xyas(sect.sct_x, sect.sct_y, sect.sct_own));
160         gift(sect.sct_own, player->cnum, &nuke, buf);
161         nuke.nuk_plane = -1;
162         pl.pln_nuketype = -1;
163         pl.pln_flags &= ~PLN_AIRBURST;
164         putplane(pl.pln_uid, &pl);
165         putnuke(nuke.nuk_uid, &nuke);
166         pr("%s removed from %s and added to %s\n",
167            prnuke(&nuke), prplane(&pl),
168            xyas(pl.pln_x, pl.pln_y, player->cnum));
169     }
170     return RET_OK;
171 }