]> git.pond.sub.org Git - empserver/blob - src/lib/commands/laun.c
Make anti-sat launch consistent with interception
[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 "optlist.h"
44 #include "path.h"
45 #include "plane.h"
46 #include "ship.h"
47
48 static int launch_as(struct plnstr *pp);
49 static int launch_missile(struct plnstr *pp, int sublaunch);
50 static int launch_sat(struct plnstr *pp, int sublaunch);
51
52 /*
53  * laun <PLANES>
54  */
55 int
56 laun(void)
57 {
58     struct nstr_item nstr;
59     struct plnstr plane;
60     struct shpstr ship;
61     int sublaunch;
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         sublaunch = 0;
103         if (plane.pln_ship >= 0) {
104             getship(plane.pln_ship, &ship);
105             if (mchr[(int)ship.shp_type].m_flags & M_SUB)
106                 sublaunch = 1;
107         }
108         pr("%s at %s; range %d, eff %d%%\n", prplane(&plane),
109            xyas(plane.pln_x, plane.pln_y, player->cnum),
110            plane.pln_range, plane.pln_effic);
111         if (!(pcp->pl_flags & P_O)) {
112             retval = launch_missile(&plane, sublaunch);
113             gone = 1;
114         } else if ((pcp->pl_flags & (P_M | P_O)) == (P_M | P_O)) {
115             retval = launch_as(&plane);
116             gone = 1;
117         } else {                /* satellites */
118             retval = launch_sat(&plane, sublaunch);
119             gone = !(plane.pln_flags & PLN_LAUNCHED);
120         }
121         if (retval != RET_OK)
122             return retval;
123         if (gone) {
124             plane.pln_effic = 0;
125             putplane(plane.pln_uid, &plane);
126         }
127     }
128     return RET_OK;
129 }
130
131 /*
132  * Launch anti-sat weapon PP.
133  * Return RET_OK if launched (even when missile explodes),
134  * else RET_SYN or RET_FAIL.
135  */
136 static int
137 launch_as(struct plnstr *pp)
138 {
139     char *cp, buf[1024];
140     struct plnstr plane;
141
142     cp = getstarg(player->argp[2], "Target satellite? ", buf);
143     if (!check_plane_ok(pp))
144         return RET_FAIL;
145     if (!cp || !*cp)
146         return RET_SYN;
147     if (!getplane(atoi(cp), &plane) || !plane.pln_own
148         || !pln_is_in_orbit(&plane)) {
149         pr("No such satellite exists!\n");
150         return RET_FAIL;
151         /* Can be abused to find satellite ids.  Tolerable.  */
152     }
153
154     if (mapdist(pp->pln_x, pp->pln_y, plane.pln_x, plane.pln_y)
155         > pp->pln_range) {
156         pr("Range too great!\n");
157         return RET_FAIL;
158     }
159     if (msl_equip(pp, 'i') < 0) {
160         pr("%s not enough petrol or shells!\n", prplane(pp));
161         return RET_FAIL;
162     }
163     if (msl_hit(pp, pln_def(&plane), EF_PLANE, N_SAT_KILL, N_SAT_KILL,
164                 prplane(&plane), plane.pln_x, plane.pln_y, plane.pln_own)) {
165         pr("Satellite shot down\n");
166         mpr(plane.pln_own, "%s anti-sat destroyed %s over %s\n",
167             cname(player->cnum), prplane(&plane),
168             xyas(plane.pln_x, plane.pln_y, plane.pln_own));
169         plane.pln_effic = 0;
170         putplane(plane.pln_uid, &plane);
171     }
172     return RET_OK;
173 }
174
175 /*
176  * Launch missile PP.
177  * If SUBLAUNCH, it's sub-launched.
178  * Return RET_OK if launched (even when missile explodes),
179  * else RET_SYN or RET_FAIL.
180  */
181 static int
182 launch_missile(struct plnstr *pp, int sublaunch)
183 {
184     struct plchrstr *pcp = plchr + pp->pln_type;
185     coord sx, sy;
186     int n, dam;
187     char *cp;
188     struct mchrstr *mcp;
189     struct shpstr target_ship;
190     struct sctstr sect;
191     int nukedam;
192     int rel;
193     struct natstr *natp;
194     char buf[1024];
195
196     if (pcp->pl_flags & P_MAR)
197         cp = getstarg(player->argp[2], "Target ship? ", buf);
198     else
199         cp = getstarg(player->argp[2], "Target sector? ", buf);
200     if (!cp || !*cp)
201         return RET_SYN;
202     if (!check_plane_ok(pp))
203         return RET_FAIL;
204     if (sarg_type(cp) == NS_LIST) {
205         if (!(pcp->pl_flags & P_MAR)) {
206             pr("Missile not designed to attack ships!\n");
207             return RET_FAIL;
208         }
209         n = atoi(cp);
210         if ((n < 0) || !getship(n, &target_ship) ||
211             !target_ship.shp_own) {
212             pr("Bad ship number!\n");
213             return RET_FAIL;
214         }
215         sx = target_ship.shp_x;
216         sy = target_ship.shp_y;
217         mcp = &mchr[(int)target_ship.shp_type];
218         if (mcp->m_flags & M_SUB) {
219             pr("Bad ship number!\n");
220             return RET_FAIL;
221         }
222     } else if (!sarg_xy(cp, &sx, &sy)) {
223         pr("Not a sector!\n");
224         return RET_FAIL;
225     } else {
226         if (pcp->pl_flags & P_MAR) {
227             pr("Missile designed to attack ships!\n");
228             return RET_FAIL;
229         }
230     }
231
232     if (mapdist(pp->pln_x, pp->pln_y, sx, sy) > pp->pln_range) {
233         pr("Range too great; try again!\n");
234         return RET_FAIL;
235     }
236     if (msl_equip(pp, 'p') < 0) {
237         pr("%s not enough shells!\n", prplane(pp));
238         return RET_FAIL;
239     }
240     if (!(pcp->pl_flags & P_MAR)) {
241         getsect(sx, sy, &sect);
242         if (opt_SLOW_WAR) {
243             natp = getnatp(player->cnum);
244             rel = getrel(natp, sect.sct_own);
245             if ((rel != AT_WAR) && (sect.sct_own != player->cnum) &&
246                 (sect.sct_own) && (sect.sct_oldown != player->cnum)) {
247                 pr("You are not at war with the player->owner of the target sector!\n");
248                 pr_beep();
249                 pr("Kaboom!!!\n");
250                 pr("Missile monitoring officer destroys RV before detonation.\n");
251                 return RET_OK;
252             }
253         }
254         if (!msl_hit(pp, SECT_HARDTARGET, EF_SECTOR, N_SCT_MISS,
255                      N_SCT_SMISS, "sector", sx, sy, sect.sct_own)) {
256 #if 0
257             /*
258              * FIXME want collateral damage on miss (which can't
259              * happen for nuclear war heads), but we get here too when
260              * launch fails or missile is intercepted
261              */
262             dam = pln_damage(pp, sect.sct_x, sect.sct_y, 's', &nukedam, 0);
263             collateral_damage(sect.sct_x, sect.sct_y, dam, 0);
264 #endif
265             return RET_OK;
266         }
267         dam = pln_damage(pp, sect.sct_x, sect.sct_y, 's', &nukedam, 1);
268         if (!nukedam) {
269             pr("did %d damage in %s\n", PERCENT_DAMAGE(dam),
270                xyas(sx, sy, player->cnum));
271             if (sect.sct_own != 0) {
272                 if (sublaunch)
273                     wu(0, sect.sct_own,
274                        "Sub missile attack did %d damage in %s\n",
275                        dam, xyas(sx, sy, sect.sct_own));
276                 else
277                     wu(0, sect.sct_own,
278                        "%s missile attack did %d damage in %s\n",
279                        cname(player->cnum), dam,
280                        xyas(sx, sy, sect.sct_own));
281             }
282             sectdamage(&sect, dam);
283             putsect(&sect);
284         }
285     } else {
286         if (!msl_hit(pp, shp_hardtarget(&target_ship), EF_SHIP,
287                      N_SHP_MISS, N_SHP_SMISS, prship(&target_ship),
288                      target_ship.shp_x, target_ship.shp_y,
289                      target_ship.shp_own)) {
290             pr("splash\n");
291 #if 0 /* FIXME see above */
292             dam = pln_damage(pp,target_ship.shp_x,target_ship.shp_y,'p',&nukedam, 0);
293             collateral_damage(target_ship.shp_x, target_ship.shp_y, dam, 0);
294 #endif
295             return RET_OK;
296         }
297         dam = pln_damage(pp, target_ship.shp_x, target_ship.shp_y, 'p',
298                          &nukedam, 1);
299         if (!nukedam) {
300             check_retreat_and_do_shipdamage(&target_ship, dam);
301             putship(target_ship.shp_uid, &target_ship);
302         }
303         getship(target_ship.shp_uid, &target_ship);
304         if (!target_ship.shp_own)
305             pr("%s sunk!\n", prship(&target_ship));
306     }
307     return RET_OK;
308 }
309
310 /*
311  * Launch a satellite.
312  * Return RET_OK if launched (even when satellite fails),
313  * else RET_SYN or RET_FAIL.
314  */
315 static int
316 launch_sat(struct plnstr *pp, int sublaunch)
317 {
318     struct plchrstr *pcp = plchr + pp->pln_type;
319     coord sx, sy;
320     int i;
321     int dist;
322     int dir;
323     char *cp;
324     char *p;
325     char buf[1024];
326
327     pr("\n");
328     cp = getstarg(player->argp[2], "Target sector? ", buf);
329     if (!check_plane_ok(pp))
330         return RET_FAIL;
331     if (!cp || !*cp)
332         return RET_SYN;
333     if (!sarg_xy(cp, &sx, &sy)) {
334         pr("Bad sector designation!\n");
335         return RET_SYN;
336     }
337     if ((dist = mapdist(pp->pln_x, pp->pln_y, sx, sy)) > pp->pln_range) {
338         pr("Range too great; try again!\n");
339         return RET_FAIL;
340     }
341     p = getstring("Geostationary orbit? ", buf);
342     if (!p)
343         return RET_SYN;
344     if (!check_plane_ok(pp))
345         return RET_FAIL;
346     if (msl_equip(pp, 'r') < 0) {
347         pr("%s not enough petrol!\n", prplane(pp));
348         return RET_FAIL;
349     }
350     pp->pln_theta = 0;
351     pp->pln_flags |= PLN_SYNCHRONOUS;
352     if (*p == 0 || *p == 'n')
353         pp->pln_flags &= ~(PLN_SYNCHRONOUS);
354     pr("3... 2... 1... Blastoff!!!\n");
355     if (chance(0.07 + (100 - pp->pln_effic) / 100.0)) {
356         pr("KABOOOOM!  Range safety officer detonates booster!\n");
357         pp->pln_effic = 0;
358         return RET_OK;
359     }
360     i = pp->pln_tech + pp->pln_effic;
361     if (chance(1.0 - (i / (i + 50.0)))) {
362         dir = (random() % 6) + 1;
363         sx = xnorm(sx + diroff[dir][0]);
364         sy = ynorm(sy + diroff[dir][1]);
365         pr("Your trajectory was a little off.\n");
366     }
367     nreport(player->cnum, N_LAUNCH, 0, 1);
368     if (msl_intercept(sx, sy, pp->pln_own, pcp->pl_def, sublaunch, P_O, 0)) {
369         return RET_OK;
370     }
371     pp->pln_x = sx;
372     pp->pln_y = sy;
373     CANT_HAPPEN(pp->pln_flags & PLN_LAUNCHED);
374     pp->pln_flags |= PLN_LAUNCHED;
375     pp->pln_mobil = pp->pln_mobil > dist ? pp->pln_mobil - dist : 0;
376     putplane(pp->pln_uid, pp);
377     pr("%s positioned over %s, will be ready for use in %d time units\n",
378        prplane(pp), xyas(sx, sy, player->cnum),
379        plane_mob_max - pp->pln_mobil);
380     return RET_OK;
381 }