]> git.pond.sub.org Git - empserver/blob - src/lib/commands/laun.c
Fix and enable collateral damage for missing missiles
[empserver] / src / lib / commands / laun.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, 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  *  laun.c: Launch missiles from land or sea
29  *
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Ken Stevens, 1995
33  *     Steve McClure, 1998-2000
34  *     Markus Armbruster, 2005-2008
35  */
36
37 #include <config.h>
38
39 #include "commands.h"
40 #include "damage.h"
41 #include "mission.h"
42 #include "news.h"
43 #include "nuke.h"
44 #include "optlist.h"
45 #include "path.h"
46 #include "plane.h"
47 #include "ship.h"
48
49 static int launch_as(struct plnstr *pp);
50 static int launch_missile(struct plnstr *pp);
51 static int launch_sat(struct plnstr *pp);
52 static int msl_equip(struct plnstr *, char);
53
54 /*
55  * laun <PLANES>
56  */
57 int
58 laun(void)
59 {
60     struct nstr_item nstr;
61     struct plnstr plane;
62     struct plchrstr *pcp;
63     int retval, gone;
64
65     if (!snxtitem(&nstr, EF_PLANE, player->argp[1], NULL))
66         return RET_SYN;
67     while (nxtitem(&nstr, &plane)) {
68         if (plane.pln_own != player->cnum)
69             continue;
70         pcp = &plchr[(int)plane.pln_type];
71         if ((pcp->pl_flags & (P_M | P_O)) == 0) {
72             pr("%s isn't a missile!\n", prplane(&plane));
73             continue;
74         }
75         if (pcp->pl_flags & P_F) {
76             pr("%s is a surface-to-air missile!\n", prplane(&plane));
77             continue;
78         }
79         if (pcp->pl_flags & P_N) {
80             pr("%s is an anti-ballistic-missile missile!\n",
81                prplane(&plane));
82             continue;
83         }
84         if (pln_is_in_orbit(&plane)) {
85             pr("%s already in orbit!\n", prplane(&plane));
86             continue;
87         }
88         if (opt_MARKET) {
89             if (ontradingblock(EF_PLANE, &plane)) {
90                 pr("plane #%d inelligible - it's for sale.\n",
91                    plane.pln_uid);
92                 continue;
93             }
94         }
95
96         if (plane.pln_effic < 40) {
97             pr("%s is damaged (%d%%)\n", prplane(&plane), plane.pln_effic);
98             continue;
99         }
100         if (!pln_airbase_ok(&plane, 1, 1))
101             continue;
102         pr("%s at %s; range %d, eff %d%%\n", prplane(&plane),
103            xyas(plane.pln_x, plane.pln_y, player->cnum),
104            plane.pln_range, plane.pln_effic);
105         if (!(pcp->pl_flags & P_O)) {
106             retval = launch_missile(&plane);
107             gone = 1;
108         } else if ((pcp->pl_flags & (P_M | P_O)) == (P_M | P_O)) {
109             retval = launch_as(&plane);
110             gone = 1;
111         } else {                /* satellites */
112             retval = launch_sat(&plane);
113             gone = !(plane.pln_flags & PLN_LAUNCHED);
114         }
115         if (retval != RET_OK)
116             return retval;
117         if (gone) {
118             plane.pln_effic = 0;
119             putplane(plane.pln_uid, &plane);
120         }
121     }
122     return RET_OK;
123 }
124
125 /*
126  * Launch anti-sat weapon PP.
127  * Return RET_OK if launched (even when missile explodes),
128  * else RET_SYN or RET_FAIL.
129  */
130 static int
131 launch_as(struct plnstr *pp)
132 {
133     char *cp, buf[1024];
134     struct plnstr plane;
135
136     cp = getstarg(player->argp[2], "Target satellite? ", buf);
137     if (!check_plane_ok(pp))
138         return RET_FAIL;
139     if (!cp || !*cp)
140         return RET_SYN;
141     if (!getplane(atoi(cp), &plane) || !plane.pln_own
142         || !pln_is_in_orbit(&plane)) {
143         pr("No such satellite exists!\n");
144         return RET_FAIL;
145         /* Can be abused to find satellite ids.  Tolerable.  */
146     }
147
148     if (mapdist(pp->pln_x, pp->pln_y, plane.pln_x, plane.pln_y)
149         > pp->pln_range) {
150         pr("Range too great!\n");
151         return RET_FAIL;
152     }
153     if (msl_equip(pp, 'i') < 0)
154         return RET_FAIL;
155     if (msl_launch(pp, EF_PLANE, prplane(&plane),
156                    plane.pln_x, plane.pln_y, plane.pln_own, NULL) < 0)
157         return RET_OK;
158     if (msl_hit(pp, pln_def(&plane), EF_PLANE, 0, 0, 0, plane.pln_own)) {
159         pr("Satellite shot down\n");
160         mpr(plane.pln_own, "%s anti-sat destroyed %s over %s\n",
161             cname(player->cnum), prplane(&plane),
162             xyas(plane.pln_x, plane.pln_y, plane.pln_own));
163         nreport(pp->pln_own, N_SAT_KILL, plane.pln_own, 1);
164         plane.pln_effic = 0;
165         putplane(plane.pln_uid, &plane);
166     }
167     return RET_OK;
168 }
169
170 /*
171  * Launch missile PP.
172  * Return RET_OK if launched (even when missile explodes),
173  * else RET_SYN or RET_FAIL.
174  */
175 static int
176 launch_missile(struct plnstr *pp)
177 {
178     struct plchrstr *pcp = plchr + pp->pln_type;
179     coord sx, sy;
180     int n, dam, sublaunch;
181     char *cp;
182     struct mchrstr *mcp;
183     struct shpstr target_ship;
184     struct sctstr sect;
185     int rel;
186     struct natstr *natp;
187     struct nukstr nuke;
188     char buf[1024];
189
190     if (pcp->pl_flags & P_MAR)
191         cp = getstarg(player->argp[2], "Target ship? ", buf);
192     else
193         cp = getstarg(player->argp[2], "Target sector? ", buf);
194     if (!cp || !*cp)
195         return RET_SYN;
196     if (!check_plane_ok(pp))
197         return RET_FAIL;
198     if (sarg_type(cp) == NS_LIST) {
199         if (!(pcp->pl_flags & P_MAR)) {
200             pr("Missile not designed to attack ships!\n");
201             return RET_FAIL;
202         }
203         n = atoi(cp);
204         if ((n < 0) || !getship(n, &target_ship) ||
205             !target_ship.shp_own) {
206             pr("Bad ship number!\n");
207             return RET_FAIL;
208         }
209         sx = target_ship.shp_x;
210         sy = target_ship.shp_y;
211         mcp = &mchr[(int)target_ship.shp_type];
212         if (mcp->m_flags & M_SUB) {
213             pr("Bad ship number!\n");
214             return RET_FAIL;
215         }
216     } else if (!sarg_xy(cp, &sx, &sy)) {
217         pr("Not a sector!\n");
218         return RET_FAIL;
219     } else {
220         if (pcp->pl_flags & P_MAR) {
221             pr("Missile designed to attack ships!\n");
222             return RET_FAIL;
223         }
224     }
225
226     if (mapdist(pp->pln_x, pp->pln_y, sx, sy) > pp->pln_range) {
227         pr("Range too great; try again!\n");
228         return RET_FAIL;
229     }
230     if (!(pcp->pl_flags & P_MAR)) {
231         if (msl_equip(pp, 's') < 0)
232             return RET_FAIL;
233         getsect(sx, sy, &sect);
234         if (opt_SLOW_WAR) {
235             natp = getnatp(player->cnum);
236             rel = getrel(natp, sect.sct_own);
237             if ((rel != AT_WAR) && (sect.sct_own != player->cnum) &&
238                 (sect.sct_own) && (sect.sct_oldown != player->cnum)) {
239                 pr("You are not at war with the player->owner of the target sector!\n");
240                 pr_beep();
241                 pr("Kaboom!!!\n");
242                 pr("Missile monitoring officer destroys RV before detonation.\n");
243                 return RET_OK;
244             }
245         }
246         if (msl_launch(pp, EF_SECTOR, "sector", sx, sy, sect.sct_own,
247                        &sublaunch) < 0)
248             return RET_OK;
249         if (!msl_hit(pp, SECT_HARDTARGET, EF_SECTOR,
250                      N_SCT_MISS, N_SCT_SMISS, sublaunch, sect.sct_own))
251             CANT_REACH();
252         if (getnuke(nuk_on_plane(pp), &nuke))
253             detonate(&nuke, sx, sy, pp->pln_flags & PLN_AIRBURST);
254         else {
255             dam = pln_damage(pp, 's', 1);
256             pr("did %d damage in %s\n", PERCENT_DAMAGE(dam),
257                xyas(sx, sy, player->cnum));
258             if (sect.sct_own != 0) {
259                 if (sublaunch)
260                     wu(0, sect.sct_own,
261                        "Sub missile attack did %d damage in %s\n",
262                        dam, xyas(sx, sy, sect.sct_own));
263                 else
264                     wu(0, sect.sct_own,
265                        "%s missile attack did %d damage in %s\n",
266                        cname(player->cnum), dam,
267                        xyas(sx, sy, sect.sct_own));
268             }
269             sectdamage(&sect, dam);
270             putsect(&sect);
271         }
272     } else {
273         if (msl_equip(pp, 'p') < 0)
274             return RET_FAIL;
275         if (msl_launch(pp, EF_SHIP, prship(&target_ship),
276                        target_ship.shp_x, target_ship.shp_y,
277                        target_ship.shp_own, &sublaunch) < 0)
278             return RET_OK;
279         if (!msl_hit(pp, shp_hardtarget(&target_ship), EF_SHIP,
280                      N_SHP_MISS, N_SHP_SMISS, sublaunch,
281                      target_ship.shp_own)) {
282             pr("splash\n");
283             dam = pln_damage(pp, 'p', 0);
284             collateral_damage(target_ship.shp_x, target_ship.shp_y, dam);
285             return RET_OK;
286         }
287         dam = pln_damage(pp, 'p', 1);
288         check_retreat_and_do_shipdamage(&target_ship, dam);
289         putship(target_ship.shp_uid, &target_ship);
290         getship(target_ship.shp_uid, &target_ship);
291         if (!target_ship.shp_own)
292             pr("%s sunk!\n", prship(&target_ship));
293     }
294     return RET_OK;
295 }
296
297 /*
298  * Launch a satellite.
299  * Return RET_OK if launched (even when satellite fails),
300  * else RET_SYN or RET_FAIL.
301  */
302 static int
303 launch_sat(struct plnstr *pp)
304 {
305     coord sx, sy;
306     int i;
307     int dist;
308     int dir;
309     char *cp;
310     char *p;
311     char buf[1024];
312
313     pr("\n");
314     cp = getstarg(player->argp[2], "Target sector? ", buf);
315     if (!check_plane_ok(pp))
316         return RET_FAIL;
317     if (!cp || !*cp)
318         return RET_SYN;
319     if (!sarg_xy(cp, &sx, &sy)) {
320         pr("Bad sector designation!\n");
321         return RET_SYN;
322     }
323     if ((dist = mapdist(pp->pln_x, pp->pln_y, sx, sy)) > pp->pln_range) {
324         pr("Range too great; try again!\n");
325         return RET_FAIL;
326     }
327     p = getstring("Geostationary orbit? ", buf);
328     if (!p)
329         return RET_SYN;
330     if (!check_plane_ok(pp))
331         return RET_FAIL;
332     if (msl_equip(pp, 'r') < 0)
333         return RET_FAIL;
334     pp->pln_theta = 0;
335     pp->pln_flags |= PLN_SYNCHRONOUS;
336     if (*p == 0 || *p == 'n')
337         pp->pln_flags &= ~(PLN_SYNCHRONOUS);
338     pr("3... 2... 1... Blastoff!!!\n");
339     if (chance(0.07 + (100 - pp->pln_effic) / 100.0)) {
340         pr("KABOOOOM!  Range safety officer detonates booster!\n");
341         pp->pln_effic = 0;
342         return RET_OK;
343     }
344     i = pp->pln_tech + pp->pln_effic;
345     if (chance(1.0 - (i / (i + 50.0)))) {
346         dir = (random() % 6) + 1;
347         sx = xnorm(sx + diroff[dir][0]);
348         sy = ynorm(sy + diroff[dir][1]);
349         pr("Your trajectory was a little off.\n");
350     }
351     nreport(player->cnum, N_LAUNCH, 0, 1);
352     if (msl_asat_intercept(pp, sx, sy))
353         return RET_OK;
354     pp->pln_x = sx;
355     pp->pln_y = sy;
356     CANT_HAPPEN(pp->pln_flags & PLN_LAUNCHED);
357     pp->pln_flags |= PLN_LAUNCHED;
358     pp->pln_mobil = pp->pln_mobil > dist ? pp->pln_mobil - dist : 0;
359     putplane(pp->pln_uid, pp);
360     pr("%s positioned over %s, will be ready for use in %d time units\n",
361        prplane(pp), xyas(sx, sy, player->cnum),
362        plane_mob_max - pp->pln_mobil);
363     return RET_OK;
364 }
365
366 static int
367 msl_equip(struct plnstr *pp, char mission)
368 {
369     struct plist pl;
370
371     memset(&pl, 0, sizeof(struct plist));
372     pl.pcp = plchr + pp->pln_type;
373     pl.plane = *pp;
374     return pln_equip(&pl, NULL, mission);
375 }