]> git.pond.sub.org Git - empserver/blobdiff - src/lib/subs/lndsub.c
Fix test for capability engineer in lnd_hit_mine()
[empserver] / src / lib / subs / lndsub.c
index a6b4636e5132814e11cc729bde6404a181a53925..4b0cec14b330edc234044f3a8d421a298b393b06 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2010, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
  *  ---
  *
  *  lndsub.c: Land unit subroutines
- * 
+ *
  *  Known contributors to this file:
  *     Ken Stevens, 1995
  *     Steve McClure, 1998-2000
- *     Markus Armbruster, 2004-2006
+ *     Markus Armbruster, 2004-2009
  */
 
 #include <config.h>
@@ -52,7 +52,7 @@
 #include "unit.h"
 
 static void lnd_mess(char *, struct ulist *);
-static int lnd_hit_mine(struct lndstr *, struct lchrstr *);
+static int lnd_hit_mine(struct lndstr *);
 static int has_helpful_engineer(coord, coord, natid);
 
 double
@@ -76,7 +76,7 @@ attack_val(int combat_mode, struct lndstr *lp)
        return 1;
 
     men = lp->lnd_item[I_MILIT];
-    value = men * lp->lnd_att * lp->lnd_effic / 100.0;
+    value = men * lnd_att(lp) * lp->lnd_effic / 100.0;
 
     switch (combat_mode) {
     case A_ATTACK:
@@ -113,7 +113,7 @@ defense_val(struct lndstr *lp)
        !(lcp->l_flags & L_MARINE))
        return men;
 
-    value = men * lp->lnd_def * lp->lnd_effic / 100.0;
+    value = men * lnd_def(lp) * lp->lnd_effic / 100.0;
     value *= ((double)land_mob_max + lp->lnd_harden) / land_mob_max;
 
     /* If there are military on the unit, you get at least a 1
@@ -124,6 +124,17 @@ defense_val(struct lndstr *lp)
     return value;
 }
 
+int
+lnd_reaction_range(struct lndstr *lp)
+{
+    struct sctstr sect;
+
+    getsect(lp->lnd_x, lp->lnd_y, &sect);
+    if (sect.sct_type == SCT_HEADQ && sect.sct_effic >= 60)
+       return lchr[lp->lnd_type].l_rad + 1;
+    return lchr[lp->lnd_type].l_rad;
+}
+
 void
 lnd_print(struct ulist *llp, char *s)
 {
@@ -167,10 +178,9 @@ lnd_take_casualty(int combat_mode, struct ulist *llp, int cas)
 
     taken = llp->unit.land.lnd_item[I_MILIT];
     /* Spies always die */
-    if (((struct lchrstr *)llp->chrp)->l_flags & L_SPY) {
-       eff_eq = 100;
+    if (((struct lchrstr *)llp->chrp)->l_flags & L_SPY)
        llp->unit.land.lnd_effic = 0;
-    else {
+    else {
        eff_eq = ldround(cas * 100.0 /
            ((struct lchrstr *)llp->chrp)->l_item[I_MILIT], 1);
        llp->unit.land.lnd_effic -= eff_eq;
@@ -214,9 +224,9 @@ lnd_take_casualty(int combat_mode, struct ulist *llp, int cas)
        else if (combat_mode == A_DEFEND) {
            /*
             * defending unit.. find a place to send it
-            * strategy: look for the most-populated 
+            * strategy: look for the most-populated
             * adjacent sector that is owned by the unit
-            * player->owner. Charge mob..
+            * owner. Charge mob..
             */
            biggest = -1;
            nowned = 0;
@@ -297,13 +307,10 @@ lnd_takemob(struct emp_qelem *list, double loss)
     for (qp = list->q_forw; qp != list; qp = next) {
        next = qp->q_forw;
        llp = (struct ulist *)qp;
-/*
-               if (chance(loss))
-                       use_supply(&llp->unit.land);
-               if (llp->unit.land.lnd_mission == MI_RESERVE)
-                       new = llp->unit.land.lnd_mobil - mcost/2;
-               else
- */
+#if 0
+       if (chance(loss))
+           use_supply(&llp->unit.land);
+#endif
        new = llp->unit.land.lnd_mobil - mcost;
        if (new < -127)
            new = -127;
@@ -322,39 +329,34 @@ int
 lnd_spyval(struct lndstr *lp)
 {
     if (lchr[(int)lp->lnd_type].l_flags & L_RECON)
-       return lp->lnd_spy * (lp->lnd_effic / 100.0) + 2;
+       return lchr[lp->lnd_type].l_spy * (lp->lnd_effic / 100.0) + 2;
     else
-       return lp->lnd_spy * (lp->lnd_effic / 100.0);
+       return lchr[lp->lnd_type].l_spy * (lp->lnd_effic / 100.0);
 }
 
-double
+void
 intelligence_report(int destination, struct lndstr *lp, int spy,
                    char *mess)
 {
-    struct lchrstr *lcp;
+    int vis = lnd_vis(lp);
     char buf1[80], buf2[80], buf3[80];
-    double estimate = 0.0;     /* estimated defense value */
 
     if (destination == 0)
-       return 0;
+       return;
 
     if (lp->lnd_own == 0)
-       return 0;
-
-    lcp = &lchr[(int)lp->lnd_type];
+       return;
 
     memset(buf1, 0, sizeof(buf1));
     memset(buf2, 0, sizeof(buf2));
     memset(buf3, 0, sizeof(buf3));
-    if (chance((spy + lp->lnd_vis) / 10.0)) {
+    if (chance((spy + vis) / 10.0)) {
        if (destination == player->cnum)
            pr("%s %s", mess, prland(lp));
        else
            sprintf(buf1, "%s %s", mess, prland(lp));
 
-       estimate = lp->lnd_item[I_MILIT];
-
-       if (chance((spy + lp->lnd_vis) / 20.0)) {
+       if (chance((spy + vis) / 20.0)) {
            if (destination == player->cnum)
                pr(" (eff %d, mil %d",
                   roundintby(lp->lnd_effic, 5),
@@ -363,9 +365,8 @@ intelligence_report(int destination, struct lndstr *lp, int spy,
                sprintf(buf2, " (eff %d, mil %d",
                        roundintby(lp->lnd_effic, 5),
                        roundintby(lp->lnd_item[I_MILIT], 10));
-           estimate = lp->lnd_item[I_MILIT] * lp->lnd_effic / 100.0;
 
-           if (chance((spy + lp->lnd_vis) / 20.0)) {
+           if (chance((spy + vis) / 20.0)) {
                int t;
                t = lp->lnd_tech - 20 + roll(40);
                t = MAX(t, 0);
@@ -390,87 +391,6 @@ intelligence_report(int destination, struct lndstr *lp, int spy,
     if (destination != player->cnum) {
        wu(0, destination, "%s%s%s", buf1, buf2, buf3);
     }
-
-    if (lp->lnd_ship < 0 || lcp->l_flags & L_MARINE)
-       estimate *= lp->lnd_def;
-
-    return estimate;
-}
-
-/* Used by the spy command to count land units in a sector.  If used
-   for anything else, you may want to reconsider, because this doesn't
-   always count spies. :) */
-int
-count_sect_units(struct sctstr *sp)
-{
-    int count = 0;
-    struct nstr_item ni;
-    struct lndstr land;
-
-    snxtitem_all(&ni, EF_LAND);
-    while (nxtitem(&ni, &land)) {
-       if (!land.lnd_own)
-           continue;
-       if (land.lnd_x != sp->sct_x || land.lnd_y != sp->sct_y)
-           continue;
-       /* Don't always see spies */
-       if (lchr[(int)land.lnd_type].l_flags & L_SPY) {
-           if (!(chance(LND_SPY_DETECT_CHANCE(land.lnd_effic))))
-               continue;
-       }
-       /* Got here, report it */
-       ++count;
-    }
-
-    return count;
-}
-
-void
-count_units(struct shpstr *sp)
-{
-    struct nstr_item ni;
-    struct lndstr land;
-    int nland = 0;
-
-    if (sp->shp_effic < SHIP_MINEFF)
-       return;
-
-    snxtitem_xy(&ni, EF_LAND, sp->shp_x, sp->shp_y);
-    while (nxtitem(&ni, &land)) {
-       if (land.lnd_own == 0)
-           continue;
-       if (land.lnd_ship == sp->shp_uid)
-           nland++;
-    }
-
-    if (sp->shp_nland != nland) {
-       sp->shp_nland = nland;
-       putship(sp->shp_uid, sp);
-    }
-}
-
-void
-lnd_count_units(struct lndstr *lp)
-{
-    struct nstr_item ni;
-    struct lndstr land;
-    int nland = 0;
-
-    if (lp->lnd_effic < LAND_MINEFF)
-       return;
-
-    snxtitem_xy(&ni, EF_LAND, lp->lnd_x, lp->lnd_y);
-    while (nxtitem(&ni, &land)) {
-       if (land.lnd_own == 0)
-           continue;
-       if (land.lnd_land == lp->lnd_uid)
-           nland++;
-    }
-
-    if (lp->lnd_nland != nland) {
-       lp->lnd_nland = nland;
-       putland(lp->lnd_uid, lp);
-    }
 }
 
 void
@@ -632,10 +552,10 @@ lnd_sweep(struct emp_qelem *land_list, int verbose, int takemob,
                    prland(&llp->unit.land));
            continue;
        }
-       if (sect.sct_type == SCT_BSPAN) {
+       if (SCT_MINES_ARE_SEAMINES(&sect)) {
            if (verbose)
-               mpr(actor, "%s is on a bridge.  No mines there!\n",
-                   prland(&llp->unit.land));
+               mpr(actor, "%s is in a %s sector.  No landmines there!\n",
+                   prland(&llp->unit.land), dchr[sect.sct_type].d_name);
            continue;
        }
        if (takemob) {
@@ -699,12 +619,10 @@ lnd_check_mines(struct emp_qelem *land_list)
        getsect(llp->unit.land.lnd_x, llp->unit.land.lnd_y, &sect);
        if (sect.sct_oldown == llp->unit.land.lnd_own)
            continue;
-       if (sect.sct_type == SCT_BSPAN)
-           continue;
-       if (!sect.sct_mines)
+       if (SCT_LANDMINES(&sect) == 0)
            continue;
        if (chance(DMINE_LHITCHANCE(sect.sct_mines) / (1 + 2 * with_eng))) {
-           lnd_hit_mine(&llp->unit.land, ((struct lchrstr *)llp->chrp));
+           lnd_hit_mine(&llp->unit.land);
            sect.sct_mines--;
            putsect(&sect);
            putland(llp->unit.land.lnd_uid, &llp->unit.land);
@@ -762,7 +680,7 @@ lnd_damage(struct emp_qelem *list, int totdam)
     for (qp = list->q_back; qp != list; qp = next) {
        next = qp->q_back;
        llp = (struct ulist *)qp;
-       /* have to get it again because of collateral damage */
+       /* land unit might have changed (launched SAMs, collateral dmg) */
        getland(llp->unit.land.lnd_uid, &llp->unit.land);
        landdamage(&llp->unit.land, dam);
        putland(llp->unit.land.lnd_uid, &llp->unit.land);
@@ -799,27 +717,47 @@ static int
 lnd_missile_interdiction(struct emp_qelem *list, coord newx, coord newy,
                         natid victim)
 {
-    int dam;
+    int mindam = lnd_count(list) * 20;
+    int hardtarget = lnd_easiest_target(list);
+    int dam, newdam, sublaunch;
+    int stopping = 0;
+    struct plist *plp;
     struct emp_qelem msl_list, *qp, *newqp;
 
     msl_sel(&msl_list, newx, newy, victim, P_T, P_MAR, MI_INTERDICT);
 
-    dam = msl_launch_mindam(&msl_list, newx, newy,
-                           lnd_easiest_target(list), EF_LAND,
-                           lnd_count(list) * 20, "troops", victim,
-                           MI_INTERDICT);
-    if (dam) {
-       mpr(victim, "missile interdiction mission does %d damage!\n", dam);
-       collateral_damage(newx, newy, dam, 0);
-    }
-    qp = msl_list.q_forw;
-    while (qp != msl_list.q_forw) {
-       newqp = qp->q_forw;
+    dam = 0;
+    for (qp = msl_list.q_back; qp != &msl_list; qp = newqp) {
+       newqp = qp->q_back;
+       plp = (struct plist *)qp;
+
+       if (dam < mindam && mission_pln_equip(plp, NULL, 'p') >= 0) {
+           if (msl_launch(&plp->plane, EF_LAND, "troops",
+                          newx, newy, victim, &sublaunch) < 0)
+               goto use_up_msl;
+           stopping = 1;
+           if (msl_hit(&plp->plane, hardtarget, EF_LAND,
+                       N_LND_MISS, N_LND_SMISS, sublaunch, victim)) {
+               newdam = pln_damage(&plp->plane, 'p', 1);
+               dam += newdam;
+           } else {
+               newdam = pln_damage(&plp->plane, 'p', 0);
+               collateral_damage(newx, newy, newdam);
+           }
+       use_up_msl:
+           plp->plane.pln_effic = 0;
+           putplane(plp->plane.pln_uid, &plp->plane);
+       }
        emp_remque(qp);
        free(qp);
-       qp = newqp;
     }
-    return dam;
+
+    if (dam) {
+       mpr(victim, "missile interdiction mission does %d damage!\n", dam);
+       collateral_damage(newx, newy, dam);
+       lnd_damage(list, dam);
+    }
+    return stopping;
 }
 
 #if 0
@@ -835,6 +773,7 @@ lnd_fort_interdiction(struct emp_qelem *list,
     double guneff;
     int shell, gun;
     int dam;
+    int stopping = 0;
     int totdam = 0;
     int i;
 
@@ -854,6 +793,7 @@ lnd_fort_interdiction(struct emp_qelem *list,
        putsect(&fsect);
        if (dam < 0)
            continue;
+       stopping = 1;
        totdam += dam;
        mpr(victim, "Incoming fire does %d damage!\n", dam);
        wu(0, fsect.sct_own,
@@ -864,11 +804,25 @@ lnd_fort_interdiction(struct emp_qelem *list,
        nreport(fsect.sct_own, N_SCT_SHELL, victim, 1);
     }
     if (totdam > 0)
-       return lnd_damage(list, totdam);
-    return 0;
+       lnd_damage(list, totdam);
+    return stopping;
 }
 #endif
 
+static int
+lnd_mission_interdiction(struct emp_qelem *list, coord x, coord y,
+                        natid victim)
+{
+    int dam;
+
+    dam = unit_interdict(x, y, victim, "land units",
+                        lnd_easiest_target(list),
+                        MI_INTERDICT);
+    if (dam >= 0)
+       lnd_damage(list, dam);
+    return dam >= 0;
+}
+
 int
 lnd_interdict(struct emp_qelem *list, coord newx, coord newy, natid victim)
 {
@@ -880,14 +834,8 @@ lnd_interdict(struct emp_qelem *list, coord newx, coord newy, natid victim)
        stopping |= lnd_fort_interdiction(list, newx, newy, victim);
 #endif
 
-    stopping |=
-       lnd_damage(list,
-                  unit_interdict(newx, newy, victim, "land units",
-                                 lnd_easiest_target(list), MI_INTERDICT));
-
-    stopping |=
-       lnd_damage(list,
-                  lnd_missile_interdiction(list, newx, newy, victim));
+    stopping |= lnd_mission_interdiction(list, newx, newy, victim);
+    stopping |= lnd_missile_interdiction(list, newx, newy, victim);
     return stopping;
 }
 
@@ -899,12 +847,12 @@ lnd_hardtarget(struct lndstr *lp)
 
     getsect(lp->lnd_x, lp->lnd_y, &sect);
     return (int)((lp->lnd_effic / 100.0) *
-                (10 + dchr[sect.sct_type].d_dstr * 2 + lp->lnd_spd / 2.0
-                 - lp->lnd_vis));
+                (10 + dchr[sect.sct_type].d_dstr * 2 + lnd_spd(lp) / 2.0
+                 - lnd_vis(lp)));
 }
 
 static int
-lnd_hit_mine(struct lndstr *lp, struct lchrstr *lcp)
+lnd_hit_mine(struct lndstr *lp)
 {
     int m;
 
@@ -914,7 +862,7 @@ lnd_hit_mine(struct lndstr *lp, struct lchrstr *lcp)
     nreport(lp->lnd_own, N_LHIT_MINE, 0, 1);
 
     m = MINE_LDAMAGE();
-    if (lcp->l_flags & L_ENGINEER)
+    if (lchr[lp->lnd_type].l_flags & L_ENGINEER)
        m /= 2;
 
     landdamage(lp, m);
@@ -926,7 +874,7 @@ lnd_pathcost(struct lndstr *lp, double pathcost)
 {
     double effspd;
 
-    effspd = lp->lnd_spd;
+    effspd = lnd_spd(lp);
     if (lchr[(int)lp->lnd_type].l_flags & L_SUPPLY)
        effspd *= lp->lnd_effic * 0.01;
 
@@ -1002,7 +950,7 @@ lnd_mar_one_sector(struct emp_qelem *list, int dir, natid actor,
                continue;
            }
        }
-       if ((!intrchr[INT_RAIL].in_enable || sect.sct_rail == 0)
+       if (!SCT_HAS_RAIL(&sect)
            && lnd_mobtype(&llp->unit.land) == MOB_RAIL) {
            if (together) {
                pr("no rail system in %s\n", xyas(newx, newy, actor));
@@ -1068,7 +1016,7 @@ lnd_mar_one_sector(struct emp_qelem *list, int dir, natid actor,
                    pr("%s was shot and killed.\n", prland(&llp->unit.land));
                    llp->unit.land.lnd_effic = 0;
                    putland(llp->unit.land.lnd_uid, &llp->unit.land);
-                   lnd_delete(llp, 0);
+                   lnd_delete(llp, NULL);
                }
            }
        }
@@ -1105,7 +1053,6 @@ lnd_mar_one_sector(struct emp_qelem *list, int dir, natid actor,
        /* move survivors to done */
        for (qp = cur.q_back; qp != &cur; qp = next) {
            next = qp->q_back;
-           llp = (struct ulist *)qp;
            emp_remque(qp);
            emp_insque(qp, &done);
        }
@@ -1146,7 +1093,7 @@ lnd_support(natid victim, natid attacker, coord x, coord y, int defending)
        /* are we in range? */
        dist = mapdist(land.lnd_x, land.lnd_y, x, y);
 
-       range = roundrange(effrange(land.lnd_frg, land.lnd_tech));
+       range = roundrange(lnd_fire_range(&land));
        if (dist > range)
            continue;
 
@@ -1159,7 +1106,7 @@ lnd_support(natid victim, natid attacker, coord x, coord y, int defending)
            nreport(land.lnd_own, N_FIRE_BACK, victim, 1);
        else
            nreport(land.lnd_own, N_FIRE_L_ATTACK, victim, 1);
-       if (roll(100) < land.lnd_acc)
+       if (roll(100) < lnd_acc(&land))
            dam2 /= 2;
        dam += dam2;
        if (land.lnd_own != attacker)
@@ -1247,20 +1194,4 @@ lnd_set_tech(struct lndstr *lp, int tlev)
        tlev = 0;
 
     lp->lnd_tech = tlev;
-    lp->lnd_att = l_att(lcp, tlev);
-    lp->lnd_def = l_def(lcp, tlev);
-    lp->lnd_vul = l_vul(lcp, tlev);
-    lp->lnd_spd = l_spd(lcp, tlev);
-    lp->lnd_vis = lcp->l_vis;
-    lp->lnd_spy = lcp->l_spy;
-    lp->lnd_rad = lcp->l_rad;
-    lp->lnd_frg = l_frg(lcp, tlev);
-    lp->lnd_acc = l_acc(lcp, tlev);
-    lp->lnd_dam = l_dam(lcp, tlev);
-    lp->lnd_ammo = lcp->l_ammo;
-    lp->lnd_aaf = lcp->l_aaf;
-    lp->lnd_fuelc = lcp->l_fuelc;
-    lp->lnd_fuelu = lcp->l_fuelu;
-    lp->lnd_maxlight = lcp->l_nxlight;
-    lp->lnd_maxland = lcp->l_nland;
 }