]> git.pond.sub.org Git - empserver/blob - src/lib/subs/lndsub.c
Get rid of msl_launch_mindam()
[empserver] / src / lib / subs / lndsub.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, 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  *  lndsub.c: Land unit subroutines
29  *
30  *  Known contributors to this file:
31  *     Ken Stevens, 1995
32  *     Steve McClure, 1998-2000
33  *     Markus Armbruster, 2004-2008
34  */
35
36 #include <config.h>
37
38 #include <math.h>
39 #include <stdlib.h>
40 #include "combat.h"
41 #include "damage.h"
42 #include "file.h"
43 #include "misc.h"
44 #include "mission.h"
45 #include "nsc.h"
46 #include "optlist.h"
47 #include "path.h"
48 #include "player.h"
49 #include "prototypes.h"
50 #include "xy.h"
51 #include "empobj.h"
52 #include "unit.h"
53
54 static void lnd_mess(char *, struct ulist *);
55 static int lnd_hit_mine(struct lndstr *, struct lchrstr *);
56 static int has_helpful_engineer(coord, coord, natid);
57
58 double
59 attack_val(int combat_mode, struct lndstr *lp)
60 {
61     int men;
62     double value;
63     struct lchrstr *lcp;
64
65     if (lp->lnd_effic < LAND_MINEFF) {
66         putland(lp->lnd_uid, lp);
67         return 0;
68     }
69
70     lcp = &lchr[(int)lp->lnd_type];
71
72 /* Spies always count as 1 during assaults.  If they are the only ones
73    in the assault, they get to sneak on anyway. */
74
75     if (lcp->l_flags & L_SPY && combat_mode == A_ASSAULT)
76         return 1;
77
78     men = lp->lnd_item[I_MILIT];
79     value = men * lnd_att(lp) * lp->lnd_effic / 100.0;
80
81     switch (combat_mode) {
82     case A_ATTACK:
83         return value;
84     case A_ASSAULT:
85         if (!(lcp->l_flags & L_MARINE))
86             return assault_penalty * value;
87         break;
88     case A_BOARD:
89         if (!(lcp->l_flags & L_MARINE))
90             return assault_penalty * men;
91     }
92
93     return value;
94 }
95
96 double
97 defense_val(struct lndstr *lp)
98 {
99     int men;
100     double value;
101     struct lchrstr *lcp;
102
103     if (lp->lnd_effic < LAND_MINEFF) {
104         putland(lp->lnd_uid, lp);
105         return 0;
106     }
107
108     lcp = &lchr[(int)lp->lnd_type];
109
110     men = lp->lnd_item[I_MILIT];
111
112     if ((lp->lnd_ship >= 0 || lp->lnd_land >= 0) &&
113         !(lcp->l_flags & L_MARINE))
114         return men;
115
116     value = men * lnd_def(lp) * lp->lnd_effic / 100.0;
117     value *= ((double)land_mob_max + lp->lnd_harden) / land_mob_max;
118
119     /* If there are military on the unit, you get at least a 1
120        man defensive unit, except for spies */
121     if (value < 1.0 && men > 0 && !(lcp->l_flags & L_SPY))
122         return 1;
123
124     return value;
125 }
126
127 int
128 lnd_reaction_range(struct lndstr *lp)
129 {
130     struct sctstr sect;
131
132     getsect(lp->lnd_x, lp->lnd_y, &sect);
133     if (sect.sct_type == SCT_HEADQ && sect.sct_effic >= 60)
134         return lchr[lp->lnd_type].l_rad + 1;
135     return lchr[lp->lnd_type].l_rad;
136 }
137
138 void
139 lnd_print(struct ulist *llp, char *s)
140 {
141     if (llp->unit.land.lnd_own == player->cnum)
142         pr("%s %s\n", prland(&llp->unit.land), s);
143     else
144         wu(0, llp->unit.land.lnd_own, "%s %s\n", prland(&llp->unit.land), s);
145 }
146
147 void
148 lnd_delete(struct ulist *llp, char *s)
149 {
150     if (s)
151         lnd_print(llp, s);
152     putland(llp->unit.land.lnd_uid, &llp->unit.land);
153     emp_remque((struct emp_qelem *)llp);
154     free(llp);
155 }
156
157 int
158 lnd_take_casualty(int combat_mode, struct ulist *llp, int cas)
159                         /* attacking or assaulting or paratrooping? */
160                         /* number of casualties to take */
161 {
162     int eff_eq;
163     int n;
164     int biggest;
165     int civs;
166     int nowned;
167     coord ret_x, ret_y;
168     coord bx, by;
169     struct sctstr sect;
170     int ret_chance;
171     char buf[1024];
172     int taken;
173     int nowhere_to_go = 0;
174     struct sctstr rsect;
175     double mobcost, bmcost;
176     signed char orig;
177     int mob;
178
179     taken = llp->unit.land.lnd_item[I_MILIT];
180     /* Spies always die */
181     if (((struct lchrstr *)llp->chrp)->l_flags & L_SPY) {
182         eff_eq = 100;
183         llp->unit.land.lnd_effic = 0;
184     } else {
185         eff_eq = ldround(cas * 100.0 /
186             ((struct lchrstr *)llp->chrp)->l_item[I_MILIT], 1);
187         llp->unit.land.lnd_effic -= eff_eq;
188         lnd_submil(&llp->unit.land, cas);
189     }
190
191     if (llp->unit.land.lnd_effic < LAND_MINEFF) {
192         sprintf(buf, "dies %s %s!",
193                 combat_mode ? att_mode[combat_mode] : "defending",
194                 xyas(llp->unit.land.lnd_x, llp->unit.land.lnd_y,
195                      llp->unit.land.lnd_own));
196         lnd_delete(llp, buf);
197         /* Since we killed the unit, we killed all the mil on it */
198         return taken;
199     } else {
200         /* Ok, now, how many did we take off? (sould be the diff) */
201         taken = taken - llp->unit.land.lnd_item[I_MILIT];
202     }
203
204     if (llp->unit.land.lnd_effic >= llp->unit.land.lnd_retreat)
205         return taken;
206
207     /* we're being boarded */
208     if (llp->unit.land.lnd_ship >= 0 && combat_mode == A_DEFEND)
209         return taken;
210
211     /* we're being boarded */
212     if (llp->unit.land.lnd_land >= 0 && combat_mode == A_DEFEND)
213         return taken;
214
215     /* Have to make a retreat check */
216
217     ret_chance = llp->unit.land.lnd_retreat - llp->unit.land.lnd_effic;
218     if (roll(100) < ret_chance) {
219         pr("\n");
220         lnd_print(llp, "fails morale check!");
221         llp->unit.land.lnd_mission = 0;
222         llp->unit.land.lnd_harden = 0;
223         if (llp->unit.land.lnd_ship >= 0 || llp->unit.land.lnd_land >= 0)
224             nowhere_to_go = 1;
225         else if (combat_mode == A_DEFEND) {
226             /*
227              * defending unit.. find a place to send it
228              * strategy: look for the most-populated
229              * adjacent sector that is owned by the unit
230              * owner. Charge mob..
231              */
232             biggest = -1;
233             nowned = 0;
234             for (n = 1; n <= 6; ++n) {
235                 ret_x = llp->unit.land.lnd_x + diroff[n][0];
236                 ret_y = llp->unit.land.lnd_y + diroff[n][1];
237                 getsect(ret_x, ret_y, &sect);
238                 if (sect.sct_own != llp->unit.land.lnd_own)
239                     continue;
240                 if (sect.sct_type == SCT_MOUNT)
241                     continue;
242                 mobcost = lnd_mobcost(&llp->unit.land, &rsect);
243                 if (mobcost < 0)
244                     continue;
245                 ++nowned;
246                 civs = sect.sct_item[I_CIVIL];
247                 if (civs > biggest) {
248                     biggest = civs;
249                     bx = sect.sct_x;
250                     by = sect.sct_y;
251                     bmcost = mobcost;
252                 }
253             }
254             if (!nowned)
255                 nowhere_to_go = 1;
256             else {
257                 /* retreat to bx,by */
258                 llp->unit.land.lnd_x = bx;
259                 llp->unit.land.lnd_y = by;
260                 /* FIXME landmines */
261                 getsect(bx, by, &rsect);
262                 mob = llp->unit.land.lnd_mobil - (int)bmcost;
263                 if (mob < -127)
264                     mob = -127;
265                 orig = llp->unit.land.lnd_mobil;
266                 llp->unit.land.lnd_mobil = (signed char)mob;
267                 if (llp->unit.land.lnd_mobil > orig)
268                     llp->unit.land.lnd_mobil = -127;
269                 sprintf(buf, "retreats at %d%% efficiency to %s!",
270                         llp->unit.land.lnd_effic,
271                         xyas(bx, by, llp->unit.land.lnd_own));
272                 lnd_delete(llp, buf);
273             }
274         } else {                /* attacking from a sector */
275             sprintf(buf, "leaves the battlefield at %d%% efficiency",
276                     llp->unit.land.lnd_effic);
277             if ((llp->unit.land.lnd_mobil - (int)llp->mobil) < -127)
278                 llp->unit.land.lnd_mobil = -127;
279             else
280                 llp->unit.land.lnd_mobil -= (int)llp->mobil;
281             llp->mobil = 0.0;
282             lnd_delete(llp, buf);
283         }
284     }
285     if (nowhere_to_go) {
286         /* nowhere to go.. take more casualties */
287         llp->unit.land.lnd_effic -= 10;
288         lnd_submil(&llp->unit.land,
289                    ((struct lchrstr *)llp->chrp)->l_item[I_MILIT] / 10);
290         if (llp->unit.land.lnd_effic < LAND_MINEFF)
291             lnd_delete(llp, "has nowhere to retreat, and dies!");
292         else
293             lnd_print(llp,
294                       "has nowhere to retreat and takes extra losses!");
295     }
296
297     return taken;
298 }
299
300 void
301 lnd_takemob(struct emp_qelem *list, double loss)
302 {
303     struct emp_qelem *qp, *next;
304     struct ulist *llp;
305     int new;
306     int mcost = ldround(combat_mob * loss, 1);
307
308     for (qp = list->q_forw; qp != list; qp = next) {
309         next = qp->q_forw;
310         llp = (struct ulist *)qp;
311 #if 0
312         if (chance(loss))
313             use_supply(&llp->unit.land);
314 #endif
315         new = llp->unit.land.lnd_mobil - mcost;
316         if (new < -127)
317             new = -127;
318         llp->unit.land.lnd_mobil = (signed char)new;
319     }
320 }
321
322 void
323 lnd_submil(struct lndstr *lp, int num)
324 {
325     int new = lp->lnd_item[I_MILIT] - num;
326     lp->lnd_item[I_MILIT] = new < 0 ? 0 : new;
327 }
328
329 int
330 lnd_spyval(struct lndstr *lp)
331 {
332     if (lchr[(int)lp->lnd_type].l_flags & L_RECON)
333         return lchr[lp->lnd_type].l_spy * (lp->lnd_effic / 100.0) + 2;
334     else
335         return lchr[lp->lnd_type].l_spy * (lp->lnd_effic / 100.0);
336 }
337
338 void
339 intelligence_report(int destination, struct lndstr *lp, int spy,
340                     char *mess)
341 {
342     int vis = lnd_vis(lp);
343     char buf1[80], buf2[80], buf3[80];
344
345     if (destination == 0)
346         return;
347
348     if (lp->lnd_own == 0)
349         return;
350
351     memset(buf1, 0, sizeof(buf1));
352     memset(buf2, 0, sizeof(buf2));
353     memset(buf3, 0, sizeof(buf3));
354     if (chance((spy + vis) / 10.0)) {
355         if (destination == player->cnum)
356             pr("%s %s", mess, prland(lp));
357         else
358             sprintf(buf1, "%s %s", mess, prland(lp));
359
360         if (chance((spy + vis) / 20.0)) {
361             if (destination == player->cnum)
362                 pr(" (eff %d, mil %d",
363                    roundintby(lp->lnd_effic, 5),
364                    roundintby(lp->lnd_item[I_MILIT], 10));
365             else
366                 sprintf(buf2, " (eff %d, mil %d",
367                         roundintby(lp->lnd_effic, 5),
368                         roundintby(lp->lnd_item[I_MILIT], 10));
369
370             if (chance((spy + vis) / 20.0)) {
371                 int t;
372                 t = lp->lnd_tech - 20 + roll(40);
373                 t = MAX(t, 0);
374                 if (destination == player->cnum)
375                     pr(", tech %d)\n", t);
376                 else
377                     sprintf(buf3, ", tech %d)\n", t);
378             } else {
379                 if (destination == player->cnum)
380                     pr(")\n");
381                 else
382                     sprintf(buf3, ")\n");
383             }
384         } else {
385             if (destination == player->cnum)
386                 pr("\n");
387             else
388                 sprintf(buf2, "\n");
389         }
390     }
391
392     if (destination != player->cnum) {
393         wu(0, destination, "%s%s%s", buf1, buf2, buf3);
394     }
395 }
396
397 void
398 lnd_sel(struct nstr_item *ni, struct emp_qelem *list)
399 {
400     struct lndstr land;
401     struct lchrstr *lcp;
402     struct ulist *llp;
403     int this_mot;
404     int mobtype = MOB_MOVE;     /* indeterminate */
405
406     emp_initque(list);
407     while (nxtitem(ni, &land)) {
408         if (!player->owner)
409             continue;
410         if (opt_MARKET) {
411             if (ontradingblock(EF_LAND, &land)) {
412                 pr("unit #%d inelligible - it's for sale.\n",
413                    land.lnd_uid);
414                 continue;
415             }
416         }
417         /*
418          * The marching code gets confused when trains and non-trains
419          * march together.  Disallow for now.
420          */
421         this_mot = lnd_mobtype(&land);
422         if (this_mot != mobtype) {
423             if (mobtype == MOB_MOVE)
424                 mobtype = this_mot;
425             else if (mobtype == MOB_MARCH) {
426                 pr("%s is a train and can't march with the leader.\n",
427                    prland(&land));
428                 continue;
429             } else {
430                 pr("%s can't rail-march with the leading train.\n",
431                    prland(&land));
432                 continue;
433             }
434         }
435
436         lcp = &lchr[(int)land.lnd_type];
437         land.lnd_mission = 0;
438         land.lnd_rflags = 0;
439         land.lnd_harden = 0;
440         memset(land.lnd_rpath, 0, sizeof(land.lnd_rpath));
441         putland(land.lnd_uid, &land);
442         llp = malloc(sizeof(struct ulist));
443         llp->chrp = (struct empobj_chr *)lcp;
444         llp->unit.land = land;
445         llp->mobil = land.lnd_mobil;
446         emp_insque(&llp->queue, list);
447     }
448 }
449
450 /* This function assumes that the list was created by lnd_sel */
451 void
452 lnd_mar(struct emp_qelem *list, double *minmobp, double *maxmobp,
453         int *togetherp, natid actor)
454 {
455     struct emp_qelem *qp;
456     struct emp_qelem *next;
457     struct ulist *llp;
458     struct sctstr sect;
459     struct lndstr land;
460     coord allx;
461     coord ally;
462     int first = 1;
463     char mess[128];
464     int rel;
465
466     *minmobp = 9876.0;
467     *maxmobp = -9876.0;
468     *togetherp = 1;
469     for (qp = list->q_back; qp != list; qp = next) {
470         next = qp->q_back;
471         llp = (struct ulist *)qp;
472         getland(llp->unit.land.lnd_uid, &land);
473         if (land.lnd_own != actor) {
474             mpr(actor, "%s was disbanded at %s\n",
475                 prland(&land), xyas(land.lnd_x, land.lnd_y, land.lnd_own));
476             emp_remque((struct emp_qelem *)llp);
477             free(llp);
478             continue;
479         }
480         if (land.lnd_ship >= 0) {
481             lnd_mess("is on a ship", llp);
482             continue;
483         }
484         if (land.lnd_land >= 0) {
485             lnd_mess("is on a unit", llp);
486             continue;
487         }
488         if (!getsect(land.lnd_x, land.lnd_y, &sect)) {
489             lnd_mess("was sucked into the sky by a strange looking spaceland", llp);    /* heh -KHS */
490             continue;
491         }
492         if (!(lchr[(int)llp->unit.land.lnd_type].l_flags & L_SPY) &&
493             !(lchr[(int)llp->unit.land.lnd_type].l_flags & L_TRAIN) &&
494             llp->unit.land.lnd_item[I_MILIT] == 0) {
495             lnd_mess("has no mil on it to guide it", llp);
496             continue;
497         }
498         rel = getrel(getnatp(sect.sct_own), player->cnum);
499         if (sect.sct_own != land.lnd_own && rel != ALLIED &&
500             !(lchr[(int)llp->unit.land.lnd_type].l_flags & L_SPY) &&
501             sect.sct_own) {
502             sprintf(mess, "has been kidnapped by %s", cname(sect.sct_own));
503             lnd_mess(mess, llp);
504             continue;
505         }
506         if (first) {
507             allx = land.lnd_x;
508             ally = land.lnd_y;
509             first = 0;
510         }
511         if (land.lnd_x != allx || land.lnd_y != ally)
512             *togetherp = 0;
513         if (land.lnd_mobil + 1 < (int)llp->mobil) {
514             llp->mobil = land.lnd_mobil;
515         }
516         if (llp->mobil < *minmobp)
517             *minmobp = llp->mobil;
518         if (llp->mobil > *maxmobp)
519             *maxmobp = llp->mobil;
520         llp->unit.land = land;
521     }
522 }
523
524 void
525 lnd_sweep(struct emp_qelem *land_list, int verbose, int takemob,
526           natid actor)
527 {
528     struct emp_qelem *qp;
529     struct emp_qelem *next;
530     struct ulist *llp;
531     struct sctstr sect;
532     int mines, m, max, sshells, lshells;
533
534     for (qp = land_list->q_back; qp != land_list; qp = next) {
535         next = qp->q_back;
536         llp = (struct ulist *)qp;
537         if (!(((struct lchrstr *)llp->chrp)->l_flags & L_ENGINEER)) {
538             if (verbose)
539                 mpr(actor, "%s is not an engineer!\n",
540                     prland(&llp->unit.land));
541             continue;
542         }
543         if (takemob && llp->mobil < 0.0) {
544             if (verbose)
545                 lnd_mess("is out of mobility", llp);
546             continue;
547         }
548         getsect(llp->unit.land.lnd_x, llp->unit.land.lnd_y, &sect);
549         if (sect.sct_oldown == llp->unit.land.lnd_own) {
550             if (verbose)
551                 mpr(actor,
552                     "%s is in a sector completely owned by you.  Don't bother digging up mines there!\n",
553                     prland(&llp->unit.land));
554             continue;
555         }
556         if (SCT_MINES_ARE_SEAMINES(&sect)) {
557             if (verbose)
558                 mpr(actor, "%s is in a %s sector.  No landmines there!\n",
559                     prland(&llp->unit.land), dchr[sect.sct_type].d_name);
560             continue;
561         }
562         if (takemob) {
563             llp->mobil -= lnd_pathcost(&llp->unit.land, 0.2);
564             llp->unit.land.lnd_mobil = (int)llp->mobil;
565             llp->unit.land.lnd_harden = 0;
566         }
567         putland(llp->unit.land.lnd_uid, &llp->unit.land);
568         if (!(mines = sect.sct_mines))
569             continue;
570         max = ((struct lchrstr *)llp->chrp)->l_item[I_SHELL];
571         lshells = llp->unit.land.lnd_item[I_SHELL];
572         sshells = sect.sct_item[I_SHELL];
573         for (m = 0; mines > 0 && m < max * 2; m++) {
574             if (chance(0.5 * ((struct lchrstr *)llp->chrp)->l_att)) {
575                 mpr(actor, "Sweep...\n");
576                 mines--;
577                 if (lshells < max)
578                     ++lshells;
579                 else if (sshells < ITEM_MAX)
580                     ++sshells;
581             }
582         }
583         sect.sct_mines = mines;
584         llp->unit.land.lnd_item[I_SHELL] = lshells;
585         sect.sct_item[I_SHELL] = sshells;
586         putland(llp->unit.land.lnd_uid, &llp->unit.land);
587         putsect(&sect);
588     }
589 }
590
591 static int
592 contains_engineer(struct emp_qelem *list)
593 {
594     struct emp_qelem *qp;
595     struct emp_qelem *next;
596     struct ulist *llp;
597
598     for (qp = list->q_back; qp != list; qp = next) {
599         next = qp->q_back;
600         llp = (struct ulist *)qp;
601         if (((struct lchrstr *)llp->chrp)->l_flags & L_ENGINEER)
602             return 1;
603     }
604     return 0;
605 }
606
607 int
608 lnd_check_mines(struct emp_qelem *land_list)
609 {
610     struct emp_qelem *qp;
611     struct emp_qelem *next;
612     struct ulist *llp;
613     struct sctstr sect;
614     int stopping = 0;
615     int with_eng = contains_engineer(land_list);
616
617     for (qp = land_list->q_back; qp != land_list; qp = next) {
618         next = qp->q_back;
619         llp = (struct ulist *)qp;
620         getsect(llp->unit.land.lnd_x, llp->unit.land.lnd_y, &sect);
621         if (sect.sct_oldown == llp->unit.land.lnd_own)
622             continue;
623         if (SCT_LANDMINES(&sect) == 0)
624             continue;
625         if (chance(DMINE_LHITCHANCE(sect.sct_mines) / (1 + 2 * with_eng))) {
626             lnd_hit_mine(&llp->unit.land, ((struct lchrstr *)llp->chrp));
627             sect.sct_mines--;
628             putsect(&sect);
629             putland(llp->unit.land.lnd_uid, &llp->unit.land);
630             if (!llp->unit.land.lnd_own) {
631                 stopping = 1;
632                 emp_remque(qp);
633                 free(qp);
634             }
635         }
636     }
637     return stopping;
638 }
639
640 static void
641 lnd_mess(char *str, struct ulist *llp)
642 {
643     mpr(llp->unit.land.lnd_own, "%s %s & stays in %s\n",
644         prland(&llp->unit.land),
645         str, xyas(llp->unit.land.lnd_x, llp->unit.land.lnd_y,
646                   llp->unit.land.lnd_own));
647     if (llp->mobil < -127)
648         llp->mobil = -127;
649     llp->unit.land.lnd_mobil = llp->mobil;
650     putland(llp->unit.land.lnd_uid, &llp->unit.land);
651     emp_remque((struct emp_qelem *)llp);
652     free(llp);
653 }
654
655 static int
656 lnd_count(struct emp_qelem *list)
657 {
658     struct emp_qelem *qp;
659     struct emp_qelem *next;
660     int count = 0;
661
662     for (qp = list->q_back; qp != list; qp = next) {
663         next = qp->q_back;
664         ++count;
665     }
666     return count;
667 }
668
669 static int
670 lnd_damage(struct emp_qelem *list, int totdam)
671 {
672     struct emp_qelem *qp;
673     struct emp_qelem *next;
674     struct ulist *llp;
675     int dam;
676     int count;
677
678     if (!totdam || !(count = lnd_count(list)))
679         return 0;
680     dam = ldround((double)totdam / count, 1);
681     for (qp = list->q_back; qp != list; qp = next) {
682         next = qp->q_back;
683         llp = (struct ulist *)qp;
684         /* have to get it again because of collateral damage */
685         getland(llp->unit.land.lnd_uid, &llp->unit.land);
686         landdamage(&llp->unit.land, dam);
687         putland(llp->unit.land.lnd_uid, &llp->unit.land);
688         if (!llp->unit.land.lnd_own) {
689             emp_remque(qp);
690             free(qp);
691         }
692     }
693     return dam;
694 }
695
696 static int
697 lnd_easiest_target(struct emp_qelem *list)
698 {
699     struct emp_qelem *qp;
700     struct emp_qelem *next;
701     struct ulist *llp;
702     int hard;
703     int easiest = 9876;         /* things start great for victim */
704     int count = 0;
705
706     for (qp = list->q_back; qp != list; qp = next) {
707         next = qp->q_back;
708         llp = (struct ulist *)qp;
709         hard = lnd_hardtarget(&llp->unit.land);
710         if (hard < easiest)
711             easiest = hard;     /* things get worse for victim */
712         ++count;
713     }
714     return easiest - count;
715 }
716
717 static int
718 lnd_missile_interdiction(struct emp_qelem *list, coord newx, coord newy,
719                          natid victim)
720 {
721     int mindam = lnd_count(list) * 20;
722     int hardtarget = lnd_easiest_target(list);
723     int dam, newdam;
724     struct plist *plp;
725     struct emp_qelem msl_list, *qp, *newqp;
726
727     msl_sel(&msl_list, newx, newy, victim, P_T, P_MAR, MI_INTERDICT);
728
729     dam = 0;
730     for (qp = msl_list.q_back; qp != &msl_list; qp = newqp) {
731         newqp = qp->q_back;
732         plp = (struct plist *)qp;
733
734         if (dam < mindam && mission_pln_equip(plp, NULL, 'p') >= 0) {
735             if (msl_hit(&plp->plane, hardtarget, EF_LAND,
736                         N_LND_MISS, N_LND_SMISS,
737                         "troops", newx, newy, victim)) {
738                 newdam = pln_damage(&plp->plane, 'p', 1);
739                 dam += newdam;
740 #if 0
741             /*
742              * FIXME want collateral damage on miss, but we get here
743              * too when launch fails or missile is intercepted
744              */
745             } else {
746                 /* Missiles that miss have to hit somewhere! */
747                 newdam = pln_damage(&plp->plane, 'p', 0);
748                 collateral_damage(newx, newy, newdam);
749 #endif
750             }
751             plp->plane.pln_effic = 0;
752             putplane(plp->plane.pln_uid, &plp->plane);
753         }
754         emp_remque(qp);
755         free(qp);
756     }
757
758     if (dam) {
759         mpr(victim, "missile interdiction mission does %d damage!\n", dam);
760         collateral_damage(newx, newy, dam);
761     }
762     return dam;
763 }
764
765 #if 0
766 /* Steve M. - commented out for now until abuse is decided upon */
767 /* risner: allow forts to interdict land units. */
768 static int
769 lnd_fort_interdiction(struct emp_qelem *list,
770                       coord newx, coord newy, natid victim)
771 {
772     struct nstr_sect ns;
773     struct sctstr fsect;
774     int trange, range;
775     double guneff;
776     int shell, gun;
777     int dam;
778     int totdam = 0;
779     int i;
780
781     snxtsct_dist(&ns, newx, newy, fort_max_interdiction_range);
782     while (nxtsct(&ns, &fsect)) {
783         if (fsect.sct_own == 0)
784             continue;
785         if (fsect.sct_own == victim)
786             continue;
787         if (getrel(getnatp(fsect.sct_own), victim) >= NEUTRAL)
788             continue;
789         range = roundrange(fortrange(&fsect));
790         trange = mapdist(newx, newy, fsect.sct_x, fsect.sct_y);
791         if (trange > range)
792             continue;
793         dam = fort_fire(&fsect);
794         putsect(&fsect);
795         if (dam < 0)
796             continue;
797         totdam += dam;
798         mpr(victim, "Incoming fire does %d damage!\n", dam);
799         wu(0, fsect.sct_own,
800            "%s fires at %s land units in %s for %d!\n",
801            xyas(fsect.sct_x, fsect.sct_y,
802                 fsect.sct_own),
803            cname(victim), xyas(newx, newy, fsect.sct_own), dam);
804         nreport(fsect.sct_own, N_SCT_SHELL, victim, 1);
805     }
806     if (totdam > 0)
807         return lnd_damage(list, totdam);
808     return 0;
809 }
810 #endif
811
812 int
813 lnd_interdict(struct emp_qelem *list, coord newx, coord newy, natid victim)
814 {
815     int stopping = 0;
816
817 #if 0
818     if (!opt_NO_FORT_FIRE)
819 /* Steve M. - commented out for now until abuse is decided upon */
820         stopping |= lnd_fort_interdiction(list, newx, newy, victim);
821 #endif
822
823     stopping |=
824         lnd_damage(list,
825                    unit_interdict(newx, newy, victim, "land units",
826                                   lnd_easiest_target(list), MI_INTERDICT));
827
828     stopping |=
829         lnd_damage(list,
830                    lnd_missile_interdiction(list, newx, newy, victim));
831     return stopping;
832 }
833
834 /* high value of hardtarget is harder to hit */
835 int
836 lnd_hardtarget(struct lndstr *lp)
837 {
838     struct sctstr sect;
839
840     getsect(lp->lnd_x, lp->lnd_y, &sect);
841     return (int)((lp->lnd_effic / 100.0) *
842                  (10 + dchr[sect.sct_type].d_dstr * 2 + lnd_spd(lp) / 2.0
843                   - lnd_vis(lp)));
844 }
845
846 static int
847 lnd_hit_mine(struct lndstr *lp, struct lchrstr *lcp)
848 {
849     int m;
850
851     mpr(lp->lnd_own, "Blammo! Landmines detected in %s! ",
852         xyas(lp->lnd_x, lp->lnd_y, lp->lnd_own));
853
854     nreport(lp->lnd_own, N_LHIT_MINE, 0, 1);
855
856     m = MINE_LDAMAGE();
857     if (lcp->l_flags & L_ENGINEER)
858         m /= 2;
859
860     landdamage(lp, m);
861     return m;
862 }
863
864 double
865 lnd_pathcost(struct lndstr *lp, double pathcost)
866 {
867     double effspd;
868
869     effspd = lnd_spd(lp);
870     if (lchr[(int)lp->lnd_type].l_flags & L_SUPPLY)
871         effspd *= lp->lnd_effic * 0.01;
872
873     /*
874      * The return value must be PATHCOST times a factor that depends
875      * only on the land unit.  Anything else breaks path finding.  In
876      * particular, you can't add or enforce a minimum cost here.  Do
877      * it in sector_mcost().
878      */
879     return pathcost * 5.0 * speed_factor(effspd, lp->lnd_tech);
880 }
881
882 int
883 lnd_mobtype(struct lndstr *lp)
884 {
885     return (lchr[(int)lp->lnd_type].l_flags & L_TRAIN)
886         ? MOB_RAIL : MOB_MARCH;
887 }
888
889 double
890 lnd_mobcost(struct lndstr *lp, struct sctstr *sp)
891 {
892     return lnd_pathcost(lp, sector_mcost(sp, lnd_mobtype(lp)));
893 }
894
895 int
896 lnd_mar_one_sector(struct emp_qelem *list, int dir, natid actor,
897                    int together)
898 {
899     struct sctstr sect, osect;
900     struct emp_qelem *qp;
901     struct emp_qelem *qp2;
902     struct emp_qelem *next;
903     struct ulist *llp;
904     struct emp_qelem cur, done;
905     coord dx;
906     coord dy;
907     coord newx;
908     coord newy;
909     int stopping = 0;
910     int visible;
911     int stop;
912     char dp[80];
913     int rel;
914     int oldown;
915
916     if (dir <= DIR_STOP || dir >= DIR_VIEW) {
917         unit_put(list, actor);
918         return 1;
919     }
920     dx = diroff[dir][0];
921     dy = diroff[dir][1];
922     for (qp = list->q_back; qp != list; qp = next) {
923         next = qp->q_back;
924         llp = (struct ulist *)qp;
925         getsect(llp->unit.land.lnd_x, llp->unit.land.lnd_y, &osect);
926         oldown = osect.sct_own;
927         newx = xnorm(llp->unit.land.lnd_x + dx);
928         newy = ynorm(llp->unit.land.lnd_y + dy);
929         getsect(newx, newy, &sect);
930         rel = getrel(getnatp(sect.sct_own), player->cnum);
931         if ((sect.sct_own != actor && rel != ALLIED &&
932              !(lchr[(int)llp->unit.land.lnd_type].l_flags & L_SPY) &&
933              sect.sct_own) || (sect.sct_type == SCT_WATER ||
934                                sect.sct_type == SCT_SANCT ||
935                                sect.sct_type == SCT_WASTE)) {
936             if (together) {
937                 pr("can't go to %s\n", xyas(newx, newy, actor));
938                 return 1;
939             } else {
940                 sprintf(dp, "can't go to %s", xyas(newx, newy, actor));
941                 lnd_mess(dp, llp);
942                 continue;
943             }
944         }
945         if (!SCT_HAS_RAIL(&sect)
946             && lnd_mobtype(&llp->unit.land) == MOB_RAIL) {
947             if (together) {
948                 pr("no rail system in %s\n", xyas(newx, newy, actor));
949                 return 1;
950             } else {
951                 sprintf(dp, "has no rail system in %s",
952                         xyas(newx, newy, actor));
953                 lnd_mess(dp, llp);
954                 continue;
955             }
956         }
957         /* Note we check would_abandon first because we don't want
958            to always have to do these checks */
959         if (would_abandon(&osect, I_CIVIL, 0, &llp->unit.land)) {
960             stop = 0;
961             if (!want_to_abandon(&osect, I_CIVIL, 0, &llp->unit.land)) {
962                 stop = 1;
963             }
964             /* now check stuff */
965             if (!check_sect_ok(&sect))
966                 return 1;
967             if (!check_sect_ok(&osect))
968                 return 1;
969             for (qp2 = list->q_back; qp2 != list; qp2 = qp2->q_back) {
970                 if (!check_land_ok(&((struct ulist *)qp2)->unit.land))
971                     return 1;
972             }
973             if (stop) {
974                 lnd_mess("stops", llp);
975                 continue;
976             }
977         }
978         if (llp->mobil <= 0.0) {
979             lnd_mess("is out of mobility", llp);
980             continue;
981         }
982         llp->unit.land.lnd_x = newx;
983         llp->unit.land.lnd_y = newy;
984         llp->mobil -= lnd_mobcost(&llp->unit.land, &sect);
985         llp->unit.land.lnd_mobil = (int)llp->mobil;
986         llp->unit.land.lnd_harden = 0;
987         putland(llp->unit.land.lnd_uid, &llp->unit.land);
988         putsect(&osect);
989         getsect(osect.sct_x, osect.sct_y, &osect);
990         if (osect.sct_own != oldown && oldown == player->cnum) {
991             /* It was your sector, now it's not.  Simple :) */
992             pr("You no longer own %s\n",
993                xyas(osect.sct_x, osect.sct_y, player->cnum));
994         }
995         if (rel != ALLIED && sect.sct_own != actor && sect.sct_own) {   /* must be a spy */
996             /* Always a 10% chance of getting caught. */
997             if (chance(LND_SPY_DETECT_CHANCE(llp->unit.land.lnd_effic))) {
998                 if (rel == NEUTRAL || rel == FRIENDLY) {
999                     wu(0, sect.sct_own,
1000                        "%s unit spotted in %s\n", cname(player->cnum),
1001                        xyas(sect.sct_x, sect.sct_y, sect.sct_own));
1002                     setrel(sect.sct_own, llp->unit.land.lnd_own, HOSTILE);
1003                 } else if (rel == HOSTILE || rel == AT_WAR ||
1004                            rel == SITZKRIEG || rel == MOBILIZATION) {
1005                     wu(0, sect.sct_own,
1006                        "%s spy shot in %s\n", cname(player->cnum),
1007                        xyas(sect.sct_x, sect.sct_y, sect.sct_own));
1008                     pr("%s was shot and killed.\n", prland(&llp->unit.land));
1009                     llp->unit.land.lnd_effic = 0;
1010                     putland(llp->unit.land.lnd_uid, &llp->unit.land);
1011                     lnd_delete(llp, NULL);
1012                 }
1013             }
1014         }
1015     }
1016     if (QEMPTY(list))
1017         return stopping;
1018     lnd_sweep(list, 0, 1, actor);
1019     stopping |= lnd_check_mines(list);
1020     if (QEMPTY(list))
1021         return stopping;
1022
1023     /* interdict land units sector by sector */
1024     emp_initque(&cur);
1025     emp_initque(&done);
1026     while (!QEMPTY(list)) {
1027         llp = (struct ulist *)list->q_back;
1028         newx = llp->unit.land.lnd_x;
1029         newy = llp->unit.land.lnd_y;
1030         /* move units in NEWX,NEWY to cur */
1031         visible = 0;
1032         for (qp = list->q_back; qp != list; qp = next) {
1033             next = qp->q_back;
1034             llp = (struct ulist *)qp;
1035             if (llp->unit.land.lnd_x == newx && llp->unit.land.lnd_y == newy) {
1036                 emp_remque(qp);
1037                 emp_insque(qp, &cur);
1038                 if (!(lchr[(int)llp->unit.land.lnd_type].l_flags & L_SPY))
1039                     visible = 1;
1040             }
1041         }
1042         /* interdict them */
1043         if (visible)
1044             stopping |= lnd_interdict(&cur, newx, newy, actor);
1045         /* move survivors to done */
1046         for (qp = cur.q_back; qp != &cur; qp = next) {
1047             next = qp->q_back;
1048             llp = (struct ulist *)qp;
1049             emp_remque(qp);
1050             emp_insque(qp, &done);
1051         }
1052     }
1053     /* assign surviving land units back to list */
1054     emp_insque(list, &done);
1055     emp_remque(&done);
1056
1057     return stopping;
1058 }
1059
1060 /*
1061  * find all artillery units belonging
1062  * to the attacker or defender that can fire.
1063  * Each arty unit adds +1%/damage point
1064  */
1065 int
1066 lnd_support(natid victim, natid attacker, coord x, coord y, int defending)
1067 {
1068     struct nstr_item ni;
1069     struct lndstr land;
1070     int rel, rel2;
1071     int dam, dam2;
1072     int dist;
1073     int range;
1074
1075     dam = 0;
1076     snxtitem_all(&ni, EF_LAND);
1077     while (nxtitem(&ni, &land)) {
1078         if ((land.lnd_x == x) && (land.lnd_y == y))
1079             continue;
1080         rel = getrel(getnatp(land.lnd_own), attacker);
1081         rel2 = getrel(getnatp(land.lnd_own), victim);
1082         if ((land.lnd_own != attacker) &&
1083             ((rel != ALLIED) || (rel2 != AT_WAR)))
1084             continue;
1085
1086         /* are we in range? */
1087         dist = mapdist(land.lnd_x, land.lnd_y, x, y);
1088
1089         range = roundrange(lnd_fire_range(&land));
1090         if (dist > range)
1091             continue;
1092
1093         dam2 = lnd_fire(&land);
1094         putland(land.lnd_uid, &land);
1095         if (dam2 < 0)
1096             continue;
1097
1098         if (defending)
1099             nreport(land.lnd_own, N_FIRE_BACK, victim, 1);
1100         else
1101             nreport(land.lnd_own, N_FIRE_L_ATTACK, victim, 1);
1102         if (roll(100) < lnd_acc(&land))
1103             dam2 /= 2;
1104         dam += dam2;
1105         if (land.lnd_own != attacker)
1106             wu(0, land.lnd_own,
1107                "%s supported %s at %s\n",
1108                prland(&land), cname(attacker), xyas(x, y, land.lnd_own));
1109     }
1110     return dam;
1111 }
1112
1113 int
1114 lnd_can_attack(struct lndstr *lp)
1115 {
1116     struct lchrstr *lcp = &lchr[(int)lp->lnd_type];
1117
1118     if (lcp->l_flags & L_SUPPLY)
1119         return 0;
1120
1121     return 1;
1122 }
1123
1124 /*
1125  * Increase fortification value of LP.
1126  * Fortification costs mobility.  Use up to MOB mobility.
1127  * Return actual fortification increase.
1128  */
1129 int
1130 lnd_fortify(struct lndstr *lp, int mob)
1131 {
1132     int hard_amt;
1133     double mob_used, mult;
1134
1135     if (lp->lnd_ship >= 0 || lp->lnd_land >= 0)
1136         return 0;
1137
1138     mob_used = MIN(lp->lnd_mobil, mob);
1139     if (mob_used < 0)
1140         return 0;
1141
1142     mult = has_helpful_engineer(lp->lnd_x, lp->lnd_y, lp->lnd_own)
1143         ? 1.5 : 1.0;
1144
1145     hard_amt = (int)(mob_used * mult);
1146     if (lp->lnd_harden + hard_amt > land_mob_max) {
1147         hard_amt = land_mob_max - lp->lnd_harden;
1148         mob_used = ceil(hard_amt / mult);
1149     }
1150
1151     lp->lnd_mobil -= (int)mob_used;
1152     lp->lnd_harden += hard_amt;
1153     lp->lnd_harden = MIN(lp->lnd_harden, land_mob_max);
1154
1155     return hard_amt;
1156 }
1157
1158 /*
1159  * Is there a engineer unit at X,Y that can help nation CN?
1160  */
1161 static int
1162 has_helpful_engineer(coord x, coord y, natid cn)
1163 {
1164     struct nstr_item ni;
1165     struct lndstr land;
1166
1167     snxtitem_xy(&ni, EF_LAND, x, y);
1168     while (nxtitem(&ni, &land)) {
1169         if (land.lnd_own != cn && getrel(getnatp(land.lnd_own), cn) != ALLIED)
1170             continue;
1171         if (lchr[(int)land.lnd_type].l_flags & L_ENGINEER)
1172             return 1;
1173     }
1174
1175     return 0;
1176 }
1177
1178 /*
1179  * Set LP's tech to TLEV along with everything else that depends on it.
1180  */
1181 void
1182 lnd_set_tech(struct lndstr *lp, int tlev)
1183 {
1184     struct lchrstr *lcp = lchr + lp->lnd_type;
1185
1186     if (CANT_HAPPEN(tlev < lcp->l_tech))
1187         tlev = 0;
1188
1189     lp->lnd_tech = tlev;
1190 }