]> git.pond.sub.org Git - empserver/blob - src/lib/subs/shpsub.c
Fix bogus message when deity attempts to navigate foreign ship
[empserver] / src / lib / subs / shpsub.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2010, 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  *  shpsub.c: Ship subroutine stuff
29  *
30  *  Known contributors to this file:
31  *     Ken Stevens, 1995
32  *     Steve McClure, 1996-2000
33  *     Markus Armbruster, 2006-2009
34  */
35
36 #include <config.h>
37
38 #include <stdlib.h>
39 #include "damage.h"
40 #include "file.h"
41 #include "map.h"
42 #include "misc.h"
43 #include "mission.h"
44 #include "nsc.h"
45 #include "optlist.h"
46 #include "path.h"
47 #include "player.h"
48 #include "prototypes.h"
49 #include "queue.h"
50 #include "server.h"
51 #include "xy.h"
52 #include "empobj.h"
53 #include "unit.h"
54
55 static int shp_check_one_mines(struct ulist *);
56 static int shp_hit_mine(struct shpstr *);
57 static void shp_mess(char *, struct ulist *);
58
59 void
60 shp_sel(struct nstr_item *ni, struct emp_qelem *list)
61 {
62     struct shpstr ship;
63     struct mchrstr *mcp;
64     struct ulist *mlp;
65
66     emp_initque(list);
67     while (nxtitem(ni, &ship)) {
68         /*
69          * It would be nice to let deities navigate foreign ships, but
70          * much of the code assumes that only the ship's owner can
71          * navigate it.
72          */
73         if (ship.shp_own != player->cnum)
74             continue;
75         mcp = &mchr[(int)ship.shp_type];
76         if (opt_MARKET) {
77             if (ontradingblock(EF_SHIP, &ship)) {
78                 pr("ship #%d inelligible - it's for sale.\n",
79                    ship.shp_uid);
80                 continue;
81             }
82         }
83         ship.shp_mission = 0;
84         ship.shp_rflags = 0;
85         memset(ship.shp_rpath, 0, sizeof(ship.shp_rpath));
86         putship(ship.shp_uid, &ship);
87         mlp = malloc(sizeof(struct ulist));
88         mlp->chrp = (struct empobj_chr *)mcp;
89         mlp->unit.ship = ship;
90         mlp->mobil = ship.shp_mobil;
91         emp_insque(&mlp->queue, list);
92     }
93 }
94
95 /* This function assumes that the list was created by shp_sel */
96 void
97 shp_nav(struct emp_qelem *list, double *minmobp, double *maxmobp,
98         int *togetherp, natid actor)
99 {
100     struct emp_qelem *qp;
101     struct emp_qelem *next;
102     struct ulist *mlp;
103     struct sctstr sect;
104     struct shpstr ship;
105     coord allx;
106     coord ally;
107     int first = 1;
108
109     *minmobp = 9876.0;
110     *maxmobp = -9876.0;
111     *togetherp = 1;
112     for (qp = list->q_back; qp != list; qp = next) {
113         next = qp->q_back;
114         mlp = (struct ulist *)qp;
115         getship(mlp->unit.ship.shp_uid, &ship);
116         if (ship.shp_own != actor) {
117             mpr(actor, "%s was sunk at %s\n",
118                 prship(&ship), xyas(ship.shp_x, ship.shp_y, actor));
119             emp_remque((struct emp_qelem *)mlp);
120             free(mlp);
121             continue;
122         }
123         if (opt_SAIL) {
124             if (*ship.shp_path && !update_running) {
125                 shp_mess("has a sail path", mlp);
126                 mpr(actor, "Use `sail <#> -' to reset\n");
127                 continue;
128             }
129         }
130         /* check crew - uws don't count */
131         if (ship.shp_item[I_MILIT] == 0 && ship.shp_item[I_CIVIL] == 0) {
132             shp_mess("is crewless", mlp);
133             continue;
134         }
135         if (!getsect(ship.shp_x, ship.shp_y, &sect)) {
136             shp_mess("was sucked into the sky by a strange looking spaceship", mlp);    /* heh -KHS */
137             continue;
138         }
139         switch (shp_check_nav(&sect, &ship)) {
140         case CN_CONSTRUCTION:
141             shp_mess("is caught in a construction zone", mlp);
142             continue;
143         case CN_LANDLOCKED:
144             shp_mess("is landlocked", mlp);
145             continue;
146         case CN_NAVIGABLE:
147             break;
148         case CN_ERROR:
149         default:
150             shp_mess("was just swallowed by a big green worm", mlp);
151             continue;
152         }
153         if (first) {
154             allx = ship.shp_x;
155             ally = ship.shp_y;
156             first = 0;
157         }
158         if (ship.shp_x != allx || ship.shp_y != ally)
159             *togetherp = 0;
160         if (ship.shp_mobil + 1 < (int)mlp->mobil) {
161             mlp->mobil = ship.shp_mobil;
162         }
163         if (mlp->mobil < *minmobp)
164             *minmobp = mlp->mobil;
165         if (mlp->mobil > *maxmobp)
166             *maxmobp = mlp->mobil;
167         mlp->unit.ship = ship;
168     }
169 }
170
171 int
172 shp_sweep(struct emp_qelem *ship_list, int verbose, int takemob, natid actor)
173 {
174     struct emp_qelem *qp;
175     struct emp_qelem *next;
176     struct ulist *mlp;
177     struct sctstr sect;
178     int mines, m, max, shells;
179     int changed = 0;
180     int stopping = 0;
181
182     for (qp = ship_list->q_back; qp != ship_list; qp = next) {
183         next = qp->q_back;
184         mlp = (struct ulist *)qp;
185         if (!(((struct mchrstr *)mlp->chrp)->m_flags & M_SWEEP)) {
186             if (verbose)
187                 mpr(actor, "%s doesn't have minesweeping capability!\n",
188                     prship(&mlp->unit.ship));
189             continue;
190         }
191         if (takemob && mlp->mobil <= 0.0) {
192             if (verbose)
193                 mpr(actor, "%s is out of mobility!\n",
194                     prship(&mlp->unit.ship));
195             continue;
196         }
197         getsect(mlp->unit.ship.shp_x, mlp->unit.ship.shp_y, &sect);
198         if (sect.sct_type != SCT_WATER) {
199             if (verbose)
200                 mpr(actor, "%s is not at sea.  No mines there!\n",
201                     prship(&mlp->unit.ship));
202             continue;
203         }
204         if (takemob) {
205             mlp->mobil -= shp_mobcost(&mlp->unit.ship);
206             mlp->unit.ship.shp_mobil = (int)mlp->mobil;
207         }
208         putship(mlp->unit.ship.shp_uid, &mlp->unit.ship);
209         if (!(mines = sect.sct_mines))
210             continue;
211         max = ((struct mchrstr *)mlp->chrp)->m_item[I_SHELL];
212         shells = mlp->unit.ship.shp_item[I_SHELL];
213         for (m = 0; mines > 0 && m < 5; m++) {
214             if (chance(0.66)) {
215                 mpr(actor, "Sweep...\n");
216                 mines--;
217                 shells = MIN(max, shells + 1);
218                 changed |= map_set(actor, sect.sct_x, sect.sct_y, 'X', 0);
219             }
220         }
221         sect.sct_mines = mines;
222         mlp->unit.ship.shp_item[I_SHELL] = shells;
223         putship(mlp->unit.ship.shp_uid, &mlp->unit.ship);
224         putsect(&sect);
225         if (shp_check_one_mines(mlp)) {
226             stopping = 1;
227             emp_remque(qp);
228             free(qp);
229         }
230     }
231     if (changed)
232         writemap(actor);
233     return stopping;
234 }
235
236 static int
237 shp_check_one_mines(struct ulist *mlp)
238 {
239     struct sctstr sect;
240     int actor;
241
242     getsect(mlp->unit.ship.shp_x, mlp->unit.ship.shp_y, &sect);
243     if (sect.sct_type != SCT_WATER)
244         return 0;
245     if (!sect.sct_mines)
246         return 0;
247     if (chance(DMINE_HITCHANCE(sect.sct_mines))) {
248         actor = mlp->unit.ship.shp_own;
249         shp_hit_mine(&mlp->unit.ship);
250         sect.sct_mines--;
251         if (map_set(actor, sect.sct_x, sect.sct_y, 'X', 0))
252             writemap(actor);
253         putsect(&sect);
254         putship(mlp->unit.ship.shp_uid, &mlp->unit.ship);
255         if (!mlp->unit.ship.shp_own)
256             return 1;
257     }
258     return 0;
259 }
260
261 static int
262 shp_check_mines(struct emp_qelem *ship_list)
263 {
264     struct emp_qelem *qp;
265     struct emp_qelem *next;
266     struct ulist *mlp;
267     int stopping = 0;
268
269     for (qp = ship_list->q_back; qp != ship_list; qp = next) {
270         next = qp->q_back;
271         mlp = (struct ulist *)qp;
272         if (shp_check_one_mines(mlp)) {
273             stopping = 1;
274             emp_remque(qp);
275             free(qp);
276         }
277     }
278     return stopping;
279 }
280
281
282 static void
283 shp_mess(char *str, struct ulist *mlp)
284 {
285     mpr(mlp->unit.ship.shp_own, "%s %s & stays in %s\n",
286         prship(&mlp->unit.ship),
287         str, xyas(mlp->unit.ship.shp_x, mlp->unit.ship.shp_y,
288                   mlp->unit.ship.shp_own));
289     mlp->unit.ship.shp_mobil = (int)mlp->mobil;
290     putship(mlp->unit.ship.shp_uid, &mlp->unit.ship);
291     emp_remque((struct emp_qelem *)mlp);
292     free(mlp);
293 }
294
295 int
296 shp_check_nav(struct sctstr *sect, struct shpstr *shp)
297 {
298     switch (dchr[sect->sct_type].d_nav) {
299     case NAVOK:
300         break;
301     case NAV_CANAL:
302         if (mchr[(int)shp->shp_type].m_flags & M_CANAL) {
303             if (sect->sct_effic < 2)
304                 return CN_CONSTRUCTION;
305         } else
306             return CN_LANDLOCKED;
307         break;
308     case NAV_02:
309         if (sect->sct_effic < 2)
310             return CN_CONSTRUCTION;
311         break;
312     case NAV_60:
313         if (sect->sct_effic < 60)
314             return CN_CONSTRUCTION;
315         break;
316     default:
317         return CN_LANDLOCKED;
318     }
319     return CN_NAVIGABLE;
320 }
321
322 int
323 sect_has_dock(struct sctstr *sect)
324 {
325     switch (dchr[sect->sct_type].d_nav) {
326     case NAV_02:
327     case NAV_CANAL:
328         return 1;
329     default:
330         return 0;
331     }
332 }
333
334 static int
335 shp_count(struct emp_qelem *list, int wantflags, int nowantflags,
336           int x, int y)
337 {
338     struct emp_qelem *qp;
339     struct emp_qelem *next;
340     struct ulist *mlp;
341     int count = 0;
342
343     for (qp = list->q_back; qp != list; qp = next) {
344         next = qp->q_back;
345         mlp = (struct ulist *)qp;
346         if (mlp->unit.ship.shp_x != x || mlp->unit.ship.shp_y != y)
347             continue;
348         if (wantflags &&
349             (((struct mchrstr *)mlp->chrp)->m_flags & wantflags) != wantflags)
350             continue;
351         if (nowantflags &&
352             ((struct mchrstr *)mlp->chrp)->m_flags & nowantflags)
353             continue;
354         ++count;
355     }
356     return count;
357 }
358
359 static void
360 shp_damage_one(struct ulist *mlp, int dam)
361 {
362     /* ship might have changed (launched interceptors, missile defense) */
363     getship(mlp->unit.ship.shp_uid, &mlp->unit.ship);
364     shipdamage(&mlp->unit.ship, dam);
365     putship(mlp->unit.ship.shp_uid, &mlp->unit.ship);
366     if (!mlp->unit.ship.shp_own) {
367         emp_remque((struct emp_qelem *)mlp);
368         free(mlp);
369     }
370 }
371
372 static int
373 shp_damage(struct emp_qelem *list, int totdam, int wantflags,
374            int nowantflags, int x, int y)
375 {
376     struct emp_qelem *qp;
377     struct emp_qelem *next;
378     struct ulist *mlp;
379     int dam;
380     int count;
381
382     if (!totdam
383         || !(count = shp_count(list, wantflags, nowantflags, x, y)))
384         return 0;
385     dam = ldround((double)totdam / count, 1);
386     for (qp = list->q_back; qp != list; qp = next) {
387         next = qp->q_back;
388         mlp = (struct ulist *)qp;
389         if (mlp->unit.ship.shp_x != x || mlp->unit.ship.shp_y != y)
390             continue;
391         if (wantflags &&
392             (((struct mchrstr *)mlp->chrp)->m_flags & wantflags) != wantflags)
393             continue;
394         if (nowantflags &&
395             ((struct mchrstr *)mlp->chrp)->m_flags & nowantflags)
396             continue;
397         shp_damage_one(mlp, dam);
398     }
399     return dam;
400 }
401
402 static int
403 shp_contains(struct emp_qelem *list, int newx, int newy, int wantflags,
404              int nowantflags)
405 {
406     struct emp_qelem *qp;
407     struct emp_qelem *next;
408     struct ulist *mlp;
409
410     for (qp = list->q_back; qp != list; qp = next) {
411         next = qp->q_back;
412         mlp = (struct ulist *)qp;
413 /* If the ship isn't in the requested sector, then continue */
414         if (newx != mlp->unit.ship.shp_x || newy != mlp->unit.ship.shp_y)
415             continue;
416         if (wantflags &&
417             (((struct mchrstr *)mlp->chrp)->m_flags & wantflags) != wantflags)
418             continue;
419         if (nowantflags &&
420             ((struct mchrstr *)mlp->chrp)->m_flags & nowantflags)
421             continue;
422         return 1;
423     }
424     return 0;
425 }
426
427 static struct ulist *
428 most_valuable_ship(struct emp_qelem *list, coord x, coord y)
429 {
430     struct emp_qelem *qp;
431     struct emp_qelem *next;
432     struct ulist *mlp;
433     struct ulist *mvs = NULL;
434
435     for (qp = list->q_back; qp != list; qp = next) {
436         next = qp->q_back;
437         mlp = (struct ulist *)qp;
438         if (mlp->unit.ship.shp_x != x || mlp->unit.ship.shp_y != y)
439             continue;
440         if (((struct mchrstr *)mlp->chrp)->m_flags & M_SUB)
441             continue;
442         if (!((struct mchrstr *)mlp->chrp)->m_nxlight &&
443             !((struct mchrstr *)mlp->chrp)->m_nchoppers &&
444             ((struct mchrstr *)mlp->chrp)->m_cost < 1000 &&
445             !((struct mchrstr *)mlp->chrp)->m_nplanes &&
446             !((struct mchrstr *)mlp->chrp)->m_nland)
447             continue;
448         if (!mvs) {
449             mvs = mlp;
450             continue;
451         }
452         if (((struct mchrstr *)mlp->chrp)->m_cost * mlp->unit.ship.shp_effic >
453             ((struct mchrstr *)mlp->chrp)->m_cost * mvs->unit.ship.shp_effic)
454             mvs = mlp;
455     }
456     return mvs;
457 }
458
459 static int
460 shp_easiest_target(struct emp_qelem *list, int wantflags, int nowantflags)
461 {
462     struct emp_qelem *qp;
463     struct emp_qelem *next;
464     struct ulist *mlp;
465     int hard;
466     int easiest = 9876;         /* things start great for victim */
467     int count = 0;
468
469     for (qp = list->q_back; qp != list; qp = next) {
470         next = qp->q_back;
471         mlp = (struct ulist *)qp;
472         if (wantflags &&
473             (((struct mchrstr *)mlp->chrp)->m_flags & wantflags) != wantflags)
474             continue;
475         if (nowantflags &&
476             ((struct mchrstr *)mlp->chrp)->m_flags & nowantflags)
477             continue;
478         hard = shp_hardtarget(&mlp->unit.ship);
479         if (hard < easiest)
480             easiest = hard;     /* things get worse for victim */
481         ++count;
482     }
483     return easiest - count;
484 }
485
486 static int
487 shp_missile_interdiction(struct emp_qelem *list, coord newx, coord newy,
488                          natid victim)
489 {
490     int dam, sublaunch;
491     int stopping = 0;
492     struct emp_qelem msl_list, *qp, *newqp;
493     struct plist *plp;
494     struct ulist *mvs;
495
496     mvs = most_valuable_ship(list, newx, newy);
497     if (!mvs)
498         return 0;
499
500     msl_sel(&msl_list, newx, newy, victim, P_T | P_MAR, 0, MI_INTERDICT);
501
502     for (qp = msl_list.q_back; qp != &msl_list; qp = newqp) {
503         newqp = qp->q_back;
504         plp = (struct plist *)qp;
505
506         if (mvs && mission_pln_equip(plp, NULL, 'p') >= 0) {
507             if (msl_launch(&plp->plane, EF_SHIP, prship(&mvs->unit.ship),
508                            newx, newy, victim, &sublaunch) < 0)
509                 goto use_up_msl;
510             stopping = 1;
511             if (msl_hit(&plp->plane,
512                         shp_hardtarget(&mvs->unit.ship), EF_SHIP,
513                         N_SHP_MISS, N_SHP_SMISS, sublaunch, victim)) {
514                 dam = pln_damage(&plp->plane, 'p', 1);
515                 mpr(victim,
516                     "missile interdiction mission does %d damage to %s!\n",
517                     dam, prship(&mvs->unit.ship));
518                 shp_damage_one(mvs, dam);
519             } else {
520                 dam = pln_damage(&plp->plane, 'p', 0);
521                 collateral_damage(newx, newy, dam);
522             }
523             mvs = most_valuable_ship(list, newx, newy);
524         use_up_msl:
525             plp->plane.pln_effic = 0;
526             putplane(plp->plane.pln_uid, &plp->plane);
527         }
528         emp_remque(qp);
529         free(qp);
530     }
531
532     return stopping;
533 }
534
535 /* Note that this function has a side effect - it uses coastwatch
536  * ranges to see if it should fire upon a ship.  So, this function
537  * is expected to return positive if a ship is in range, and 0 if a
538  * ship is not in range. */
539 static int
540 notify_coastguard(struct emp_qelem *list, int trange, struct sctstr *sectp)
541 {
542     struct emp_qelem *qp;
543     struct emp_qelem *next;
544     struct ulist *mlp;
545     struct natstr *natp;
546     int vrange;
547
548     natp = getnatp(sectp->sct_own);
549
550     vrange = sectp->sct_type == SCT_RADAR ? 14 : 4;
551     vrange *= tfact(sectp->sct_own, 1.0) * sectp->sct_effic / 100.0;
552
553     if (vrange < 1)
554         vrange = 1;
555
556     if (vrange < trange)
557         return 0;
558
559     for (qp = list->q_back; qp != list; qp = next) {
560         next = qp->q_back;
561         mlp = (struct ulist *)qp;
562         if (((struct mchrstr *)mlp->chrp)->m_flags & M_SUB)
563             continue;
564         if (natp->nat_flags & NF_COASTWATCH)
565             wu(0, sectp->sct_own,
566                "%s %s sighted at %s\n",
567                cname(mlp->unit.ship.shp_own),
568                prship(&mlp->unit.ship),
569                xyas(mlp->unit.ship.shp_x, mlp->unit.ship.shp_y,
570                     sectp->sct_own));
571         if (opt_HIDDEN)
572             setcont(sectp->sct_own, mlp->unit.ship.shp_own, FOUND_COAST);
573     }
574
575     return 1;
576 }
577
578 static int
579 shp_fort_interdiction(struct emp_qelem *list, coord newx, coord newy,
580                       natid victim)
581 {
582     struct nstr_sect ns;
583     struct sctstr fsect;
584     int trange, range;
585     int dam;
586     int stopping = 0;
587     int totdam = 0;
588     signed char notified[MAXNOC];
589     int i;
590
591     /* Inform neutral and worse */
592     for (i = 0; i < MAXNOC; ++i) {
593         if (getrel(getnatp(i), victim) <= NEUTRAL)
594             notified[i] = 0;
595         else
596             notified[i] = 1;
597     }
598
599     snxtsct_dist(&ns, newx, newy, fort_max_interdiction_range);
600     while (nxtsct(&ns, &fsect)) {
601         if (!fsect.sct_own)
602             continue;
603         if (fsect.sct_own == victim)
604             continue;
605         if (notified[fsect.sct_own])
606             continue;
607         trange = mapdist(newx, newy, fsect.sct_x, fsect.sct_y);
608         if (notify_coastguard(list, trange, &fsect))
609             notified[fsect.sct_own] = 1;
610     }
611     if (opt_NO_FORT_FIRE)
612         return 0;               /* Only coastwatch notify in nofortfire */
613     /* Only fire at Hostile ships */
614     for (i = 0; i < MAXNOC; ++i) {
615         if (getrel(getnatp(i), victim) >= NEUTRAL)
616             notified[i] = 0;
617     }
618     snxtsct_dist(&ns, newx, newy, fort_max_interdiction_range);
619     while (nxtsct(&ns, &fsect)) {
620         if (!notified[fsect.sct_own])
621             continue;
622         range = roundrange(fortrange(&fsect));
623         trange = mapdist(newx, newy, fsect.sct_x, fsect.sct_y);
624         if (trange > range)
625             continue;
626         dam = fort_fire(&fsect);
627         putsect(&fsect);
628         if (dam < 0)
629             continue;
630         stopping = 1;
631         totdam += dam;
632         mpr(victim, "Incoming fire does %d damage!\n", dam);
633 #if 0
634         mpr(victim, "%s fires at you for %d!\n",
635             xyas(fsect.sct_x, fsect.sct_y, victim), dam);
636 #endif
637         wu(0, fsect.sct_own,
638            "%s fires at %s ships in %s for %d!\n",
639            xyas(fsect.sct_x, fsect.sct_y,
640                 fsect.sct_own),
641            cname(victim), xyas(newx, newy, fsect.sct_own), dam);
642         nreport(fsect.sct_own, N_SHP_SHELL, victim, 1);
643     }
644     if (totdam > 0)
645         shp_damage(list, totdam, 0, M_SUB, newx, newy);
646     return stopping;
647 }
648
649 static int
650 shp_mission_interdiction(struct emp_qelem *list, coord x, coord y,
651                          natid victim, int subs)
652 {
653     char *what = subs ? "subs" : "ships";
654     int wantflags = subs ? M_SUB : 0;
655     int nowantflags = subs ? 0 : M_SUB;
656     int mission = subs ? MI_SINTERDICT : MI_INTERDICT;
657     int dam;
658
659     dam = unit_interdict(x, y, victim, what,
660                          shp_easiest_target(list, wantflags, nowantflags),
661                          mission);
662     if (dam >= 0)
663         shp_damage(list, dam, wantflags, nowantflags, x, y);
664     return dam >= 0;
665 }
666
667 static int
668 shp_interdict(struct emp_qelem *list, coord newx, coord newy, natid victim)
669 {
670     int stopping = 0;
671
672     if (shp_contains(list, newx, newy, 0, M_SUB)) {
673         stopping |= shp_fort_interdiction(list, newx, newy, victim);
674
675         if (shp_contains(list, newx, newy, 0, M_SUB)) {
676             stopping |= shp_mission_interdiction(list, newx, newy, victim, 0);
677             stopping |= shp_missile_interdiction(list, newx, newy, victim);
678         }
679     }
680     if (shp_contains(list, newx, newy, M_SUB, 0))
681         stopping |= shp_mission_interdiction(list, newx, newy, victim, 1);
682     return stopping;
683 }
684
685 /* high value of hardtarget is harder to hit */
686 int
687 shp_hardtarget(struct shpstr *sp)
688 {
689     struct sctstr sect;
690     int vis, onsea;
691     struct mchrstr *mcp = mchr + sp->shp_type;
692
693     vis = shp_visib(sp);
694     getsect(sp->shp_x, sp->shp_y, &sect);
695     onsea = sect.sct_type == SCT_WATER;
696     if (mcp->m_flags & M_SUB)
697         vis *= 4;
698     return (int)((sp->shp_effic / 100.0) *
699                  (20 + shp_speed(sp) * onsea / 2.0 - vis));
700 }
701
702 static int
703 shp_hit_mine(struct shpstr *sp)
704 {
705     double m;
706
707     mpr(sp->shp_own, "Kawhomp! Mine detected in %s!\n",
708         xyas(sp->shp_x, sp->shp_y, sp->shp_own));
709
710     nreport(sp->shp_own, N_HIT_MINE, 0, 1);
711
712     m = MINE_DAMAGE();
713     if (mchr[sp->shp_type].m_flags & M_SWEEP)
714         m /= 2.0;
715
716     shipdamage(sp, ldround(m, 1));
717
718     return (int)m;
719 }
720
721 int
722 shp_nav_one_sector(struct emp_qelem *list, int dir, natid actor,
723                    int together)
724 {
725     struct sctstr sect;
726     struct emp_qelem *qp;
727     struct emp_qelem *next;
728     struct ulist *mlp;
729     struct emp_qelem done;
730     coord dx;
731     coord dy;
732     coord newx;
733     coord newy;
734     int stopping = 0;
735     double mobcost;
736     double tech;                /* for mapping */
737     double tf;                  /* for mapping */
738     char dp[80];
739     int navigate;
740
741     if (dir <= DIR_STOP || dir >= DIR_VIEW) {
742         unit_put(list, actor);
743         return 1;
744     }
745     dx = diroff[dir][0];
746     dy = diroff[dir][1];
747     for (qp = list->q_back; qp != list; qp = next) {
748         next = qp->q_back;
749         mlp = (struct ulist *)qp;
750         newx = xnorm(mlp->unit.ship.shp_x + dx);
751         newy = ynorm(mlp->unit.ship.shp_y + dy);
752         getsect(newx, newy, &sect);
753         navigate = shp_check_nav(&sect, &mlp->unit.ship);
754         if (navigate != CN_NAVIGABLE ||
755             (sect.sct_own && actor != sect.sct_own &&
756              getrel(getnatp(sect.sct_own), actor) < FRIENDLY)) {
757             if (dchr[sect.sct_type].d_nav == NAV_CANAL &&
758                 !(((struct mchrstr *)mlp->chrp)->m_flags & M_CANAL) &&
759                 navigate == CN_LANDLOCKED)
760                 sprintf(dp,
761                         "is too large to fit into the canal system at %s",
762                         xyas(newx, newy, actor));
763             else
764                 sprintf(dp, "can't go to %s", xyas(newx, newy, actor));
765             if (together) {
766                 mpr(actor, "%s\n", dp);
767                 return 2;
768             } else {
769                 shp_mess(dp, mlp);
770                 continue;
771             }
772         }
773
774         if (mlp->mobil <= 0.0) {
775             shp_mess("is out of mobility", mlp);
776             continue;
777         }
778         mobcost = shp_mobcost(&mlp->unit.ship);
779         mlp->unit.ship.shp_x = newx;
780         mlp->unit.ship.shp_y = newy;
781         if (mlp->mobil - mobcost < -127) {
782             mlp->mobil = -127;
783         } else {
784             mlp->mobil -= mobcost;
785         }
786         mlp->unit.ship.shp_mobil = (int)mlp->mobil;
787         putship(mlp->unit.ship.shp_uid, &mlp->unit.ship);
788
789         /* Now update the map for this ship */
790         tech = techfact(mlp->unit.ship.shp_tech,
791                         ((struct mchrstr *)mlp->chrp)->m_vrnge);
792         if (((struct mchrstr *)mlp->chrp)->m_flags & M_SONAR)
793             tf = techfact(mlp->unit.ship.shp_tech, 1.0);
794         else
795             tf = 0.0;
796         radmapupd(mlp->unit.ship.shp_own,
797                   mlp->unit.ship.shp_x, mlp->unit.ship.shp_y,
798                   (int)mlp->unit.ship.shp_effic, (int)tech, tf);
799     }
800     if (QEMPTY(list))
801         return stopping;
802     stopping |= shp_sweep(list, 0, 0, actor);
803     if (QEMPTY(list))
804         return stopping;
805     stopping |= shp_check_mines(list);
806     if (QEMPTY(list))
807         return stopping;
808
809     /* interdict ships sector by sector */
810     emp_initque(&done);
811     while (!QEMPTY(list)) {
812         mlp = (struct ulist *)list->q_back;
813         newx = mlp->unit.ship.shp_x;
814         newy = mlp->unit.ship.shp_y;
815         stopping |= shp_interdict(list, newx, newy, actor);
816         /* move survivors in this sector to done */
817         for (qp = list->q_back; qp != list; qp = next) {
818             next = qp->q_back;
819             mlp = (struct ulist *)qp;
820             if (mlp->unit.ship.shp_x == newx &&
821                 mlp->unit.ship.shp_y == newy) {
822                 emp_remque(qp);
823                 emp_insque(qp, &done);
824             }
825         }
826     }
827     /* assign surviving ships back to list */
828     emp_insque(list, &done);
829     emp_remque(&done);
830
831     return stopping;
832 }
833
834 /*
835  * shp_miss_defence
836  * Check for incoming missiles with a P_MAR flag.
837  * Return True=1 if the missile was shotdown.
838  * Or False=0
839  *
840  * Chad Zabel, July 95
841  */
842
843 int
844 shp_missile_defense(coord dx, coord dy, natid bombown, int hardtarget)
845 {
846     struct nstr_item ni;
847     struct shpstr ship;
848     int hitchance, hit;
849     double gun, eff, teff;
850
851     snxtitem_dist(&ni, EF_SHIP, dx, dy, 1);
852
853     while (nxtitem(&ni, &ship)) {
854         if (!ship.shp_own)
855             continue;
856
857         if (!(mchr[(int)ship.shp_type].m_flags & M_ANTIMISSILE))
858             continue;
859
860         if (getrel(getnatp(ship.shp_own), bombown) >= NEUTRAL)
861             continue;
862
863         if (ship.shp_effic < 60)
864             continue;
865
866         if (ship.shp_item[I_MILIT] < 1) /* do we have mil? */
867             continue;
868         if (ship.shp_item[I_GUN] < 1)   /* we need at least 1 gun */
869             continue;
870         if (!shp_supply(&ship, I_SHELL, 2))
871             continue;
872         ship.shp_item[I_SHELL] -= 2;
873         putship(ship.shp_uid, &ship);
874
875         /* now calculate the odds */
876         gun = shp_usable_guns(&ship);
877         eff = ship.shp_effic / 100.0;
878         teff = ship.shp_tech / (ship.shp_tech + 200.0);
879         /* raise 4.5 for better interception -KHS */
880         hitchance = (int)(gun * eff * teff * 4.5) - hardtarget;
881         if (hitchance < 0)
882             hitchance = 0;
883         if (hitchance > 100)
884             hitchance = 100;
885         hit = roll(100) <= hitchance;
886
887         mpr(bombown, "%s anti-missile system activated...%s\n",
888             cname(ship.shp_own),
889             hit ? "KABOOOM!! Missile destroyed\n"
890             : "SWOOSH!!  anti-missile system failed!!");
891         mpr(ship.shp_own, "Ship #%i anti-missile system activated!\n",
892             ship.shp_uid);
893         mpr(ship.shp_own, "%d%% hitchance...%s\n", hitchance,
894             hit ? "KABOOOM!!  Incoming missile destroyed!\n"
895             : "SWOOSH!!  Missile evades anti-missile systems\n");
896
897         if (hit)
898             return 1;
899     }
900     return 0;                   /* all attempts failed */
901 }
902
903
904 /* Fire missiles at a ship which has fired shells */
905 void
906 shp_missdef(struct shpstr *sp, natid victim)
907 {
908     struct emp_qelem list;
909     struct ulist *mlp;
910     int eff;
911     char buf[512];
912
913     emp_initque(&list);
914
915     mlp = malloc(sizeof(struct ulist));
916     mlp->chrp = (struct empobj_chr *)&mchr[(int)sp->shp_type];
917     mlp->unit.ship = *sp;
918     mlp->mobil = sp->shp_mobil;
919     emp_insque(&mlp->queue, &list);
920     sprintf(buf, "%s", prship(&mlp->unit.ship));
921
922     eff = sp->shp_effic;
923     shp_missile_interdiction(&list, sp->shp_x, sp->shp_y, sp->shp_own);
924     getship(sp->shp_uid, sp);
925
926     if (!sp->shp_own) {
927         wu(0, victim,
928            "missiles launched in defense did 100%% damage to %s\n",
929            buf);
930         wu(0, victim, "%s sunk!\n", buf);
931     } else if (eff > 0 && sp->shp_effic < eff) {
932         wu(0, victim,
933            "missiles launched in defense did %d%% damage to %s\n",
934            100 * (eff - sp->shp_effic) / eff, buf);
935     }
936     if (!QEMPTY(&list))
937         free(mlp);
938 }
939
940 double
941 shp_mobcost(struct shpstr *sp)
942 {
943     return speed_factor(sp->shp_effic * 0.01 * shp_speed(sp),
944                         sp->shp_tech);
945 }
946
947 /*
948  * Set SP's tech to TLEV along with everything else that depends on it.
949  */
950 void
951 shp_set_tech(struct shpstr *sp, int tlev)
952 {
953     struct mchrstr *mcp = mchr + sp->shp_type;
954
955     if (CANT_HAPPEN(tlev < mcp->m_tech))
956         tlev = mcp->m_tech;
957
958     sp->shp_tech = tlev;
959 }