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