]> 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-2010, 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-2009
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_N | P_MAR))
66             || (plc->pl_flags & (P_M | P_F)) == (P_M | P_F)) {
67             pr("A %s cannot carry nuclear devices!\n", plc->pl_name);
68             return RET_FAIL;
69         }
70         if (opt_MARKET) {
71             if (ontradingblock(EF_PLANE, &pl)) {
72                 pr("You cannot arm %s while it is on the trading block!\n",
73                    prplane(&pl));
74                 return RET_FAIL;
75             }
76         }
77         if (!getnuke(nuk_on_plane(&pl), &nuke)) {
78             sprintf(prompt, "Nuclear device for %s: ", prplane(&pl));
79             p = getstarg(player->argp[2], prompt, buf);
80             if (!p || !*p)
81                 return RET_SYN;
82             if (!check_plane_ok(&pl))
83                 return RET_FAIL;
84             nukno = atoi(p);
85             if (!getnuke(nukno, &nuke) || !player->owner)
86                 return RET_FAIL;
87         }
88         ncp = &nchr[nuke.nuk_type];
89         if (pln_load(&pl) < ncp->n_weight) {
90             pr("A %s cannot carry %s devices!\n",
91                plc->pl_name, ncp->n_name);
92             return RET_FAIL;
93         }
94         p = getstarg(player->argp[3], "Airburst [n]? ", buf);
95         if (!p)
96             return RET_FAIL;
97
98         if (!check_plane_ok(&pl) || !check_nuke_ok(&nuke))
99             return RET_FAIL;
100
101         if (nuke.nuk_plane >= 0 && nuke.nuk_plane != pl.pln_uid) {
102             pr("%s is already armed on plane #%d!\n",
103                prnuke(&nuke), nuke.nuk_plane);
104             return RET_FAIL;
105         }
106
107         if (*p == 'y' || *p == 'Y')
108             pl.pln_flags |= PLN_AIRBURST;
109         else
110             pl.pln_flags &= ~PLN_AIRBURST;
111         pl.pln_mission = 0;
112
113         snprintf(buf, sizeof(buf), "armed on your %s in %s",
114                  prplane(&pl), xyas(pl.pln_x, pl.pln_y, pl.pln_own));
115         gift(pl.pln_own, player->cnum, &nuke, buf);
116         nuke.nuk_plane = pl.pln_uid;
117         putplane(pl.pln_uid, &pl);
118         putnuke(nuke.nuk_uid, &nuke);
119         pr("%s armed with %s.\n", prplane(&pl), prnuke(&nuke));
120         pr("Warhead on %s is programmed to %s\n",
121            prplane(&pl),
122            pl.pln_flags & PLN_AIRBURST ? "airburst" : "groundburst");
123     }
124
125     return RET_OK;
126 }
127
128 int
129 disarm(void)
130 {
131     struct plnstr pl;
132     struct nukstr nuke;
133     struct nstr_item ni;
134     struct sctstr sect;
135     char buf[128];
136
137     if (!snxtitem(&ni, EF_PLANE, player->argp[1], NULL))
138         return RET_SYN;
139     while (nxtitem(&ni, &pl)) {
140         if (!player->owner)
141             continue;
142         if (!getnuke(nuk_on_plane(&pl), &nuke))
143             continue;
144         if (opt_MARKET) {
145             if (ontradingblock(EF_PLANE, &pl)) {
146                 pr("You cannot disarm %s while it is on the trading block!\n",
147                    prplane(&pl));
148                 return RET_FAIL;
149             }
150         }
151         getsect(nuke.nuk_x, nuke.nuk_y, &sect);
152         if (!player->owner
153             && getrel(getnatp(sect.sct_own), player->cnum) != ALLIED) {
154             pr("Disarming %s in sector %s requires an alliance!\n",
155                prplane(&pl), xyas(sect.sct_x, sect.sct_y, player->cnum));
156             continue;
157         }
158         snprintf(buf, sizeof(buf), "unloaded in your %s at %s",
159                  dchr[sect.sct_type].d_name,
160                  xyas(sect.sct_x, sect.sct_y, sect.sct_own));
161         gift(sect.sct_own, player->cnum, &nuke, buf);
162         nuke.nuk_plane = -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 }