]> git.pond.sub.org Git - empserver/blob - src/lib/common/sectdamage.c
2fac5e5604b5d7241b627cfdb3357a470d8bd152
[empserver] / src / lib / common / sectdamage.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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  *  sectdamage.c: Damage a sector
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  *     Steve McClure, 1996
33  */
34
35 #include <config.h>
36
37 #include "combat.h"
38 #include "damage.h"
39 #include "file.h"
40 #include "land.h"
41 #include "misc.h"
42 #include "nat.h"
43 #include "nsc.h"
44 #include "optlist.h"
45 #include "plane.h"
46 #include "prototypes.h"
47 #include "sect.h"
48 #include "ship.h"
49 #include "xy.h"
50
51 int
52 sect_damage(struct sctstr *sp, int dam, struct emp_qelem *list)
53 {
54     int eff;
55
56     if (dam <= 0)
57         return 0;
58     if (dam > 100)
59         dam = 100;
60
61     sp->sct_effic = damage(sp->sct_effic, dam);
62     sp->sct_avail = damage(sp->sct_avail, dam);
63     sp->sct_road = damage(sp->sct_road, dam);
64     sp->sct_rail = damage(sp->sct_rail, dam);
65     sp->sct_defense = damage(sp->sct_defense, dam);
66
67     eff = dam;
68
69     if (sp->sct_mobil > 0)
70         sp->sct_mobil = damage(sp->sct_mobil, dam);
71     item_damage(dam, sp->sct_item);
72     if (opt_EASY_BRIDGES == 0) {
73         if (sp->sct_effic < SCT_MINEFF && sp->sct_type == SCT_BHEAD)
74             bridgefall(sp, list);
75     } else {
76         if (sp->sct_effic < SCT_MINEFF && sp->sct_type == SCT_BSPAN)
77             knockdown(sp, list);
78     }
79     putsect(sp);
80     return eff;
81 }
82
83 int
84 sectdamage(struct sctstr *sp, int dam, struct emp_qelem *list)
85 {
86     struct nstr_item ni;
87     struct lndstr land;
88     struct plnstr plane;
89     int eff;
90
91     /* Some sectors are harder/easier to kill..   */
92     /* Average sector has a dstr of 1, so adjust  */
93     /* the damage accordingly. Makes forts a pain */
94     dam = ldround(dam / sector_strength(sp), 1);
95
96     eff = sect_damage(sp, PERCENT_DAMAGE(dam), list);
97
98     /* Damage all the land units in the sector */
99     /* Units don't take full damage */
100     dam = ldround(DPERCENT_DAMAGE(dam * unit_damage), 1);
101     if (dam <= 0)
102         return eff;
103
104     snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
105     while (nxtitem(&ni, &land)) {
106         if (!land.lnd_own)
107             continue;
108         landdamage(&land, dam);
109         putland(land.lnd_uid, &land);
110     }
111
112     dam = dam / 7;
113     if (dam <= 0)
114         return eff;
115     snxtitem_xy(&ni, EF_PLANE, sp->sct_x, sp->sct_y);
116     while (nxtitem(&ni, &plane)) {
117         if (!plane.pln_own)
118             continue;
119         if (plane.pln_flags & PLN_LAUNCHED)
120             continue;
121         if (plane.pln_ship >= 0)
122             continue;
123         /* Is this plane flying in this list? */
124         if (ac_isflying(&plane, list))
125             continue;
126         planedamage(&plane, dam);
127         putplane(plane.pln_uid, &plane);
128     }
129     return eff;
130 }