]> git.pond.sub.org Git - empserver/blob - src/lib/commands/arm.c
Update copyright notice
[empserver] / src / lib / commands / arm.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2012, 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  *  arm.c: Arm planes (missiles) with nuclear devices
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Ken Stevens, 1995
32  *     Steve McClure, 2000
33  *     Markus Armbruster, 2006-2011
34  */
35
36 #include <config.h>
37
38 #include <stdio.h>
39 #include "commands.h"
40 #include "nuke.h"
41 #include "optlist.h"
42 #include "plane.h"
43
44 int
45 arm(void)
46 {
47     struct nchrstr *ncp;
48     struct plchrstr *plc;
49     struct plnstr pl;
50     struct nukstr nuke;
51     char *p;
52     int nukno;
53     struct nstr_item ni;
54     char buf[1024];
55     char prompt[128];
56
57     if (!snxtitem(&ni, EF_PLANE, player->argp[1], NULL))
58         return RET_SYN;
59     while (nxtitem(&ni, &pl)) {
60         if (!player->owner
61             && relations_with(pl.pln_own, player->cnum) != ALLIED)
62             continue;
63         plc = &plchr[(int)pl.pln_type];
64         if ((plc->pl_flags & (P_O | P_N | P_MAR))
65             || (plc->pl_flags & (P_M | P_F)) == (P_M | P_F)) {
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         if (nuke.nuk_x != pl.pln_x || nuke.nuk_y != pl.pln_y) {
106             pr("%s isn't in the same sector as %s!\n",
107                prnuke(&nuke), prplane(&pl));
108             return RET_FAIL;
109         }
110
111         if (*p == 'y' || *p == 'Y')
112             pl.pln_flags |= PLN_AIRBURST;
113         else
114             pl.pln_flags &= ~PLN_AIRBURST;
115         pl.pln_mission = 0;
116
117         snprintf(buf, sizeof(buf), "armed on your %s in %s",
118                  prplane(&pl), xyas(pl.pln_x, pl.pln_y, pl.pln_own));
119         gift(pl.pln_own, player->cnum, &nuke, buf);
120         nuke.nuk_plane = pl.pln_uid;
121         putplane(pl.pln_uid, &pl);
122         putnuke(nuke.nuk_uid, &nuke);
123         pr("%s armed with %s.\n", prplane(&pl), prnuke(&nuke));
124         pr("Warhead on %s is programmed to %s\n",
125            prplane(&pl),
126            pl.pln_flags & PLN_AIRBURST ? "airburst" : "groundburst");
127     }
128
129     return RET_OK;
130 }
131
132 int
133 disarm(void)
134 {
135     struct plnstr pl;
136     struct nukstr nuke;
137     struct nstr_item ni;
138     struct sctstr sect;
139     char buf[128];
140
141     if (!snxtitem(&ni, EF_PLANE, player->argp[1], NULL))
142         return RET_SYN;
143     while (nxtitem(&ni, &pl)) {
144         if (!player->owner)
145             continue;
146         if (!getnuke(nuk_on_plane(&pl), &nuke))
147             continue;
148         if (opt_MARKET) {
149             if (ontradingblock(EF_PLANE, &pl)) {
150                 pr("You cannot disarm %s while it is on the trading block!\n",
151                    prplane(&pl));
152                 return RET_FAIL;
153             }
154         }
155         getsect(nuke.nuk_x, nuke.nuk_y, &sect);
156         if (!player->owner
157             && relations_with(sect.sct_own, player->cnum) != ALLIED) {
158             pr("Disarming %s in sector %s requires an alliance!\n",
159                prplane(&pl), xyas(sect.sct_x, sect.sct_y, player->cnum));
160             continue;
161         }
162         snprintf(buf, sizeof(buf), "unloaded in your %s at %s",
163                  dchr[sect.sct_type].d_name,
164                  xyas(sect.sct_x, sect.sct_y, sect.sct_own));
165         gift(sect.sct_own, player->cnum, &nuke, buf);
166         nuke.nuk_plane = -1;
167         pl.pln_flags &= ~PLN_AIRBURST;
168         putplane(pl.pln_uid, &pl);
169         putnuke(nuke.nuk_uid, &nuke);
170         pr("%s removed from %s and added to %s\n",
171            prnuke(&nuke), prplane(&pl),
172            xyas(pl.pln_x, pl.pln_y, player->cnum));
173     }
174     return RET_OK;
175 }