]> git.pond.sub.org Git - empserver/blob - src/lib/subs/landgun.c
Factor out ship usable gun calculation into shp_usable_gun()
[empserver] / src / lib / subs / landgun.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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  *  landgun.c: Return values for land and ship gun firing damages
29  * 
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2006
32  */
33
34 #include <config.h>
35
36 #include "damage.h"
37 #include "file.h"
38 #include "land.h"
39 #include "nat.h"
40 #include "optlist.h"
41 #include "prototypes.h"
42 #include "sect.h"
43 #include "ship.h"
44
45 double
46 fortgun(int effic, int guns)
47 {
48     double d;
49     double g = MIN(guns, 7);
50
51     d = (random() % 30 + 20.0) * (g / 7.0);
52     d *= effic / 100.0;
53     return d;
54 }
55
56 double
57 seagun(int effic, int guns)
58 {
59     double d;
60
61     d = 0.0;
62     while (guns--)
63         d += 10.0 + random() % 6;
64     d *= effic * 0.01;
65     return d;
66 }
67
68 double
69 landunitgun(int effic, int guns)
70 {
71     double d;
72
73     d = 0.0;
74     while (guns--)
75         d += 5.0 + random() % 6;
76     d *= effic * 0.01;
77     return d;
78 }
79
80 /*
81  * Fire from fortress SP.
82  * Use ammo, resupply if necessary.
83  * Return damage if the fortress fires, else -1.
84  */
85 int
86 fort_fire(struct sctstr *sp)
87 {
88     int guns = sp->sct_item[I_GUN];
89     int shells;
90
91     if (sp->sct_type != SCT_FORTR || sp->sct_effic < FORTEFF)
92         return -1;
93     if (sp->sct_item[I_MILIT] < 5 || guns == 0)
94         return -1;
95     shells = sp->sct_item[I_SHELL];
96     shells += supply_commod(sp->sct_own, sp->sct_x, sp->sct_y,
97                             I_SHELL, 1 - shells);
98     if (shells == 0)
99         return -1;
100     sp->sct_item[I_SHELL] = shells - 1;
101     return (int)fortgun(sp->sct_effic, guns);
102 }
103
104 /*
105  * Fire from ship SP.
106  * Use ammo, resupply if necessary.
107  * Return damage if the ship fires, else -1.
108  */
109 int
110 shp_fire(struct shpstr *sp)
111 {
112     int guns, shells;
113
114     if (sp->shp_effic < 60)
115         return -1;
116     guns = shp_usable_guns(sp);
117     guns = MIN(guns, (sp->shp_item[I_MILIT] + 1) / 2);
118     if (guns == 0)
119         return -1;
120     shells = sp->shp_item[I_SHELL];
121     shells += supply_commod(sp->shp_own, sp->shp_x, sp->shp_y,
122                            I_SHELL, (guns + 1) / 2 - shells);
123     guns = MIN(guns, shells * 2);
124     if (guns == 0)
125        return -1;
126     sp->shp_item[I_SHELL] = shells - (guns + 1) / 2;
127     return (int)seagun(sp->shp_effic, guns);
128 }
129
130 /*
131  * Drop depth-charges from ship SP.
132  * Use ammo, resupply if necessary.
133  * Return damage if the ship drops depth-charges, else -1.
134  */
135 int
136 shp_dchrg(struct shpstr *sp)
137 {
138     int shells;
139
140     if (sp->shp_effic < 60 || (mchr[sp->shp_type].m_flags & M_DCH) == 0)
141         return -1;
142     if (sp->shp_item[I_MILIT] == 0)
143         return -1;
144     shells = sp->shp_item[I_SHELL];
145     shells += supply_commod(sp->shp_own, sp->shp_x, sp->shp_y,
146                            I_SHELL, 2 - shells);
147     if (shells < 2)
148        return -1;
149     sp->shp_item[I_SHELL] = shells - 2;
150     return (int)seagun(sp->shp_effic, 3);
151 }
152
153 /*
154  * Fire torpedo from ship SP.
155  * Use ammo and mobility, resupply if necessary.
156  * Return damage if the ship fires, else -1.
157  */
158 int
159 shp_torp(struct shpstr *sp, int usemob)
160 {
161     int shells;
162
163     if (sp->shp_effic < 60 || (mchr[sp->shp_type].m_flags & M_TORP) == 0)
164         return -1;
165     if (sp->shp_item[I_MILIT] == 0 || sp->shp_item[I_GUN] == 0)
166         return -1;
167     if (usemob && sp->shp_mobil <= 0)
168         return -1;
169     shells = sp->shp_item[I_SHELL];
170     shells += supply_commod(sp->shp_own, sp->shp_x, sp->shp_y,
171                            I_SHELL, SHP_TORP_SHELLS - shells);
172     if (shells < SHP_TORP_SHELLS)
173        return -1;
174     sp->shp_item[I_SHELL] = shells - SHP_TORP_SHELLS;
175     if (usemob)
176         sp->shp_mobil -= (int)shp_mobcost(sp) / 2.0;
177     return TORP_DAMAGE();
178 }
179
180 /*
181  * Fire from land unit LP.
182  * Use ammo, resupply if necessary.
183  * Return damage if the land unit fires, else -1.
184  */
185 int
186 lnd_fire(struct lndstr *lp)
187 {
188     int guns, shells;
189     double d;
190     int ammo = lchr[lp->lnd_type].l_ammo;
191
192     if (CANT_HAPPEN(ammo == 0))
193         ammo = 1;
194
195     if (lp->lnd_effic < LAND_MINFIREEFF)
196         return -1;
197     if (lp->lnd_ship >= 0 || lp->lnd_land >= 0)
198         return -1;
199     if (lp->lnd_item[I_MILIT] == 0)
200         return -1;
201     guns = lp->lnd_dam;
202     guns = MIN(guns, lp->lnd_item[I_GUN]);
203     if (guns == 0)
204         return -1;
205     shells = lp->lnd_item[I_SHELL];
206     shells += supply_commod(lp->lnd_own, lp->lnd_x, lp->lnd_y,
207                             I_SHELL, ammo - shells);
208     if (shells == 0)
209         return -1;
210     d = landunitgun(lp->lnd_effic, guns);
211     if (shells < ammo) {
212         d *= (double)shells / (double)ammo;
213         ammo = shells;
214     }
215     lp->lnd_item[I_SHELL] = shells - ammo;
216     return d;
217 }
218
219 /*
220  * Return number of guns ship SP can fire.
221  */
222 int
223 shp_usable_guns(struct shpstr *sp)
224 {
225     return MIN(sp->shp_glim, sp->shp_item[I_GUN]);
226 }
227
228 /*
229  * Return effective firing range for range factor RNG at tech TLEV.
230  */
231 static double
232 effrange(int rng, double tlev)
233 {
234     /* FIXME don't truncate TLEV */
235     return techfact((int)tlev, rng / 2.0);
236 }
237
238 /*
239  * Return torpedo range for ship SP.
240  */
241 double
242 torprange(struct shpstr *sp)
243 {
244     return effrange(sp->shp_frnge * 2, sp->shp_tech)
245         * sp->shp_effic / 100.0;
246 }
247
248 /*
249  * Return firing range for sector SP.
250  */
251 double
252 fortrange(struct sctstr *sp)
253 {
254     struct natstr *np = getnatp(sp->sct_own);
255     double rng;
256
257     if (sp->sct_type != SCT_FORTR || sp->sct_effic < FORTEFF)
258         return -1.0;
259
260     rng = effrange(14.0 * fire_range_factor, np->nat_level[NAT_TLEV]);
261     if (sp->sct_effic > 59)
262         rng++;
263     return rng;
264 }
265
266 /*
267  * Return firing range for ship SP.
268  */
269 double
270 shp_fire_range(struct shpstr *sp)
271 {
272     return effrange(sp->shp_frnge, sp->shp_tech);
273 }
274
275 /*
276  * Return firing range for land unit SP.
277  */
278 double
279 lnd_fire_range(struct lndstr *lp)
280 {
281     return effrange(lp->lnd_frg, lp->lnd_tech);
282 }
283
284 int
285 roundrange(double r)
286 {
287     return roundavg(r);
288 }