]> git.pond.sub.org Git - empserver/blob - src/lib/commands/laun.c
c4553398c902cf48eccd82f463cf9929317e163e
[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-2009
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         getsect(sx, sy, &sect);
250         if (!msl_hit(pp, SECT_HARDTARGET, EF_SECTOR,
251                      N_SCT_MISS, N_SCT_SMISS, sublaunch, sect.sct_own))
252             CANT_REACH();
253         if (getnuke(nuk_on_plane(pp), &nuke))
254             detonate(&nuke, sx, sy, pp->pln_flags & PLN_AIRBURST);
255         else {
256             dam = pln_damage(pp, 's', 1);
257             pr("did %d damage in %s\n", PERCENT_DAMAGE(dam),
258                xyas(sx, sy, player->cnum));
259             if (sect.sct_own != 0) {
260                 if (sublaunch)
261                     wu(0, sect.sct_own,
262                        "Sub missile attack did %d damage in %s\n",
263                        dam, xyas(sx, sy, sect.sct_own));
264                 else
265                     wu(0, sect.sct_own,
266                        "%s missile attack did %d damage in %s\n",
267                        cname(player->cnum), dam,
268                        xyas(sx, sy, sect.sct_own));
269             }
270             sectdamage(&sect, dam);
271             putsect(&sect);
272         }
273     } else {
274         if (msl_equip(pp, 'p') < 0)
275             return RET_FAIL;
276         if (msl_launch(pp, EF_SHIP, prship(&target_ship),
277                        target_ship.shp_x, target_ship.shp_y,
278                        target_ship.shp_own, &sublaunch) < 0)
279             return RET_OK;
280         getship(n, &target_ship);
281         if (!msl_hit(pp, shp_hardtarget(&target_ship), EF_SHIP,
282                      N_SHP_MISS, N_SHP_SMISS, sublaunch,
283                      target_ship.shp_own)) {
284             pr("splash\n");
285             dam = pln_damage(pp, 'p', 0);
286             collateral_damage(target_ship.shp_x, target_ship.shp_y, dam);
287             return RET_OK;
288         }
289         dam = pln_damage(pp, 'p', 1);
290         check_retreat_and_do_shipdamage(&target_ship, dam);
291         putship(target_ship.shp_uid, &target_ship);
292         getship(target_ship.shp_uid, &target_ship);
293         if (!target_ship.shp_own)
294             pr("%s sunk!\n", prship(&target_ship));
295     }
296     return RET_OK;
297 }
298
299 /*
300  * Launch a satellite.
301  * Return RET_OK if launched (even when satellite fails),
302  * else RET_SYN or RET_FAIL.
303  */
304 static int
305 launch_sat(struct plnstr *pp)
306 {
307     coord sx, sy;
308     int i;
309     int dist;
310     int dir;
311     char *cp;
312     char *p;
313     char buf[1024];
314
315     pr("\n");
316     cp = getstarg(player->argp[2], "Target sector? ", buf);
317     if (!check_plane_ok(pp))
318         return RET_FAIL;
319     if (!cp || !*cp)
320         return RET_SYN;
321     if (!sarg_xy(cp, &sx, &sy)) {
322         pr("Bad sector designation!\n");
323         return RET_SYN;
324     }
325     if ((dist = mapdist(pp->pln_x, pp->pln_y, sx, sy)) > pp->pln_range) {
326         pr("Range too great; try again!\n");
327         return RET_FAIL;
328     }
329     p = getstring("Geostationary orbit? ", buf);
330     if (!p)
331         return RET_SYN;
332     if (!check_plane_ok(pp))
333         return RET_FAIL;
334     if (msl_equip(pp, 'r') < 0)
335         return RET_FAIL;
336     pp->pln_theta = 0;
337     pp->pln_flags |= PLN_SYNCHRONOUS;
338     if (*p == 0 || *p == 'n')
339         pp->pln_flags &= ~(PLN_SYNCHRONOUS);
340     pr("3... 2... 1... Blastoff!!!\n");
341     if (chance(0.07 + (100 - pp->pln_effic) / 100.0)) {
342         pr("KABOOOOM!  Range safety officer detonates booster!\n");
343         pp->pln_effic = 0;
344         return RET_OK;
345     }
346     i = pp->pln_tech + pp->pln_effic;
347     if (chance(1.0 - (i / (i + 50.0)))) {
348         dir = (random() % 6) + 1;
349         sx = xnorm(sx + diroff[dir][0]);
350         sy = ynorm(sy + diroff[dir][1]);
351         pr("Your trajectory was a little off.\n");
352     }
353     nreport(player->cnum, N_LAUNCH, 0, 1);
354     if (msl_asat_intercept(pp, sx, sy))
355         return RET_OK;
356     pp->pln_x = sx;
357     pp->pln_y = sy;
358     CANT_HAPPEN(pp->pln_flags & PLN_LAUNCHED);
359     pp->pln_flags |= PLN_LAUNCHED;
360     pp->pln_mobil = pp->pln_mobil > dist ? pp->pln_mobil - dist : 0;
361     putplane(pp->pln_uid, pp);
362     pr("%s positioned over %s, will be ready for use in %d time units\n",
363        prplane(pp), xyas(sx, sy, player->cnum),
364        plane_mob_max - pp->pln_mobil);
365     return RET_OK;
366 }
367
368 static int
369 msl_equip(struct plnstr *pp, char mission)
370 {
371     struct plist pl;
372
373     memset(&pl, 0, sizeof(struct plist));
374     pl.pcp = plchr + pp->pln_type;
375     pl.plane = *pp;
376     return pln_equip(&pl, NULL, mission);
377 }