]> git.pond.sub.org Git - empserver/blob - src/lib/subs/attsub.c
cfe291a2833489087ec49823f7d05eee1508cffb
[empserver] / src / lib / subs / attsub.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  *  attsub.c: Attack subroutines
28  *
29  *  Known contributors to this file:
30  *     Ken Stevens, 1995
31  *     Steve McClure, 1996-2000
32  *     Markus Armbruster, 2006-2014
33  */
34
35 #include <config.h>
36
37 #include <ctype.h>
38 #include <math.h>
39 #include "chance.h"
40 #include "combat.h"
41 #include "empobj.h"
42 #include "file.h"
43 #include "map.h"
44 #include "misc.h"
45 #include "mission.h"
46 #include "news.h"
47 #include "nsc.h"
48 #include "optlist.h"
49 #include "path.h"
50 #include "plague.h"
51 #include "player.h"
52 #include "prototypes.h"
53 #include "unit.h"
54 #include "xy.h"
55
56 #define CASUALTY_LUMP   1       /* How big casualty chunks should be */
57
58 static void ask_olist(int combat_mode, struct combat *off,
59                       struct combat *def, struct emp_qelem *olist,
60                       char *land_answer, int *a_spyp, int *a_engineerp);
61 static void take_move_in_mob(int combat_mode, struct ulist *llp,
62                              struct combat *off, struct combat *def);
63 static void move_in_land(int combat_mode, struct combat *off,
64                          struct emp_qelem *olist, struct combat *def);
65 static void ask_move_in(struct combat *off, struct emp_qelem *olist,
66                         struct combat *def);
67 static void ask_move_in_off(struct combat *off, struct combat *def);
68
69 static int board_abort(struct combat *off, struct combat *def);
70 static int land_board_abort(struct combat *off, struct combat *def);
71 static int ask_off(int combat_mode, struct combat *off,
72                    struct combat *def);
73 static void get_dlist(struct combat *def, struct emp_qelem *, int a_spy,
74                       int *d_spyp);
75 static int get_ototal(int combat_mode, struct combat *off,
76                       struct emp_qelem *olist, double osupport, int check);
77 static int get_dtotal(struct combat *def, struct emp_qelem *list,
78                       double dsupport, int check);
79 static double att_calcodds(int, int);
80 static int take_casualty(int combat_mode, struct combat *off,
81                          struct emp_qelem *olist);
82
83 static void send_reacting_units_home(struct emp_qelem *list);
84 static int take_def(int combat_mode, struct emp_qelem *list,
85                     struct combat *off, struct combat *def);
86
87 static int get_oland(int, struct ulist *);
88 static int get_dland(struct combat *, struct ulist *);
89
90 char *att_mode[] = {
91     /* must match combat types in combat.h */
92     "defend", "attack", "assault", "paradrop", "board", "lboard"
93 };
94
95
96 /*
97  * The principal object in this code is the "combat" object.  A combat object
98  * is either a sector or ship.  There are
99  * usually two instances of this, the "def" or defense combat object, and
100  * the array of "off" or offense objects.  The number of offense objects is
101  * determined by the value of off->last (e.g. more than one attacking sector).
102  * the type of the object is determined by combat->type which can take the
103  * values EF_SECTOR, EF_SHIP, EF_PLANE, or EF_BAD.  Another important parameter
104  * which is often passed to these functions is combat_mode.  This can take
105  * the value A_DEFEND, A_ATTACK, A_ASSAULT, A_PARA, A_BOARD and A_LBOARD.
106  * As these six modes of being in combat affect things like mobcost and combat
107  * value, there are often switches made on combat_mode.  Note that in all cases
108  * no mobility is taken from sectors, ships, or land units until the player
109  * has committed to a fight.  Instead, the cost is temporarily placed in
110  * combat->mobcost, or llp->mobil as the case may be, and then when the object
111  * is "put" back onto disk, then the amounts in these variables are subtracted
112  * from the object's mobility.  It needs to be done this way as the objects
113  * are constantly being re-read from disk, and we don't want to take any mob
114  * unless a fight actually occurrs.
115  * -Ken Stevens
116  */
117
118 /* initialize combat object */
119
120 int
121 att_combat_init(struct combat *com, int type)
122 {
123     memset(com, 0, sizeof(*com));
124     com->type = type;
125     return type;
126 }
127
128 /* print a combat object with optional preposition */
129
130 static char *
131 pr_com(int inon, struct combat *com, natid who)
132 {
133     if (com->type == EF_SECTOR) {
134         return prbuf("%s%s",
135                      inon ? inon == 1 ? "in " : "into " : "",
136                      xyas(com->x, com->y, who));
137     } else if (com->type == EF_SHIP) {
138         return prbuf("%s%s %s(#%d)",
139                      inon ? inon == 1 ? "on " : "onto " : "",
140                      com->shp_mcp->m_name, com->shp_name, com->shp_uid);
141     } else if (com->type == EF_LAND) {
142         return prbuf("%s%s #%d",
143                      inon ? inon == 1 ? "on " : "onto " : "",
144                      com->lnd_lcp->l_name, com->lnd_uid);
145     } else {
146         return "your forces";
147     }
148 }
149
150 static char *
151 prcom(int inon, struct combat *com)
152 {
153     return pr_com(inon, com, player->cnum);
154 }
155
156 /*
157  * This is the combat object "type" based integrity check.  It basically
158  * splits along three divisions: ship/sector, attacker/defender,
159  * first time/not first time.
160  */
161
162 int
163 att_get_combat(struct combat *com, int isdef)
164 {
165     struct sctstr sect;
166     struct shpstr ship;
167     struct lndstr land;
168     int pstage;
169     natid owner;
170     int mil;
171     int eff;
172     int mob;
173     coord x, y;
174
175     switch (com->type) {
176     case EF_SECTOR:
177         if (!getsect(com->x, com->y, &sect)) {
178             pr("Bad sector: %s\n", xyas(com->x, com->y, player->cnum));
179             return att_combat_init(com, EF_BAD);
180         }
181         com->sct_type = sect.sct_type;
182         com->sct_dcp = &dchr[sect.sct_type];
183         mil = sect.sct_item[I_MILIT];
184         pstage = sect.sct_pstage;
185         owner = sect.sct_own;
186         eff = sect.sct_effic;
187         mob = sect.sct_mobil;
188         x = com->x;
189         y = com->y;
190         break;
191     case EF_LAND:
192         if (!getland(com->lnd_uid, &land) || !land.lnd_own) {
193             if (isdef)
194                 pr("Land unit #%d is not in the same sector!\n",
195                    com->lnd_uid);
196             return att_combat_init(com, EF_BAD);
197         }
198         if (isdef && player->owner) {
199             pr("Boarding yourself?  Try using the 'load' command.\n");
200             return att_combat_init(com, EF_BAD);
201         }
202         com->lnd_lcp = &lchr[(int)land.lnd_type];
203         mil = land.lnd_item[I_MILIT];
204         pstage = land.lnd_pstage;
205         owner = land.lnd_own;
206         eff = land.lnd_effic;
207         mob = land.lnd_mobil;
208         x = land.lnd_x;
209         y = land.lnd_y;
210         break;
211     case EF_SHIP:
212         if (!getship(com->shp_uid, &ship) || !ship.shp_own) {
213             if (isdef)
214                 pr("Ship #%d is not in the same sector!\n", com->shp_uid);
215             else
216                 pr("Ship #%d is not your ship!\n", com->shp_uid);
217             return att_combat_init(com, EF_BAD);
218         }
219         if (opt_MARKET) {
220             if (isdef && player->owner && ontradingblock(EF_SHIP, &ship)) {
221                 pr("%s is on the trading block.\n", prcom(0, com));
222                 return att_combat_init(com, EF_BAD);
223             }
224         }
225         if (isdef && player->owner) {
226             pr("Boarding yourself?  Try using the 'tend' command.\n");
227             return att_combat_init(com, EF_BAD);
228         }
229         com->shp_mcp = &mchr[(int)ship.shp_type];
230         strncpy(com->shp_name, ship.shp_name, MAXSHPNAMLEN);
231         if (!isdef && !player->owner) {
232             if (com->set)
233                 pr("%s was just sunk!\n", prcom(0, com));
234             else
235                 pr("Ship #%d is not your ship!\n", com->shp_uid);
236             return att_combat_init(com, EF_BAD);
237         }
238         mil = ship.shp_item[I_MILIT];
239         pstage = ship.shp_pstage;
240         owner = ship.shp_own;
241         eff = ship.shp_effic;
242         mob = ship.shp_mobil;
243         x = ship.shp_x;
244         y = ship.shp_y;
245         break;
246     case EF_PLANE:
247         return com->mil;
248     case EF_BAD:
249         return EF_BAD;
250     default:
251         return att_combat_init(com, EF_BAD);
252     }
253
254     if (!com->set) {            /* first time */
255         if (isdef) {            /* defender */
256             com->troops = mil;
257         } else {                /* attacker */
258             if (!mil)
259                 pr("No mil %s\n", prcom(1, com));
260             else if (mil == 1)
261                 pr("Only 1 mil %s\n", prcom(1, com));
262             /* don't abandon attacking sectors or ships */
263             com->troops = MAX(0, mil - 1);
264         }
265         com->plague = pstage == PLG_INFECT;
266     } else {                    /* not first time */
267         if (isdef) {            /* defender */
268             if (com->x != x || com->y != y) {
269                 pr("%s has moved!\n", prcom(0, com));
270                 return att_combat_init(com, EF_BAD);
271             }
272             if (owner != com->own) {
273                 if (owner) {
274                     pr("WARNING: The ownership of %s just changed from %s to %s!\n",
275                        prcom(0, com), cname(com->own), cname(owner));
276                 } else if (com->type == EF_SECTOR) {
277                     pr("WARNING: %s just abandoned sector %s!\n",
278                        cname(com->own),
279                        xyas(com->x, com->y, player->cnum));
280                 }
281             }
282             if (com->mil != mil)
283                 pr("WARNING: The enemy mil %s just %s from %d to %d!\n",
284                    prcom(1, com),
285                    com->mil < mil ? "increased" : "decreased", com->mil,
286                    mil);
287             com->troops = mil;
288         } else {                /* attacker */
289             if (owner != com->own && owner != player->cnum) {
290                 /* must be EF_SECTOR */
291                 if (com->troops)
292                     pr("WARNING: Your %d mil in %s were destroyed because %s just took the sector!\n",
293                        com->mil, xyas(com->x, com->y, player->cnum),
294                        cname(owner));
295                 else
296                     pr("%s just took %s!\n",
297                        cname(owner), xyas(com->x, com->y, player->cnum));
298                 return att_combat_init(com, EF_BAD);
299             }
300             if (com->troops && com->troops + 1 > mil) {
301                 if (com->own == owner && player->cnum == owner)
302                     /* not a takeover */
303                     pr("WARNING: Your mil %s has been reduced from %d to %d!\n",
304                        prcom(1, com), com->troops, MAX(0, mil - 1));
305                 com->troops = MAX(0, mil - 1);
306             }
307         }
308     }
309     com->set = 1;
310     com->mil = mil;
311     com->own = owner;
312     com->x = x;
313     com->y = y;
314     com->eff = eff;
315     com->mob = mob;
316     return com->troops;
317 }
318
319 /*
320  * In the course of the fight, the combat object may have lost mil, eff, or
321  * mobility.  This is the place where the data in the object gets flushed to
322  * disk to make it "real".
323  */
324
325 static void
326 put_combat(struct combat *com)
327 {
328     struct sctstr sect;
329     struct shpstr ship;
330     struct lndstr land;
331     int deff;
332
333     switch (com->type) {
334     case EF_SECTOR:
335         getsect(com->x, com->y, &sect);
336         sect.sct_type = com->sct_type;
337         deff = sect.sct_effic - com->eff;
338         if (deff > 0) {
339             sect.sct_road -= sect.sct_road * deff / 100.0;
340             sect.sct_rail -= sect.sct_rail * deff / 100.0;
341             sect.sct_defense -= sect.sct_defense * deff / 100.0;
342             if (sect.sct_road <= 0)
343                 sect.sct_road = 0;
344             if (sect.sct_rail <= 0)
345                 sect.sct_rail = 0;
346             if (sect.sct_defense <= 0)
347                 sect.sct_defense = 0;
348         }
349         sect.sct_effic = com->eff;
350         if (com->mobcost) {
351             if (opt_MOB_ACCESS) {
352                 if ((com->mob - com->mobcost) < -127)
353                     sect.sct_mobil = -127;
354                 else
355                     sect.sct_mobil = com->mob - com->mobcost;
356             } else {
357                 if ((com->mob - com->mobcost) < 0)
358                     sect.sct_mobil = 0;
359                 else
360                     sect.sct_mobil = com->mob - com->mobcost;
361             }
362         }
363         sect.sct_own = com->own;
364         if (com->plague) {
365             if (sect.sct_pstage == PLG_HEALTHY)
366                 sect.sct_pstage = PLG_EXPOSED;
367         }
368         sect.sct_item[I_MILIT] = com->mil;
369         putsect(&sect);
370         com->own = sect.sct_own;        /* avoid WARNING if sector reverts */
371         break;
372     case EF_LAND:
373         getland(com->lnd_uid, &land);
374         land.lnd_effic = com->eff;
375         if (com->mobcost) {
376             if (com->mob - com->mobcost < -127)
377                 land.lnd_mobil = -127;
378             else
379                 land.lnd_mobil = (signed char)(com->mob - com->mobcost);
380         }
381         land.lnd_own = com->own;
382         if (com->plague) {
383             if (land.lnd_pstage == PLG_HEALTHY)
384                 land.lnd_pstage = PLG_EXPOSED;
385         }
386         if (!(com->lnd_lcp->l_flags & L_SPY))
387             land.lnd_item[I_MILIT] = com->mil;
388         if (com->own == player->cnum) {
389             land.lnd_mission = 0;
390             land.lnd_rflags = 0;
391             memset(land.lnd_rpath, 0, sizeof(land.lnd_rpath));
392         }
393         putland(com->lnd_uid, &land);
394         break;
395     case EF_SHIP:
396         getship(com->shp_uid, &ship);
397         ship.shp_effic = com->eff;
398         if (com->mobcost) {
399             if (com->mob - com->mobcost < -127)
400                 ship.shp_mobil = -127;
401             else
402                 ship.shp_mobil = (signed char)(com->mob - com->mobcost);
403         }
404         ship.shp_own = com->own;
405         if (com->plague) {
406             if (ship.shp_pstage == PLG_HEALTHY)
407                 ship.shp_pstage = PLG_EXPOSED;
408         }
409         ship.shp_item[I_MILIT] = com->mil;
410         if (com->own == player->cnum) {
411             ship.shp_mission = 0;
412             ship.shp_rflags = 0;
413             memset(ship.shp_rpath, 0, sizeof(ship.shp_rpath));
414         }
415         putship(com->shp_uid, &ship);
416     }
417     com->mobcost = 0;
418     att_get_combat(com, com->own != player->cnum);
419 }
420
421 /* If pre-attack, abort fight.  If post-attack, don't move anything in */
422
423 static int
424 abort_attack(void)
425 {
426     return player->aborted = 1;
427 }
428
429 /*
430  * This is the combat_mode based integrity check.  It splits among two main
431  * divisions: first time/not first time, and attack/assault/para/board.
432  */
433
434 int
435 att_abort(int combat_mode, struct combat *off, struct combat *def)
436 {
437     struct sctstr sect;
438
439     if (player->aborted)
440         return 1;
441     if (att_get_combat(def, 1) < 0)
442         return abort_attack();
443
444     if (off && combat_mode != A_ATTACK) {
445         if (att_get_combat(off, 0) < 0)
446             return abort_attack();
447         if (off->type == EF_SHIP &&
448             !(off->x == def->x && off->y == def->y) &&
449             (!getsect(off->x, off->y, &sect) ||
450              sect.sct_type != SCT_WATER)) {
451             pr("%s can not %s from that far inland!\n",
452                prcom(0, off), att_mode[combat_mode]);
453             return abort_attack();
454         }
455     }
456     switch (combat_mode) {
457     case A_ATTACK:
458         if (!neigh(def->x, def->y, player->cnum) &&
459             !adj_units(def->x, def->y, player->cnum)) {
460             pr("You are not adjacent to %s\n",
461                xyas(def->x, def->y, player->cnum));
462             return abort_attack();
463         }
464         if (def->own == player->cnum) {
465             pr("You can't attack your own sector.\n");
466             return abort_attack();
467         }
468         break;
469     case A_ASSAULT:
470         if (off && mapdist(off->x, off->y, def->x, def->y) > 1) {
471             pr("You'll have to get there first...\n");
472             return abort_attack();
473         }
474         if (off && def->sct_type == SCT_MOUNT) {
475             pr("You can't assault a %s sector!\n", def->sct_dcp->d_name);
476             return abort_attack();
477         }
478         break;
479     case A_PARA:
480         if (def->own == player->cnum) {
481             pr("You can't air-assault your own sector.\n");
482             return abort_attack();
483         }
484         if (off && (def->sct_type == SCT_MOUNT ||
485                     def->sct_type == SCT_WATER ||
486                     def->sct_type == SCT_CAPIT ||
487                     def->sct_type == SCT_FORTR ||
488                     def->sct_type == SCT_WASTE)) {
489             pr("You can't air-assault a %s sector!\n",
490                def->sct_dcp->d_name);
491             return abort_attack();
492         }
493         break;
494     case A_BOARD:
495         return board_abort(off, def);
496     case A_LBOARD:
497         return land_board_abort(off, def);
498     }
499
500     if (off && def->sct_dcp->d_mob0 < 0) {
501         pr("You can't %s a %s sector!\n",
502            att_mode[combat_mode], def->sct_dcp->d_name);
503         return abort_attack();
504     }
505     if (!off || off->relations_checked)
506         return 0;
507     off->relations_checked = 1;
508
509     if (opt_HIDDEN) {
510         setcont(player->cnum, def->own, FOUND_SPY);
511         setcont(def->own, player->cnum, FOUND_SPY);
512     }
513
514     return 0;
515 }
516
517 /*
518  * Lots of special things need to be checked for boarding, so I put it in
519  * it's own function.
520  */
521
522 static int
523 board_abort(struct combat *off, struct combat *def)
524 {
525     struct shpstr aship, dship; /* for tech levels */
526     struct sctstr sect;
527
528     if (att_get_combat(def, 1) < 0)
529         return abort_attack();
530
531     if (!off)
532         return 0;
533
534     if (att_get_combat(off, 0) < 0)
535         return abort_attack();
536
537     if (off->x != def->x || off->y != def->y) {
538         pr("Ship #%d is not in the same sector!\n", def->shp_uid);
539         return abort_attack();
540     }
541     if (off->type == EF_SHIP) {
542         if (off->mob <= 0) {
543             pr("%s has no mobility!\n", prcom(0, off));
544             return abort_attack();
545         }
546         getship(off->shp_uid, &aship);
547         getship(def->shp_uid, &dship);
548         if (techfact(aship.shp_tech, shp_speed(&aship)) * off->eff
549             <= techfact(dship.shp_tech, shp_speed(&dship)) * def->eff) {
550             pr("Victim ship moves faster than you do!\n");
551             if (def->own)
552                 wu(0, def->own,
553                    "%s %s failed to catch %s\n",
554                    prnatid(aship.shp_own),
555                    pr_com(0, off, def->own), pr_com(0, def, def->own));
556             return abort_attack();
557         }
558     } else if (off->type != EF_SECTOR) {
559         pr("Please tell the deity that you got the 'banana boat' error\n");
560         return abort_attack();
561     }
562     if (def->shp_mcp->m_flags & M_SUB) {
563         getsect(def->x, def->y, &sect);
564         if (sect.sct_type == SCT_WATER) {
565             pr("You can't board a submarine!\n");
566             return abort_attack();
567         }
568     }
569     return 0;
570 }
571
572 /*
573  * Lots of special things need to be checked for boarding, so I put it in
574  * it's own function.
575  * STM - I copied it for land unit boarding. :)
576  */
577
578 static int
579 land_board_abort(struct combat *off, struct combat *def)
580 {
581     if (att_get_combat(def, 1) < 0)
582         return abort_attack();
583
584     if (!off)
585         return 0;
586
587     if (att_get_combat(off, 0) < 0)
588         return abort_attack();
589
590     if (off->x != def->x || off->y != def->y) {
591         pr("Land unit #%d is not in the same sector!\n", def->lnd_uid);
592         return abort_attack();
593     }
594
595     return 0;
596 }
597
598 /* If we are boarding, then the defending ship gets a chance to fire back */
599 int
600 att_approach(struct combat *off, struct combat *def)
601 {
602     int dam;
603     struct sctstr sect;
604     struct shpstr ship;
605
606     pr("Approaching %s...\n", prcom(0, def));
607     if (def->own)
608         wu(0, def->own,
609            "%s is being approached by %s...\n",
610            pr_com(0, def, def->own), pr_com(0, off, def->own));
611     if (!(dam = shipdef(player->cnum, def->own, def->x, def->y)))
612         return 0;
613
614     pr("They're firing at us sir!\n");
615     if (def->own) {
616         wu(0, def->own,
617            "Your fleet at %s does %d damage to %s\n",
618            xyas(def->x, def->y, def->own), dam, pr_com(0, off, def->own));
619     }
620     if (off->type == EF_SECTOR) {
621         getsect(off->x, off->y, &sect);
622         sectdamage(&sect, dam);
623         putsect(&sect);
624         pr("Enemy fleet at %s does %d damage to %s\n",
625            xyas(def->x, def->y, player->cnum), dam, prcom(0, off));
626     } else if (off->type == EF_SHIP) {
627         getship(off->shp_uid, &ship);
628         shipdamage(&ship, dam);
629         putship(off->shp_uid, &ship);
630         if (def->own && ship.shp_effic < SHIP_MINEFF) {
631             wu(0, def->own, "%s sunk!\n", pr_com(0, off, def->own));
632             nreport(player->cnum, N_SHP_LOSE, def->own, 1);
633         }
634     }
635     if (att_get_combat(off, 0) < 0)
636         return abort_attack();
637     return 0;
638 }
639
640 /* The attack is valid.  Tell the attacker about what they're going to hit */
641
642 void
643 att_show(struct combat *def)
644 {
645     if (def->type == EF_SECTOR) {
646         pr("%s is a %d%% %s %s with approximately %d military.\n",
647            xyas(def->x, def->y, player->cnum),
648            roundintby((int)def->eff, 10),
649            cname(def->own), def->sct_dcp->d_name,
650            roundintby(def->troops, 10));
651         if (map_set(player->cnum, def->x, def->y, def->sct_dcp->d_mnem, 0))
652             writemap(player->cnum);
653     } else if (def->type == EF_SHIP || def->type == EF_LAND) {
654         pr("%s is about %d%% efficient and has approximately %d mil on board.\n",
655            prcom(0, def), roundintby((int)def->eff, 10),
656            roundintby(def->troops, 10));
657     }
658 }
659
660 /* Attack and assault ask the user which kind of support they want */
661
662 int
663 att_ask_support(int offset, int *fortp, int *shipp, int *landp,
664                 int *planep)
665 {
666     char buf[1024];
667     char *p;
668     *fortp = *shipp = *landp = *planep = 1;
669
670     if (player->argp[offset] != NULL) {
671         if ((player->argp[offset + 1] == NULL) ||
672             (player->argp[offset + 2] == NULL) ||
673             (player->argp[offset + 3] == NULL)) {
674             pr("If any support arguments are used, all must be!\n");
675             return RET_SYN;
676         }
677
678         *fortp = *shipp = 0;
679         *landp = *planep = 0;
680
681         p = getstarg(player->argp[offset], "Use fort support? ", buf);
682         if (!p)
683             return RET_SYN;
684
685         if ((*p == 'y') || (*p == 'Y'))
686             *fortp = 1;
687
688         p = getstarg(player->argp[offset + 1], "Use ship support? ", buf);
689         if (!p)
690             return RET_SYN;
691
692         if ((*p == 'y') || (*p == 'Y'))
693             *shipp = 1;
694
695         p = getstarg(player->argp[offset + 2], "Use land support? ", buf);
696         if (!p)
697             return RET_SYN;
698
699         if ((*p == 'y') || (*p == 'Y'))
700             *landp = 1;
701
702         p = getstarg(player->argp[offset + 3], "Use plane support? ", buf);
703         if (!p)
704             return RET_SYN;
705
706         if ((*p == 'y') || (*p == 'Y'))
707             *planep = 1;
708     }
709     return RET_OK;
710 }
711
712 /*
713  * Attack, assault, and board ask the attacker what they'd like to attack
714  * with.  This includes mil and land units from each "off" object.  Note that
715  * after each sub-prompt, we check to make sure that the attack is still
716  * valid, and if it's not, then we abort the attack.
717  */
718
719 int
720 att_ask_offense(int combat_mode, struct combat *off, struct combat *def,
721                 struct emp_qelem *olist, int *a_spyp, int *a_engineerp)
722 {
723     int n;
724     char land_answer[256];
725
726     emp_initque(olist);
727     if (att_abort(combat_mode, off, def))
728         return 0;
729     memset(land_answer, 0, sizeof(land_answer));
730     for (n = 0; n <= off->last; ++n) {
731         off[n].troops = ask_off(combat_mode, off + n, def);
732         if (att_abort(combat_mode, off, def))
733             return 0;
734         ask_olist(combat_mode, off + n, def, olist, land_answer,
735                   a_spyp, a_engineerp);
736         if (att_abort(combat_mode, off, def))
737             return 0;
738     }
739     return 0;
740 }
741
742 /*
743  * Return path cost for ATTACKER to enter sector given by DEF.
744  * MOBTYPE is a mobility type accepted by sector_mcost().
745  */
746 static double
747 att_mobcost(natid attacker, struct combat *def, int mobtype)
748 {
749     struct sctstr sect;
750     int ok;
751
752     if (CANT_HAPPEN(def->type != EF_SECTOR))
753         return -1.0;
754     ok = getsect(def->x, def->y, &sect);
755     if (CANT_HAPPEN(!ok))
756         return -1.0;
757
758     /*
759      * We want the cost to move/march into the sector.  If we just
760      * called sector_mcost(), we'd get the defender's cost.  The
761      * attacker's cost is higher unless he's the old-owner.  Note: if
762      * there are no civilians, a victorious attacker will become the
763      * old-owner.  But he isn't now.
764      */
765     sect.sct_own = attacker;
766     sect.sct_mobil = 0;
767     return sector_mcost(&sect, mobtype);
768 }
769
770 /* How many mil is off allowed to attack with when it attacks def? */
771
772 static int
773 get_mob_support(int combat_mode, struct combat *off, struct combat *def)
774 {
775     int mob_support;
776     double mobcost;
777
778     switch (combat_mode) {
779     case A_ATTACK:
780         mobcost = att_mobcost(off->own, def, MOB_MOVE);
781         if (mobcost < 0 || off->mob <= 0)
782             return 0;
783         mob_support = off->mob / mobcost;
784         if (mob_support < off->troops)
785             pr("Sector %s has %d mobility which can only support %d mil,\n",
786                xyas(off->x, off->y, player->cnum), off->mob, mob_support);
787         else
788             mob_support = off->troops;
789         return mob_support;
790     case A_ASSAULT:
791         if (def->own != player->cnum && def->mil) {
792             if (off->shp_mcp->m_flags & M_SEMILAND)
793                 return off->troops / 4;
794             else if (!(off->shp_mcp->m_flags & M_LAND))
795                 return off->troops / 10;
796         }
797         break;
798     case A_BOARD:
799         if (off->type == EF_SECTOR && off->mob <= 0)
800             return 0;
801         mob_support = def->shp_mcp->m_item[I_MILIT];
802         if (mob_support < off->troops)
803             pr("The size of the ship you are trying to board limits your party to %d mil,\n", mob_support);
804         else
805             mob_support = off->troops;
806         return mob_support;
807     case A_LBOARD:
808         if (off->mob <= 0)
809             return 0;
810         if (def->lnd_lcp->l_flags & L_SPY)
811             return 1;
812         mob_support = def->lnd_lcp->l_item[I_MILIT];
813         if (mob_support < off->troops)
814             pr("The size of the unit you are trying to board limits your party to %d mil,\n", mob_support);
815         else
816             mob_support = off->troops;
817         return mob_support;
818     }
819     return off->troops;
820 }
821
822 /*
823  * If the attacker decides to go through with the attack, then the
824  * sectors/ships they are attacking with may be charged some mobility.
825  * This is where that amount of mobility is calculated.  It is actually
826  * subtracted "for real" from the object's mobility in put_combat().
827  */
828
829 static void
830 calc_mobcost(int combat_mode, struct combat *off, struct combat *def,
831              int attacking_mil)
832 {
833     struct shpstr ship;
834
835     if (!attacking_mil)
836         return;
837     switch (combat_mode) {
838     case A_ATTACK:
839         off->mobcost += MAX(1,
840                             (int)(attacking_mil
841                                   * att_mobcost(off->own, def, MOB_MOVE)));
842         break;
843     case A_LBOARD:
844         off->mobcost += MAX(1, attacking_mil / 5);
845         break;
846     case A_BOARD:
847         switch (off->type) {
848         case EF_SECTOR:
849             off->mobcost += MAX(1, attacking_mil / 5);
850             break;
851         case EF_SHIP:
852             /* the 2 in the formula below is a fudge factor */
853             getship(def->shp_uid, &ship);
854             off->mobcost += (def->eff / 100) * (shp_speed(&ship) / 2);
855         }
856     }
857 }
858
859 /* How many mil to we want to attack from off against def? */
860
861 static int
862 ask_off(int combat_mode, struct combat *off, struct combat *def)
863 {
864     int attacking_mil;
865     int mob_support;
866     char prompt[512];
867
868     if (att_get_combat(off, 0) <= 0)
869         return 0;
870     if ((off->type == EF_SECTOR) && (off->own != player->cnum))
871         return 0;
872     if ((mob_support = get_mob_support(combat_mode, off, def)) <= 0)
873         return 0;
874     if (off->type == EF_SECTOR) {
875         if (off->own != player->cnum)
876             return 0;
877         sprintf(prompt, "Number of mil from %s at %s (max %d) : ",
878                 off->sct_dcp->d_name,
879                 xyas(off->x, off->y, player->cnum), mob_support);
880     } else {
881         sprintf(prompt, "Number of mil from %s (max %d) : ",
882                 prcom(0, off), mob_support);
883     }
884     if ((attacking_mil = onearg(NULL, prompt)) < 0)
885         abort_attack();
886     if (att_abort(combat_mode, off, def))
887         return 0;
888     if (att_get_combat(off, 0) <= 0)
889         return 0;
890     if ((attacking_mil =
891          MIN(attacking_mil, MIN(mob_support, off->troops))) <= 0)
892         return 0;
893
894     calc_mobcost(combat_mode, off, def, attacking_mil);
895     return attacking_mil;
896 }
897
898 /*
899  * Which units would you like to attack with or move in with [ynYNq?]
900  */
901
902 static char
903 att_prompt(char *prompt, char army)
904 {
905     char buf[1024];
906     char *p;
907
908     if (!army)
909         army = '~';
910     for (;;) {
911         p = getstring(prompt, buf);
912         if (!p || *p == 'q') {
913             abort_attack();
914             return 'N';
915         }
916         if (!*p)
917             return 'n';
918         if (tolower(*p) == 'y' || tolower(*p) == 'n')
919             return *p;
920         pr("y - yes this unit\n"
921            "n - no this unit\n"
922            "Y - yes to all units in army '%c'\n"
923            "N - no to all units in army '%c'\n"
924            "q - quit\n? - this help message\n\n",
925            army, army);
926     }
927 }
928
929 /* Ask the attacker which units they want to attack/assault/board with */
930
931 static void
932 ask_olist(int combat_mode, struct combat *off, struct combat *def,
933           struct emp_qelem *olist, char *land_answer, int *a_spyp,
934           int *a_engineerp)
935 {
936     struct nstr_item ni;
937     struct lndstr land;
938     double pathcost, mobcost;
939     int reqmob;
940     struct ulist *llp;
941     struct lchrstr *lcp;
942     double att_val;
943     int count = 0;
944     int maxland = 0;
945     int first_time = 1;
946     char prompt[512];
947
948     if (def->type == EF_LAND)
949         return;
950     if (def->type == EF_SHIP)
951         maxland = def->shp_mcp->m_nland;
952
953     snxtitem_xy(&ni, EF_LAND, off->x, off->y);
954     while (nxtitem(&ni, &land)) {
955         if (land.lnd_own != player->cnum)
956             continue;
957         if (land.lnd_effic < LAND_MINEFF)
958             continue;
959         if (land_answer[(int)land.lnd_army] == 'N')
960             continue;
961         if (!lnd_can_attack(&land))
962             continue;
963         lcp = &lchr[(int)land.lnd_type];
964
965         if (def->type == EF_SHIP && !maxland) {
966             pr("Land units are not able to board this kind of ship\n");
967             return;
968         }
969         if (def->type == EF_SHIP
970             && (def->shp_mcp->m_flags & (M_SUPPLY | M_SUB)) != M_SUPPLY
971             && !(lcp->l_flags & L_LIGHT)) {
972             pr("Only light land units can board this kind of ship\n");
973             continue;
974         }
975         if (land.lnd_mobil <= 0) {
976             pr("%s is out of mobility, and cannot %s\n",
977                prland(&land), att_mode[combat_mode]);
978             continue;
979         }
980
981         if (opt_MARKET) {
982             if (ontradingblock(EF_LAND, &land)) {
983                 pr("%s is on the trading block, and cannot %s\n",
984                    prland(&land), att_mode[combat_mode]);
985                 continue;
986             }
987         }
988
989         if (off->type == EF_SECTOR && land.lnd_ship >= 0) {
990             pr("%s is on ship #%d, and cannot %s\n",
991                prland(&land), land.lnd_ship, att_mode[combat_mode]);
992             continue;
993         } else if (off->type == EF_SHIP) {
994             if (land.lnd_ship != off->shp_uid)
995                 continue;
996         } else if (land.lnd_land >= 0) {
997             pr("%s is on unit #%d, and cannot %s\n",
998                prland(&land), land.lnd_land, att_mode[combat_mode]);
999             continue;
1000         }
1001         switch (combat_mode) {
1002         case A_ATTACK:
1003             /*
1004              * We used to let land units attack only if they have the
1005              * mobility consumed by the attack, not counting combat
1006              * and moving in to occupy.  Making sure your land units
1007              * reach attack positions with enough mobility left is a
1008              * pain in the neck.  We now require positive mobility,
1009              * just like for marching.  Except we don't allow rushing
1010              * of high-mobility sectors (mountains): for those we
1011              * still require attack mobility.
1012              */
1013             pathcost = att_mobcost(land.lnd_own, def, lnd_mobtype(&land));
1014             mobcost = lnd_pathcost(&land, pathcost);
1015             if (pathcost < 1.0) {
1016                 if (land.lnd_mobil <= 0) {
1017                     pr("%s is out of mobility\n", prland(&land));
1018                     continue;
1019                 }
1020             } else {
1021                 reqmob = MIN(land_mob_max, (int)ceil(mobcost));
1022                 if (land.lnd_mobil < reqmob) {
1023                     pr("%s does not have enough mobility (%d needed)\n",
1024                        prland(&land), reqmob);
1025                     continue;
1026                 }
1027             }
1028             break;
1029         case A_ASSAULT:
1030         case A_BOARD:
1031             mobcost = 0;
1032             if (!(lcp->l_flags & L_ASSAULT))
1033                 continue;
1034             break;
1035         default:
1036             CANT_REACH();
1037             return;
1038         }
1039         att_val = attack_val(combat_mode, &land);
1040         if (att_val < 1.0) {
1041             pr("%s has no offensive strength\n", prland(&land));
1042             continue;
1043         }
1044         if (!lnd_supply_all(&land)) {
1045             pr("%s is out of supply, and cannot %s\n",
1046                prland(&land), att_mode[combat_mode]);
1047             continue;
1048         }
1049         if (def->type == EF_SHIP && first_time) {
1050             first_time = 0;
1051             pr("You may board with a maximum of %d land units\n", maxland);
1052         }
1053         pr("%s has a base %s value of %.0f\n",
1054            prland(&land), att_mode[combat_mode], att_val);
1055         if (land_answer[(int)land.lnd_army] != 'Y') {
1056             sprintf(prompt,
1057                     "%s with %s %s (%c %d%%) [ynYNq?] ",
1058                     att_mode[combat_mode],
1059                     prland(&land),
1060                     prcom(1, off),
1061                     land.lnd_army ? land.lnd_army : '~',
1062                     land.lnd_effic);
1063             land_answer[(int)land.lnd_army] =
1064                 att_prompt(prompt, land.lnd_army);
1065             if (att_abort(combat_mode, off, def))
1066                 return;
1067             if (land_answer[(int)land.lnd_army] != 'y' &&
1068                 land_answer[(int)land.lnd_army] != 'Y')
1069                 continue;
1070         }
1071         llp = lnd_insque(&land, olist);
1072         llp->supplied = 1;
1073         llp->mobil = mobcost;
1074         llp->x = llp->unit.land.lnd_x;
1075         llp->y = llp->unit.land.lnd_y;
1076         llp->eff = llp->unit.land.lnd_effic;
1077         if (lnd_spyval(&land) > *a_spyp)
1078             *a_spyp = lnd_spyval(&land);
1079         if (lchr[land.lnd_type].l_flags & L_ENGINEER)
1080             ++*a_engineerp;
1081         if (def->type == EF_SHIP && ++count >= maxland)
1082             break;
1083     }
1084 }
1085
1086 /* What's the offense or defense multiplier? */
1087
1088 double
1089 att_combat_eff(struct combat *com)
1090 {
1091     double eff = 1.0;
1092     double str;
1093     struct shpstr ship;
1094
1095     if (com->type == EF_SECTOR) {
1096         eff = com->eff / 100.0;
1097         if (com->own == player->cnum) {
1098             str = com->sct_dcp->d_ostr;
1099             eff = 1.0 + (str - 1.0) * eff;
1100         } else
1101             eff = sector_strength(getsectp(com->x, com->y));
1102     } else if (com->type == EF_SHIP && com->own != player->cnum) {
1103         getship(com->shp_uid, &ship);
1104         eff = 1.0 + shp_armor(&ship) / 100.0;
1105     }
1106     return eff;
1107 }
1108
1109 int
1110 att_get_offense(int combat_mode, struct combat *off,
1111                 struct emp_qelem *olist, struct combat *def)
1112 {
1113     int ototal;
1114
1115     /*
1116      * Get the attacker units & mil again in case they changed while the
1117      * attacker was answering sub-prompts.
1118      */
1119
1120     ototal = get_ototal(combat_mode, off, olist, 1.0, 1);
1121     if (att_empty_attack(combat_mode, ototal, def))
1122         return abort_attack();
1123     if (combat_mode == A_PARA)
1124         return ototal;
1125     pr("\n             Initial attack strength: %8d\n", ototal);
1126     return ototal;
1127 }
1128
1129 /* Get the defensive units and reacting units */
1130 int
1131 att_get_defense(struct emp_qelem *olist, struct combat *def,
1132                 struct emp_qelem *dlist, int a_spy, int ototal)
1133 {
1134     int d_spy = 0;
1135     struct emp_qelem *qp;
1136     struct ulist *llp;
1137     int dtotal;
1138     int old_dtotal;
1139
1140     emp_initque(dlist);
1141     get_dlist(def, dlist, 0, &d_spy);
1142     dtotal = get_dtotal(def, dlist, 1.0, 0);
1143
1144     /*
1145      * Call in reacting units
1146      */
1147
1148     if (def->type == EF_SECTOR && def->sct_type != SCT_MOUNT)
1149         att_reacting_units(def, dlist, a_spy, &d_spy, ototal);
1150
1151     for (qp = olist->q_forw; qp != olist; qp = qp->q_forw) {
1152         llp = (struct ulist *)qp;
1153         intelligence_report(def->own, &llp->unit.land, d_spy,
1154                             "Scouts report attacking unit:");
1155     }
1156
1157     old_dtotal = dtotal;
1158     dtotal = get_dtotal(def, dlist, 1.0, 0);
1159     if (dtotal != old_dtotal)
1160         pr("Defense strength with reacting units: %8d\n", dtotal);
1161
1162     return dtotal;
1163 }
1164
1165 /* Get the defensive land units in the sector or on the ship */
1166
1167 static void
1168 get_dlist(struct combat *def, struct emp_qelem *list, int a_spy,
1169           int *d_spyp)
1170 {
1171     struct nstr_item ni;
1172     struct ulist *llp;
1173     struct lndstr land;
1174
1175 /* In here is where you need to take out spies and trains from the defending
1176    lists.  Spies try to hide, trains get trapped and can be boarded. */
1177
1178     snxtitem_xy(&ni, EF_LAND, def->x, def->y);
1179     while (nxtitem(&ni, &land)) {
1180         if (!land.lnd_own)
1181             continue;
1182         if (land.lnd_own != def->own)
1183             continue;
1184         if (def->type == EF_SECTOR && land.lnd_ship >= 0)
1185             continue;
1186         if (def->type == EF_SECTOR && land.lnd_land >= 0)
1187             continue;
1188         if (def->type == EF_SHIP && land.lnd_ship != def->shp_uid)
1189             continue;
1190         if (def->type == EF_LAND && land.lnd_land != def->lnd_uid)
1191             continue;
1192         intelligence_report(player->cnum, &land, a_spy,
1193                             "Scouts report defending unit:");
1194         llp = lnd_insque(&land, list);
1195         llp->supplied = lnd_supply_all(&land);
1196         llp->mobil = 0.0;
1197         llp->x = llp->unit.land.lnd_x;
1198         llp->y = llp->unit.land.lnd_y;
1199         llp->eff = llp->unit.land.lnd_effic;
1200         if (lnd_spyval(&land) > *d_spyp)
1201             *d_spyp = lnd_spyval(&land);
1202     }
1203 }
1204
1205 /* Calculate the total offensive strength */
1206
1207 static int
1208 get_ototal(int combat_mode, struct combat *off, struct emp_qelem *olist,
1209            double osupport, int check)
1210 {
1211     double ototal = 0.0;
1212     struct emp_qelem *qp, *next;
1213     struct ulist *llp;
1214     int n, w;
1215
1216     /*
1217      * first, total the attacking mil
1218      */
1219
1220     for (n = 0; n <= off->last; ++n) {
1221         if (off[n].type == EF_BAD || (check &&
1222                                       att_get_combat(&off[n], 0) <= 0))
1223             continue;
1224         ototal += off[n].troops * att_combat_eff(off + n);
1225     }
1226
1227     /*
1228      * next, add in the attack_values of all
1229      * the attacking units
1230      */
1231
1232     for (qp = olist->q_forw; qp != olist; qp = next) {
1233         next = qp->q_forw;
1234         llp = (struct ulist *)qp;
1235         if (check && !get_oland(combat_mode, llp))
1236             continue;
1237         if (combat_mode == A_ATTACK) {
1238             w = -1;
1239             for (n = 0; n <= off->last; ++n) {
1240                 if (off[n].type == EF_BAD)
1241                     continue;
1242                 if ((off[n].x == llp->unit.land.lnd_x) &&
1243                     (off[n].y == llp->unit.land.lnd_y))
1244                     w = n;
1245             }
1246             if (w < 0) {
1247                 lnd_print(player->cnum, llp,
1248                           "can't attack from this sector now");
1249                 lnd_put_one(llp);
1250                 continue;
1251             }
1252             ototal += attack_val(combat_mode, &llp->unit.land) *
1253                 att_combat_eff(off + w);
1254         } else {
1255             ototal += attack_val(combat_mode, &llp->unit.land);
1256         }
1257     }
1258     ototal *= osupport;
1259
1260     return ldround(ototal, 1);
1261 }
1262
1263 /* Calculate the total defensive strength */
1264
1265 static int
1266 get_dtotal(struct combat *def, struct emp_qelem *list, double dsupport,
1267            int check)
1268 {
1269     double dtotal = 0.0, eff = 1.0, d_unit;
1270     struct emp_qelem *qp, *next;
1271     struct ulist *llp;
1272
1273     if (check && att_get_combat(def, 1) < 0)
1274         return 0;
1275     eff = att_combat_eff(def);
1276     dtotal = def->troops * eff;
1277
1278     /*
1279      * next, add in the defense_values of all
1280      * the defending non-retreating units
1281      */
1282
1283     for (qp = list->q_forw; qp != list; qp = next) {
1284         next = qp->q_forw;
1285         llp = (struct ulist *)qp;
1286         if (check && !get_dland(def, llp))
1287             continue;
1288         d_unit = defense_val(&llp->unit.land);
1289         if (!llp->supplied)
1290             d_unit /= 2.0;
1291         dtotal += d_unit * eff;
1292     }
1293
1294     dtotal *= dsupport;
1295
1296     return ldround(dtotal, 1);
1297 }
1298
1299 /*
1300  * This is the land unit integrity check.
1301  */
1302
1303 static int
1304 get_oland(int combat_mode, struct ulist *llp)
1305 {
1306     struct lndstr *lp = &llp->unit.land;
1307     char buf[512];
1308
1309     getland(llp->unit.land.lnd_uid, lp);
1310
1311     if (lp->lnd_own != player->cnum) {
1312         sprintf(buf, "was destroyed and is no longer a part of the %s",
1313                 att_mode[combat_mode]);
1314         lnd_print(player->cnum, llp, buf);
1315         lnd_put_one(llp);
1316         return 0;
1317     }
1318     if (lp->lnd_x != llp->x || lp->lnd_y != llp->y) {
1319         sprintf(buf,
1320                 "left to fight another battle and is no longer a part of the %s",
1321                 att_mode[combat_mode]);
1322         lnd_print(player->cnum, llp, buf);
1323         lnd_put_one(llp);
1324         return 0;
1325     }
1326     if (lp->lnd_effic < llp->eff) {
1327         sprintf(buf, "damaged from %d%% to %d%%",
1328                 llp->eff, lp->lnd_effic);
1329         lnd_print(player->cnum, llp, buf);
1330     }
1331
1332     llp->eff = llp->unit.land.lnd_effic;
1333     return 1;
1334 }
1335
1336 static int
1337 get_dland(struct combat *def, struct ulist *llp)
1338 {
1339     struct lndstr *lp = &llp->unit.land;
1340     char buf[512];
1341
1342     getland(llp->unit.land.lnd_uid, lp);
1343
1344     if (lp->lnd_effic < LAND_MINEFF) {
1345         sprintf(buf, "was destroyed and is no longer a part of the defense");
1346         lnd_print(llp->unit.land.lnd_own, llp, buf);
1347         lnd_put_one(llp);
1348         return 0;
1349     }
1350     if (lp->lnd_x != def->x || lp->lnd_y != def->y) {
1351         lnd_print(llp->unit.land.lnd_own, llp,
1352                   "left to go fight another battle and is no longer a part of the defense");
1353         lnd_put_one(llp);
1354         return 0;
1355     }
1356
1357     llp->eff = llp->unit.land.lnd_effic;
1358     return 1;
1359 }
1360
1361 static void
1362 kill_land(struct emp_qelem *list)
1363 {
1364     struct emp_qelem *qp, *next;
1365     struct ulist *llp;
1366
1367     for (qp = list->q_forw; qp != list; qp = next) {
1368         next = qp->q_forw;
1369         llp = (struct ulist *)qp;
1370         if (llp->unit.land.lnd_ship >= 0) {
1371             llp->unit.land.lnd_effic = 0;
1372             lnd_print(player->cnum, llp,
1373                       "cannot return to the ship, and dies!");
1374             lnd_put_one(llp);
1375         }
1376     }
1377 }
1378
1379 static void
1380 att_infect_units(struct emp_qelem *list, int plague)
1381 {
1382     struct emp_qelem *qp, *next;
1383     struct ulist *llp;
1384
1385     if (!plague)
1386         return;
1387     for (qp = list->q_forw; qp != list; qp = next) {
1388         next = qp->q_forw;
1389         llp = (struct ulist *)qp;
1390         if (llp->unit.land.lnd_pstage == PLG_HEALTHY)
1391             llp->unit.land.lnd_pstage = PLG_EXPOSED;
1392     }
1393 }
1394
1395 /*
1396  * Put the land unit on the disk.  If there was some mobility cost, then
1397  * subtract it from the units mobility.  Note that this works the same way
1398  * as sectors & ships in that no mobility is actually taken until the attacker
1399  * has committed to attacking.
1400  */
1401
1402 static void
1403 put_oland(struct emp_qelem *list)
1404 {
1405     struct emp_qelem *qp, *next;
1406     struct ulist *llp;
1407
1408     for (qp = list->q_forw; qp != list; qp = next) {
1409         next = qp->q_forw;
1410         llp = (struct ulist *)qp;
1411         llp->unit.land.lnd_mission = 0;
1412         llp->unit.land.lnd_harden = 0;
1413         llp->unit.land.lnd_mobil -= (int)llp->mobil;
1414         llp->mobil = 0.0;
1415         putland(llp->unit.land.lnd_uid, &llp->unit.land);
1416         if (llp->unit.land.lnd_own != player->cnum) {
1417             emp_remque(&llp->queue);
1418             free(llp);
1419         } else
1420             get_oland(A_ATTACK, llp);
1421     }
1422 }
1423
1424 /*
1425  * Keep sending in reinforcements until it looks like we're going to win.
1426  * Note that the "strength" command also calls this routine.
1427  */
1428
1429 double
1430 att_reacting_units(struct combat *def, struct emp_qelem *list, int a_spy,
1431                    int *d_spyp, int ototal)
1432 {
1433     struct nstr_item ni;
1434     struct lndstr land;
1435     struct ulist *llp;
1436     int dtotal;
1437     double new_land = 0;
1438     double mobcost;
1439     double pathcost;
1440     int origx, origy;
1441     double eff = att_combat_eff(def);
1442
1443     if (list)
1444         dtotal = get_dtotal(def, list, 1.0, 1);
1445     else
1446         dtotal = 0;
1447     snxtitem_all(&ni, EF_LAND);
1448     while (nxtitem(&ni, &land) && dtotal + new_land * eff < 1.2 * ototal) {
1449         if (!land.lnd_own)
1450             continue;
1451         if (land.lnd_mission != MI_RESERVE)
1452             continue;
1453         if ((land.lnd_x == def->x) && (land.lnd_y == def->y))
1454             continue;
1455         if (land.lnd_own != def->own)
1456             continue;
1457         if (land.lnd_ship >= 0)
1458             continue;
1459         if (land.lnd_land >= 0)
1460             continue;
1461         if (defense_val(&land) < 1.0)
1462             continue;
1463         if (!lnd_can_attack(&land))
1464             continue;
1465
1466         /* Only supplied units can react */
1467         if (list ? !lnd_supply_all(&land) : !lnd_could_be_supplied(&land))
1468             continue;
1469
1470         if (!in_oparea((struct empobj *)&land, def->x, def->y))
1471             continue;
1472
1473         pathcost = path_find(land.lnd_x, land.lnd_y, def->x, def->y,
1474                             def->own, lnd_mobtype(&land));
1475         if (pathcost < 0)
1476             continue;
1477         mobcost = lnd_pathcost(&land, pathcost);
1478         if (land.lnd_mobil < mobcost)
1479             continue;
1480
1481         new_land += defense_val(&land);
1482
1483         if (!list)              /* we are in the "strength" command */
1484             continue;
1485
1486         /* move to defending sector */
1487         land.lnd_mobil -= ldround(mobcost, 1);
1488         origx = land.lnd_x;
1489         origy = land.lnd_y;
1490         land.lnd_x = def->x;
1491         land.lnd_y = def->y;
1492         putland(land.lnd_uid, &land);
1493         wu(0, land.lnd_own, "%s reacts to %s.\n",
1494            prland(&land), xyas(land.lnd_x, land.lnd_y, land.lnd_own));
1495
1496         llp = lnd_insque(&land, list);
1497         llp->supplied = 1;
1498         llp->mobil = 0.0;
1499         llp->x = origx;
1500         llp->y = origy;
1501         llp->eff = land.lnd_effic;
1502         if (lnd_spyval(&land) > *d_spyp)
1503             *d_spyp = lnd_spyval(&land);
1504
1505         intelligence_report(player->cnum, &land, a_spy,
1506                             "Scouts sight reacting enemy unit:");
1507     }
1508     return new_land;
1509 }
1510
1511 /* Pop off shells and fly bombing missions to get your attack multiplier up */
1512
1513 static double
1514 get_osupport(char *outs, struct combat *def, int fort_sup, int ship_sup,
1515              int land_sup, int plane_sup)
1516 {
1517     double osupport = 1.0;
1518     int dam;
1519     double af, as, au, ap;
1520
1521     af = as = au = ap = 0.0;
1522     if (fort_sup) {
1523         dam = dd(def->own, player->cnum, def->x, def->y, 0, 0);
1524         af = dam / 100.0;
1525         osupport += af;
1526     }
1527     if (ship_sup) {
1528         dam = sd(def->own, player->cnum, def->x, def->y, 0, 0, 0);
1529
1530         as = dam / 100.0;
1531         osupport += as;
1532     }
1533
1534     if (land_sup) {
1535         dam = lnd_support(def->own, player->cnum, def->x, def->y, 0);
1536         au = dam / 100.0;
1537         osupport += au;
1538     }
1539
1540     if (plane_sup) {
1541         dam = off_support(def->x, def->y, def->own, player->cnum);
1542         ap = dam / 100.0;
1543         osupport += ap;
1544     }
1545     sprintf(outs, "attacker\t%1.2f\t%1.2f\t%1.2f\t%1.2f\n", af, as, au,
1546             ap);
1547     return osupport;
1548 }
1549
1550 /* Pop off shells and fly bombing missions to get your defense multiplier up */
1551
1552 static double
1553 get_dsupport(char *outs, struct emp_qelem *list, struct combat *def,
1554              int ototal, int dtotal)
1555 {
1556     double dsupport = 1.0;
1557     int dam;
1558     double df, ds, du, dp;
1559     int good = 0;
1560
1561     df = ds = du = dp = 0.0;
1562     if (dtotal < 0.1 * ototal) {
1563         good = -1;
1564     } else if (dtotal >= 1.2 * ototal) {
1565         good = 1;
1566     } else {
1567         dam = dd(player->cnum, def->own, def->x, def->y, 0, 1);
1568         df = dam / 100.0;
1569         dsupport += df;
1570
1571         dtotal = get_dtotal(def, list, dsupport, 0);
1572         if (dtotal < 1.2 * ototal) {
1573             dam = sd(player->cnum, def->own, def->x, def->y, 0, 1, 0);
1574             ds = dam / 100.0;
1575             dsupport += ds;
1576             dtotal = get_dtotal(def, list, dsupport, 0);
1577         }
1578         if (dtotal < 1.2 * ototal) {
1579             dam = lnd_support(player->cnum, def->own, def->x, def->y, 1);
1580             du = dam / 100.0;
1581             dsupport += du;
1582             dtotal = get_dtotal(def, list, dsupport, 1);
1583         }
1584         if (dtotal < 1.2 * ototal) {
1585             dam = def_support(def->x, def->y, player->cnum, def->own);
1586             dp = dam / 100.0;
1587             dsupport += dp;
1588         }
1589     }
1590     if (good)
1591         *outs = '\0';
1592     else
1593         sprintf(outs, "defender\t%1.2f\t%1.2f\t%1.2f\t%1.2f\n\n", df, ds,
1594                 du, dp);
1595     if (def->own) {
1596         if (good < 0)
1597             wu(0, def->own,
1598                "\nOdds are bad for us...support cancelled.\n\n");
1599         else if (good > 0)
1600             wu(0, def->own,
1601                "\nOdds are good for us...support cancelled.\n\n");
1602     }
1603     return dsupport;
1604 }
1605
1606 /*
1607  * Land mines add to the defense multiplier.  If the attacker has engineers
1608  * then this multiplier is cut in half.
1609  */
1610
1611 static double
1612 get_mine_dsupport(struct combat *def, int a_engineer)
1613 {
1614     int mines;
1615     struct sctstr sect;
1616
1617     getsect(def->x, def->y, &sect);
1618
1619     if (sect.sct_oldown != player->cnum) {
1620         mines = SCT_LANDMINES(&sect);
1621         mines = MIN(mines, 20);
1622         if (a_engineer)
1623             mines = ldround(mines / 2.0, 1);
1624         if (mines > 0) {
1625             if (def->own)
1626                 wu(0, def->own, "Defending mines add %1.2f\n",
1627                    mines * 0.02);
1628             pr("Defending mines add %1.2f\n", mines * 0.02);
1629             return mines * 0.02;
1630         }
1631     }
1632     return 0.0;
1633 }
1634
1635 /* Get the offensive and defensive support */
1636 int
1637 att_get_support(int combat_mode, int ofort, int oship, int oland,
1638                 int oplane, struct emp_qelem *olist, struct combat *off,
1639                 struct emp_qelem *dlist, struct combat *def,
1640                 double *osupportp, double *dsupportp, int a_engineer)
1641 {
1642     int ototal, dtotal;
1643     char osupports[512];
1644     char dsupports[512];
1645
1646     if (combat_mode == A_PARA)
1647         *osupports = '\0';
1648     else
1649         *osupportp = get_osupport(osupports, def,
1650                                   ofort, oship, oland, oplane);
1651
1652     /*
1653      * I need to put a 1 at the end of the next four total_stren calls
1654      * because units & mil may have been damaged by collateral damage or
1655      * nuclear warheads from the offensive & defensive support.
1656      */
1657
1658     ototal = get_ototal(combat_mode, off, olist, *osupportp, 1);
1659     if (att_empty_attack(combat_mode, ototal, def))
1660         return abort_attack();
1661     dtotal = get_dtotal(def, dlist, *dsupportp, 1);
1662
1663     /*
1664      * Calculate defensive support.  If odds are too good or too bad
1665      * then don't call in support.
1666      */
1667
1668     *dsupportp = get_dsupport(dsupports, dlist, def, ototal, dtotal);
1669     ototal = get_ototal(combat_mode, off, olist, *osupportp, 1);
1670     if (att_empty_attack(combat_mode, ototal, def))
1671         return abort_attack();
1672
1673     if ((*osupports || *dsupports) &&
1674         (*osupportp != 1.0 || *dsupportp != 1.0)) {
1675         pr("\n\t\tsupport values\n");
1676         pr("\t\tforts\tships\tunits\tplanes\n");
1677         if (*osupportp != 1.0)
1678             pr("%s", osupports);
1679         if (*dsupportp != 1.0)
1680             pr("%s", dsupports);
1681         if (def->own) {
1682             wu(0, def->own, "\n\t\tsupport values\n");
1683             wu(0, def->own, "\t\tforts\tships\tunits\tplanes\n");
1684             if (*osupportp != 1.0)
1685                 wu(0, def->own, "%s", osupports);
1686             if (*dsupportp != 1.0)
1687                 wu(0, def->own, "%s", dsupports);
1688         }
1689     }
1690
1691     dtotal = get_dtotal(def, dlist, *dsupportp, 1);
1692     if (dtotal && def->type == EF_SECTOR)
1693         *dsupportp += get_mine_dsupport(def, a_engineer);
1694     return 0;
1695 }
1696
1697 /* How many two-legged bipeds are in this combat force? */
1698
1699 static int
1700 count_bodies(struct combat *off, struct emp_qelem *list)
1701 {
1702     int n;
1703     int bodies = 0;
1704     struct emp_qelem *qp;
1705     struct ulist *llp;
1706
1707     for (n = 0; n <= off->last; ++n)
1708         bodies += off[n].troops;
1709     for (qp = list->q_forw; qp != list; qp = qp->q_forw) {
1710         llp = (struct ulist *)qp;
1711         bodies += llp->unit.land.lnd_item[I_MILIT];
1712     }
1713     return bodies;
1714 }
1715
1716 /* This is where the fighting actually occurs. */
1717
1718 int
1719 att_fight(int combat_mode, struct combat *off, struct emp_qelem *olist,
1720           double osupport, struct combat *def, struct emp_qelem *dlist,
1721           double dsupport)
1722 {
1723     int success = 0;
1724     int a_cas = 0;              /* Casualty counts */
1725     int d_cas = 0;
1726     int ototal;                 /* total attacking strength */
1727     int dtotal;                 /* total defending strength */
1728     int a_bodies;               /* total attacking mil (incl. mil in units) */
1729     int d_bodies;               /* total defending mil (incl. mil in units) */
1730     int d_mil;
1731     int a_troops[6];
1732     int n;
1733     int news_item;
1734     int recalctime;
1735     double odds;
1736     int newmob;
1737     char *action;
1738
1739     ototal = get_ototal(combat_mode, off, olist, osupport,
1740                         combat_mode != A_PARA);
1741     dtotal = get_dtotal(def, dlist, dsupport, 0);
1742     if (!dtotal)
1743         success = 1;
1744
1745     a_bodies = count_bodies(off, olist);
1746     d_bodies = count_bodies(def, dlist);
1747     d_mil = def->troops;
1748     for (n = 0; n <= off->last; ++n)
1749         if (off[n].type == EF_BAD)
1750             a_troops[n] = 0;
1751         else
1752             a_troops[n] = off[n].troops;
1753
1754     /* This switch is required to get the spacing right */
1755     switch (combat_mode) {
1756     case A_ATTACK:
1757         pr("               Final attack strength: %8d\n", ototal);
1758         break;
1759     case A_ASSAULT:
1760         pr("              Final assault strength: %8d\n", ototal);
1761         break;
1762     case A_PARA:
1763         if (def->sct_type == SCT_MOUNT ||
1764             def->sct_type == SCT_WATER ||
1765             def->sct_type == SCT_CAPIT ||
1766             def->sct_type == SCT_FORTR || def->sct_type == SCT_WASTE) {
1767             pr("You can't air-assault a %s sector!\n",
1768                def->sct_dcp->d_name);
1769             a_cas = a_bodies;
1770             off[0].troops = 0;
1771             ototal = get_ototal(A_PARA, off, olist, osupport, 0);
1772         }
1773         pr("          Final air-assault strength: %8d\n", ototal);
1774         break;
1775     case A_BOARD:
1776     case A_LBOARD:
1777         pr("                Final board strength: %8d\n", ototal);
1778     }
1779
1780
1781     pr("              Final defense strength: %8d\n", dtotal);
1782     odds = att_calcodds(ototal, dtotal);
1783     pr("                          Final odds: %8d%%\n", (int)(odds * 100));
1784
1785     /* spread the plague */
1786     if (combat_mode != A_PARA) {
1787         if (!def->plague)
1788             for (n = 0; n <= off->last; ++n)
1789                 if (off[n].type != EF_BAD)
1790                     def->plague |= off[n].plague;
1791         for (n = 0; n <= off->last; ++n)
1792             if (off[n].type != EF_BAD)
1793                 off[n].plague |= def->plague;
1794     }
1795     att_infect_units(olist, off->plague);
1796     att_infect_units(dlist, def->plague);
1797
1798     /*
1799      * Fighting is slightly random.  There is always that last little
1800      * effort you see people put in.  Or the stray bullet that takes out
1801      * an officer and the rest go into chaos.  Things like that.
1802      * Thus, we have added a very slight random factor that will sometimes
1803      * allow the little guy to win. We modify the odds a little
1804      * (either +- 5%) to account for this randomness.  We also only
1805      * recalculate the odds every 8-50 casualties, not every cacsualty,
1806      * since a single dead guy normally wouldn't cause a commander to
1807      * rethink his strategies, but 50 dead guys might.
1808      */
1809     odds += (roll(11) - 6) / 100.0;
1810     if (odds < 0.0)
1811         odds = 0.1;
1812     if (odds > 1.0)
1813         odds = 1.0;
1814     recalctime = 7 + roll(43);
1815     while (!success && ototal) {
1816         if (chance(odds)) {
1817             pr("!");
1818             d_cas += take_casualty(A_DEFEND, def, dlist);
1819             dtotal = get_dtotal(def, dlist, dsupport, 0);
1820             if (!dtotal)
1821                 ++success;
1822         } else {
1823             pr("@");
1824             a_cas += take_casualty(combat_mode, off, olist);
1825             ototal = get_ototal(combat_mode, off, olist, osupport, 0);
1826         }
1827         if (((a_cas + d_cas) % 70) == 69)
1828             pr("\n");
1829         if (recalctime-- <= 0) {
1830             recalctime = 7 + roll(43);
1831             odds = att_calcodds(ototal, dtotal);
1832             odds += (roll(11) - 6) / 100.0;
1833             if (odds < 0.0)
1834                 odds = 0.1;
1835             if (odds > 1.0)
1836                 odds = 1.0;
1837         }
1838     }
1839     pr("\n");
1840     /* update defense mobility & mil */
1841     if (success)
1842         def->mil = 0;
1843     else {
1844         if (def->type == EF_SECTOR && d_mil && d_cas) {
1845             if (def->mob < 0)
1846                 def->mobcost = 0;
1847             else {
1848                 newmob = damage(def->mob, 100 * d_cas / d_mil);
1849                 def->mobcost = MIN(20, def->mob - newmob);
1850             }
1851         }
1852         def->mil = def->troops;
1853     }
1854
1855     /* update attack mobility & mil */
1856     for (n = 0; n <= off->last; ++n)
1857         if (off[n].type != EF_BAD && off[n].troops < a_troops[n]) {
1858             if (off[n].type == EF_SECTOR && off[n].mil) {
1859                 if (!CANT_HAPPEN(off[n].mob < 0)) {
1860                     newmob = damage(off[n].mob,
1861                                     100 * (a_troops[n] - off[n].troops)
1862                                     / off[n].mil);
1863                     off[n].mobcost += MIN(20, off[n].mob - newmob);
1864                 }
1865             }
1866             off[n].mil -= a_troops[n] - off[n].troops;
1867         }
1868
1869     /* update land unit mobility */
1870     if (d_bodies && d_cas)
1871         lnd_takemob(dlist, (double)d_cas / d_bodies);
1872     if (a_bodies && a_cas)
1873         lnd_takemob(olist, (double)a_cas / a_bodies);
1874
1875     /* damage attacked sector */
1876     def->eff = effdamage(def->eff, (d_cas + a_cas) / 10);
1877
1878     pr("- Casualties -\n     Yours: %d\n", a_cas);
1879     pr("    Theirs: %d\n", d_cas);
1880     pr("Papershuffling ... %.1f B.T.U\n", (d_cas + a_cas) * 0.15);
1881     player->btused += (int)((d_cas + a_cas) * 0.015 + 0.5);
1882
1883     if (success) {
1884         switch (combat_mode) {
1885         case A_ATTACK:
1886             news_item = def->own ? N_WON_SECT : N_TOOK_UNOCC;
1887             pr("We have captured %s, sir!\n", prcom(0, def));
1888             action = "taking";
1889             break;
1890         case A_ASSAULT:
1891             news_item = def->own ? N_AWON_SECT : N_START_COL;
1892             pr("We have secured a beachhead at %s, sir!\n", prcom(0, def));
1893             action = "assaulting and taking";
1894             break;
1895         case A_PARA:
1896             news_item = def->own ? N_PWON_SECT : N_PARA_UNOCC;
1897             pr("We have captured %s, sir!\n", prcom(0, def));
1898             action = "air-assaulting and taking";
1899             break;
1900         case A_BOARD:
1901             news_item = N_BOARD_SHIP;
1902             pr("We have boarded %s, sir!\n", prcom(0, def));
1903             action = "boarding";
1904             break;
1905         case A_LBOARD:
1906             news_item = N_BOARD_LAND;
1907             pr("We have boarded %s, sir!\n", prcom(0, def));
1908             action = "boarding";
1909             break;
1910         default:
1911             CANT_REACH();
1912             news_item = 0;
1913             action = "defeating";
1914         }
1915     } else {
1916         switch (combat_mode) {
1917         case A_ATTACK:
1918             news_item = N_SCT_LOSE;
1919             pr("You have been defeated!\n");
1920             action = "attacking";
1921             break;
1922         case A_ASSAULT:
1923             news_item = N_ALOSE_SCT;
1924             pr("You have been defeated!\n");
1925             kill_land(olist);
1926             action = "trying to assault";
1927             break;
1928         case A_PARA:
1929             news_item = N_PLOSE_SCT;
1930             pr("All of your troops were destroyed\n");
1931             action = "trying to air-assault";
1932             break;
1933         case A_BOARD:
1934             news_item = N_SHP_LOSE;
1935             pr("You have been repelled\n");
1936             kill_land(olist);
1937             action = "trying to board";
1938             break;
1939         case A_LBOARD:
1940             news_item = N_LND_LOSE;
1941             pr("You have been repelled\n");
1942             kill_land(olist);
1943             action = "trying to board";
1944             break;
1945         default:
1946             CANT_REACH();
1947             news_item = 0;
1948             action = "fighting";
1949         }
1950     }
1951     nreport(player->cnum, news_item, def->own, 1);
1952     if (def->own) {
1953         wu(0, def->own,
1954            "%s lost %d troops %s %s\nWe lost %d troops defending\n",
1955            prnatid(player->cnum), a_cas,
1956            action, pr_com(0, def, def->own), d_cas);
1957     }
1958
1959     send_reacting_units_home(dlist);
1960
1961     /* putland the defending land */
1962     lnd_put(dlist);
1963
1964     /* putland the attacking land */
1965     put_oland(olist);
1966
1967     /* put the victim sector/ship/land */
1968     if (!success || !take_def(combat_mode, olist, off, def))
1969         put_combat(def);
1970
1971     /* put the attacking sectors/ship */
1972     for (n = 0; n <= off->last; ++n)
1973         if (off[n].type != EF_BAD)
1974             put_combat(&off[n]);
1975
1976     if (!success)
1977         return 0;
1978
1979     switch (combat_mode) {
1980     case A_ATTACK:
1981         ask_move_in(off, olist, def);
1982
1983         /* put sectors again to get abandon warnings */
1984         for (n = 0; n <= off->last; ++n)
1985             if (off[n].type != EF_BAD)
1986                 put_combat(&off[n]);
1987         break;
1988     default:
1989         att_move_in_off(combat_mode, off, olist, def);
1990     }
1991     if (def->mil > 0)
1992         pr("%d of your troops now occupy %s\n", def->mil, prcom(0, def));
1993     return 1;
1994 }
1995
1996 /* What percentage of the combat forces going head-to-head are we? */
1997
1998 static double
1999 att_calcodds(int ototal, int dtotal)
2000 {
2001     double odds;
2002
2003     /* calculate odds */
2004     if (ototal <= 0)
2005         odds = 0.0;
2006     else if (dtotal <= 0)
2007         odds = 1.0;
2008     else
2009         odds = (double)ototal / (dtotal + ototal);
2010
2011     return odds;
2012 }
2013
2014 /* Here's where the dead soldiers get dragged off the battlefield */
2015
2016 static int
2017 take_casualty(int combat_mode, struct combat *off, struct emp_qelem *olist)
2018 {
2019     int to_take = CASUALTY_LUMP;
2020     int biggest_troops = 0, index = -1;
2021     int n, tot_troops = 0, biggest_mil, cas;
2022     struct emp_qelem *qp;
2023     struct ulist *llp, *biggest;
2024
2025     for (n = 0; n <= off->last; ++n) {
2026         if (off[n].type != EF_BAD) {
2027             tot_troops += off[n].troops;
2028             if (off[n].troops > biggest_troops) {
2029                 biggest_troops = off[n].troops;
2030                 index = n;
2031             }
2032         }
2033     }
2034
2035     if (tot_troops)
2036         to_take -= tot_troops;
2037
2038     if (to_take >= 0) {
2039         for (n = 0; n <= off->last; ++n)
2040             if (off[n].type != EF_BAD)
2041                 off[n].troops = 0;
2042     } else {
2043         /*
2044          * They can all come off mil.  We rotate the casualties,
2045          * starting with the sector containing the most mil.
2046          */
2047         to_take = CASUALTY_LUMP;
2048         if (index < 0) {
2049             pr("ERROR: Tell the deity that you got the 'green librarian' error\n");
2050             index = 0;
2051         }
2052         while (to_take > 0) {
2053             for (n = index; n <= off->last && to_take; ++n) {
2054                 if (off[n].type != EF_BAD && off[n].troops > 0) {
2055                     --to_take;
2056                     --off[n].troops;
2057                 }
2058             }
2059             for (n = 0; n < index && to_take; ++n) {
2060                 if (off[n].type != EF_BAD && off[n].troops > 0) {
2061                     --to_take;
2062                     --off[n].troops;
2063                 }
2064             }
2065         }
2066         return CASUALTY_LUMP;
2067     }
2068
2069     if (QEMPTY(olist))
2070         return CASUALTY_LUMP - to_take;
2071
2072     /*
2073      *  Need to take some casualties from attacking units
2074      *  Procedure: find the biggest unit remaining (in
2075      *  terms of mil) and give it the casualties.
2076      */
2077     biggest = NULL;
2078     biggest_mil = -1;
2079     for (qp = olist->q_forw; qp != olist; qp = qp->q_forw) {
2080         llp = (struct ulist *)qp;
2081
2082         if (llp->unit.land.lnd_item[I_MILIT] > biggest_mil) {
2083             biggest_mil = llp->unit.land.lnd_item[I_MILIT];
2084             biggest = llp;
2085         }
2086     }
2087     if (biggest == NULL)
2088         return CASUALTY_LUMP - to_take;
2089
2090     cas = lnd_take_casualty(combat_mode, biggest, to_take);
2091     return CASUALTY_LUMP - (to_take - cas);
2092 }
2093
2094 /* Send reacting defense units back to where they came from (at no mob cost) */
2095
2096 static void
2097 send_reacting_units_home(struct emp_qelem *list)
2098 {
2099     struct emp_qelem *qp, *next;
2100     struct ulist *llp;
2101     char buf[1024];
2102
2103     for (qp = list->q_forw; qp != list; qp = next) {
2104         next = qp->q_forw;
2105         llp = (struct ulist *)qp;
2106         if ((llp->unit.land.lnd_x != llp->x) ||
2107             (llp->unit.land.lnd_y != llp->y)) {
2108             sprintf(buf, "returns to %s",
2109                     xyas(llp->x, llp->y, llp->unit.land.lnd_own));
2110             llp->unit.land.lnd_x = llp->x;
2111             llp->unit.land.lnd_y = llp->y;
2112             lnd_print(llp->unit.land.lnd_own, llp, buf);
2113             lnd_put_one(llp);
2114         }
2115     }
2116 }
2117
2118 /* Check for 0 offense strength.  This call will always preceed an abort */
2119
2120 int
2121 att_empty_attack(int combat_mode, int ototal, struct combat *def)
2122 {
2123     if (ototal <= 0) {
2124         if (def->own && player->cnum != def->own) {
2125             wu(0, def->own,
2126                "%s considered %sing you @%s\n",
2127                prnatid(player->cnum),
2128                att_mode[combat_mode], xyas(def->x, def->y, def->own));
2129         }
2130         pr("No troops for %s...\n", att_mode[combat_mode]);
2131         return 1;
2132     }
2133     return 0;
2134 }
2135
2136 /*
2137  * Take the defending sector or ship from the defender and give it to the
2138  * attacker.
2139  */
2140
2141 static int
2142 take_def(int combat_mode, struct emp_qelem *list, struct combat *off,
2143          struct combat *def)
2144 {
2145     int n;
2146     int occuppied = 0;
2147     struct ulist *llp, *delete_me = NULL;
2148     char buf[1024];
2149     struct sctstr sect;
2150     struct shpstr ship;
2151     struct lndstr land;
2152
2153     for (n = 0; n <= off->last && !occuppied; ++n) {
2154         if (off[n].type != EF_BAD &&
2155             off[n].troops > 0 &&
2156             (off[n].type != EF_SECTOR || off[n].mob)) {
2157             ++occuppied;
2158             if (def->type == EF_LAND) {
2159                 if (def->lnd_lcp->l_flags & L_SPY) {
2160                     continue;
2161                 }
2162             }
2163             --(off[n].troops);
2164             --(off[n].mil);
2165             ++def->mil;
2166             pr("1 mil from %s moves %s\n",
2167                prcom(0, off + n), prcom(2, def));
2168         }
2169     }
2170     if (!occuppied) {
2171         if (QEMPTY(list)) {
2172             pr("%s left unoccupied\n", prcom(0, def));
2173             if (def->own)
2174                 wu(0, def->own,
2175                    "No enemy troops moved %s so you still own it!\n",
2176                    pr_com(2, def, def->own));
2177             return 0;
2178         } else {
2179             llp = (struct ulist *)list->q_forw;
2180             llp->unit.land.lnd_x = def->x;
2181             llp->unit.land.lnd_y = def->y;
2182             take_move_in_mob(combat_mode, llp, off, def);
2183             if (def->type == EF_SHIP) {
2184                 llp->unit.land.lnd_ship = def->shp_uid;
2185                 sprintf(buf, "boards %s", prcom(0, def));
2186                 lnd_print(player->cnum, llp, buf);
2187                 delete_me = llp;
2188             } else {
2189                 llp->unit.land.lnd_ship = -1;
2190                 sprintf(buf, "moves in to occupy %s",
2191                         xyas(def->x, def->y, player->cnum));
2192                 lnd_print(player->cnum, llp, buf);
2193                 lnd_put_one(llp);
2194             }
2195         }
2196     }
2197     put_combat(def);
2198     if (def->type == EF_SECTOR) {
2199         getsect(def->x, def->y, &sect);
2200         takeover(&sect, player->cnum);
2201         if (sect.sct_type == SCT_CAPIT || sect.sct_type == SCT_MOUNT)
2202             caploss(&sect, def->own,
2203                     "* We have captured %s's capital, sir! *\n");
2204         putsect(&sect);
2205     } else if (def->type == EF_SHIP) {
2206         getship(def->shp_uid, &ship);
2207         takeover_ship(&ship, player->cnum);
2208         putship(ship.shp_uid, &ship);
2209     } else if (def->type == EF_LAND) {
2210         getland(def->lnd_uid, &land);
2211         takeover_land(&land, player->cnum);
2212         putland(land.lnd_uid, &land);
2213     }
2214     if (delete_me)
2215         lnd_put_one(delete_me);
2216     att_get_combat(def, 0);
2217     return 1;
2218 }
2219
2220 /*
2221  * Ask the attacker which mil & land units they'd like to move into the
2222  * conquered sector.
2223  */
2224
2225 static void
2226 ask_move_in(struct combat *off, struct emp_qelem *olist,
2227             struct combat *def)
2228 {
2229     int n;
2230     struct emp_qelem *qp, *next;
2231     struct ulist *llp;
2232     char buf[512];
2233     char prompt[512];
2234     char land_answer[256];
2235     char *answerp;
2236
2237     for (n = 0; n <= off->last; ++n)
2238         if (off[n].type != EF_BAD && off[n].troops > 0)
2239             if (off[n].mob) {
2240                 ask_move_in_off(&off[n], def);
2241                 if (player->aborted)
2242                     break;
2243             }
2244
2245     if (QEMPTY(olist))
2246         return;
2247     memset(land_answer, 0, sizeof(land_answer));
2248     for (qp = olist->q_forw; qp != olist; qp = next) {
2249         next = qp->q_forw;
2250         llp = (struct ulist *)qp;
2251         answerp = &land_answer[(int)llp->unit.land.lnd_army];
2252         if (player->aborted || att_get_combat(def, 0) < 0)
2253             *answerp = 'N';
2254         if (*answerp == 'Y')
2255             continue;
2256         if (!get_oland(A_ATTACK, llp))
2257             continue;
2258         if (*answerp != 'N') {
2259             sprintf(prompt, "Move in with %s (%c %d%%) [ynYNq?] ",
2260                     prland(&llp->unit.land),
2261                     llp->unit.land.lnd_army ? llp->unit.land.lnd_army : '~',
2262                     llp->unit.land.lnd_effic);
2263             *answerp = att_prompt(prompt, llp->unit.land.lnd_army);
2264             if (player->aborted || att_get_combat(def, 0) < 0)
2265                 *answerp = 'N';
2266             if (!get_oland(A_ATTACK, llp))
2267                 continue;
2268         }
2269         if (*answerp == 'y' || *answerp == 'Y')
2270             continue;
2271         sprintf(buf, "stays in %s",
2272                 xyas(llp->unit.land.lnd_x, llp->unit.land.lnd_y,
2273                      player->cnum));
2274         lnd_print(player->cnum, llp, buf);
2275         lnd_put_one(llp);
2276     }
2277     if (QEMPTY(olist))
2278         return;
2279     if (att_get_combat(def, 0) < 0) {
2280         for (qp = olist->q_forw; qp != olist; qp = next) {
2281             next = qp->q_forw;
2282             llp = (struct ulist *)qp;
2283             if (!get_oland(A_ATTACK, llp))
2284                 continue;
2285             sprintf(buf, "stays in %s",
2286                     xyas(llp->unit.land.lnd_x, llp->unit.land.lnd_y,
2287                          player->cnum));
2288             lnd_print(player->cnum, llp, buf);
2289             lnd_put_one(llp);
2290         }
2291         return;
2292     }
2293     if (opt_INTERDICT_ATT)
2294         lnd_interdict(olist, def->x, def->y, player->cnum);
2295     move_in_land(A_ATTACK, off, olist, def);
2296 }
2297
2298 /* Move offensive land units to the conquered sector or ship */
2299
2300 static void
2301 move_in_land(int combat_mode, struct combat *off, struct emp_qelem *olist,
2302              struct combat *def)
2303 {
2304     struct emp_qelem *qp, *next;
2305     struct ulist *llp;
2306     char buf[512];
2307
2308     if (QEMPTY(olist))
2309         return;
2310     for (qp = olist->q_forw; qp != olist; qp = next) {
2311         next = qp->q_forw;
2312         llp = (struct ulist *)qp;
2313         if (!get_oland(combat_mode, llp))
2314             continue;
2315         take_move_in_mob(combat_mode, llp, off, def);
2316         llp->unit.land.lnd_x = def->x;
2317         llp->unit.land.lnd_y = def->y;
2318         if (def->type == EF_SHIP)
2319             llp->unit.land.lnd_ship = def->shp_uid;
2320         else
2321             llp->unit.land.lnd_ship = -1;
2322     }
2323     if (QEMPTY(olist))
2324         return;
2325     if (def->type == EF_SECTOR) {
2326         if (opt_INTERDICT_ATT) {
2327             lnd_sweep(olist, 0, 0, player->cnum);
2328             lnd_check_mines(olist);
2329         }
2330         sprintf(buf, "now occupies %s", prcom(0, def));
2331     } else {
2332         sprintf(buf, "boards %s", prcom(0, def));
2333     }
2334     if (QEMPTY(olist))
2335         return;
2336     for (qp = olist->q_forw; qp != olist; qp = next) {
2337         next = qp->q_forw;
2338         llp = (struct ulist *)qp;
2339         lnd_print(player->cnum, llp, buf);
2340     }
2341     if (QEMPTY(olist))
2342         return;
2343     lnd_put(olist);
2344 }
2345
2346 /*
2347  * Move assaulting, paradropping, or boarding mil & units into def
2348  * If the mil are coming from a ship, then pack a lunch.
2349  */
2350
2351 void
2352 att_move_in_off(int combat_mode, struct combat *off,
2353                 struct emp_qelem *olist, struct combat *def)
2354 {
2355     struct sctstr sect;
2356     struct shpstr ship;
2357     int troops, n;
2358     int lunchbox = 0;
2359
2360     move_in_land(combat_mode, off, olist, def);
2361
2362     for (n = 0; n <= off->last; ++n) {
2363         if (off[n].type == EF_BAD || !off[n].troops)
2364             continue;
2365         troops = off[n].troops;
2366         off[n].troops = 0;
2367         off[n].mil -= troops;
2368         def->mil += troops;
2369         put_combat(off + n);
2370         if (combat_mode == A_ASSAULT) {
2371             if (CANT_HAPPEN(off[n].type != EF_SHIP))
2372                 continue;
2373             getship(off[n].shp_uid, &ship);
2374             lunchbox += (int)((troops + 1) * ship.shp_item[I_FOOD]
2375                               / (ship.shp_item[I_MILIT] + troops
2376                                  + ship.shp_item[I_CIVIL] + 0.5));
2377
2378             ship.shp_item[I_FOOD] -= lunchbox;
2379             putship(ship.shp_uid, &ship);
2380         }
2381     }
2382
2383     put_combat(def);
2384
2385     if (combat_mode == A_ASSAULT) {
2386         if (CANT_HAPPEN(def->type != EF_SECTOR))
2387             return;
2388         getsect(def->x, def->y, &sect);
2389         if (lunchbox > ITEM_MAX - sect.sct_item[I_FOOD])
2390             lunchbox = ITEM_MAX - sect.sct_item[I_FOOD];
2391         sect.sct_item[I_FOOD] += lunchbox;
2392         putsect(&sect);
2393     }
2394 }
2395
2396
2397 /* Ask how many mil to move in from each sector */
2398
2399 static void
2400 ask_move_in_off(struct combat *off, struct combat *def)
2401 {
2402     int mob_support;
2403     int num_mil, dam = 0, left;
2404     double d, weight;
2405     char prompt[512];
2406     char buf[1024];
2407     char *p;
2408
2409     if (att_get_combat(off, 0) <= 0)
2410         return;
2411     if (att_get_combat(def, 0) < 0)
2412         return;
2413     if (off->own != player->cnum)
2414         return;
2415     d = att_mobcost(off->own, def, MOB_MOVE);
2416     if ((mob_support = MIN(off->troops, (int)(off->mob / d))) <= 0)
2417         return;
2418     sprintf(prompt, "How many mil to move in from %s (%d max)? ",
2419             xyas(off->x, off->y, player->cnum), mob_support);
2420     p = getstring(prompt, buf);
2421     if (!p || !*p || (num_mil = atoi(p)) <= 0)
2422         return;
2423 /* Make sure we don't move in more than we can support mobility-wise */
2424     if (num_mil > mob_support)
2425         num_mil = mob_support;
2426     if (att_get_combat(off, 0) <= 0)
2427         return;
2428     if (att_get_combat(def, 0) < 0)
2429         return;
2430     if ((num_mil = MIN(off->troops, num_mil)) <= 0) {
2431         pr("No mil moved in from %s\n",
2432            xyas(off->x, off->y, player->cnum));
2433         return;
2434     }
2435     mob_support = MAX(1, (int)(num_mil * d));
2436     off->mob -= MIN(off->mob, mob_support);
2437     off->mil -= num_mil;
2438     off->troops -= num_mil;
2439     put_combat(off);
2440     left = num_mil;
2441     weight = (double)num_mil * ichr[I_MILIT].i_lbs;
2442     if (opt_INTERDICT_ATT && chance(weight / 200.0)) {
2443         if (chance(weight / 100.0))
2444             dam +=
2445                 ground_interdict(def->x, def->y, player->cnum, "military");
2446         dam += check_lmines(def->x, def->y, weight);
2447     }
2448
2449     if (dam) {
2450         left = commdamage(num_mil, dam, I_MILIT);
2451         if (left < num_mil) {
2452             if (left) {
2453                 pr("%d of the mil you were moving were destroyed!\n"
2454                    "Only %d mil made it to %s\n",
2455                    num_mil - left, left,
2456                    xyas(def->x, def->y, player->cnum));
2457             } else {
2458                 pr("All of the mil you were moving were destroyed!\n");
2459             }
2460         }
2461         /* maybe got nuked */
2462         if (att_get_combat(def, 0) < 0)
2463             return;
2464     }
2465     def->mil += left;
2466     put_combat(def);
2467 }
2468
2469
2470 /* Charge land units for moving into a sector or onto a ship */
2471
2472 static void
2473 take_move_in_mob(int combat_mode, struct ulist *llp, struct combat *off,
2474                  struct combat *def)
2475 {
2476     double mob = llp->unit.land.lnd_mobil;
2477     double gain = etu_per_update * land_mob_scale;
2478     double mobcost, moblim;
2479
2480     switch (combat_mode) {
2481     case A_ATTACK:
2482         mobcost = lnd_pathcost(&llp->unit.land,
2483                                att_mobcost(llp->unit.land.lnd_own, def,
2484                                            lnd_mobtype(&llp->unit.land)));
2485         break;
2486     case A_ASSAULT:
2487         /*
2488          * Set mobcost to basic assault cost, moblim to maximum
2489          * mobility to keep when assaulting from non-landing ship
2490          */
2491         if (lchr[llp->unit.land.lnd_type].l_flags & L_MARINE) {
2492             mobcost = gain / 2.0;
2493             moblim = 0;
2494         } else {
2495             mobcost = gain;
2496             moblim = -gain;
2497         }
2498         if (!(off->shp_mcp->m_flags & M_LAND))
2499             /* Not a landing ship, ensure we go to or below moblim */
2500             mobcost = MAX(mobcost, mob - moblim);
2501         break;
2502     case A_BOARD:
2503         if (lchr[llp->unit.land.lnd_type].l_flags & L_MARINE)
2504             mobcost = 10;
2505         else
2506             mobcost = 40;
2507         break;
2508     default:
2509         CANT_REACH();
2510         mobcost = 0;
2511     }
2512
2513     mob -= mobcost;
2514     if (mob < -127.0)
2515         mob = -127.0;
2516     llp->unit.land.lnd_mobil = (signed char)mob;
2517     llp->unit.land.lnd_harden = 0;
2518 }
2519
2520 static void
2521 free_list(struct emp_qelem *list)
2522 {
2523     struct emp_qelem *qp, *next;
2524
2525     if (!list || QEMPTY(list))
2526         return;
2527
2528     qp = list->q_forw;
2529     while (qp != list) {
2530         next = qp->q_forw;
2531         emp_remque(qp);
2532         free(qp);
2533         qp = next;
2534     }
2535 }
2536
2537 int
2538 att_free_lists(struct emp_qelem *olist, struct emp_qelem *dlist)
2539 {
2540     free_list(olist);
2541     free_list(dlist);
2542     return RET_OK;
2543 }
2544
2545 /*
2546  * sector_strength - Everyone starts at 1.  You can get up to a max
2547  *                   of d_dstr, depending on how much you build up the
2548  *                   defenses of the sector.
2549  */
2550
2551 double
2552 sector_strength(struct sctstr *sp)
2553 {
2554     double def = SCT_DEFENSE(sp) / 100.0;
2555     double base = sp->sct_type == SCT_MOUNT ? 2.0 : 1.0;
2556     double d = base + (dchr[sp->sct_type].d_dstr - base) * def;
2557
2558     return LIMIT_TO(d, base, dchr[sp->sct_type].d_dstr);
2559 }