]> git.pond.sub.org Git - empserver/blob - src/lib/subs/aircombat.c
Update copyright notice
[empserver] / src / lib / subs / aircombat.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2014, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  aircombat.c: Deal with air to air combat
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Thomas Ruschak, 1992
32  *     Steve McClure, 1996
33  *     Markus Armbruster, 2006-2012
34  */
35
36 #include <config.h>
37
38 #include "chance.h"
39 #include "file.h"
40 #include "land.h"
41 #include "map.h"
42 #include "misc.h"
43 #include "mission.h"
44 #include "nat.h"
45 #include "news.h"
46 #include "nsc.h"
47 #include "optlist.h"
48 #include "path.h"
49 #include "plague.h"
50 #include "plane.h"
51 #include "player.h"
52 #include "prototypes.h"
53 #include "sect.h"
54 #include "ship.h"
55 #include "xy.h"
56
57 #define FLAK_GUN_MAX 14
58
59 static void ac_intercept(struct emp_qelem *, struct emp_qelem *,
60                          struct emp_qelem *, natid, coord, coord, int);
61 static void ac_combat_headers(natid, natid);
62 static void ac_airtoair(struct emp_qelem *, struct emp_qelem *);
63 static void ac_dog(struct plist *, struct plist *);
64 static void ac_putplane(struct plist *, int);
65 static void ac_doflak(struct emp_qelem *, struct sctstr *);
66 static void ac_landflak(struct emp_qelem *, coord, coord);
67 static void ac_shipflak(struct emp_qelem *, coord, coord);
68 static void ac_fireflak(struct emp_qelem *, natid, int);
69 static void getilists(struct emp_qelem *, unsigned char *, natid);
70 static int do_evade(struct emp_qelem *, struct emp_qelem *);
71
72 void
73 ac_encounter(struct emp_qelem *bomb_list, struct emp_qelem *esc_list,
74              coord x, coord y, char *path, int mission_flags)
75 {
76     int val;
77     int dir;
78     unsigned char gotships[MAXNOC];
79     unsigned char gotlands[MAXNOC];
80     unsigned char rel[MAXNOC];
81     int overfly[MAXNOC];
82     int flags;
83     struct emp_qelem ilist[MAXNOC];
84     natid plane_owner;
85     struct sctstr sect;
86     struct shpstr ship;
87     struct lndstr land;
88     struct nstr_item ni;
89     natid cn;
90     struct plist *plp;
91     int evaded;
92     struct shiplist *head = NULL;
93     int changed = 0;
94 /* We want to only intercept once per sector per owner.  So, if we overfly
95    a sector, and then overfly some land units or ships, we don't want to
96    potentially intercept 3 times. */
97
98     plp = (struct plist *)bomb_list->q_forw;
99     plane_owner = plp->plane.pln_own;
100
101     memset(overfly, 0, sizeof(overfly));
102     getilists(ilist, rel, plane_owner);
103
104     if (CANT_HAPPEN(mission_flags && plane_owner != player->cnum))
105         mission_flags = 0;
106
107     if (mission_flags & PM_R) {
108         flags = pln_caps(bomb_list);
109         if (flags & P_S) {
110             pr("\nSPY Plane report\n");
111             prdate();
112             sathead();
113         } else if (flags & P_A) {
114             pr("\nAnti-Sub Patrol report\n");
115         } else {
116             pr("\nReconnaissance report\n");
117             prdate();
118         }
119     }
120
121     for (;;) {
122         getsect(x, y, &sect);
123         memset(gotships, 0, sizeof(gotships));
124         snxtitem_xy(&ni, EF_SHIP, x, y);
125         while (nxtitem(&ni, &ship)) {
126             if (mchr[(int)ship.shp_type].m_flags & M_SUB)
127                 continue;
128             gotships[ship.shp_own] = 1;
129         }
130         memset(gotlands, 0, sizeof(gotlands));
131         snxtitem_xy(&ni, EF_LAND, x, y);
132         while (nxtitem(&ni, &land)) {
133             if (land.lnd_ship >= 0 || land.lnd_land >= 0)
134                 continue;
135             gotlands[land.lnd_own] = 1;
136         }
137
138         if (mission_flags & PM_R) {
139             flags = pln_caps(bomb_list);
140             if (opt_HIDDEN)
141                 setcont(player->cnum, sect.sct_own, FOUND_FLY);
142             if (sect.sct_type == SCT_WATER)
143                 pr("flying over %s at %s\n",
144                    dchr[sect.sct_type].d_name, xyas(x, y, player->cnum));
145             else if (flags & P_S)
146                 satdisp_sect(&sect, flags & P_I ? 10 : 50);
147             else
148                 look_at_sect(&sect, 25);
149
150             if (flags & P_S)
151                 satdisp_units(sect.sct_x, sect.sct_y);
152             else {
153                 for (cn = 1; cn < MAXNOC; cn++) {
154                     if (cn == player->cnum)
155                         continue;
156                     if (gotships[cn])
157                         pr("Flying over %s ships in %s\n",
158                            cname(cn), xyas(x, y, player->cnum));
159                     if (gotlands[cn])
160                         pr("Flying over %s land units in %s\n",
161                            cname(cn), xyas(x, y, player->cnum));
162                 }
163             }
164         } else
165             mpr(plane_owner, "flying over %s at %s\n",
166                 dchr[sect.sct_type].d_name, xyas(x, y, plane_owner));
167         changed += map_set(plane_owner, sect.sct_x, sect.sct_y,
168                            dchr[sect.sct_type].d_mnem, 0);
169
170         evaded = do_evade(bomb_list, esc_list);
171         if (!evaded) {
172             overfly[sect.sct_own]++;
173             for (cn = 1; cn < MAXNOC; cn++) {
174                 if (rel[cn] == ALLIED)
175                     continue;
176                 if (cn != sect.sct_own && !gotships[cn] && !gotlands[cn])
177                     continue;
178                 mpr(cn, "%s planes spotted over %s\n",
179                     cname(plane_owner), xyas(x, y, cn));
180                 if (opt_HIDDEN)
181                     setcont(cn, plane_owner, FOUND_FLY);
182             }
183
184             /* Fire flak */
185             if (rel[sect.sct_own] <= HOSTILE)
186                 ac_doflak(bomb_list, &sect);
187             /* If bombers left, fire flak from units and ships */
188             if (!QEMPTY(bomb_list))
189                 ac_landflak(bomb_list, x, y);
190             if (!QEMPTY(bomb_list))
191                 ac_shipflak(bomb_list, x, y);
192             /* mission planes aborted due to flak -- don't send escorts */
193             if (QEMPTY(bomb_list))
194                 break;
195
196             for (cn = 1; cn < MAXNOC && !QEMPTY(bomb_list); cn++) {
197                 if (rel[cn] > HOSTILE)
198                     continue;
199                 ac_intercept(bomb_list, esc_list, &ilist[cn], cn, x, y,
200                              !(cn == sect.sct_own
201                                || gotships[cn] || gotlands[cn]));
202             }
203         }
204
205         if (mission_flags & PM_R) {
206             flags = pln_caps(bomb_list);
207             if (sect.sct_type == SCT_WATER && mission_flags & PM_S)
208                 plane_sweep(bomb_list, x, y);
209             if (sect.sct_type == SCT_WATER && flags & P_A)
210                 plane_sona(bomb_list, x, y, &head);
211         }
212
213         dir = *path++;
214         if (!dir || QEMPTY(bomb_list) || (val = diridx(dir)) == DIR_STOP)
215             break;
216         x = xnorm(x + diroff[val][0]);
217         y = ynorm(y + diroff[val][1]);
218     }
219
220     /* Let's report all of the overflights even if aborted */
221     for (cn = 1; cn < MAXNOC; cn++) {
222         if (overfly[cn] > 0 && rel[cn] != ALLIED)
223             nreport(plane_owner, N_OVFLY_SECT, cn, overfly[cn]);
224     }
225     /* If the map changed, update it */
226     if (changed)
227         writemap(plane_owner);
228
229     free_shiplist(&head);
230     for (cn = 1; cn < MAXNOC; cn++)
231         pln_put(&ilist[cn]);
232 }
233
234 static void
235 sam_intercept(struct emp_qelem *att_list, struct emp_qelem *def_list,
236               natid def_own, natid plane_owner, coord x, coord y,
237               int only_mission)
238 {
239     struct emp_qelem *aqp;
240     struct emp_qelem *anext;
241     struct emp_qelem *dqp;
242     struct emp_qelem *dnext;
243     struct plist *aplp;
244     struct plist *dplp;
245     struct plnstr *pp;
246     int first = 1;
247
248     for (aqp = att_list->q_forw,
249          dqp = def_list->q_forw;
250          aqp != att_list && dqp != def_list; aqp = anext) {
251         anext = aqp->q_forw;
252         aplp = (struct plist *)aqp;
253         if (aplp->pcp->pl_cost < 1000)
254             continue;
255         for (; dqp != def_list; dqp = dnext) {
256             dnext = dqp->q_forw;
257             dplp = (struct plist *)dqp;
258             pp = &dplp->plane;
259             if (!(dplp->pcp->pl_flags & P_M))
260                 continue;
261             if (only_mission && !pp->pln_mission)
262                 continue;
263             if (pp->pln_range < mapdist(x, y, pp->pln_x, pp->pln_y))
264                 continue;
265             if (pp->pln_mission
266                 && pp->pln_radius < mapdist(x, y, pp->pln_opx, pp->pln_opy))
267                 continue;
268             if (CANT_HAPPEN(pp->pln_flags & PLN_LAUNCHED)
269                 || mission_pln_equip(dplp, NULL, 0) < 0) {
270                 emp_remque(dqp);
271                 free(dqp);
272                 continue;
273             }
274             pp->pln_flags |= PLN_LAUNCHED;
275             putplane(pp->pln_uid, pp);
276             if (first) {
277                 first = 0;
278                 mpr(plane_owner, "%s launches SAMs!\n", cname(def_own));
279                 mpr(def_own, "Launching SAMs at %s planes over %s!\n",
280                     cname(plane_owner), xyas(x, y, def_own));
281                 ac_combat_headers(plane_owner, def_own);
282             }
283             ac_dog(aplp, dplp);
284             dqp = dnext;
285             break;
286         }
287     }
288     if (!first) {
289         mpr(plane_owner, "\n");
290         mpr(def_own, "\n");
291     }
292 }
293
294 static void
295 ac_intercept(struct emp_qelem *bomb_list, struct emp_qelem *esc_list,
296              struct emp_qelem *def_list, natid def_own, coord x, coord y,
297              int only_mission)
298 {
299     struct plnstr *pp;
300     struct plist *plp;
301     int icount;
302     struct emp_qelem *next;
303     struct emp_qelem *qp;
304     struct emp_qelem int_list;
305     int att_count;
306     natid plane_owner;
307     int dist;
308
309     plp = (struct plist *)bomb_list->q_forw;
310     plane_owner = plp->plane.pln_own;
311
312     sam_intercept(bomb_list, def_list, def_own, plane_owner, x, y,
313                   only_mission);
314     sam_intercept(esc_list, def_list, def_own, plane_owner, x, y,
315                   only_mission);
316
317     att_count = 0;
318     for (qp = bomb_list->q_forw; qp != bomb_list; qp = qp->q_forw)
319         att_count++;
320     for (qp = esc_list->q_forw; qp != esc_list; qp = qp->q_forw)
321         att_count++;
322     if (!att_count)
323         return;
324
325     emp_initque(&int_list);
326     icount = 0;
327     for (qp = def_list->q_forw; qp != def_list; qp = next) {
328         next = qp->q_forw;
329         plp = (struct plist *)qp;
330         pp = &plp->plane;
331         /* SAMs interdict separately */
332         if (plp->pcp->pl_flags & P_M)
333             continue;
334         if (only_mission && !pp->pln_mission)
335             continue;
336         dist = mapdist(x, y, pp->pln_x, pp->pln_y) * 2;
337         if (pp->pln_range < dist)
338             continue;
339         if (pp->pln_mission
340             && pp->pln_radius < mapdist(x, y, pp->pln_opx, pp->pln_opy))
341             continue;
342         if (CANT_HAPPEN(pp->pln_flags & PLN_LAUNCHED)
343             || mission_pln_equip(plp, NULL, 0) < 0) {
344             emp_remque(qp);
345             free(qp);
346             continue;
347         }
348         /* got one; delete from def_list, add to int_list */
349         emp_remque(qp);
350         emp_insque(qp, &int_list);
351         pp->pln_flags |= PLN_LAUNCHED;
352         pp->pln_mobil -= pln_mobcost(dist, pp, 0);
353         putplane(pp->pln_uid, pp);
354         icount++;
355         if (icount > att_count)
356             break;
357     }
358     if (icount == 0)
359         return;
360     mpr(plane_owner, "%d %s fighter%s rising to intercept!\n",
361         icount, cname(def_own), icount == 1 ? " is" : "s are");
362     mpr(def_own, "%d fighter%s intercepting %s planes over %s!\n",
363         icount, icount == 1 ? " is" : "s are", cname(plane_owner),
364         xyas(x, y, def_own));
365     ac_combat_headers(plane_owner, def_own);
366     ac_airtoair(esc_list, &int_list);
367     ac_airtoair(bomb_list, &int_list);
368     mpr(plane_owner, "\n");
369     mpr(def_own, "\n");
370     pln_put(&int_list);
371 }
372
373 static void
374 ac_combat_headers(natid plane_owner, natid def_own)
375 {
376     mpr(plane_owner,
377         " %-10.10s %-10.10s  strength int odds  damage           results\n",
378         cname(plane_owner), cname(def_own));
379     mpr(def_own,
380         " %-10.10s %-10.10s  strength int odds  damage           results\n",
381         cname(def_own), cname(plane_owner));
382 }
383
384 /*
385  * air-to-air combat.
386  */
387 static void
388 ac_airtoair(struct emp_qelem *att_list, struct emp_qelem *int_list)
389 {
390     struct plist *attacker;
391     struct plist *interceptor;
392     struct emp_qelem *att;
393     struct emp_qelem *in;
394     int more_att;
395     int more_int;
396     struct emp_qelem *att_next;
397     struct emp_qelem *in_next;
398
399     att = att_list->q_forw;
400     in = int_list->q_forw;
401     more_att = 1;
402     more_int = 1;
403     if (QEMPTY(att_list) || QEMPTY(int_list)) {
404         more_att = 0;
405         more_int = 0;
406     }
407     while (more_att || more_int) {
408         in_next = in->q_forw;
409         att_next = att->q_forw;
410         attacker = (struct plist *)att;
411         interceptor = (struct plist *)in;
412         ac_dog(attacker, interceptor);
413         in = in_next;
414         att = att_next;
415         if (att == att_list) {
416             more_att = 0;
417             if (QEMPTY(att_list))
418                 more_int = 0;
419             else
420                 att = att->q_forw;
421         }
422         if (in == int_list) {
423             more_int = 0;
424             if (QEMPTY(int_list))
425                 more_att = 0;
426             else
427                 in = in->q_forw;
428         }
429     }
430 }
431
432 static void
433 ac_dog_report(natid to, int intensity, double odds,
434               struct plist *p1, int val1, int dam1, char *dam_mesg1,
435               struct plist *p2, int val2, int dam2, char *dam_mesg2)
436 {
437     mpr(to, " %3.3s #%-4d  %3.3s #%-4d   %3d/%-3d %3d  %3.2f  %3d/%-3d"
438         "%-13.13s %-13.13s\n",
439         p1->pcp->pl_name, p1->plane.pln_uid,
440         p2->pcp->pl_name, p2->plane.pln_uid,
441         val1, val2, intensity, odds, dam1, dam2,
442         dam_mesg1, dam_mesg2);
443 }
444
445 static void
446 ac_dog(struct plist *ap, struct plist *dp)
447 {
448     int att, def;
449     double odds;
450     int intensity, i;
451     natid att_own, def_own;
452     int adam, ddam, adisp, ddisp;
453     char adam_mesg[14], ddam_mesg[14];
454
455     att_own = ap->plane.pln_own;
456     def_own = dp->plane.pln_own;
457
458     att = pln_att(&ap->plane);
459     if (att == 0)
460         att = pln_def(&ap->plane);
461     att = att * ap->plane.pln_effic / 100;
462     att = MAX(att, ap->pcp->pl_def / 2);
463
464     def = pln_def(&dp->plane) * dp->plane.pln_effic / 100;
465     def = MAX(def, dp->pcp->pl_def / 2);
466
467     if ((ap->pcp->pl_flags & P_F) && ap->load != 0)
468         att -= 2;
469     if ((dp->pcp->pl_flags & P_F) && dp->load != 0)
470         def -= 2;
471     att += ap->pcp->pl_stealth / 25.0;
472     def += dp->pcp->pl_stealth / 25.0;
473     if (att < 1) {
474         def += 1 - att;
475         att = 1;
476     }
477     if (def < 1) {
478         att += 1 - def;
479         def = 1;
480     }
481     odds = ((double)att / ((double)def + (double)att));
482     if (odds <= 0.05)
483         odds = 0.05;
484     intensity = roll(20) + roll(20) + roll(20) + roll(20) + 1;
485
486     adam = 0;
487     ddam = 0;
488     for (i = 0; i < intensity; i++) {
489         if (chance(odds)) {
490             ddam++;
491             if (dp->plane.pln_effic - ddam < PLANE_MINEFF)
492                 break;
493         } else {
494             adam++;
495             if (ap->plane.pln_effic - adam < PLANE_MINEFF)
496                 break;
497         }
498     }
499
500     if (dp->pcp->pl_flags & P_M)
501         ddam = 100;
502
503     adisp = ac_damage_plane(&ap->plane, def_own, adam, 0, adam_mesg);
504     ddisp = ac_damage_plane(&dp->plane, att_own, ddam, 0, ddam_mesg);
505     ac_dog_report(att_own, intensity, odds,
506                   ap, att, adam, adam_mesg,
507                   dp, def, ddam, ddam_mesg);
508     ac_dog_report(def_own, intensity, odds,
509                   dp, def, ddam, ddam_mesg,
510                   ap, att, adam, adam_mesg);
511     ac_putplane(ap, adisp);
512     ac_putplane(dp, ddisp);
513
514     if (opt_HIDDEN) {
515         setcont(att_own, def_own, FOUND_FLY);
516         setcont(def_own, att_own, FOUND_FLY);
517     }
518 }
519
520 int
521 ac_damage_plane(struct plnstr *pp, natid from, int dam, int flak,
522                 char *mesg)
523 {
524     int eff, disp;
525
526     *mesg = 0;
527     if (dam <= 0) {
528         if (!flak)
529             snprintf(mesg, 14, " no damage");
530         return 0;
531     }
532
533     eff = pp->pln_effic - dam;
534     if (eff < 0)
535         eff = 0;
536
537     disp = 0;
538     if (eff < PLANE_MINEFF) {
539         snprintf(mesg, 14, " shot down");
540         disp = 1;
541     } else if (eff < 80 && chance((80 - eff) / 100.0)) {
542         snprintf(mesg, 14, " aborted @%2d%%", eff);
543         disp = 2;
544     } else if (!flak)
545         snprintf(mesg, 14, " cleared");
546
547     pp->pln_effic = eff;
548     pp->pln_mobil -= MIN(32 + pp->pln_mobil, dam / 2);
549
550     if (disp == 1 && from != 0 && !(plchr[pp->pln_type].pl_flags & P_M))
551         nreport(from, N_DOWN_PLANE, pp->pln_own, 1);
552     return disp;
553 }
554
555 /*
556  * NOTE: This routine may remove the appropriate plane element from the
557  * queue if it gets destroyed.  That means that the caller must assume
558  * that the current queue pointer is invalid on return from the
559  * call.  (this has caused bugs in the past)
560  */
561 static void
562 ac_putplane(struct plist *plp, int disp)
563 {
564     if (disp)
565         pln_put1(plp);
566     else
567         putplane(plp->plane.pln_uid, &plp->plane);
568 }
569
570 static void
571 ac_doflak(struct emp_qelem *list, struct sctstr *from)
572 {
573     int gun;
574     natid plane_owner;
575     struct plist *plp;
576
577     plp = (struct plist *)list->q_forw;
578     plane_owner = plp->plane.pln_own;
579
580     gun = MIN(FLAK_GUN_MAX, from->sct_item[I_GUN]);
581     gun = roundavg(tfact(from->sct_own, 2.0 * gun));
582     if (gun > 0) {
583         mpr(plane_owner, "firing %d flak guns in %s...\n",
584             gun, xyas(from->sct_x, from->sct_y, plane_owner));
585         mpr(from->sct_own, "firing %d flak guns in %s...\n",
586             gun, xyas(from->sct_x, from->sct_y, from->sct_own));
587         ac_fireflak(list, from->sct_own, gun);
588     }
589 }
590
591 static void
592 ac_shipflak(struct emp_qelem *list, coord x, coord y)
593 {
594     struct nstr_item ni;
595     struct shpstr ship;
596     struct mchrstr *mcp;
597     double flak, total, ngun;
598     int gun;
599     struct plist *plp;
600     natid plane_owner;
601     natid from;
602
603     plp = (struct plist *)list->q_forw;
604     plane_owner = plp->plane.pln_own;
605
606     total = ngun = 0;
607     snxtitem_xy(&ni, EF_SHIP, x, y);
608     while (!QEMPTY(list) && nxtitem(&ni, &ship)) {
609         if (ship.shp_own == 0 || ship.shp_own == plane_owner)
610             continue;
611         mcp = &mchr[(int)ship.shp_type];
612         if (mcp->m_flags & M_SUB)
613             continue;
614         if (relations_with(ship.shp_own, plane_owner) > HOSTILE)
615             continue;
616         gun = shp_usable_guns(&ship);
617         if (gun == 0)
618             continue;
619         flak = gun * (ship.shp_effic / 100.0);
620         ngun += flak;
621         total += techfact(ship.shp_tech, flak * 2.0);
622
623         mpr(ship.shp_own, "firing %.0f flak guns from %s...\n",
624             flak, prship(&ship));
625         from = ship.shp_own;
626     }
627
628     /* Limit to FLAK_GUN_MAX guns of average tech factor */
629     if (ngun > FLAK_GUN_MAX)
630         total *= FLAK_GUN_MAX / ngun;
631
632     gun = roundavg(total);
633     if (gun > 0) {
634         mpr(plane_owner, "Flak!  Ships firing %d flak guns...\n", gun);
635         ac_fireflak(list, from, gun);
636     }
637 }
638
639 static void
640 ac_landflak(struct emp_qelem *list, coord x, coord y)
641 {
642     struct nstr_item ni;
643     struct lndstr land;
644     struct lchrstr *lcp;
645     double flak, total, ngun;
646     int aaf, gun;
647     struct plist *plp;
648     natid plane_owner;
649     natid from;
650
651     plp = (struct plist *)list->q_forw;
652     plane_owner = plp->plane.pln_own;
653
654     total = ngun = 0;
655     snxtitem_xy(&ni, EF_LAND, x, y);
656     while (!QEMPTY(list) && nxtitem(&ni, &land)) {
657         if (land.lnd_own == 0 || land.lnd_own == plane_owner)
658             continue;
659         lcp = &lchr[(int)land.lnd_type];
660         aaf = lnd_aaf(&land);
661         if ((lcp->l_flags & L_FLAK) == 0 || aaf == 0)
662             continue;
663         if (land.lnd_ship >= 0 || land.lnd_land >= 0)
664             continue;
665         if (relations_with(land.lnd_own, plane_owner) > HOSTILE)
666             continue;
667         flak = aaf * 1.5 * land.lnd_effic / 100.0;
668         ngun += flak;
669         total += techfact(land.lnd_tech, flak * 2.0);
670
671         mpr(land.lnd_own, "firing flak guns from unit %s (aa rating %d)\n",
672             prland(&land), aaf);
673         from = land.lnd_own;
674     }
675
676     /* Limit to FLAK_GUN_MAX guns of average tech factor */
677     if (ngun > FLAK_GUN_MAX)
678         total *= FLAK_GUN_MAX / ngun;
679
680     gun = roundavg(total);
681     if (gun > 0) {
682         mpr(plane_owner, "Flak!  Land units firing %d flak guns...\n", gun);
683         ac_fireflak(list, from, gun);
684     }
685 }
686
687 /*
688  * Called from shipflak, landflak, and doflak.
689  */
690 static void
691 ac_fireflak(struct emp_qelem *list, natid from, int guns)
692 {
693     struct plist *plp;
694     int n, disp;
695     struct emp_qelem *qp;
696     struct emp_qelem *next;
697     char msg[14];
698
699     for (qp = list->q_forw; qp != list; qp = next) {
700         next = qp->q_forw;
701         plp = (struct plist *)qp;
702         n = ac_flak_dam(guns, pln_def(&plp->plane), plp->pcp->pl_flags);
703         disp = ac_damage_plane(&plp->plane, from, n, 1, msg);
704         mpr(plp->plane.pln_own, "    %s takes %d%s%s.\n",
705             prplane(&plp->plane), n, *msg ? " --" : "", msg);
706         ac_putplane(plp, disp);
707     }
708 }
709
710 /*
711  * Calculate flak damage
712  */
713 int
714 ac_flak_dam(int guns, int def, int pl_flags)
715 {
716     int flak, dam;
717     float mult;
718     /*                             <-7      -7     -6     -5     -4 */
719     static float flaktable[18] = { 0.132f, 0.20f, 0.20f, 0.25f, 0.30f,
720     /*    -3     -2     -1      0     +1     +2     +3     +4 */
721          0.35f, 0.40f, 0.45f, 0.50f, 0.50f, 0.55f, 0.60f, 0.65f,
722     /*    +5    +6     +7     +8    >+8 */
723          0.70f,0.75f, 0.80f, 0.85f, 1.1305f };
724     enum { FLAK_MAX = sizeof(flaktable)/sizeof(flaktable[0]) - 1 };
725
726     flak = guns - def;
727     if ((pl_flags & P_T) == 0)
728         flak--;
729
730     if (flak > 8)
731         mult = flaktable[FLAK_MAX];
732     else if (flak < -7)
733         mult = flaktable[0];
734     else {
735         flak += 8;
736         mult = flaktable[flak];
737     }
738     mult *= flakscale;
739     dam = (int)((roll(8) + 2) * mult);
740     if (dam > 100)
741         dam = 100;
742     return dam;
743 }
744
745 /*
746  * Get planes available for interception duties.
747  */
748 static void
749 getilists(struct emp_qelem *list, unsigned char *rel, natid intruder)
750 {
751     natid cn;
752     struct plchrstr *pcp;
753     struct plnstr plane;
754     struct nstr_item ni;
755     struct plist *ip;
756
757     rel[0] = NEUTRAL;
758     for (cn = 1; cn < MAXNOC; cn++) {
759         rel[cn] = relations_with(cn, intruder);
760         emp_initque(&list[cn]);
761     }
762
763     snxtitem_all(&ni, EF_PLANE);
764     while (nxtitem(&ni, &plane)) {
765         if (rel[plane.pln_own] > HOSTILE)
766             continue;
767         pcp = &plchr[(int)plane.pln_type];
768         if ((pcp->pl_flags & P_F) == 0)
769             continue;
770         if (plane.pln_flags & PLN_LAUNCHED)
771             continue;
772         if (plane.pln_mission && plane.pln_mission != MI_AIR_DEFENSE)
773             continue;
774         if (plane.pln_mobil <= 0)
775             continue;
776         if (plane.pln_effic < 40)
777             continue;
778         if (opt_MARKET) {
779             if (ontradingblock(EF_PLANE, &plane))
780                 continue;
781         }
782         if (!pln_airbase_ok(&plane, 0, 0))
783             continue;
784         /* got one! */
785         ip = malloc(sizeof(*ip));
786         ip->load = 0;
787         ip->pstage = PLG_HEALTHY;
788         ip->pcp = &plchr[(int)plane.pln_type];
789         ip->plane = plane;
790         emp_insque(&ip->queue, &list[plane.pln_own]);
791     }
792 }
793
794 static int
795 do_evade(struct emp_qelem *bomb_list, struct emp_qelem *esc_list)
796 {
797     struct emp_qelem *qp;
798     double evade;
799     struct plist *plp;
800
801     evade = 100.0;
802     for (qp = bomb_list->q_forw; qp != bomb_list; qp = qp->q_forw) {
803         plp = (struct plist *)qp;
804         if (evade > plp->pcp->pl_stealth / 100.0)
805             evade = plp->pcp->pl_stealth / 100.0;
806     }
807     for (qp = esc_list->q_forw; qp != esc_list; qp = qp->q_forw) {
808         plp = (struct plist *)qp;
809         if (evade > plp->pcp->pl_stealth / 100.0)
810             evade = plp->pcp->pl_stealth / 100.0;
811     }
812
813     if (chance(evade))
814         return 1;
815
816     return 0;
817 }