]> git.pond.sub.org Git - empserver/blob - src/lib/subs/sectdamage.c
Update copyright notice
[empserver] / src / lib / subs / sectdamage.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2015, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  sectdamage.c: Damage a sector
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1989
31  *     Steve McClure, 1996
32  */
33
34 #include <config.h>
35
36 #include "combat.h"
37 #include "damage.h"
38 #include "file.h"
39 #include "land.h"
40 #include "misc.h"
41 #include "nsc.h"
42 #include "optlist.h"
43 #include "plane.h"
44 #include "prototypes.h"
45 #include "sect.h"
46 #include "ship.h"
47 #include "xy.h"
48
49 int
50 sect_damage(struct sctstr *sp, int dam)
51 {
52     int eff;
53
54     if (dam <= 0)
55         return 0;
56     if (dam > 100)
57         dam = 100;
58
59     sp->sct_effic = damage(sp->sct_effic, dam);
60     sp->sct_avail = damage(sp->sct_avail, dam);
61     sp->sct_road = damage(sp->sct_road, dam);
62     sp->sct_rail = damage(sp->sct_rail, dam);
63     sp->sct_defense = damage(sp->sct_defense, dam);
64
65     eff = dam;
66
67     if (sp->sct_mobil > 0)
68         sp->sct_mobil = damage(sp->sct_mobil, dam);
69     item_damage(dam, sp->sct_item);
70     bridge_damaged(sp);
71     putsect(sp);
72     return eff;
73 }
74
75 int
76 sectdamage(struct sctstr *sp, int dam)
77 {
78     struct nstr_item ni;
79     struct lndstr land;
80     struct plnstr plane;
81     int eff;
82
83     /* Some sectors are harder/easier to kill..   */
84     /* Average sector has a dstr of 1, so adjust  */
85     /* the damage accordingly. Makes forts a pain */
86     dam = ldround(dam / sector_strength(sp), 1);
87
88     eff = sect_damage(sp, PERCENT_DAMAGE(dam));
89
90     /* Damage all the land units in the sector */
91     /* Units don't take full damage */
92     dam = ldround(DPERCENT_DAMAGE(dam * unit_damage), 1);
93     if (dam <= 0)
94         return eff;
95
96     snxtitem_xy(&ni, EF_LAND, sp->sct_x, sp->sct_y);
97     while (nxtitem(&ni, &land)) {
98         if (!land.lnd_own)
99             continue;
100         landdamage(&land, dam);
101         putland(land.lnd_uid, &land);
102     }
103
104     dam = dam / 7;
105     if (dam <= 0)
106         return eff;
107     snxtitem_xy(&ni, EF_PLANE, sp->sct_x, sp->sct_y);
108     while (nxtitem(&ni, &plane)) {
109         if (!plane.pln_own)
110             continue;
111         if (plane.pln_flags & PLN_LAUNCHED)
112             continue;
113         if (plane.pln_ship >= 0)
114             continue;
115         planedamage(&plane, dam);
116         putplane(plane.pln_uid, &plane);
117     }
118     return eff;
119 }