]> git.pond.sub.org Git - empserver/blob - src/lib/subs/mission.c
b6188472531179a23eee32aba51109f772fd266d
[empserver] / src / lib / subs / mission.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  *  mission.c: Mission subroutines for planes/ships/units
29  *
30  *  Known contributors to this file:
31  *     Ken Stevens, 1995
32  *     Steve McClure, 1996-2000
33  *     Markus Armbruster, 2003-2009
34  */
35
36 #include <config.h>
37
38 #include <stdlib.h>
39 #include "empobj.h"
40 #include "file.h"
41 #include "item.h"
42 #include "misc.h"
43 #include "mission.h"
44 #include "nsc.h"
45 #include "optlist.h"
46 #include "path.h"
47 #include "player.h"
48 #include "prototypes.h"
49 #include "queue.h"
50 #include "xy.h"
51
52 struct genlist {
53     struct emp_qelem queue;     /* list of units */
54     void *cp;                   /* pointer to desc of thing */
55     struct empobj *thing;       /* thing's struct */
56 };
57
58 struct airport {
59     struct emp_qelem queue;
60     coord x, y;
61     natid own;
62 };
63
64 static void add_airport(struct emp_qelem *, coord, coord);
65 static int air_damage(struct emp_qelem *, coord, coord, int, natid,
66                       char *, int);
67 static void build_mission_list(struct genlist *, coord, coord, int, natid);
68 static void build_mission_list_type(struct genlist *, coord, coord, int,
69                                     int, natid);
70 static void divide(struct emp_qelem *, struct emp_qelem *, coord, coord);
71 static int dosupport(struct genlist *, coord, coord, natid, natid);
72 static int find_airport(struct emp_qelem *, coord, coord);
73 static void mission_pln_arm(struct emp_qelem *, coord, coord, int,
74                             int, struct ichrstr *);
75 static void mission_pln_sel(struct emp_qelem *, int, int, int);
76 static int perform_mission(coord, coord, natid, struct emp_qelem *, int,
77                            char *, int);
78
79 /*
80  * Interdict commodities & transported planes
81  */
82 int
83 ground_interdict(coord x, coord y, natid victim, char *s)
84 {
85     int cn;
86     int dam = 0, newdam, rel;
87     struct genlist mi[MAXNOC];
88     int z;
89
90     memset(mi, 0, sizeof(mi));
91     for (z = 1; z < MAXNOC; z++)
92         emp_initque((struct emp_qelem *)&mi[z]);
93
94     build_mission_list(mi, x, y, MI_INTERDICT, victim);
95
96     for (cn = 1; cn < MAXNOC; cn++) {
97         rel = getrel(getnatp(cn), victim);
98         if (rel > HOSTILE)
99             continue;
100
101         if (QEMPTY(&mi[cn].queue))
102             continue;
103
104         newdam = perform_mission(x, y, victim, &mi[cn].queue,
105                                  MI_INTERDICT, s, SECT_HARDTARGET);
106         dam += newdam;
107         if (newdam)
108             mpr(victim, "%s interdiction mission does %d damage!\n",
109                 cname(cn), newdam);
110     }
111     if (dam) {
112         collateral_damage(x, y, dam);
113     }
114     return dam;
115 }
116
117 int
118 collateral_damage(coord x, coord y, int dam)
119 {
120     int coll;
121     struct sctstr sect;
122
123     if (!dam)
124         return 0;
125
126     getsect(x, y, &sect);
127     if (sect.sct_own) {
128         coll = ldround((double)dam * collateral_dam, 1);
129         if (coll == 0)
130             return 0;
131         mpr(sect.sct_own, "%s takes %d%% collateral damage\n",
132             xyas(x, y, sect.sct_own), coll);
133         sectdamage(&sect, coll);
134         putsect(&sect);
135         return coll;
136     }
137     return 0;
138 }
139
140 static int
141 only_subs(struct emp_qelem *list)
142 {
143     struct emp_qelem *qp;
144     struct genlist *glp;
145     struct mchrstr *mcp;
146
147     for (qp = list->q_forw; qp != list; qp = qp->q_forw) {
148         glp = (struct genlist *)qp;
149
150         if (glp->thing->ef_type != EF_SHIP)
151             return 0;
152         mcp = glp->cp;
153         if (!(mcp->m_flags & M_SUB))
154             return 0;
155         /* It's a sub! */
156     }
157     /* They were all subs! */
158     return 1;
159 }
160
161
162 /*
163  *  Interdict ships & land units
164  */
165 int
166 unit_interdict(coord x, coord y, natid victim, char *s, int hardtarget,
167                int mission)
168 {
169     int cn;
170     int dam = 0, newdam;
171     struct genlist mi[MAXNOC];
172     int z;
173     int osubs;
174
175     memset(mi, 0, sizeof(mi));
176     for (z = 1; z < MAXNOC; z++)
177         emp_initque((struct emp_qelem *)&mi[z]);
178
179     build_mission_list(mi, x, y, mission, victim);
180
181     for (cn = 1; cn < MAXNOC; cn++) {
182         if (cn == victim)
183             continue;
184         if (mission == MI_SINTERDICT) {
185             if (getrel(getnatp(cn), victim) >= FRIENDLY)
186                 continue;
187         } else if (getrel(getnatp(cn), victim) > HOSTILE)
188             continue;
189
190         if (QEMPTY(&mi[cn].queue))
191             continue;
192
193         osubs = only_subs(&mi[cn].queue);
194         newdam = perform_mission(x, y, victim, &mi[cn].queue,
195                                  mission, s, hardtarget);
196         dam += newdam;
197         if (newdam) {
198             /* If only subs responded, then we don't know who's
199                subs they are */
200             mpr(victim, "%s interdiction mission does %d damage!\n",
201                 osubs ? "Enemy" : cname(cn), newdam);
202         }
203     }
204     if (dam) {
205         collateral_damage(x, y, dam);
206     }
207     return dam;
208 }
209
210 /*
211  *  Perform a mission against victim, on behalf of actee
212  */
213 int
214 off_support(coord x, coord y, natid victim, natid actee)
215 {
216     int dam = 0;
217     struct genlist mi[MAXNOC];
218     int z;
219
220     memset(mi, 0, sizeof(mi));
221     for (z = 1; z < MAXNOC; z++)
222         emp_initque((struct emp_qelem *)&mi[z]);
223
224     build_mission_list(mi, x, y, MI_SUPPORT, victim);
225     build_mission_list(mi, x, y, MI_OSUPPORT, victim);
226
227     dam = dosupport(mi, x, y, victim, actee);
228     return dam;
229 }
230
231 /*
232  *  Perform a mission against victim, on behalf of actee
233  */
234 int
235 def_support(coord x, coord y, natid victim, natid actee)
236 {
237     int dam = 0;
238     struct genlist mi[MAXNOC];
239     int z;
240
241     memset(mi, 0, sizeof(mi));
242     for (z = 1; z < MAXNOC; z++)
243         emp_initque((struct emp_qelem *)&mi[z]);
244
245     build_mission_list(mi, x, y, MI_SUPPORT, victim);
246     build_mission_list(mi, x, y, MI_DSUPPORT, victim);
247
248     dam = dosupport(mi, x, y, victim, actee);
249     return dam;
250 }
251
252 static int
253 dosupport(struct genlist *mi, coord x, coord y, natid victim, natid actee)
254 {
255     int cn;
256     int rel;
257     int dam = 0;
258
259     for (cn = 1; cn < MAXNOC; cn++) {
260         rel = getrel(getnatp(cn), actee);
261         if ((cn != actee) && (rel != ALLIED))
262             continue;
263         rel = getrel(getnatp(cn), victim);
264         if ((cn != actee) && (rel != AT_WAR))
265             continue;
266
267         if (QEMPTY(&mi[cn].queue))
268             continue;
269
270         dam += perform_mission(x, y, victim, &mi[cn].queue, MI_SUPPORT,
271                                "", SECT_HARDTARGET);
272     }
273     return dam;
274 }
275
276 static void
277 build_mission_list(struct genlist *mi, coord x, coord y, int mission,
278                    natid victim)
279 {
280     build_mission_list_type(mi, x, y, mission, EF_LAND, victim);
281     build_mission_list_type(mi, x, y, mission, EF_SHIP, victim);
282     build_mission_list_type(mi, x, y, mission, EF_PLANE, victim);
283 }
284
285 static void
286 build_mission_list_type(struct genlist *mi, coord x, coord y, int mission,
287                         int type, natid victim)
288 {
289     struct nstr_item ni;
290     struct genlist *glp;
291     struct empobj *gp;
292     union empobj_storage item;
293     int relat;
294     struct sctstr sect;
295
296     snxtitem_all(&ni, type);
297     while (nxtitem(&ni, &item)) {
298         gp = (struct empobj *)&item;
299
300         if (gp->own == 0)
301             continue;
302
303         if (gp->mobil < 1)
304             continue;
305
306         if ((gp->mission != mission) && (mission != MI_SINTERDICT))
307             continue;
308
309         if ((gp->mission != mission) && (mission == MI_SINTERDICT) &&
310             (gp->mission != MI_INTERDICT))
311             continue;
312
313         relat = getrel(getnatp(gp->own), victim);
314         if (mission == MI_SINTERDICT) {
315             if (relat >= FRIENDLY)
316                 continue;
317             else if (type != EF_PLANE && relat > HOSTILE)
318                 continue;
319         } else if (relat > HOSTILE)
320             continue;
321
322         if (!in_oparea(gp, x, y))
323             continue;
324
325         if (opt_SLOW_WAR) {
326             if (mission != MI_AIR_DEFENSE) {
327                 getsect(x, y, &sect);
328                 if (getrel(getnatp(gp->own), sect.sct_own) > AT_WAR) {
329
330                     /*
331                      * If the owner of the unit isn't at war
332                      * with the victim, and doesn't own the
333                      * sect being acted upon, and isn't the
334                      * old owner of that sect, bounce them.
335                      */
336                     if (sect.sct_type != SCT_WATER &&
337                         sect.sct_own != gp->own &&
338                         sect.sct_oldown != gp->own)
339                         continue;
340                 }
341             }
342         }
343
344         glp = malloc(sizeof(struct genlist));
345         memset(glp, 0, sizeof(struct genlist));
346         glp->cp = get_empobj_chr(gp);
347         glp->thing = malloc(sizeof(item));
348         memcpy(glp->thing, &item, sizeof(item));
349         emp_insque(&glp->queue, &mi[gp->own].queue);
350     }
351 }
352
353 static void
354 find_escorts(coord x, coord y, natid cn, struct emp_qelem *escorts)
355 {
356     struct nstr_item ni;
357     struct plist *plp;
358     struct plnstr plane;
359
360     snxtitem_all(&ni, EF_PLANE);
361     while (nxtitem(&ni, &plane)) {
362         if (plane.pln_own != cn)
363             continue;
364         if (plane.pln_mission != MI_ESCORT)
365             continue;
366         if (!in_oparea((struct empobj *)&plane, x, y))
367             continue;
368         plp = malloc(sizeof(struct plist));
369         memset(plp, 0, sizeof(struct plist));
370         plp->pcp = &plchr[(int)plane.pln_type];
371         plp->plane = plane;
372         emp_insque(&plp->queue, escorts);
373     }
374 }
375
376 static int
377 perform_mission(coord x, coord y, natid victim, struct emp_qelem *list,
378                 int mission, char *s, int hardtarget)
379 {
380     struct emp_qelem *qp, missiles, bombers, escorts, airp, b, e;
381     struct emp_qelem *newqp;
382     struct genlist *glp;
383     struct plist *plp;
384     struct empobj *gp;
385     struct lndstr *lp;
386     struct shpstr *sp;
387     struct sctstr sect;
388     struct mchrstr *mcp;
389     struct plchrstr *pcp;
390     int dam = 0, dam2;
391     natid plane_owner = 0;
392     int md, range, air_dam;
393     double hitchance, vrange;
394     int targeting_ships = *s == 's'; /* "subs" or "ships" FIXME gross! */
395
396     getsect(x, y, &sect);
397
398     emp_initque(&missiles);
399     emp_initque(&bombers);
400     emp_initque(&escorts);
401     emp_initque(&airp);
402
403     for (qp = list->q_forw; qp != list; qp = qp->q_forw) {
404         glp = (struct genlist *)qp;
405         gp = glp->thing;
406
407         md = mapdist(x, y, gp->x, gp->y);
408
409         if (glp->thing->ef_type == EF_LAND) {
410             lp = (struct lndstr *)glp->thing;
411
412             if (mission == MI_SINTERDICT)
413                 continue;
414
415             if ((mission == MI_INTERDICT) &&
416                 (md > land_max_interdiction_range))
417                 continue;
418
419             range = roundrange(lnd_fire_range(lp));
420             if (md > range)
421                 continue;
422
423             dam2 = lnd_fire(lp);
424             putland(lp->lnd_uid, lp);
425             if (dam2 < 0)
426                 continue;
427
428             if (targeting_ships) {
429                 if (chance(lnd_acc(lp) / 100.0))
430                     dam2 = ldround(dam2 / 2.0, 1);
431             }
432             dam += dam2;
433             if (targeting_ships)
434                 nreport(lp->lnd_own, N_SHP_SHELL, victim, 1);
435             else
436                 nreport(lp->lnd_own, N_SCT_SHELL, victim, 1);
437             wu(0, lp->lnd_own,
438                "%s fires at %s %s at %s\n",
439                prland(lp), cname(victim), s, xyas(x, y, lp->lnd_own));
440
441             mpr(victim, "%s %s fires at you at %s\n",
442                 cname(lp->lnd_own), prland(lp), xyas(x, y, victim));
443         } else if (glp->thing->ef_type == EF_SHIP) {
444             sp = (struct shpstr *)glp->thing;
445             mcp = glp->cp;
446
447             if (((mission == MI_INTERDICT) ||
448                  (mission == MI_SINTERDICT)) &&
449                 (md > ship_max_interdiction_range))
450                 continue;
451             if (mission == MI_SINTERDICT) {
452                 if (!(mcp->m_flags & M_SONAR))
453                     continue;
454                 if (!(mcp->m_flags & M_DCH) && !(mcp->m_flags & M_SUBT))
455                     continue;
456                 vrange = techfact(sp->shp_tech, mcp->m_vrnge);
457                 vrange *= sp->shp_effic / 200.0;
458                 if (md > vrange)
459                     continue;
460                 /* can't look all the time */
461                 if (chance(0.5))
462                     continue;
463             }
464             if (mcp->m_flags & M_SUB) {
465                 if (!targeting_ships)
466                     continue;   /* subs interdict only ships */
467                 range = roundrange(torprange(sp));
468                 if (md > range)
469                     continue;
470                 if (!line_of_sight(NULL, x, y, gp->x, gp->y))
471                     continue;
472                 dam2 = shp_torp(sp, 1);
473                 putship(sp->shp_uid, sp);
474                 if (dam2 < 0)
475                     continue;
476                 hitchance = shp_torp_hitchance(sp, md);
477
478                 wu(0, sp->shp_own,
479                    "%s locking on %s %s in %s\n",
480                    prship(sp), cname(victim), s, xyas(x, y, sp->shp_own));
481                 wu(0, sp->shp_own,
482                    "\tEffective torpedo range is %d.0\n", range);
483                 wu(0, sp->shp_own,
484                    "\tWhooosh... Hitchance = %d%%\n",
485                    (int)(hitchance * 100));
486
487                 if (!chance(hitchance)) {
488                     wu(0, sp->shp_own, "\tMissed\n");
489                     mpr(victim,
490                         "Incoming torpedo sighted @ %s missed (whew)!\n",
491                         xyas(x, y, victim));
492                     continue;
493                 }
494                 wu(0, sp->shp_own, "\tBOOM!...\n");
495                 dam += dam2;
496                 nreport(victim, N_TORP_SHIP, 0, 1);
497                 wu(0, sp->shp_own,
498                    "\tTorpedo hit %s %s for %d damage\n",
499                    cname(victim), s, dam2);
500
501                 mpr(victim,
502                     "Incoming torpedo sighted @ %s hits and does %d damage!\n",
503                     xyas(x, y, victim), dam2);
504             } else {
505                 range = roundrange(shp_fire_range(sp));
506                 if (md > range)
507                     continue;
508                 if (mission == MI_SINTERDICT)
509                     dam2 = shp_dchrg(sp);
510                 else
511                     dam2 = shp_fire(sp);
512                 putship(sp->shp_uid, sp);
513                 if (dam2 < 0)
514                     continue;
515                 dam += dam2;
516                 if (targeting_ships)
517                     nreport(sp->shp_own, N_SHP_SHELL, victim, 1);
518                 else
519                     nreport(sp->shp_own, N_SCT_SHELL, victim, 1);
520                 wu(0, sp->shp_own,
521                    "%s fires at %s %s at %s\n",
522                    prship(sp), cname(victim), s, xyas(x, y, sp->shp_own));
523
524                 mpr(victim, "%s %s fires at you at %s\n",
525                     cname(sp->shp_own), prship(sp), xyas(x, y, victim));
526             }
527         } else if (glp->thing->ef_type == EF_PLANE) {
528             pcp = glp->cp;
529             if (pcp->pl_flags & P_M)
530                 /* units have their own missile interdiction */
531                 if (hardtarget != SECT_HARDTARGET || pcp->pl_flags & P_MAR)
532                     continue;
533
534             /* save planes for later */
535             plp = malloc(sizeof(struct plist));
536
537             memset(plp, 0, sizeof(struct plist));
538             plp->pcp = pcp;
539             memcpy(&plp->plane, glp->thing, sizeof(struct plnstr));
540             if (plp->pcp->pl_flags & P_M)
541                 emp_insque(&plp->queue, &missiles);
542             else
543                 emp_insque(&plp->queue, &bombers);
544             plane_owner = plp->plane.pln_own;
545         } else {
546             CANT_REACH();
547             break;
548         }
549     }
550
551     air_dam = 0;
552     for (qp = missiles.q_back; qp != &missiles; qp = newqp) {
553         newqp = qp->q_back;
554         plp = (struct plist *)qp;
555
556         if (air_dam < 100 && mission_pln_equip(plp, NULL, 'p') >= 0) {
557             if (msl_hit(&plp->plane, hardtarget, EF_SECTOR,
558                         N_SCT_MISS, N_SCT_SMISS,
559                         "sector", x, y, victim)) {
560                 dam2 = pln_damage(&plp->plane, 'p', 1);
561                 air_dam += dam2;
562 #if 0
563             /*
564              * FIXME want collateral damage on miss, but we get here
565              * too when launch fails or missile is intercepted
566              */
567             } else {
568                 /* Missiles that miss have to hit somewhere! */
569                 dam2 = pln_damage(&plp->plane, 'p', 0);
570                 collateral_damage(x, y, dam2);
571 #endif
572             }
573             plp->plane.pln_effic = 0;
574             putplane(plp->plane.pln_uid, &plp->plane);
575         }
576         emp_remque(qp);
577         free(qp);
578     }
579     dam += air_dam;
580
581     if (QEMPTY(&bombers)) {
582         qp = list->q_forw;
583         while (qp != list) {
584             glp = (struct genlist *)qp;
585             qp = qp->q_forw;
586
587             free(glp->thing);
588             free(glp);
589         }
590         return dam;
591     }
592     /*
593      * If there are planes performing an
594      * interdict or support mission, find
595      * some escorts for them, if possible.
596      * Up to 2 per bomber, if possible.
597      */
598     find_escorts(x, y, plane_owner, &escorts);
599
600     if (mission == MI_SINTERDICT)
601         mission_pln_sel(&bombers, P_T | P_A, 0, hardtarget);
602     else
603         mission_pln_sel(&bombers, P_T, P_A, SECT_HARDTARGET);
604
605     mission_pln_sel(&escorts, P_ESC | P_F, 0, SECT_HARDTARGET);
606
607     for (qp = bombers.q_forw; qp != (&bombers); qp = qp->q_forw) {
608         plp = (struct plist *)qp;
609         if (!find_airport(&airp, plp->plane.pln_x, plp->plane.pln_y))
610             add_airport(&airp, plp->plane.pln_x, plp->plane.pln_y);
611     }
612
613     air_dam = 0;
614     for (qp = airp.q_forw; qp != (&airp); qp = qp->q_forw) {
615         struct airport *air;
616         char buf[512];
617         char *pp;
618
619         air = (struct airport *)qp;
620         md = mapdist(x, y, air->x, air->y);
621
622         emp_initque(&b);
623         emp_initque(&e);
624
625         /* Split off the bombers at this base into b */
626         divide(&bombers, &b, air->x, air->y);
627
628         /* Split off the escorts at this base into e */
629         divide(&escorts, &e, air->x, air->y);
630
631         mission_pln_arm(&b, air->x, air->y, 2 * md, 'p', NULL);
632
633         if (QEMPTY(&b))
634             continue;
635
636         mission_pln_arm(&e, air->x, air->y, 2 * md, 'e', NULL);
637
638         pp = BestAirPath(buf, air->x, air->y, x, y);
639         if (CANT_HAPPEN(!pp))
640             continue;
641         wu(0, plane_owner, "Flying %s mission from %s to %s\n",
642            mission_name(mission),
643            xyas(air->x, air->y, plane_owner),
644            xyas(x, y, plane_owner));
645         if (air->own && (air->own != plane_owner)) {
646             wu(0, air->own, "%s is flying %s mission from %s to %s\n",
647                cname(plane_owner), mission_name(mission),
648                xyas(air->x, air->y, air->own),
649                xyas(x, y, air->own));
650         }
651
652         ac_encounter(&b, &e, air->x, air->y, pp, 0);
653
654         if (!QEMPTY(&b))
655             air_dam +=
656                 air_damage(&b, x, y, mission, victim, s, hardtarget);
657
658         pln_put(&b);
659         pln_put(&e);
660     }
661
662     if (air_dam > 0) {
663         dam += air_dam;
664         if (targeting_ships)
665             nreport(plane_owner, N_SHP_BOMB, victim, 1);
666         else
667             nreport(plane_owner, N_SCT_BOMB, victim, 1);
668     }
669
670     /* free up all this memory */
671     qp = list->q_forw;
672     while (qp != list) {
673         glp = (struct genlist *)qp;
674         qp = qp->q_forw;
675
676         free(glp->thing);
677         free(glp);
678     }
679
680     qp = escorts.q_forw;
681     while (qp != (&escorts)) {
682         newqp = qp->q_forw;
683         emp_remque(qp);
684         free(qp);
685         qp = newqp;
686     }
687
688     qp = bombers.q_forw;
689     while (qp != (&bombers)) {
690         newqp = qp->q_forw;
691         emp_remque(qp);
692         free(qp);
693         qp = newqp;
694     }
695
696     return dam;
697 }
698
699 int
700 cando(int mission, int type)
701 {
702     switch (mission) {
703     case MI_ESCORT:
704         if (type == EF_PLANE)
705             return 1;
706         return 0;
707     case MI_AIR_DEFENSE:
708         if (type == EF_PLANE)
709             return 1;
710         return 0;
711     case MI_SINTERDICT:
712         if ((type == EF_PLANE) || (type == EF_SHIP))
713             return 1;
714         return 0;
715     case MI_INTERDICT:
716         return 1;
717     case MI_SUPPORT:
718     case MI_OSUPPORT:
719     case MI_DSUPPORT:
720         if (type == EF_PLANE)
721             return 1;
722         return 0;
723     case MI_RESERVE:
724         if (type == EF_LAND)
725             return 1;
726         return 0;
727     }
728
729     return 0;
730 }
731
732 char *
733 mission_name(short mission)
734 {
735     switch (mission) {
736     case MI_INTERDICT:
737         return "an interdiction";
738     case MI_SUPPORT:
739         return "a support";
740     case MI_OSUPPORT:
741         return "an offensive support";
742     case MI_DSUPPORT:
743         return "a defensive support";
744     case MI_RESERVE:
745         return "a reserve";
746     case MI_ESCORT:
747         return "an escort";
748     case MI_SINTERDICT:
749         return "a sub interdiction";
750     case MI_AIR_DEFENSE:
751         return "an air defense";
752     }
753     CANT_REACH();
754     return "a mysterious";
755 }
756
757 /*
758  * Maximum distance GP can perform its mission.
759  * Note: this has nothing to do with the radius of the op-area.
760  * oprange() governs where the unit *can* strike, the op-area governs
761  * where the player wants it to strike.
762  */
763 int
764 oprange(struct empobj *gp)
765 {
766     switch (gp->ef_type) {
767     case EF_SHIP:
768         return ldround(shp_fire_range((struct shpstr *)gp), 1);
769     case EF_LAND:
770         if (gp->mission == MI_RESERVE)
771             return lnd_reaction_range((struct lndstr *)gp);
772         return ldround(lnd_fire_range((struct lndstr *)gp), 1);
773     case EF_PLANE:
774         /* missiles go one way, so we can use all the range */
775         if (plchr[(int)gp->type].pl_flags & P_M)
776             return ((struct plnstr *)gp)->pln_range;
777         return ((struct plnstr *)gp)->pln_range / 2;
778     }
779     CANT_REACH();
780     return -1;
781 }
782
783 /*
784  * Does GP's mission op area cover X,Y?
785  */
786 int
787 in_oparea(struct empobj *gp, coord x, coord y)
788 {
789     return mapdist(x, y, gp->opx, gp->opy) <= gp->radius
790         && mapdist(x, y, gp->x, gp->y) <= oprange(gp);
791 }
792
793 /*
794  *  Remove all planes who cannot go on
795  *  the mission from the plane list.
796  */
797 static void
798 mission_pln_sel(struct emp_qelem *list, int wantflags, int nowantflags,
799                 int hardtarget)
800 {
801     struct emp_qelem *qp, *next;
802     struct plnstr *pp;
803     struct plchrstr *pcp;
804     struct plist *plp;
805
806     for (qp = list->q_forw; qp != list; qp = next) {
807         next = qp->q_forw;
808         plp = (struct plist *)qp;
809         pp = &plp->plane;
810         pcp = plp->pcp;
811
812         if (pp->pln_effic < 40) {
813             emp_remque(qp);
814             free(qp);
815             continue;
816         }
817
818         if (pp->pln_mobil < 1) {
819             emp_remque(qp);
820             free(qp);
821             continue;
822         }
823
824         if (opt_MARKET) {
825             if (ontradingblock(EF_PLANE, pp)) {
826                 emp_remque(qp);
827                 free(qp);
828                 continue;
829             }
830         }
831
832         if (!pln_capable(pp, wantflags, nowantflags)) {
833             emp_remque(qp);
834             free(qp);
835             continue;
836         }
837
838         if (!pln_airbase_ok(pp, 0, 0)) {
839             emp_remque(qp);
840             free(qp);
841             continue;
842         }
843
844         if (pcp->pl_flags & P_A) {
845             if (roll(100) > pln_identchance(pp, hardtarget, EF_SHIP)) {
846                 emp_remque(qp);
847                 free(qp);
848                 continue;
849             }
850         }
851
852         putplane(pp->pln_uid, pp);
853     }
854 }
855
856 /*
857  * Arm only the planes at x,y
858  */
859 static void
860 mission_pln_arm(struct emp_qelem *list, coord x, coord y, int dist,
861                 int mission, struct ichrstr *ip)
862 {
863     struct emp_qelem *qp;
864     struct emp_qelem *next;
865     struct plist *plp;
866     struct plnstr *pp;
867
868     for (qp = list->q_forw; qp != list; qp = next) {
869         next = qp->q_forw;
870         plp = (struct plist *)qp;
871         pp = &plp->plane;
872
873         if (pp->pln_x != x)
874             continue;
875         if (pp->pln_y != y)
876             continue;
877
878         if (CANT_HAPPEN(pp->pln_flags & PLN_LAUNCHED)
879             || mission_pln_equip(plp, ip, mission) < 0) {
880             emp_remque(qp);
881             free(qp);
882             continue;
883         }
884
885         pp->pln_flags |= PLN_LAUNCHED;
886         pp->pln_mobil -= pln_mobcost(dist, pp, mission);
887         putplane(pp->pln_uid, pp);
888     }
889 }
890
891 int
892 mission_pln_equip(struct plist *plp, struct ichrstr *ip, char mission)
893 {
894     struct plchrstr *pcp;
895     struct plnstr *pp;
896     int load, needed;
897     struct lndstr land;
898     struct shpstr ship;
899     struct sctstr sect;
900     i_type itype;
901     short *item;
902
903     pp = &plp->plane;
904     pcp = plp->pcp;
905     if (pp->pln_ship >= 0) {
906         getship(pp->pln_ship, &ship);
907         item = ship.shp_item;
908     } else if (pp->pln_land >= 0) {
909         getland(pp->pln_land, &land);
910         item = land.lnd_item;
911     } else {
912         getsect(pp->pln_x, pp->pln_y, &sect);
913         item = sect.sct_item;
914     }
915     if (pcp->pl_fuel > item[I_PETROL]) {
916         return -1;
917     }
918     item[I_PETROL] -= pcp->pl_fuel;
919     load = pln_load(pp);
920     itype = I_NONE;
921     switch (mission) {
922     case 'p':           /* pinpoint bomb */
923         itype = I_SHELL;
924         break;
925     case 'i':           /* missile interception */
926         if (load)
927             itype = I_SHELL;
928         break;
929     case 'e':           /* escort */
930     case 0:             /* plane interception */
931         load = 0;
932         break;
933     default:
934         CANT_REACH();
935         load = 0;
936     }
937
938     if (itype != I_NONE) {
939         needed = load / ichr[itype].i_lbs;
940         if (needed <= 0)
941             return -1;
942         if (CANT_HAPPEN(nuk_on_plane(pp) >= 0))
943             return -1;
944         if (itype == I_SHELL && item[itype] < needed) {
945             if (pp->pln_ship >= 0)
946                 shp_supply(&ship, I_SHELL, needed);
947             else if (pp->pln_land >= 0)
948                 lnd_supply(&land, I_SHELL, needed);
949             else
950                 sct_supply(&sect, I_SHELL, needed);
951         }
952         if (item[itype] < needed)
953             return -1;
954         item[itype] -= needed;
955         plp->load = needed;
956     }
957
958     if (pp->pln_ship >= 0)
959         putship(ship.shp_uid, &ship);
960     else if (pp->pln_land >= 0)
961         putland(land.lnd_uid, &land);
962     else
963         putsect(&sect);
964     return 0;
965 }
966
967 /*
968  *  Return 1 if this x,y pair is in the list
969  */
970 static int
971 find_airport(struct emp_qelem *airp, coord x, coord y)
972 {
973     struct emp_qelem *qp;
974     struct airport *a;
975
976     for (qp = airp->q_forw; qp != airp; qp = qp->q_forw) {
977         a = (struct airport *)qp;
978         if ((a->x == x) && (a->y == y))
979             return 1;
980     }
981
982     return 0;
983 }
984
985 /* #*# This needs to be changed to include acc's -KHS */
986 static void
987 add_airport(struct emp_qelem *airp, coord x, coord y)
988 {
989     struct airport *a;
990     struct sctstr sect;
991
992     a = malloc(sizeof(struct airport));
993
994     a->x = x;
995     a->y = y;
996     getsect(x, y, &sect);
997     a->own = sect.sct_own;
998
999     emp_insque((struct emp_qelem *)a, airp);
1000 }
1001
1002 /*
1003  *  Take all the planes in list 1 that
1004  *  are at x,y, and put them into list 2.
1005  */
1006 static void
1007 divide(struct emp_qelem *l1, struct emp_qelem *l2, coord x, coord y)
1008 {
1009     struct emp_qelem *qp, *next;
1010     struct plist *plp;
1011
1012     for (qp = l1->q_forw; qp != l1; qp = next) {
1013         next = qp->q_forw;
1014         plp = (struct plist *)qp;
1015
1016         if (plp->plane.pln_x != x)
1017             continue;
1018         if (plp->plane.pln_y != y)
1019             continue;
1020
1021         emp_remque(qp);
1022         emp_insque(qp, l2);
1023     }
1024 }
1025
1026 static int
1027 air_damage(struct emp_qelem *bombers, coord x, coord y, int mission,
1028            natid victim, char *s, int hardtarget)
1029 {
1030     struct emp_qelem *qp;
1031     struct plist *plp;
1032     struct plnstr *pp;
1033     int newdam, dam = 0;
1034     int hitchance;
1035
1036     for (qp = bombers->q_forw; qp != bombers; qp = qp->q_forw) {
1037         plp = (struct plist *)qp;
1038         pp = &plp->plane;
1039
1040         if ((mission == MI_SINTERDICT) && !(plp->pcp->pl_flags & P_A))
1041             continue;
1042
1043         if (!plp->load)
1044             continue;
1045
1046         newdam = 0;
1047         if (plp->pcp->pl_flags & P_A) {
1048             if (roll(100) > pln_identchance(pp, hardtarget, EF_SHIP)) {
1049                 wu(0, pp->pln_own,
1050                    "\t%s detects sub movement in %s\n",
1051                    prplane(pp), xyas(x, y, pp->pln_own));
1052                 continue;
1053             }
1054             if (getrel(getnatp(pp->pln_own), victim) > HOSTILE) {
1055                 wu(0, pp->pln_own,
1056                    "\t%s tracks %s %s at %s\n",
1057                    prplane(pp), cname(victim), s, xyas(x, y, pp->pln_own));
1058                 continue;
1059             }
1060             wu(0, pp->pln_own,
1061                "\t%s depth-charging %s %s in %s\n",
1062                prplane(pp), cname(victim), s, xyas(x, y, pp->pln_own));
1063         } else {
1064             wu(0, pp->pln_own,
1065                "\t%s pinbombing %s %s in %s\n",
1066                prplane(pp), cname(victim), s, xyas(x, y, pp->pln_own));
1067         }
1068         hitchance = pln_hitchance(pp, hardtarget, EF_SHIP);
1069         if (nuk_on_plane(&plp->plane) >= 0)
1070             hitchance = 100;
1071         else if (hardtarget != SECT_HARDTARGET)
1072             wu(0, pp->pln_own, "\t\t%d%% hitchance...", hitchance);
1073         if (roll(100) <= hitchance) {
1074             newdam = pln_damage(&plp->plane, 'p', 1);
1075             wu(0, pp->pln_own,
1076                "\t\thit %s %s for %d damage\n",
1077                cname(victim), s, newdam);
1078             dam += newdam;
1079         } else {
1080             newdam = pln_damage(&plp->plane, 'p', 0);
1081             wu(0, pp->pln_own, "missed\n");
1082             if (mission == MI_SINTERDICT) {
1083                 mpr(victim,
1084                     "RUMBLE... your sub in %s hears a depth-charge explode nearby\n",
1085                     xyas(x, y, victim));
1086             } else if (*s == 's') {
1087                 mpr(victim, "SPLASH!  Bombs miss your %s in %s\n",
1088                     s, xyas(x, y, victim));
1089             } else {
1090                 mpr(victim, "SPLAT!  Bombs miss your %s in %s\n",
1091                     s, xyas(x, y, victim));
1092             }
1093             /* Now, even though we missed, the bombs
1094                land somewhere. */
1095             collateral_damage(x, y, newdam);
1096         }
1097
1098         /* use up missiles */
1099         if (plp->pcp->pl_flags & P_M)
1100             pp->pln_effic = 0;
1101     }
1102
1103     return dam;
1104 }