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