]> git.pond.sub.org Git - empserver/blob - src/lib/commands/bomb.c
(comm_bomb, ship_bomb, land_bomb, pinflak_planedamage): Fix dangerous
[empserver] / src / lib / commands / bomb.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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  *  bomb.c: Fly bombing missions
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Ken Stevens, 1995
33  *     Steve McClure, 1998-2000
34  */
35
36 #include <config.h>
37
38 #include <ctype.h>
39 #include <string.h>
40 #include "misc.h"
41 #include "player.h"
42 #include "sect.h"
43 #include "ship.h"
44 #include "land.h"
45 #include "item.h"
46 #include "plane.h"
47 #include "retreat.h"
48 #include "xy.h"
49 #include "nsc.h"
50 #include "news.h"
51 #include "file.h"
52 #include "nat.h"
53 #include "path.h"
54 #include "optlist.h"
55 #include "damage.h"
56 #include "commands.h"
57
58 static void pin_bomb(struct emp_qelem *list, struct sctstr *target);
59 static void strat_bomb(struct emp_qelem *list, struct sctstr *target);
60 static void comm_bomb(struct emp_qelem *list, struct sctstr *target);
61 static void eff_bomb(struct emp_qelem *list, struct sctstr *target);
62 static int pinflak_planedamage(struct plnstr *pp, struct plchrstr *pcp,
63                                natid from, int flak);
64 static void plane_bomb(struct emp_qelem *list, struct sctstr *target);
65 static void land_bomb(struct emp_qelem *list, struct sctstr *target);
66 static void ship_bomb(struct emp_qelem *list, struct sctstr *target);
67
68 static i_type bombcomm[] = {
69     I_CIVIL,
70     I_MILIT,
71     I_SHELL,
72     I_GUN,
73     I_PETROL,
74     I_IRON,
75     I_DUST,
76     I_BAR,
77     I_FOOD,
78     I_OIL,
79     I_LCM,
80     I_HCM,
81     I_UW,
82     I_RAD
83 };
84 static int nbomb = sizeof(bombcomm) / sizeof(*bombcomm);
85
86 int
87 bomb(void)
88 {
89     s_char *p;
90     int mission_flags;
91     coord tx, ty;
92     coord ax, ay;
93     int ap_to_target;
94     struct ichrstr *ip;
95     s_char flightpath[MAX_PATH_LEN];
96     struct nstr_item ni_bomb;
97     struct nstr_item ni_esc;
98     struct sctstr target;
99     struct emp_qelem bomb_list;
100     struct emp_qelem esc_list;
101     int wantflags;
102     struct sctstr ap_sect;
103     s_char mission;
104     int rel;
105     struct natstr *natp;
106     s_char buf[1024];
107
108     wantflags = 0;
109     if (!snxtitem(&ni_bomb, EF_PLANE, player->argp[1]))
110         return RET_SYN;
111     if (!snxtitem(&ni_esc, EF_PLANE,
112                   getstarg(player->argp[2], "escort(s)? ", buf)))
113         pr("No escorts...\n");
114     p = getstarg(player->argp[3], "pinpoint, or strategic? ", buf);
115     if (!p)
116         return RET_SYN;
117     mission = *p;
118     if (strchr("ps", mission) == 0)
119         return RET_SYN;
120     if (!get_assembly_point(player->argp[4], &ap_sect, buf))
121         return RET_SYN;
122     ax = ap_sect.sct_x;
123     ay = ap_sect.sct_y;
124     if (getpath(flightpath, player->argp[5], ax, ay, 0, 0, P_FLYING) == 0
125         || *flightpath == 0)
126         return RET_SYN;
127     tx = ax;
128     ty = ay;
129     (void)pathtoxy(flightpath, &tx, &ty, fcost);
130     pr("target sector is %s\n", xyas(tx, ty, player->cnum));
131     getsect(tx, ty, &target);
132     ip = 0;
133     ap_to_target = strlen(flightpath);
134     if (*(flightpath + strlen(flightpath) - 1) == 'h')
135         ap_to_target--;
136     pr("range to target is %d\n", ap_to_target);
137     /*
138      * select planes within range
139      */
140     mission_flags = 0;
141     pln_sel(&ni_bomb, &bomb_list, &ap_sect, ap_to_target,
142             2, wantflags, P_M | P_O);
143     pln_sel(&ni_esc, &esc_list, &ap_sect, ap_to_target,
144             2, wantflags | P_F | P_ESC, P_M | P_O);
145     /*
146      * now arm and equip the bombers, transports, whatever.
147      */
148     mission_flags |= P_X;       /* stealth (shhh) */
149     mission_flags |= P_H;       /* gets turned off if not all choppers */
150     mission_flags = pln_arm(&bomb_list, 2 * ap_to_target, mission,
151                             ip, 0, mission_flags);
152     if (QEMPTY(&bomb_list)) {
153         pr("No planes could be equipped for the mission.\n");
154         return RET_FAIL;
155     }
156     mission_flags = pln_arm(&esc_list, 2 * ap_to_target, mission,
157                             ip, P_F | P_ESC, mission_flags);
158     ac_encounter(&bomb_list, &esc_list, ax, ay, flightpath, mission_flags,
159                  0, 0, 0);
160     if (QEMPTY(&bomb_list)) {
161         pr("No planes got through fighter defenses\n");
162     } else if (target.sct_type == SCT_SANCT) {
163         pr("You can't bomb that sector!\n");
164     } else {
165         switch (mission) {
166         case 'p':
167             pin_bomb(&bomb_list, &target);
168             break;
169         case 's':
170             if (opt_SLOW_WAR) {
171                 natp = getnatp(player->cnum);
172                 if (target.sct_own) {
173                     rel = getrel(natp, target.sct_own);
174                     if ((rel != AT_WAR) && (player->cnum != target.sct_own)
175                         && (target.sct_own) &&
176                         (target.sct_oldown != player->cnum)) {
177                         pr("You're not at war with them!\n");
178                         pln_put(&bomb_list);
179                         pln_put(&esc_list);
180                         return RET_FAIL;
181                     }
182                 }
183             }
184             nreport(player->cnum, N_SCT_BOMB, target.sct_own, 1);
185             strat_bomb(&bomb_list, &target);
186             break;
187         default:
188             pr("Bad mission %c\n", mission);
189             break;
190         }
191     }
192     pln_put(&bomb_list);
193     pln_put(&esc_list);
194     return RET_OK;
195 }
196
197 static void
198 pin_bomb(struct emp_qelem *list, struct sctstr *target)
199 {
200     struct dchrstr *dcp;
201     int nplanes;
202     int nships;
203     int type;
204     int bad;
205     s_char *p;
206     struct plist *plp;
207     int nsubs;
208     int nunits;
209     struct natstr *natp;
210     int rel;
211     s_char buf[1024];
212     int i;
213
214     bad = 0;
215     type = target->sct_type;
216     dcp = &dchr[type];
217     pr("Target sector is a %s constructed %s\n",
218        effadv((int)target->sct_effic), dcp->d_name);
219     nsubs = 0;
220     plp = (struct plist *)list->q_forw;
221     if (plp->pcp->pl_flags & P_A) {
222         nships = num_shipsatxy(target->sct_x, target->sct_y, 0, 0);
223         nsubs = nships - shipsatxy(target->sct_x, target->sct_y, 0, M_SUB);
224         if (nsubs > 0)
225             pr("Some subs are present in the sector.\n");
226     } else {
227         nships = shipsatxy(target->sct_x, target->sct_y, 0, M_SUB);
228     }
229     nplanes = planesatxy(target->sct_x, target->sct_y, 0, 0, list);
230     nunits = unitsatxy(target->sct_x, target->sct_y, 0, 0);
231   retry:
232     p = getstring("Bomb what? (ship, plane, land unit, efficiency, commodities) ",
233                   buf);
234     if (p == 0 || *p == 0) {
235         if (player->aborted)
236             return;
237         bad++;
238         if (bad > 2)
239             return;
240         goto retry;
241     }
242     switch (*p) {
243     case 'l':
244         if (opt_SLOW_WAR) {
245             natp = getnatp(player->cnum);
246             if (target->sct_own) {
247                 rel = getrel(natp, target->sct_own);
248                 if ((rel != AT_WAR) && (player->cnum != target->sct_own)
249                     && (target->sct_own) &&
250                     (target->sct_oldown != player->cnum)) {
251                     pr("You're not at war with them!\n");
252                     goto retry;
253                 }
254             }
255         }
256         if (nunits == 0) {
257             pr("no units there\n");
258             goto retry;
259         }
260         land_bomb(list, target);
261         break;
262     case 'p':
263         if (opt_SLOW_WAR) {
264             natp = getnatp(player->cnum);
265             if (target->sct_own) {
266                 rel = getrel(natp, target->sct_own);
267                 if ((rel != AT_WAR) && (player->cnum != target->sct_own)
268                     && (target->sct_own) &&
269                     (target->sct_oldown != player->cnum)) {
270                     pr("You're not at war with them!\n");
271                     goto retry;
272                 }
273             }
274         }
275         if (nplanes == 0) {
276             pr("no planes there\n");
277             goto retry;
278         }
279         plane_bomb(list, target);
280         break;
281     case 's':
282         if (nships == 0) {
283             if (((struct plist *)list->q_forw)->pcp->pl_flags & P_A) {
284                 if (nsubs == 0) {
285                     pr("no ships there\n");
286                     goto retry;
287                 }
288             } else {
289                 pr("no ships there\n");
290                 goto retry;
291             }
292         }
293         ship_bomb(list, target);
294         break;
295     case 'c':
296         if (opt_SLOW_WAR) {
297             natp = getnatp(player->cnum);
298             if (target->sct_own) {
299                 rel = getrel(natp, target->sct_own);
300                 if ((rel != AT_WAR) && (player->cnum != target->sct_own)
301                     && (target->sct_own) &&
302                     (target->sct_oldown != player->cnum)) {
303                     pr("You're not at war with them!\n");
304                     goto retry;
305                 }
306             }
307         }
308
309         for (i = 0; i < nbomb; i++) {
310             if (!target->sct_item[bombcomm[i]])
311                 continue;
312             break;
313         }
314         if (i >= nbomb) {
315             pr("No bombable commodities in %s\n",
316                xyas(target->sct_x, target->sct_y, player->cnum));
317             goto retry;
318         }
319         comm_bomb(list, target);
320         break;
321     case 'e':
322         if (opt_SLOW_WAR) {
323             natp = getnatp(player->cnum);
324             if (target->sct_own) {
325                 rel = getrel(natp, target->sct_own);
326                 if ((rel != AT_WAR) && (player->cnum != target->sct_own)
327                     && (target->sct_own) &&
328                     (target->sct_oldown != player->cnum)) {
329                     pr("You're not at war with them!\n");
330                     goto retry;
331                 }
332             }
333         }
334         eff_bomb(list, target);
335         break;
336     case 'q':
337         pr("Aborting mission.\n");
338         return;
339     default:
340         pr("Bad target type.\n");
341         goto retry;
342     }
343 }
344
345 static void
346 eff_bomb(struct emp_qelem *list, struct sctstr *target)
347 {
348     struct plist *plp;
349     struct emp_qelem *qp;
350     struct sctstr sect;
351     int oldeff, dam = 0;
352     int nukedam;
353
354     for (qp = list->q_forw; qp != list; qp = qp->q_forw) {
355         plp = (struct plist *)qp;
356         if ((plp->pcp->pl_flags & P_C) && (!(plp->pcp->pl_flags & P_T)))
357             continue;
358         if (plp->bombs || plp->plane.pln_nuketype != -1)
359             dam += pln_damage(&plp->plane, target->sct_x, target->sct_y,
360                               'p', &nukedam, 1);
361     }
362     if (dam <= 0)               /* dam == 0 if only nukes were delivered */
363         return;
364     getsect(target->sct_x, target->sct_y, &sect);
365     target = &sect;
366     oldeff = target->sct_effic;
367     target->sct_effic = effdamage(target->sct_effic, dam);
368     target->sct_avail = effdamage(target->sct_avail, dam);
369     target->sct_road = effdamage(target->sct_road, dam);
370     target->sct_rail = effdamage(target->sct_rail, dam);
371     target->sct_defense = effdamage(target->sct_defense, dam);
372     if (!opt_DEFENSE_INFRA)
373         target->sct_defense = target->sct_effic;
374     pr("did %d%% damage to efficiency in %s\n",
375        oldeff - target->sct_effic,
376        xyas(target->sct_x, target->sct_y, player->cnum));
377     if (target->sct_own)
378         wu(0, target->sct_own,
379            "%s bombing raid did %d%% damage in %s\n",
380            cname(player->cnum), oldeff - target->sct_effic,
381            xyas(target->sct_x, target->sct_y, target->sct_own));
382     if (target->sct_effic < SCT_MINEFF) {
383         if (target->sct_type == SCT_BSPAN)
384             knockdown(target, list);
385         else if (target->sct_type == SCT_BTOWER) {
386             knockdown(target, list);
387             bridgefall(target, list);
388         }
389     }
390     putsect(&sect);
391     collateral_damage(target->sct_x, target->sct_y, dam, list);
392 }
393
394 static void
395 comm_bomb(struct emp_qelem *list, struct sctstr *target)
396 {
397     struct plist *plp;
398     float b;
399     int i;
400     int amt, before;
401     struct ichrstr *ip;
402     struct emp_qelem *qp;
403     struct sctstr sect;
404     int dam = 0;
405     int nukedam;
406
407     for (i = 0; i < nbomb; i++) {
408         if (target->sct_item[bombcomm[i]] == 0)
409             continue;
410         if (opt_SUPER_BARS && bombcomm[i] == I_BAR)
411             continue;
412         ip = &ichr[bombcomm[i]];
413         pr("some %s\n", ip->i_name);
414     }
415     for (;;) {
416         ip = whatitem(NULL, "commodity to bomb? ");
417         if (player->aborted)
418             return;
419         if (!ip)
420             continue;
421
422         for (i = 0; i < nbomb; i++) {
423             if (opt_SUPER_BARS && bombcomm[i] == I_BAR)
424                 continue;
425             if (&ichr[bombcomm[i]] == ip)
426                 break;
427         }
428         if (i == nbomb) {
429             pr("You can't bomb %s!\n", ip->i_name);
430             for (i = 0; i < nbomb; i++) {
431                 if (opt_SUPER_BARS && bombcomm[i] == I_BAR)
432                     continue;
433                 pr("%s%s", i == 0 ? "Bombable: " : ", ",
434                    ichr[bombcomm[i]].i_name);
435             }
436             pr("\n");
437         } else
438             break;
439     }
440     for (qp = list->q_forw; qp != list; qp = qp->q_forw) {
441         plp = (struct plist *)qp;
442         if ((plp->pcp->pl_flags & P_C) && (!(plp->pcp->pl_flags & P_T)))
443             continue;
444         if (plp->bombs || plp->plane.pln_nuketype != -1)
445             dam += pln_damage(&plp->plane, target->sct_x, target->sct_y,
446                               'p', &nukedam, 1);
447     }
448     if (dam <= 0)               /* dam == 0 if only nukes were delivered */
449         return;
450     getsect(target->sct_x, target->sct_y, &sect);
451     target = &sect;
452     before = amt = target->sct_item[ip->i_uid];
453     target->sct_item[ip->i_uid] = amt = commdamage(amt, dam, ip->i_uid);
454     if (before > 0.0)
455         b = 100.0 * (1.0 - ((float)amt / (float)before));
456     else
457         b = 0.0;
458     pr("did %.2f%% damage to %s in %s\n",
459        b, ip->i_name, xyas(target->sct_x, target->sct_y, player->cnum));
460     nreport(player->cnum, N_SCT_BOMB, target->sct_own, 1);
461     if (target->sct_own != 0)
462         wu(0, target->sct_own,
463            "%s precision bombing raid did %.2f%% damage to %s in %s\n",
464            cname(player->cnum), b, ip->i_name,
465            xyas(target->sct_x, target->sct_y, target->sct_own));
466     putsect(&sect);
467     collateral_damage(target->sct_x, target->sct_y, dam, list);
468 }
469
470 static void
471 ship_bomb(struct emp_qelem *list, struct sctstr *target)
472 {
473     struct plist *plp;
474     struct mchrstr *mcp;
475     int dam;
476     s_char *q;
477     int n;
478     struct emp_qelem *qp;
479     int shipno;
480     int ignore;
481     struct shpstr ship;
482     int nships = 0;
483     struct shiplist *head = NULL;
484     s_char buf[1024];
485     s_char prompt[128];
486     int hitchance;
487     int nukedam;
488     int flak;
489     int gun;
490     int shell;
491
492     for (qp = list->q_forw; qp != list && !player->aborted;
493          qp = qp->q_forw) {
494         free_shiplist(&head);
495         plp = (struct plist *)qp;
496         if ((plp->pcp->pl_flags & P_C) && (!(plp->pcp->pl_flags & P_T)))
497             continue;
498         if (plp->pcp->pl_flags & P_A)
499             nships = asw_shipsatxy(target->sct_x, target->sct_y, 0, 0,
500                                    &plp->plane, &head);
501         else
502             nships = shipsatxy(target->sct_x, target->sct_y, 0, M_SUB);
503         if (nships == 0) {
504             pr("%s could not find any ships!\n", prplane(&plp->plane));
505             continue;
506         }
507         (void)sprintf(prompt, "%s, %d bombs.  Target ('~' to skip)? ",
508                       prplane(&plp->plane), plp->bombs);
509         ignore = 0;
510         shipno = -1;
511         while (shipno < 0 && !player->aborted && !ignore) {
512             if ((q = getstring(prompt, buf)) == 0 || *q == 0)
513                 continue;
514             if (*q == '~') {
515                 ignore = 1;
516                 continue;
517             }
518             if (*q == '?') {
519                 if (plp->pcp->pl_flags & P_A)
520                     print_shiplist(head);
521                 else
522                     shipsatxy(target->sct_x, target->sct_y, 0, M_SUB);
523                 continue;
524             }
525             if (*q == 'd')
526                 goto next;
527             if (!isdigit(*q))
528                 continue;
529             n = atoi(q);
530             if (n < 0)
531                 continue;
532             if ((plp->pcp->pl_flags & P_A) && !on_shiplist(n, head))
533                 continue;
534             if (getship(n, &ship) && ship.shp_x == target->sct_x &&
535                 ship.shp_y == target->sct_y)
536                 shipno = n;
537         }
538         if (shipno < 0)
539             continue;
540         if ((plp->pcp->pl_flags & P_A) && !on_shiplist(shipno, head))
541             continue;
542
543         shell = gun = 0;
544         gun = MIN(ship.shp_item[I_GUN], ship.shp_glim);
545         if (gun > 0) {
546             shell = ship.shp_item[I_SHELL];
547             if (shell <= 0)
548                 shell = supply_commod(ship.shp_own, ship.shp_x,
549                                       ship.shp_y, I_SHELL, 1);
550         }
551         mcp = &mchr[(int)ship.shp_type];
552         if (gun > 0 && shell > 0 && !(mcp->m_flags & M_SUB)) {
553             flak = (int)(techfact(ship.shp_tech, (double)gun) * 2.0);
554             ship.shp_item[I_SHELL] = shell;
555             putship(ship.shp_uid, &ship);
556             PR(ship.shp_own, "Flak! Firing %d guns from ship %s\n",
557                flak, prship(&ship));
558             if (pinflak_planedamage(&plp->plane, plp->pcp, ship.shp_own, flak))
559                 continue;
560         }
561
562         dam = 0;
563         if (plp->plane.pln_nuketype != -1)
564             hitchance = 100;
565         else {
566             hitchance = pln_hitchance(&plp->plane,
567                                       shp_hardtarget(&ship), EF_SHIP);
568             pr("%d%% hitchance...", hitchance);
569         }
570         if (roll(100) <= hitchance) {
571             /* pinbombing is more accurate than normal bombing */
572             dam = 2 * pln_damage(&plp->plane, target->sct_x, target->sct_y,
573                                  'p', &nukedam, 1);
574         } else {
575             pr("splash\n");
576             /* Bombs that miss have to land somewhere! */
577             dam = pln_damage(&plp->plane, target->sct_x, target->sct_y, 'p',
578                              &nukedam, 0);
579             collateral_damage(target->sct_x, target->sct_y, dam, list);
580             dam = 0;
581         }
582         if (dam <= 0)           /* dam == 0 if only nukes were delivered */
583             continue;
584         if (mcp->m_flags & M_SUB)
585             nreport(player->cnum, N_SUB_BOMB, ship.shp_own, 1);
586         else
587             nreport(player->cnum, N_SHP_BOMB, ship.shp_own, 1);
588         if (ship.shp_own) {
589             wu(0, ship.shp_own, "%s bombs did %d damage to %s at %s\n",
590                cname(player->cnum), dam,
591                prship(&ship),
592                xyas(target->sct_x, target->sct_y, ship.shp_own));
593         }
594         pr("\n");
595         check_retreat_and_do_shipdamage(&ship, dam);
596         if (ship.shp_rflags & RET_BOMBED)
597             if (((ship.shp_rflags & RET_INJURED) == 0) || !dam)
598                 retreat_ship(&ship, 'b');
599         putship(ship.shp_uid, &ship);
600         getship(ship.shp_uid, &ship);
601         if (!ship.shp_own) {
602             pr("%s at %s sunk!\n",
603                prship(&ship),
604                xyas(target->sct_x, target->sct_y, player->cnum));
605         }
606         collateral_damage(target->sct_x, target->sct_y, dam / 2, list);
607       next:
608         ;
609     }
610     free_shiplist(&head);
611 }
612
613 static void
614 plane_bomb(struct emp_qelem *list, struct sctstr *target)
615 {
616     int dam;
617     s_char *q;
618     int n;
619     natid own;
620     struct plnstr plane;
621     struct emp_qelem *qp;
622     int planeno;
623     int ignore;
624     struct plist *plp;
625     s_char prompt[128];
626     s_char buf[1024];
627     int hitchance;
628     int nukedam;
629     int nplanes;
630
631     for (qp = list->q_forw; qp != list; qp = qp->q_forw) {
632         plp = (struct plist *)qp;
633         if ((plp->pcp->pl_flags & P_C) && (!(plp->pcp->pl_flags & P_T)))
634             continue;
635         nplanes = planesatxy(target->sct_x, target->sct_y, 0, 0, list);
636         if (nplanes == 0) {
637             pr("%s could not find any planes!\n", prplane(&plp->plane));
638             continue;
639         }
640         (void)sprintf(prompt, "%s, %d bombs.  Target ('~' to skip)? ",
641                       prplane(&plp->plane), plp->bombs);
642         planeno = -1;
643         ignore = 0;
644         while (planeno < 0 && !player->aborted && !ignore) {
645             if ((q = getstring(prompt, buf)) == 0 || *q == 0)
646                 continue;
647             if (*q == '~') {
648                 ignore = 1;
649                 continue;
650             }
651             if (*q == '?') {
652                 planesatxy(target->sct_x, target->sct_y, 0, 0, list);
653                 continue;
654             }
655             if (*q == 'd')
656                 goto next;
657             n = atoi(q);
658             if (n < 0)
659                 continue;
660             if (getplane(n, &plane) &&
661                 plane.pln_x == target->sct_x &&
662                 plane.pln_y == target->sct_y &&
663                 ((plane.pln_flags & PLN_LAUNCHED) == 0) &&
664                 (!ac_isflying(&plane, list)))
665                 planeno = n;
666             else
667                 pr("Plane #%d not spotted\n", n);
668         }
669         if (planeno < 0)
670             continue;
671         dam = 0;
672         if (plp->plane.pln_nuketype != -1)
673             hitchance = 100;
674         else {
675             hitchance = pln_hitchance(&plp->plane, 0, EF_PLANE);
676             pr("%d%% hitchance...", hitchance);
677         }
678         if (roll(100) <= hitchance) {
679             /* pinbombing is more accurate than normal bombing */
680             dam = 2 * pln_damage(&plp->plane, target->sct_x, target->sct_y,
681                                  'p', &nukedam, 1);
682         } else {
683             pr("thud\n");
684             /* Bombs that miss have to land somewhere! */
685             dam = pln_damage(&plp->plane, target->sct_x, target->sct_y,
686                              'p', &nukedam, 0);
687             collateral_damage(target->sct_x, target->sct_y, dam, list);
688             dam = 0;
689         }
690         if (dam <= 0)           /* dam == 0 if only nukes were delivered */
691             continue;
692         if (dam > 100)
693             dam = 100;
694         own = plane.pln_own;
695         if (dam > plane.pln_effic) {
696             plane.pln_effic = 0;
697             makelost(EF_PLANE, plane.pln_own, plane.pln_uid, plane.pln_x,
698                      plane.pln_y);
699             plane.pln_own = 0;
700         } else
701             plane.pln_effic -= dam;
702         plane.pln_mobil = (dam * plane.pln_mobil / 100.0);
703         if (own == player->cnum) {
704             pr("%s reports %d%% damage\n", prplane(&plane), dam);
705         } else {
706             if (own != 0)
707                 wu(0, own,
708                    "%s pinpoint bombing raid did %d%% damage to %s\n",
709                    cname(player->cnum), dam, prplane(&plane));
710         }
711         nreport(player->cnum, N_DOWN_PLANE, own, 1);
712         if (own != 0)
713             wu(0, own, "%s bombs did %d%% damage to %s at %s\n",
714                cname(player->cnum), dam, prplane(&plane),
715                xyas(target->sct_x, target->sct_y, own));
716         putplane(plane.pln_uid, &plane);
717         collateral_damage(target->sct_x, target->sct_y, dam, list);
718       next:
719         ;
720     }
721 }
722
723 static void
724 land_bomb(struct emp_qelem *list, struct sctstr *target)
725 {
726     int dam;
727     s_char *q;
728     int n;
729     natid own;
730     s_char prompt[128];
731     s_char buf[1024];
732     struct lndstr land;
733     struct emp_qelem *qp;
734     int unitno;
735     int ignore, flak, hitchance;
736     struct plist *plp;
737     int nukedam;
738     int nunits;
739
740     for (qp = list->q_forw; qp != list; qp = qp->q_forw) {
741         plp = (struct plist *)qp;
742         if ((plp->pcp->pl_flags & P_C) && (!(plp->pcp->pl_flags & P_T)))
743             continue;
744         nunits = unitsatxy(target->sct_x, target->sct_y, 0, 0);
745         if (nunits == 0) {
746             pr("%s could not find any units!\n", prplane(&plp->plane));
747             continue;
748         }
749         (void)sprintf(prompt, "%s, %d bombs.  Target ('~' to skip)? ",
750                       prplane(&plp->plane), plp->bombs);
751         unitno = -1;
752         ignore = 0;
753         while (unitno < 0 && !player->aborted && !ignore) {
754             if ((q = getstring(prompt, buf)) == 0 || *q == 0)
755                 continue;
756             if (*q == '~') {
757                 ignore = 1;
758                 continue;
759             }
760             if (*q == '?') {
761                 unitsatxy(target->sct_x, target->sct_y, 0, 0);
762                 continue;
763             }
764             if (*q == 'd')
765                 goto next;
766             n = atoi(q);
767             if (n < 0)
768                 continue;
769             if (getland(n, &land) &&
770                 land.lnd_x == target->sct_x && land.lnd_y == target->sct_y)
771                 unitno = n;
772             else
773                 pr("Unit #%d not spotted\n", n);
774         }
775         if (unitno < 0)
776             continue;
777
778         flak = (int)(techfact(land.lnd_tech, (double)land.lnd_aaf) * 3.0);
779         if (flak) {
780             PR(land.lnd_own,
781                "Flak! Firing flak guns from unit %s (aa rating %d)\n",
782                prland(&land), land.lnd_aaf);
783             if (pinflak_planedamage(&plp->plane, plp->pcp, land.lnd_own, flak))
784                 continue;
785         }
786
787         dam = 0;
788         if (plp->plane.pln_nuketype != -1)
789             hitchance = 100;
790         else {
791             hitchance = pln_hitchance(&plp->plane,
792                                       lnd_hardtarget(&land), EF_LAND);
793             pr("%d%% hitchance...", hitchance);
794         }
795         if (roll(100) <= hitchance) {
796             dam = 2 * pln_damage(&plp->plane, target->sct_x, target->sct_y,
797                                  'p', &nukedam, 1);
798         } else {
799             pr("thud\n");
800             /* Bombs that miss have to land somewhere! */
801             dam = pln_damage(&plp->plane, target->sct_x, target->sct_y, 'p',
802                              &nukedam, 0);
803             collateral_damage(target->sct_x, target->sct_y, dam, list);
804             dam = 0;
805         }
806         if (dam <= 0)           /* dam == 0 if only nukes were delivered */
807             continue;
808         if (dam > 100)
809             dam = 100;
810         own = land.lnd_own;
811         if (own != 0)
812             mpr(own, "%s pinpoint bombing raid did %d damage to %s\n",
813                 cname(player->cnum), dam, prland(&land));
814         check_retreat_and_do_landdamage(&land, dam);
815
816         if (land.lnd_rflags & RET_BOMBED)
817             if (((land.lnd_rflags & RET_INJURED) == 0) || !dam)
818                 retreat_land(&land, 'b');
819         nreport(player->cnum, N_UNIT_BOMB, own, 1);
820         putland(land.lnd_uid, &land);
821         collateral_damage(target->sct_x, target->sct_y, dam, list);
822       next:
823         ;
824     }
825 }
826
827 static void
828 strat_bomb(struct emp_qelem *list, struct sctstr *target)
829 {
830     struct plist *plp;
831     int dam = 0;
832     struct emp_qelem *qp;
833     struct sctstr sect;
834     int nukedam;
835
836     for (qp = list->q_forw; qp != list; qp = qp->q_forw) {
837         plp = (struct plist *)qp;
838         if ((plp->pcp->pl_flags & P_C) && (!(plp->pcp->pl_flags & P_T)))
839             continue;
840         if (plp->bombs || plp->plane.pln_nuketype != -1)
841             dam += pln_damage(&plp->plane, target->sct_x, target->sct_y, 's',
842                               &nukedam, 1);
843     }
844     if (dam <= 0)               /* dam == 0 if only nukes were delivered */
845         return;
846     getsect(target->sct_x, target->sct_y, &sect);
847     target = &sect;
848     if (target->sct_own)
849         wu(0, target->sct_own, "%s bombing raid did %d damage in %s\n",
850            cname(player->cnum), PERCENT_DAMAGE(dam),
851            xyas(target->sct_x, target->sct_y, target->sct_own));
852
853     sectdamage(target, dam, list);
854
855     pr("did %d damage in %s\n", PERCENT_DAMAGE(dam),
856        xyas(target->sct_x, target->sct_y, player->cnum));
857     putsect(&sect);
858 }
859
860 static int
861 pinflak_planedamage(struct plnstr *pp, struct plchrstr *pcp, natid from,
862                     int flak)
863 {
864     int disp;
865     s_char dmess[255];
866     int eff;
867     struct shpstr ship;
868     struct lndstr land;
869     natid plane_owner;
870     int dam;
871
872     flak -= (pp->pln_def + 1);
873     if (pcp->pl_flags & P_X)
874         flak -= 2;
875     if (pcp->pl_flags & P_H)
876         flak -= 1;
877     dam = ac_flak_dam(flak);
878     disp = 0;
879     plane_owner = pp->pln_own;
880     eff = pp->pln_effic;
881     if (dam <= 0)
882         return 0;
883     memset(dmess, 0, sizeof(dmess));
884     eff -= dam;
885     if (eff < 0)
886         eff = 0;
887     if (eff < PLANE_MINEFF) {
888         sprintf(dmess, " -- shot down");
889         disp = 1;
890     } else if (chance((100 - eff) / 100.0)) {
891         sprintf(dmess, " -- aborted with %d%%%% damage", 100 - eff);
892         disp = 2;
893     }
894     PR(plane_owner, "    Flak! %s %s takes %d%s.\n",
895        cname(pp->pln_own), prplane(pp), dam, dmess);
896
897     pp->pln_effic = eff;
898     if (disp == 1) {
899         if (from != 0)
900             nreport(from, N_DOWN_PLANE, pp->pln_own, 1);
901         if (pp->pln_ship >= 0) {
902             getship(pp->pln_ship, &ship);
903             take_plane_off_ship(pp, &ship);
904         }
905         if (pp->pln_land >= 0) {
906             getland(pp->pln_land, &land);
907             take_plane_off_land(pp, &land);
908         }
909         makelost(EF_PLANE, pp->pln_own, pp->pln_uid, pp->pln_x, pp->pln_y);
910         pp->pln_own = 0;
911         putplane(pp->pln_uid, pp);
912     } else
913         putplane(pp->pln_uid, pp);
914
915     if (disp > 0)
916         return 1;
917     return 0;
918 }