]> git.pond.sub.org Git - empserver/blob - src/lib/subs/landgun.c
Don't unlimber when guns unsuccessfully try to fire
[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: Fire weapons
29  * 
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2006-2008
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, dchrgs;
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 == 0)
148        return -1;
149     dchrgs = MIN(2, shells);
150     sp->shp_item[I_SHELL] = shells - dchrgs;
151     return (int)seagun(sp->shp_effic, 2 * dchrgs - 1);
152 }
153
154 /*
155  * Fire torpedo from ship SP.
156  * Use ammo and mobility, resupply if necessary.
157  * Return damage if the ship fires, else -1.
158  */
159 int
160 shp_torp(struct shpstr *sp, int usemob)
161 {
162     int shells;
163
164     if (sp->shp_effic < 60 || (mchr[sp->shp_type].m_flags & M_TORP) == 0)
165         return -1;
166     if (sp->shp_item[I_MILIT] == 0 || sp->shp_item[I_GUN] == 0)
167         return -1;
168     if (usemob && sp->shp_mobil <= 0)
169         return -1;
170     shells = sp->shp_item[I_SHELL];
171     shells += supply_commod(sp->shp_own, sp->shp_x, sp->shp_y,
172                            I_SHELL, SHP_TORP_SHELLS - shells);
173     if (shells < SHP_TORP_SHELLS)
174        return -1;
175     sp->shp_item[I_SHELL] = shells - SHP_TORP_SHELLS;
176     if (usemob)
177         sp->shp_mobil -= (int)shp_mobcost(sp) / 2.0;
178     return TORP_DAMAGE();
179 }
180
181 /*
182  * Fire from land unit LP.
183  * Use ammo, resupply if necessary.
184  * Return damage if the land unit fires, else -1.
185  */
186 int
187 lnd_fire(struct lndstr *lp)
188 {
189     int guns, ammo, shells;
190     double d;
191
192     if (lp->lnd_effic < LAND_MINFIREEFF)
193         return -1;
194     if (lp->lnd_ship >= 0 || lp->lnd_land >= 0)
195         return -1;
196     if (lp->lnd_item[I_MILIT] == 0)
197         return -1;
198     guns = lnd_dam(lp);
199     guns = MIN(guns, lp->lnd_item[I_GUN]);
200     if (guns == 0)
201         return -1;
202     ammo = lchr[lp->lnd_type].l_ammo;
203     if (CANT_HAPPEN(ammo == 0))
204         ammo = 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     lnd_unlimber(lp);
211     d = landunitgun(lp->lnd_effic, guns);
212     if (shells < ammo) {
213         d *= (double)shells / (double)ammo;
214         ammo = shells;
215     }
216     lp->lnd_item[I_SHELL] = shells - ammo;
217     return d;
218 }
219
220 /*
221  * Return number of guns ship SP can fire.
222  */
223 int
224 shp_usable_guns(struct shpstr *sp)
225 {
226     return MIN(shp_glim(sp), sp->shp_item[I_GUN]);
227 }
228
229 /*
230  * Return effective firing range for range factor RNG at tech TLEV.
231  */
232 static double
233 effrange(int rng, double tlev)
234 {
235     /* FIXME don't truncate TLEV */
236     return techfact((int)tlev, rng / 2.0);
237 }
238
239 /*
240  * Return firing range for sector SP.
241  */
242 double
243 fortrange(struct sctstr *sp)
244 {
245     struct natstr *np = getnatp(sp->sct_own);
246     double rng;
247
248     if (sp->sct_type != SCT_FORTR || sp->sct_effic < FORTEFF)
249         return -1.0;
250
251     rng = effrange(14.0 * fire_range_factor, np->nat_level[NAT_TLEV]);
252     if (sp->sct_effic > 59)
253         rng++;
254     return rng;
255 }
256
257 /*
258  * Return firing range for ship SP.
259  */
260 double
261 shp_fire_range(struct shpstr *sp)
262 {
263     return effrange(shp_frnge(sp), sp->shp_tech);
264 }
265
266 /*
267  * Return torpedo range for ship SP.
268  */
269 double
270 torprange(struct shpstr *sp)
271 {
272     return effrange(shp_frnge(sp) * 2, sp->shp_tech)
273         * sp->shp_effic / 100.0;
274 }
275
276 /*
277  * Return hit chance for torpedo from ship SP at range RANGE.
278  */
279 double
280 shp_torp_hitchance(struct shpstr *sp, int range)
281 {
282     return DTORP_HITCHANCE(range, shp_visib(sp));
283 }
284
285 /*
286  * Return firing range for land unit SP.
287  */
288 double
289 lnd_fire_range(struct lndstr *lp)
290 {
291     struct sctstr sect;
292
293     getsect(lp->lnd_x, lp->lnd_y, &sect);
294     return effrange(lnd_frg(lp), lp->lnd_tech)
295         + (sect.sct_type == SCT_MOUNT ? 0.5 : 0.0);
296 }
297
298 int
299 roundrange(double r)
300 {
301     return roundavg(r);
302 }