]> git.pond.sub.org Git - empserver/blob - src/lib/subs/mslsub.c
(plist): Member state is used write-only, remove.
[empserver] / src / lib / subs / mslsub.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  mslsub.c: Missile subroutine stuff
29  * 
30  *  Known contributors to this file:
31  *     Ken Stevens, 1995
32  *     Steve McClure, 1996-2000
33  */
34
35 #include "misc.h"
36 #include "queue.h"
37 #include "player.h"
38 #include "sect.h"
39 #include "ship.h"
40 #include "optlist.h"
41 #include "plane.h"
42 #include "land.h"
43 #include "news.h"
44 #include "xy.h"
45 #include "nsc.h"
46 #include "file.h"
47 #include "nat.h"
48 #include "path.h"
49 #include "mission.h"
50 #include "prototypes.h"
51
52 int
53 msl_equip(struct plnstr *pp)
54 {
55     struct plist pl;
56
57     memset(&pl, 0, sizeof(struct plist));
58     pl.pcp = plchr + pp->pln_type;
59     pl.plane = *pp;
60     return mission_pln_equip(&pl, 0, 0, 'p');
61 }
62
63 int
64 msl_hit(struct plnstr *pp, int hardtarget, int type, int news_item,
65         int snews_item, s_char *what, coord x, coord y, int victim)
66 {
67     int hit;
68     struct shpstr ship;
69     struct sctstr sect;
70     int sublaunch = 0;
71     struct plchrstr *pcp = plchr + pp->pln_type;
72     int hitchance = pln_hitchance(pp, hardtarget, type);
73     s_char *from;
74     int dam, dummyi;
75
76     mpr(pp->pln_own, "Preparing to launch %s at %s %s %s%s\n",
77         prplane(pp),
78         cname(victim),
79         what,
80         (type == EF_SHIP || type == EF_PLANE) ? "in " : "",
81         xyas(x, y, pp->pln_own));
82     mpr(pp->pln_own, "\tLaunching from ");
83     if (pp->pln_ship >= 0) {
84         getship(pp->pln_ship, &ship);
85         mpr(pp->pln_own, "%s in ", prship(&ship));
86         if (mchr[(int)ship.shp_type].m_flags & M_SUB) {
87             sublaunch = 1;
88             from = "in hatch";
89         } else
90             from = "on deck";
91         mpr(pp->pln_own, "%s\n",
92             xyas(ship.shp_x, ship.shp_y, pp->pln_own));
93     } else {
94         if (pp->pln_harden > 0) {
95             mpr(pp->pln_own, "missile silo at ");
96             from = "in silo";
97         } else
98             from = "on launch pad";
99         mpr(pp->pln_own, "%s\n", xyas(pp->pln_x, pp->pln_y, pp->pln_own));
100     }
101
102     if (chance((0.05 + (100 - pp->pln_effic) / 100.0)
103                * (1 - techfact(pp->pln_tech, 1.0)))) {
104         mpr(pp->pln_own, "KABOOOOM!  Missile explodes %s!\n", from);
105         if (chance(0.33)) {
106             dam = pln_damage(pp, pp->pln_x, pp->pln_y,
107                              'p', &dummyi, 1) / 2;
108             if (dam) {
109                 if (pp->pln_ship >= 0) {
110                     shipdamage(&ship, dam);
111                     putship(ship.shp_uid, &ship);
112                 } else {
113                     pr("Explosion damages %s %d%%",
114                        xyas(pp->pln_x, pp->pln_y, pp->pln_own), dam);
115                     getsect(pp->pln_x, pp->pln_y, &sect);
116                     sectdamage(&sect, dam, 0);
117                     putsect(&sect);
118                 }
119             }
120         }
121         return 0;
122     }
123
124     mpr(pp->pln_own, "\tSHWOOOOOSH!  Missile launched!\n");
125
126     if (pp->pln_nuketype != -1)
127         mpr(pp->pln_own, "\tArming nuclear warheads...\n");
128
129     if (pcp->pl_flags & P_T)
130         mpr(victim, "Incoming %s missile sighted at %s...\n",
131             sublaunch ? "sub-launched" : cname(pp->pln_own),
132             xyas(x, y, victim));
133
134     if (opt_PINPOINTMISSILE == 0 ||
135         (pcp->pl_flags & P_T && !(pcp->pl_flags & P_MAR))) {
136         if (msl_intercept(x, y, pp->pln_own, pcp->pl_def,
137                           sublaunch, P_N, P_O)) {
138             return 0;
139         }
140     }
141     if (pcp->pl_flags & P_MAR) {
142         if (shp_missile_defense(x, y, pp->pln_own, pcp->pl_def)) {
143             return 0;
144         }
145     }
146
147     if (pp->pln_nuketype != -1)
148         hitchance = 100;
149
150     mpr(pp->pln_own, "\t%d%% hitchance...", hitchance);
151     hit = (roll(100) <= hitchance);
152
153     mpr(pp->pln_own, hit ? "HIT!\n" : "miss\n");
154     if (pcp->pl_flags & P_T)
155         mpr(victim, "...Incoming %s missile %s\n",
156             sublaunch ? (s_char *)"" : cname(pp->pln_own),
157             hit ? "HIT!\n" : "missed\n");
158     if (hit && news_item) {
159         if (sublaunch)
160             nreport(victim, snews_item, 0, 1);
161         else
162             nreport(pp->pln_own, news_item, victim, 1);
163     }
164     return hit;
165 }
166
167 void
168 msl_sel(struct emp_qelem *list, coord x, coord y, natid victim,
169         int wantflags, int nowantflags, int mission)
170 {
171     struct plchrstr *pcp;
172     struct plnstr plane;
173     struct plist *irv;
174     struct nstr_item ni;
175
176     emp_initque(list);
177     snxtitem_all(&ni, EF_PLANE);
178     while (nxtitem(&ni, &plane)) {
179         if (!plane.pln_own)
180             continue;
181
182         pcp = &plchr[(int)plane.pln_type];
183         if (!(pcp->pl_flags & P_M))
184             continue;
185         if (wantflags && (pcp->pl_flags & wantflags) != wantflags)
186             continue;
187         if (nowantflags && pcp->pl_flags & nowantflags)
188             continue;
189         if (mission && plane.pln_mission != mission)
190             continue;
191         if (getrel(getnatp(plane.pln_own), victim) >= NEUTRAL)
192             continue;
193         /* missiles go one way, so we can use all the range */
194         if (plane.pln_range < mapdist(x, y, plane.pln_x, plane.pln_y))
195             continue;
196         if (plane.pln_mobil <= 0)
197             continue;
198         if (plane.pln_effic < 100)
199             continue;
200         /* got a valid interceptor */
201         irv = malloc(sizeof(*irv));
202         irv->bombs = 0;
203         irv->misc = 0;
204         irv->pcp = &plchr[(int)plane.pln_type];
205         irv->plane = plane;
206         emp_insque(&irv->queue, list);
207     }
208 }
209
210 int
211 msl_intercept(coord x, coord y, natid bombown, int hardtarget,
212               int sublaunch, int wantflags, int nowantflags)
213 {
214     struct plnstr *pp;
215     struct plchrstr *pcp;
216     struct sctstr sect;
217     struct emp_qelem *irvlist;
218     struct emp_qelem foo;
219     struct emp_qelem *intlist;
220     struct emp_qelem intfoo;
221     struct emp_qelem *qp;
222     struct emp_qelem *next;
223     struct plist *ip;
224     int icount = 0;
225     short destroyed = 0;
226     s_char *att_name;
227     s_char *def_name;
228     int news_item;
229     s_char *who = sublaunch ? (s_char *)"" : cname(bombown);
230
231     getsect(x, y, &sect);
232     if (wantflags == P_O && !nowantflags) {
233         att_name = "satellite";
234         def_name = "a-sat missile";
235         news_item = N_SAT_KILL;
236         if (sect.sct_own) {
237             mpr(sect.sct_own, "%s has positioned a satellite over %s\n",
238                 sublaunch ? (s_char *)"someone" : cname(bombown), xyas(x,
239                                                                        y,
240                                                                        sect.
241                                                                        sct_own));
242         }
243     } else if (wantflags == P_N && nowantflags == P_O) {
244         att_name = "warhead";
245         def_name = "abm";
246         news_item = sublaunch ? N_NUKE_SSTOP : N_NUKE_STOP;
247     } else {
248         att_name = "elephant";
249         def_name = "tomato";    /* heh -KHS */
250         news_item = N_NUKE_STOP;
251     }
252     irvlist = &foo;
253
254     /* get all hostile abms in range */
255     msl_sel(irvlist, x, y, bombown, wantflags, nowantflags, 0);
256     intlist = &intfoo;
257     emp_initque(intlist);
258     /* First choose interceptors belonging to the target sector */
259     /* only allow two defense missiles per missile attack */
260     for (qp = irvlist->q_forw; qp != irvlist && icount < 2; qp = next) {
261         next = qp->q_forw;
262         ip = (struct plist *)qp;
263         pp = &ip->plane;
264         if (pp->pln_own != sect.sct_own)
265             continue;
266         pcp = ip->pcp;
267         if (mission_pln_equip(ip, 0, 0, 'i') < 0) {
268             emp_remque(qp);
269             free(qp);
270             continue;
271         }
272         /* got one interceptor, delete from irv_list and
273          * add to  int_list.
274          */
275         emp_remque(qp);
276         emp_insque(qp, intlist);
277         putplane(pp->pln_uid, pp);
278         icount++;
279     }
280     /* only allow two defense missiles per missile attack */
281     for (qp = irvlist->q_forw; qp != irvlist && icount < 2; qp = next) {
282         next = qp->q_forw;
283         ip = (struct plist *)qp;
284         pp = &ip->plane;
285         pcp = ip->pcp;
286         if (mission_pln_equip(ip, 0, 0, 'i') < 0) {
287             emp_remque(qp);
288             free(qp);
289             continue;
290         }
291         /* got one interceptor, delete from irv_list and
292          * add to  int_list.
293          */
294         emp_remque(qp);
295         emp_insque(qp, intlist);
296         putplane(pp->pln_uid, pp);
297         icount++;
298     }
299     /* Now, clean out the queue */
300     while (!QEMPTY(irvlist)) {
301         qp = irvlist->q_forw;
302         emp_remque(qp);
303         free(qp);
304     }
305     if (icount == 0) {
306         if (sect.sct_own != 0)
307             mpr(sect.sct_own, "No %ss launched to intercept.\n", def_name);
308         return destroyed;
309     }
310
311     /* attempt to destroy incoming missile */
312
313     while (!QEMPTY(intlist)) {
314         qp = intlist->q_forw;
315         ip = (struct plist *)qp;
316         pp = &ip->plane;
317         pcp = ip->pcp;
318
319         mpr(bombown, "%s %s launched in defense!\n",
320             cname(pp->pln_own), def_name);
321         if (sect.sct_own == pp->pln_own) {
322             mpr(sect.sct_own, "%s launched to intercept %s %s!\n",
323                 def_name, who, att_name);
324         } else {
325             if (sect.sct_own)
326                 mpr(sect.sct_own,
327                     "%s launched an %s to intercept the %s %s!\n",
328                     cname(pp->pln_own), def_name, who, att_name);
329             mpr(pp->pln_own,
330                 "%s launched to intercept %s %s arcing towards %s territory!\n",
331                 def_name, who, att_name, cname(sect.sct_own));
332         }
333
334         if (!destroyed &&
335             msl_hit(pp, hardtarget, EF_PLANE, news_item, news_item,
336                     att_name, x, y, bombown)) {
337             mpr(bombown, "%s destroyed by %s %s!\n", att_name,
338                 cname(pp->pln_own), def_name);
339             if (sect.sct_own)
340                 mpr(sect.sct_own, "%s %s intercepted!\n", who, att_name);
341             if (sect.sct_own != pp->pln_own)
342                 mpr(pp->pln_own, "%s %s intercepted!\n", who, att_name);
343             destroyed = 1;
344         }
345         /* zap the missile */
346         makelost(EF_PLANE, pp->pln_own, pp->pln_uid, pp->pln_x, pp->pln_y);
347         pp->pln_own = 0;
348         putplane(pp->pln_uid, pp);
349         emp_remque(qp);
350         free(qp);
351         if (destroyed)
352             break;
353     }
354     /* Clean out what is left in the list */
355     while (!QEMPTY(intlist)) {
356         qp = intlist->q_forw;
357         emp_remque(qp);
358         free(qp);
359     }
360     if (destroyed)
361         return destroyed;
362     if (icount) {
363         mpr(bombown, "%s made it through %s defenses!\n", att_name,
364             def_name);
365         if (sect.sct_own)
366             mpr(sect.sct_own, "%s made it through %s defenses!\n",
367                 att_name, def_name);
368     }
369     return destroyed;
370 }
371
372 /* Keep launching missiles on list until mindam damage has been done */
373 int
374 msl_launch_mindam(struct emp_qelem *list, coord x, coord y, int hardtarget,
375                   int type, int mindam, s_char *whatp, int victim,
376                   int mission)
377 {
378     struct emp_qelem *qp;
379     struct emp_qelem *next;
380     struct plist *plp;
381     int newdam, dam = 0;
382     int nukedam = 0;
383     int news_item;
384     int snews_item;
385
386     if (type == EF_SHIP) {
387         news_item = N_SHP_MISS;
388         snews_item = N_SHP_SMISS;
389     } else if (type == EF_LAND) {
390         news_item = N_LND_MISS;
391         snews_item = N_LND_SMISS;
392     } else {
393         news_item = N_SCT_MISS;
394         snews_item = N_SCT_SMISS;
395     }
396
397     for (qp = list->q_back; qp != list && dam < mindam && !nukedam;
398          qp = next) {
399         next = qp->q_back;
400         plp = (struct plist *)qp;
401
402         if (mission_pln_equip(plp, 0, 0, 'p') >= 0) {
403             if (msl_hit(&plp->plane,
404                         hardtarget, type, news_item, snews_item,
405                         whatp, x, y, victim)) {
406                 newdam = pln_damage(&plp->plane, x, y, 'p', &nukedam, 1);
407                 if (nukedam) {
408                     if (mission == MI_INTERDICT && type == EF_SECTOR)
409                         dam += nukedam;
410                 } else
411                     dam += newdam;
412             } else {
413                 /* Missiles that miss have to hit somewhere! */
414                 newdam = pln_damage(&plp->plane, x, y, 'p', &nukedam, 0);
415                 collateral_damage(x, y, newdam, 0);
416             }
417             makelost(EF_PLANE, plp->plane.pln_own, plp->plane.pln_uid,
418                      plp->plane.pln_x, plp->plane.pln_y);
419             plp->plane.pln_own = 0;
420             putplane(plp->plane.pln_uid, &plp->plane);
421             emp_remque(qp);
422             free(qp);
423         }
424     }
425     return dam;
426 }