]> git.pond.sub.org Git - empserver/blob - src/lib/subs/aircombat.c
Fix tracking of planes flying a sortie
[empserver] / src / lib / subs / aircombat.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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  *  aircombat.c: Deal with air to air combat
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Thomas Ruschak, 1992
33  *     Steve McClure, 1996
34  *     Markus Armbruster, 2006-2008
35  */
36
37 #include <config.h>
38
39 #include "file.h"
40 #include "land.h"
41 #include "map.h"
42 #include "misc.h"
43 #include "nat.h"
44 #include "news.h"
45 #include "nsc.h"
46 #include "optlist.h"
47 #include "path.h"
48 #include "plane.h"
49 #include "player.h"
50 #include "prototypes.h"
51 #include "sect.h"
52 #include "ship.h"
53 #include "xy.h"
54
55 #define FLAK_GUN_MAX 14
56
57 static void ac_intercept(struct emp_qelem *, struct emp_qelem *,
58                          struct emp_qelem *, natid, coord, coord);
59 static int all_missiles(struct emp_qelem *);
60 static void ac_dog(struct plist *, struct plist *);
61 static void ac_planedamage(struct plist *, natid, int, natid, int,
62                            int, char *);
63 static void ac_doflak(struct emp_qelem *, struct sctstr *);
64 static void ac_landflak(struct emp_qelem *, coord, coord);
65 static void ac_shipflak(struct emp_qelem *, coord, coord);
66 static void ac_fireflak(struct emp_qelem *, natid, int);
67 static void getilist(struct emp_qelem *, natid);
68 static int do_evade(struct emp_qelem *, struct emp_qelem *);
69
70 void
71 ac_encounter(struct emp_qelem *bomb_list, struct emp_qelem *esc_list,
72              coord x, coord y, char *path, int mission_flags,
73              int no_air_defense)
74 {
75     int val, non_missiles;
76     int rel;
77     int dir;
78     int nats[MAXNOC];
79     int lnats[MAXNOC];
80     int gotilist[MAXNOC];
81     int unfriendly[MAXNOC];
82     int overfly[MAXNOC];
83     struct emp_qelem ilist[MAXNOC], *qp;
84     char mypath[1024];
85     int myp;
86     int civ, mil;
87     natid plane_owner;
88     struct sctstr sect;
89     struct shpstr ship;
90     struct lndstr land;
91     struct nstr_item ni;
92     natid cn;
93     struct natstr *over, *mynatp;
94     struct plist *plp;
95     int evaded;
96     struct shiplist *head = NULL;
97     int changed = 0;
98     int intown = 0;             /* Last owner to intercept */
99 /* We want to only intercept once per sector per owner.  So, if we overfly
100    a sector, and then overfly some land units or ships, we don't want to
101    potentially intercept 3 times. */
102
103     plp = (struct plist *)bomb_list->q_forw;
104     plane_owner = plp->plane.pln_own;
105
106     strncpy(mypath, path, sizeof(mypath));
107     myp = 0;
108
109     memset(overfly, 0, sizeof(overfly));
110     memset(gotilist, 0, sizeof(gotilist));
111     memset(unfriendly, 0, sizeof(unfriendly));
112     for (cn = 1; cn < MAXNOC; cn++) {
113         if ((mynatp = getnatp(cn)) == 0)
114             continue;
115         rel = getrel(mynatp, plane_owner);
116         if (rel > HOSTILE)
117             continue;
118         if (plane_owner == cn)
119             continue;
120         unfriendly[cn]++;
121     }
122     if (mission_flags & PM_R) {
123         if (mission_flags & P_S) {
124             PR(plane_owner, "\nSPY Plane report\n");
125             PRdate(plane_owner);
126             sathead();
127         } else if (mission_flags & P_A) {
128             PR(plane_owner, "\nAnti-Sub Patrol report\n");
129         } else {
130             PR(plane_owner, "\nReconnaissance report\n");
131             PRdate(plane_owner);
132         }
133     }
134
135     while ((dir = mypath[myp++]) && !QEMPTY(bomb_list)) {
136         if ((val = diridx(dir)) == DIR_STOP)
137             break;
138         /* XXX using xnorm is probably bad */
139         x = xnorm(x + diroff[val][0]);
140         y = ynorm(y + diroff[val][1]);
141         getsect(x, y, &sect);
142         over = getnatp(sect.sct_own);
143
144         if (mission_flags & PM_R) {
145             if (opt_HIDDEN)
146                 setcont(plane_owner, sect.sct_own, FOUND_FLY);
147             if (sect.sct_type == SCT_WATER) {
148                 PR(plane_owner, "flying over %s at %s\n",
149                    dchr[sect.sct_type].d_name, xyas(x, y, plane_owner));
150                 if (mission_flags & PM_S)
151                     plane_sweep(bomb_list, x, y);
152                 if (mission_flags & P_A) {
153                     plane_sona(bomb_list, x, y, &head);
154                 }
155                 changed += map_set(plane_owner,
156                                    sect.sct_x, sect.sct_y,
157                                    dchr[sect.sct_type].d_mnem, 0);
158             } else if (mission_flags & P_S) {
159                 satdisp_sect(&sect, (mission_flags & P_I) ? 10 : 50);
160             } else {
161                 /* This is borrowed from lookout */
162                 if (sect.sct_own == plane_owner)
163                     PR(plane_owner, "Your ");
164                 else
165                     PR(plane_owner, "%s (#%d) ",
166                        cname(sect.sct_own), sect.sct_own);
167                 PR(plane_owner, "%s", dchr[sect.sct_type].d_name);
168                 changed += map_set(plane_owner,
169                                    sect.sct_x, sect.sct_y,
170                                    dchr[sect.sct_type].d_mnem, 0);
171                 PR(plane_owner, " %d%% efficient ",
172                    (sect.sct_own == plane_owner) ?
173                    sect.sct_effic : roundintby((int)sect.sct_effic, 25));
174                 civ = sect.sct_item[I_CIVIL];
175                 mil = sect.sct_item[I_MILIT];
176                 if (civ)
177                     PR(plane_owner, "with %s%d civ ",
178                        (sect.sct_own == plane_owner) ?
179                        "" : "approx ",
180                        (sect.sct_own == plane_owner) ?
181                        civ : roundintby(civ, 25));
182                 if (mil)
183                     PR(plane_owner, "with %s%d mil ",
184                        (sect.sct_own == plane_owner) ?
185                        "" : "approx ",
186                        (sect.sct_own == plane_owner) ?
187                        mil : roundintby(mil, 25));
188                 PR(plane_owner, "@ %s\n", xyas(x, y, plane_owner));
189             }
190             if (mission_flags & P_S)
191                 satdisp_units(sect.sct_x, sect.sct_y);
192         } else {
193             PR(plane_owner, "flying over %s at %s\n",
194                dchr[sect.sct_type].d_name, xyas(x, y, plane_owner));
195             changed += map_set(plane_owner, sect.sct_x, sect.sct_y,
196                                dchr[sect.sct_type].d_mnem, 0);
197         }
198         if ((rel = getrel(over, plane_owner)) == ALLIED)
199             continue;
200
201         evaded = do_evade(bomb_list, esc_list);
202
203         if (sect.sct_own != 0 && sect.sct_own != plane_owner && !evaded) {
204             /* We only show planes overhead if they didn't
205              * evade radar */
206             overfly[sect.sct_own]++;
207             PR(sect.sct_own, "%s planes spotted over %s\n",
208                cname(plane_owner), xyas(x, y, sect.sct_own));
209             if (opt_HIDDEN)
210                 setcont(cn, plane_owner, FOUND_FLY);
211         }
212
213         if (!evaded) {
214             /* Fire flak */
215             if (unfriendly[sect.sct_own])
216                 ac_doflak(bomb_list, &sect);
217             /* If bombers left, fire flak from units and ships */
218             if (!QEMPTY(bomb_list))
219                 ac_landflak(bomb_list, x, y);
220             if (!QEMPTY(bomb_list))
221                 ac_shipflak(bomb_list, x, y);
222         }
223         /* mission planes aborted due to flak -- don't send escorts */
224         if (QEMPTY(bomb_list))
225             break;
226         if (!no_air_defense && !evaded)
227             air_defense(x, y, plane_owner, bomb_list, esc_list);
228
229         if (sect.sct_own == 0 || sect.sct_own == plane_owner)
230             continue;
231
232         if (evaded)
233             continue;
234
235         non_missiles = 0;
236         for (qp = bomb_list->q_forw; qp != bomb_list; qp = qp->q_forw) {
237             struct plist *ip = (struct plist *)qp;
238             if (!(plchr[(int)ip->plane.pln_type].pl_flags & P_M))
239                 non_missiles = 1;
240         }
241
242         if (!non_missiles)
243             continue;
244
245         if (unfriendly[sect.sct_own] && !gotilist[sect.sct_own]) {
246             getilist(&ilist[sect.sct_own], sect.sct_own);
247             gotilist[sect.sct_own]++;
248         }
249         if (rel > HOSTILE)
250             continue;
251         ac_intercept(bomb_list, esc_list, &ilist[sect.sct_own],
252                      sect.sct_own, x, y);
253         intown = sect.sct_own;
254     }
255
256     /* Let's report all of the overflights even if aborted */
257     for (cn = 1; cn < MAXNOC; cn++) {
258         if (plane_owner == cn)
259             continue;
260         if (overfly[cn] > 0)
261             nreport(plane_owner, N_OVFLY_SECT, cn, overfly[cn]);
262     }
263     /* If the map changed, update it */
264     if (changed)
265         writemap(player->cnum);
266     /* Now, if the bomber and escort lists are empty, we are done */
267     if (QEMPTY(bomb_list) && QEMPTY(esc_list))
268         goto out;
269
270     /* Something made it through */
271     /* Go figure out if there are ships in this sector, and who's they are */
272     memset(nats, 0, sizeof(nats));
273     snxtitem_xy(&ni, EF_SHIP, x, y);
274     while (nxtitem(&ni, &ship)) {
275         if (mchr[(int)ship.shp_type].m_flags & M_SUB)
276             continue;
277         nats[ship.shp_own]++;
278     }
279     /* Go figure out if there are units in this sector, and who's they are */
280     memset(lnats, 0, sizeof(lnats));
281     snxtitem_xy(&ni, EF_LAND, x, y);
282     while (nxtitem(&ni, &land)) {
283         if (land.lnd_ship >= 0 || land.lnd_land >= 0)
284             continue;
285         lnats[land.lnd_own]++;
286     }
287
288     /* Now, let's make life a little rougher. */
289     for (cn = 1; cn < MAXNOC && !QEMPTY(bomb_list); cn++) {
290         if (plane_owner == cn)
291             continue;
292         intown = -1;
293         /* Are there ships owned by this country? */
294         if (nats[cn] != 0) {
295             /* Yes. */
296             if (cn != 0) {
297                 PR(cn, "%s planes spotted over ships in %s\n",
298                    cname(plane_owner), xyas(x, y, cn));
299                 if (opt_HIDDEN)
300                     setcont(cn, plane_owner, FOUND_FLY);
301             }
302             if (unfriendly[cn]) {
303                 /* They are unfriendly too */
304                 if (!gotilist[cn]) {
305                     getilist(&ilist[cn], cn);
306                     gotilist[cn]++;
307                 }
308                 PR(plane_owner, "Flying over %s ships in %s\n",
309                    cname(cn), xyas(x, y, plane_owner));
310                 /* This makes going for ships in harbors tough */
311                 if (!evaded) {
312                     /* We already fired flak up above.  Now we intercept again if we haven't already */
313                     /* Flag that we intercepted */
314                     intown = 1;
315                     /* And now intercept again */
316                     ac_intercept(bomb_list, esc_list, &ilist[cn],
317                                  cn, x, y);
318                 }
319             }
320         }
321         /* Are there units owned by this country? */
322         if (lnats[cn] != 0) {
323             /* Yes. */
324             if (cn != 0) {
325                 PR(cn, "%s planes spotted over land units in %s\n",
326                    cname(plane_owner), xyas(x, y, cn));
327                 if (opt_HIDDEN)
328                     setcont(cn, plane_owner, FOUND_FLY);
329             }
330             if (unfriendly[cn]) {
331                 /* They are unfriendly too */
332                 if (!gotilist[cn]) {
333                     getilist(&ilist[cn], cn);
334                     gotilist[cn]++;
335                 }
336                 PR(plane_owner, "Flying over %s land units in %s\n",
337                    cname(cn), xyas(x, y, plane_owner));
338                 if (!evaded) {
339                     if (intown == -1) {
340                         /* We haven't intercepted yet, so intercept */
341                         ac_intercept(bomb_list, esc_list, &ilist[cn],
342                                      cn, x, y);
343                     }
344                 }
345             }
346         }
347     }
348 out:
349     if (mission_flags & P_A)
350         free_shiplist(&head);
351     for (cn = 1; cn < MAXNOC; cn++) {
352         if (gotilist[cn])
353             pln_put(&ilist[cn]);
354     }
355 }
356
357 static int
358 count_non_missiles(struct emp_qelem *list)
359 {
360     struct emp_qelem *qp;
361     struct plist *plp;
362     int att_count = 0;
363
364     /* don't intercept missiles */
365     for (qp = list->q_forw; qp != list; qp = qp->q_forw) {
366         plp = (struct plist *)qp;
367         if (!(plp->pcp->pl_flags & P_M))
368             att_count++;
369     }
370     return att_count;
371 }
372
373 void
374 sam_intercept(struct emp_qelem *att_list, struct emp_qelem *def_list,
375               natid def_own, natid plane_owner, coord x, coord y,
376               int delete_missiles)
377 {
378     struct emp_qelem *aqp;
379     struct emp_qelem *anext;
380     struct emp_qelem *dqp;
381     struct emp_qelem *dnext;
382     struct plist *aplp;
383     struct plist *dplp;
384     int first = 1;
385
386     for (aqp = att_list->q_forw,
387          dqp = def_list->q_forw;
388          aqp != att_list && dqp != def_list; aqp = anext) {
389         anext = aqp->q_forw;
390         aplp = (struct plist *)aqp;
391         if (aplp->pcp->pl_flags & P_M)
392             continue;
393         if (aplp->pcp->pl_cost < 1000)
394             continue;
395         for (; dqp != def_list; dqp = dnext) {
396             dnext = dqp->q_forw;
397             dplp = (struct plist *)dqp;
398             if (!(dplp->pcp->pl_flags & P_M))
399                 continue;
400
401             if (dplp->plane.pln_range <
402                 mapdist(x, y, dplp->plane.pln_x, dplp->plane.pln_y)) {
403                 emp_remque(dqp);
404                 free(dqp);
405                 continue;
406             }
407             if (mission_pln_equip(dplp, 0, P_F, 0) < 0) {
408                 emp_remque(dqp);
409                 free(dqp);
410                 continue;
411             }
412             CANT_HAPPEN(dplp->plane.pln_flags & PLN_LAUNCHED);
413             dplp->plane.pln_flags |= PLN_LAUNCHED;
414             if (first) {
415                 first = 0;
416                 PR(plane_owner, "%s launches SAMs!\n", cname(def_own));
417                 PR(def_own, "Launching SAMs at %s planes!\n",
418                    cname(plane_owner));
419                 ac_combat_headers(plane_owner, def_own);
420             }
421             ac_dog(aplp, dplp);
422             dqp = dnext;
423             break;
424         }
425     }
426     if (!first) {
427         PR(plane_owner, "\n");
428         PR(def_own, "\n");
429     }
430     if (delete_missiles) {
431         for (; dqp != def_list; dqp = dnext) {
432             dnext = dqp->q_forw;
433             dplp = (struct plist *)dqp;
434             if (!(dplp->pcp->pl_flags & P_M))
435                 continue;
436             emp_remque(dqp);
437             free(dqp);
438             continue;
439         }
440     }
441 }
442
443 static void
444 ac_intercept(struct emp_qelem *bomb_list, struct emp_qelem *esc_list,
445              struct emp_qelem *def_list, natid def_own, coord x, coord y)
446 {
447     struct plnstr *pp;
448     struct plist *plp;
449     int icount;
450     struct emp_qelem *next;
451     struct emp_qelem *qp;
452     struct emp_qelem int_list;
453     int att_count;
454     natid plane_owner;
455     int dist;
456
457     plp = (struct plist *)bomb_list->q_forw;
458     plane_owner = plp->plane.pln_own;
459
460     icount = 0;
461
462     sam_intercept(bomb_list, def_list, def_own, plane_owner, x, y, 0);
463     sam_intercept(esc_list, def_list, def_own, plane_owner, x, y, 1);
464     if (!(att_count = count_non_missiles(bomb_list) +
465           count_non_missiles(esc_list)))
466         return;
467
468     emp_initque(&int_list);
469     for (qp = def_list->q_forw; qp != def_list; qp = next) {
470         next = qp->q_forw;
471         plp = (struct plist *)qp;
472         pp = &plp->plane;
473         /* SAMs interdict separately */
474         if (plp->pcp->pl_flags & P_M)
475             continue;
476         dist = mapdist(x, y, pp->pln_x, pp->pln_y) * 2;
477         if (pp->pln_range < dist)
478             continue;
479         if (CANT_HAPPEN(pp->pln_flags & PLN_LAUNCHED)
480             || mission_pln_equip(plp, 0, P_F, 0) < 0) {
481             emp_remque(qp);
482             free(qp);
483             continue;
484         }
485         /* got one; delete from def_list, add to int_list */
486         emp_remque(qp);
487         emp_insque(qp, &int_list);
488         pp->pln_flags |= PLN_LAUNCHED;
489         pp->pln_mobil -= pln_mobcost(dist, pp, P_F);
490         putplane(pp->pln_uid, pp);
491         icount++;
492         if (icount > att_count)
493             break;
494     }
495     if (icount == 0)
496         return;
497     PR(plane_owner, "%d %s fighter%s rising to intercept!\n",
498        icount, cname(def_own), icount == 1 ? " is" : "s are");
499     PR(def_own, "%d fighter%s intercepting %s planes!\n",
500        icount, icount == 1 ? " is" : "s are", cname(plane_owner));
501     ac_combat_headers(plane_owner, def_own);
502     ac_airtoair(esc_list, &int_list);
503     ac_airtoair(bomb_list, &int_list);
504     PR(plane_owner, "\n");
505     PR(def_own, "\n");
506     pln_put(&int_list);
507 }
508
509 void
510 ac_combat_headers(natid plane_owner, natid def_own)
511 {
512     PR(plane_owner,
513        " %-10.10s %-10.10s  strength int odds  damage           results\n",
514        cname(plane_owner), cname(def_own));
515     PR(def_own,
516        " %-10.10s %-10.10s  strength int odds  damage           results\n",
517        cname(def_own), cname(plane_owner));
518 }
519
520 /*
521  * air-to-air combat.
522  */
523 void
524 ac_airtoair(struct emp_qelem *att_list, struct emp_qelem *int_list)
525 {
526     struct plist *attacker;
527     struct plist *interceptor;
528     struct emp_qelem *att;
529     struct emp_qelem *in;
530     int nplanes;
531     int more_att;
532     int more_int;
533     struct emp_qelem *att_next;
534     struct emp_qelem *in_next;
535
536     att = att_list->q_forw;
537     in = int_list->q_forw;
538     more_att = 1;
539     more_int = 1;
540     if (QEMPTY(att_list) || QEMPTY(int_list)) {
541         more_att = 0;
542         more_int = 0;
543     }
544     while (more_att || more_int) {
545         in_next = in->q_forw;
546         att_next = att->q_forw;
547         attacker = (struct plist *)att;
548
549         /* skip missiles. If only missiles left, we're done */
550         if (plchr[(int)attacker->plane.pln_type].pl_flags & P_M) {
551             att = att_next;
552             if (att == att_list) {
553                 more_att = 0;
554                 if (QEMPTY(att_list))
555                     more_int = 0;
556                 else
557                     att = att->q_forw;
558             }
559             if (all_missiles(att_list))
560                 more_att = 0;
561             continue;
562         }
563         interceptor = (struct plist *)in;
564         nplanes = attacker->plane.pln_effic;
565         if (nplanes > interceptor->plane.pln_effic)
566             nplanes = interceptor->plane.pln_effic;
567         ac_dog(attacker, interceptor);
568         in = in_next;
569         att = att_next;
570         if (att == att_list) {
571             more_att = 0;
572             if (QEMPTY(att_list))
573                 more_int = 0;
574             else
575                 att = att->q_forw;
576         }
577         if (in == int_list) {
578             more_int = 0;
579             if (QEMPTY(int_list))
580                 more_att = 0;
581             else
582                 in = in->q_forw;
583         }
584     }
585 }
586
587 static int
588 all_missiles(struct emp_qelem *att_list)
589 {
590     struct emp_qelem *qp;
591     struct plist *p;
592
593     qp = att_list->q_forw;
594     while (qp != att_list) {
595         p = (struct plist *)qp;
596         if (!(plchr[(int)p->plane.pln_type].pl_flags & P_M))
597             return 0;
598
599         qp = qp->q_forw;
600     }
601     return 1;
602 }
603
604 static void
605 ac_dog(struct plist *ap, struct plist *dp)
606 {
607     int att, def;
608     double odds;
609     int intensity;
610     natid att_own, def_own;
611     int adam, ddam;
612     char mesg[1024];
613     char temp[14];
614
615     att_own = ap->plane.pln_own;
616     def_own = dp->plane.pln_own;
617
618     PR(att_own, " %3.3s #%-4d  %3.3s #%-4d",
619        ap->pcp->pl_name,
620        ap->plane.pln_uid, dp->pcp->pl_name, dp->plane.pln_uid);
621     if (def_own)
622         PR(def_own, " %3.3s #%-4d  %3.3s #%-4d",
623            dp->pcp->pl_name,
624            dp->plane.pln_uid, ap->pcp->pl_name, ap->plane.pln_uid);
625     att = pln_att(&ap->plane);
626     if (att == 0)
627         att = pln_def(&ap->plane);
628     att = att * ap->plane.pln_effic / 100;
629     att = MAX(att, ap->pcp->pl_def / 2);
630
631     def = pln_def(&dp->plane) * dp->plane.pln_effic / 100;
632     def = MAX(def, dp->pcp->pl_def / 2);
633
634     if ((ap->pcp->pl_flags & P_F) && ap->bombs != 0)
635         att -= 2;
636     if ((dp->pcp->pl_flags & P_F) && dp->bombs != 0)
637         def -= 2;
638     att += ap->pcp->pl_stealth / 25.0;
639     def += dp->pcp->pl_stealth / 25.0;
640     if (att < 1) {
641         def += 1 - att;
642         att = 1;
643     }
644     if (def < 1) {
645         att += 1 - def;
646         def = 1;
647     }
648     odds = ((double)att / ((double)def + (double)att));
649     if (odds <= 0.05)
650         odds = 0.05;
651     intensity = roll(20) + roll(20) + roll(20) + roll(20) + 1;
652
653     PR(att_own, "   %3d/%-3d %3d  %3.2f  ", att, def, intensity, odds);
654     PR(def_own, "   %3d/%-3d %3d  %3.2f  ", def, att, intensity, odds);
655
656     adam = 0;
657     ddam = 0;
658     while ((intensity--) > 0) {
659
660         if (chance(odds)) {
661             ddam += 1;
662             if ((dp->plane.pln_effic - ddam) < PLANE_MINEFF)
663                 intensity = 0;
664         } else {
665             adam += 1;
666             if ((ap->plane.pln_effic - adam) < PLANE_MINEFF)
667                 intensity = 0;
668         }
669     }
670
671     if (dp->pcp->pl_flags & P_M)
672         ddam = 100;
673
674     PR(att_own, "%3d/%-3d", adam, ddam);
675     PR(def_own, "%3d/%-3d", ddam, adam);
676     ac_planedamage(ap, def_own, adam, def_own, 1, 0, mesg);
677     strncpy(temp, mesg, 14);
678     ac_planedamage(dp, att_own, ddam, att_own, 1, 0, mesg);
679     PR(att_own, "%-13.13s %-13.13s\n", temp, mesg);
680     PR(def_own, "%-13.13s %-13.13s\n", mesg, temp);
681
682     if (opt_HIDDEN) {
683         setcont(att_own, def_own, FOUND_FLY);
684         setcont(def_own, att_own, FOUND_FLY);
685     }
686 }
687
688 /*
689  * zap plane associated with plp.
690  * Damaging country is "from", damage is "dam".
691  * def_own is the country on the other side of the conflict from the plane
692  * owner. The only time def_own != from is when the interceptor is getting
693  * damaged.
694  *
695  * NOTE: This routine removes the appropriate plane element from the
696  * queue if it gets destroyed.  That means that the caller must assume
697  * that the current queue pointer is invalid on return from the ac_planedamage
698  * call.  (this has caused bugs in the past)
699  */
700 static void
701 ac_planedamage(struct plist *plp, natid from, int dam, natid other,
702                int checkabort, int show, char *mesg)
703 {
704     struct plnstr *pp;
705     int disp;
706     char dmess[255];
707     int eff;
708     natid plane_owner;
709
710     disp = 0;
711     pp = &plp->plane;
712     plane_owner = pp->pln_own;
713     eff = pp->pln_effic;
714     sprintf(dmess, " no damage");
715     if (dam <= 0) {
716         strcpy(mesg, dmess);
717         return;
718     }
719     memset(dmess, 0, sizeof(dmess));
720     eff -= dam;
721     if (eff < 0)
722         eff = 0;
723     if (eff < PLANE_MINEFF) {
724         sprintf(dmess, " shot down");
725         disp = 1;
726     } else if (eff < 80 && chance((80 - eff) / 100.0) && checkabort) {
727         sprintf(dmess, " aborted @%2d%%", eff);
728         disp = 2;
729     } else if (show == 0) {
730         sprintf(dmess, " cleared");
731     }
732
733     if ((plp->pcp->pl_flags & P_M) == 0) {
734         if (show) {
735             PR(plane_owner, "    %s %s takes %d%s.\n",
736                cname(pp->pln_own), prplane(pp), dam, dmess);
737             if (other)
738                 PR(other, "    %s %s takes %d%s.\n",
739                    cname(pp->pln_own), prplane(pp), dam, dmess);
740         }
741     }
742     if (show && checkabort == 1) {
743         PR(plane_owner, "\n");
744         if (other)
745             PR(other, "\n");
746     }
747
748     pp->pln_effic = eff;
749     pp->pln_mobil -= MIN(32 + pp->pln_mobil, dam / 2);
750     if (disp) {
751         if (disp == 1 && from != 0 && (plp->pcp->pl_flags & P_M) == 0)
752             nreport(from, N_DOWN_PLANE, pp->pln_own, 1);
753         pln_put1(plp);
754     } else
755         putplane(pp->pln_uid, pp);
756     strcpy(mesg, dmess);
757 }
758
759 static void
760 ac_doflak(struct emp_qelem *list, struct sctstr *from)
761 {
762     int shell;
763     int gun;
764     natid plane_owner;
765     struct plist *plp;
766
767     plp = (struct plist *)list->q_forw;
768     plane_owner = plp->plane.pln_own;
769
770     gun = MIN(FLAK_GUN_MAX, from->sct_item[I_GUN]);
771     shell = from->sct_item[I_SHELL];
772     if (gun > shell * 2) {
773         shell += supply_commod(from->sct_own, from->sct_x, from->sct_y,
774                                I_SHELL, (gun + 1) / 2 - shell);
775         from->sct_item[I_SHELL] = shell;
776         putsect(from);
777     }
778     if (gun > shell * 2)
779         gun = shell * 2;
780
781     gun = roundavg(tfact(from->sct_own, 2.0 * gun));
782     if (gun > 0) {
783         PR(plane_owner, "firing %d flak guns in %s...\n",
784            gun, xyas(from->sct_x, from->sct_y, plane_owner));
785         if (from->sct_own != 0)
786             PR(from->sct_own, "firing %d flak guns in %s...\n",
787                gun, xyas(from->sct_x, from->sct_y, from->sct_own));
788         ac_fireflak(list, from->sct_own, gun);
789     }
790 }
791
792 static void
793 ac_shipflak(struct emp_qelem *list, coord x, coord y)
794 {
795     struct nstr_item ni;
796     struct shpstr ship;
797     struct mchrstr *mcp;
798     double flak, total, ngun;
799     int gun, shell;
800     int rel;
801     struct plist *plp;
802     natid plane_owner;
803     natid from;
804     int nats[MAXNOC];
805
806     plp = (struct plist *)list->q_forw;
807     plane_owner = plp->plane.pln_own;
808
809     memset(nats, 0, sizeof(nats));
810     total = ngun = 0;
811     snxtitem_xy(&ni, EF_SHIP, x, y);
812     while (!QEMPTY(list) && nxtitem(&ni, &ship)) {
813         if (ship.shp_own == 0 || ship.shp_own == plane_owner)
814             continue;
815         mcp = &mchr[(int)ship.shp_type];
816         if (mcp->m_flags & M_SUB)
817             continue;
818         rel = getrel(getnatp(ship.shp_own), plane_owner);
819         if (rel > HOSTILE)
820             continue;
821         shell = 0;
822         gun = shp_usable_guns(&ship);
823         if (gun) {
824             shell = ship.shp_item[I_SHELL];
825             if (shell <= 0) {
826                 shell = supply_commod(ship.shp_own, ship.shp_x, ship.shp_y,
827                                       I_SHELL, 1);
828                 ship.shp_item[I_SHELL] = shell;
829                 putship(ship.shp_uid, &ship);
830             }
831         }
832         if (gun == 0 || shell == 0)
833             continue;
834         flak = gun * (ship.shp_effic / 100.0);
835         ngun += flak;
836         total += techfact(ship.shp_tech, flak * 2.0);
837
838         if (!nats[ship.shp_own]) {
839             /* First time here, print the message */
840             PR(ship.shp_own, "%s planes spotted over ships in %s\n",
841                cname(plane_owner), xyas(x, y, ship.shp_own));
842             PR(plane_owner, "Flying over %s ships in %s\n",
843                cname(ship.shp_own), xyas(x, y, plane_owner));
844             nats[ship.shp_own] = 1;
845         }
846         PR(ship.shp_own, "firing %.0f flak guns from %s...\n",
847            flak, prship(&ship));
848         from = ship.shp_own;
849     }
850
851     /* Limit to FLAK_GUN_MAX guns of average tech factor */
852     if (ngun > FLAK_GUN_MAX)
853         total *= FLAK_GUN_MAX / ngun;
854
855     gun = roundavg(total);
856     if (gun > 0) {
857         PR(plane_owner, "Flak!  Ships firing %d flak guns...\n", gun);
858         ac_fireflak(list, from, gun);
859     }
860 }
861
862 static void
863 ac_landflak(struct emp_qelem *list, coord x, coord y)
864 {
865     struct nstr_item ni;
866     struct lndstr land;
867     struct lchrstr *lcp;
868     double flak, total, ngun;
869     int aaf, gun;
870     int rel;
871     struct plist *plp;
872     natid plane_owner;
873     natid from;
874     int nats[MAXNOC];
875
876     plp = (struct plist *)list->q_forw;
877     plane_owner = plp->plane.pln_own;
878
879     memset(nats, 0, sizeof(nats));
880     total = ngun = 0;
881     snxtitem_xy(&ni, EF_LAND, x, y);
882     while (!QEMPTY(list) && nxtitem(&ni, &land)) {
883         if (land.lnd_own == 0 || land.lnd_own == plane_owner)
884             continue;
885         lcp = &lchr[(int)land.lnd_type];
886         aaf = lnd_aaf(&land);
887         if ((lcp->l_flags & L_FLAK) == 0 || aaf == 0)
888             continue;
889         if (land.lnd_ship >= 0 || land.lnd_land >= 0)
890             continue;
891         rel = getrel(getnatp(land.lnd_own), plane_owner);
892         if (rel > HOSTILE)
893             continue;
894         flak = aaf * 1.5 * land.lnd_effic / 100.0;
895         ngun += flak;
896         total += techfact(land.lnd_tech, flak * 2.0);
897
898         if (!nats[land.lnd_own]) {
899             /* First time here, print the message */
900             PR(land.lnd_own, "%s planes spotted over land units in %s\n",
901                cname(plane_owner), xyas(x, y, land.lnd_own));
902             PR(plane_owner, "Flying over %s land units in %s\n",
903                cname(land.lnd_own), xyas(x, y, plane_owner));
904             nats[land.lnd_own] = 1;
905         }
906         PR(land.lnd_own, "firing flak guns from unit %s (aa rating %d)\n",
907            prland(&land), aaf);
908         from = land.lnd_own;
909     }
910
911     /* Limit to FLAK_GUN_MAX guns of average tech factor */
912     if (ngun > FLAK_GUN_MAX)
913         total *= FLAK_GUN_MAX / ngun;
914
915     gun = roundavg(total);
916     if (gun > 0) {
917         PR(plane_owner, "Flak!  Land units firing %d flak guns...\n", gun);
918         ac_fireflak(list, from, gun);
919     }
920 }
921
922 /*
923  * Called from shipflak, landflak, and doflak.
924  */
925 static void
926 ac_fireflak(struct emp_qelem *list, natid from, int guns)
927 {
928     struct plist *plp;
929     int n;
930     struct emp_qelem *qp;
931     struct emp_qelem *next;
932     char msg[255];
933
934     plp = (struct plist *)list->q_forw;
935
936     for (qp = list->q_forw; qp != list; qp = next) {
937         next = qp->q_forw;
938         plp = (struct plist *)qp;
939         n = ac_flak_dam(guns, pln_def(&plp->plane), plp->pcp->pl_flags);
940         ac_planedamage(plp, from, n, 0, 2, 1, msg);
941     }
942 }
943
944 /*
945  * Calculate flak damage
946  */
947 int
948 ac_flak_dam(int guns, int def, int pl_flags)
949 {
950     int flak, dam;
951     float mult;
952     /*                             <-7      -7     -6     -5     -4 */
953     static float flaktable[18] = { 0.132f, 0.20f, 0.20f, 0.25f, 0.30f,
954     /*    -3     -2     -1      0     +1     +2     +3     +4 */
955          0.35f, 0.40f, 0.45f, 0.50f, 0.50f, 0.55f, 0.60f, 0.65f,
956     /*    +5    +6     +7     +8    >+8 */
957          0.70f,0.75f, 0.80f, 0.85f, 1.1305f };
958     enum { FLAK_MAX = sizeof(flaktable)/sizeof(flaktable[0]) - 1 };
959
960     flak = guns - def;
961     if ((pl_flags & P_T) == 0)
962         flak--;
963     if (pl_flags & P_X)
964         flak -= 2;
965     if (pl_flags & P_H)
966         flak -= 1;
967
968     if (flak > 8)
969         mult = flaktable[FLAK_MAX];
970     else if (flak < -7)
971         mult = flaktable[0];
972     else {
973         flak += 8;
974         mult = flaktable[flak];
975     }
976     mult *= flakscale;
977     dam = (int)((roll(8) + 2) * mult);
978     if (dam > 100)
979         dam = 100;
980     return dam;
981 }
982
983 /*
984  * Get a list of planes available for interception duties.
985  */
986 static void
987 getilist(struct emp_qelem *list, natid own)
988 {
989     struct plchrstr *pcp;
990     struct plnstr plane;
991     struct nstr_item ni;
992     struct plist *ip;
993
994     emp_initque(list);
995     snxtitem_all(&ni, EF_PLANE);
996     while (nxtitem(&ni, &plane)) {
997         if (plane.pln_own != own)
998             continue;
999         pcp = &plchr[(int)plane.pln_type];
1000         if ((pcp->pl_flags & P_F) == 0)
1001             continue;
1002         if (plane.pln_flags & PLN_LAUNCHED)
1003             continue;
1004         if (plane.pln_mission != 0)
1005             continue;
1006         if (plane.pln_mobil <= 0)
1007             continue;
1008         if (plane.pln_effic < 40)
1009             continue;
1010         if (!pln_airbase_ok(&plane, 0, 0))
1011             continue;
1012         /* got one! */
1013         ip = malloc(sizeof(*ip));
1014         ip->bombs = 0;
1015         ip->misc = 0;
1016         ip->pcp = &plchr[(int)plane.pln_type];
1017         ip->plane = plane;
1018         emp_insque(&ip->queue, list);
1019     }
1020 }
1021
1022 static int
1023 do_evade(struct emp_qelem *bomb_list, struct emp_qelem *esc_list)
1024 {
1025     struct emp_qelem *qp;
1026     double evade;
1027     struct plist *plp;
1028
1029     evade = 100.0;
1030     for (qp = bomb_list->q_forw; qp != bomb_list; qp = qp->q_forw) {
1031         plp = (struct plist *)qp;
1032         if (evade > plp->pcp->pl_stealth / 100.0)
1033             evade = plp->pcp->pl_stealth / 100.0;
1034     }
1035     for (qp = esc_list->q_forw; qp != esc_list; qp = qp->q_forw) {
1036         plp = (struct plist *)qp;
1037         if (evade > plp->pcp->pl_stealth / 100.0)
1038             evade = plp->pcp->pl_stealth / 100.0;
1039     }
1040
1041     if (chance(evade))
1042         return 1;
1043
1044     return 0;
1045 }