]> git.pond.sub.org Git - empserver/blob - src/lib/update/plane.c
(planerepair): Move the carrier sanity to before the carrier variable is
[empserver] / src / lib / update / plane.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  *  plane.c: Do production for planes
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Steve McClure, 1998
33  *     Markus Armbruster, 2006
34  */
35
36 #include <config.h>
37
38 #include "budg.h"
39 #include "lost.h"
40 #include "plane.h"
41 #include "player.h"
42 #include "ship.h"
43 #include "update.h"
44
45 static void planerepair(struct plnstr *, struct natstr *, int *, int);
46 static void upd_plane(struct plnstr *, int, struct natstr *, int *, int);
47
48 int
49 prod_plane(int etus, int natnum, int *bp, int buildem)
50                  /* Build = 1, maintain =0 */
51 {
52     struct plnstr *pp;
53     struct natstr *np;
54     int n, k = 0;
55     int start_money;
56
57     for (n = 0; NULL != (pp = getplanep(n)); n++) {
58         if (pp->pln_own == 0)
59             continue;
60         if (pp->pln_own != natnum)
61             continue;
62         if (pp->pln_effic < PLANE_MINEFF) {
63             makelost(EF_PLANE, pp->pln_own, pp->pln_uid,
64                      pp->pln_x, pp->pln_y);
65             pp->pln_own = 0;
66             continue;
67         }
68
69         if (pp->pln_flags & PLN_LAUNCHED) {
70             if (!player->simulation && buildem == 0
71                 && !(pp->pln_flags & PLN_SYNCHRONOUS))
72                 move_sat(pp);
73             continue;
74         }
75
76         np = getnatp(pp->pln_own);
77         start_money = np->nat_money;
78         upd_plane(pp, etus, np, bp, buildem);
79         air_money[pp->pln_own] += np->nat_money - start_money;
80         if (buildem == 0 || np->nat_money != start_money)
81             k++;
82         if (player->simulation)
83             np->nat_money = start_money;
84     }
85
86     return k;
87 }
88
89 static void
90 upd_plane(struct plnstr *pp, int etus,
91           struct natstr *np, int *bp, int build)
92 {
93     struct plchrstr *pcp = &plchr[(int)pp->pln_type];
94     int mult, cost, eff;
95
96     if (build == 1) {
97         if (!pp->pln_off && np->nat_money >= 0)
98             planerepair(pp, np, bp, etus);
99         if (!player->simulation)
100             pp->pln_off = 0;
101     } else {
102         mult = 1;
103         if (np->nat_level[NAT_TLEV] < pp->pln_tech * 0.85)
104             mult = 2;
105         cost = -(mult * etus * MIN(0.0, pcp->pl_cost * money_plane));
106         if (np->nat_money < cost && !player->simulation) {
107             if ((eff = pp->pln_effic - etus / 5) < PLANE_MINEFF) {
108                 wu(0, pp->pln_own,
109                    "%s lost to lack of maintenance\n", prplane(pp));
110                 makelost(EF_PLANE, pp->pln_own, pp->pln_uid,
111                          pp->pln_x, pp->pln_y);
112                 pp->pln_own = 0;
113                 return;
114             }
115             wu(0, pp->pln_own,
116                "%s lost %d%% to lack of maintenance\n",
117                prplane(pp), pp->pln_effic - eff);
118             pp->pln_effic = eff;
119         } else {
120             np->nat_money -= cost;
121         }
122         /* flight pay is 5x the pay received by other military */
123         np->nat_money += etus * pcp->pl_crew * money_mil * 5;
124     }
125 }
126
127 static void
128 planerepair(struct plnstr *pp, struct natstr *np, int *bp, int etus)
129 {
130     float leftp, buildp;
131     int left, build;
132     int mil_needed, lcm_needed, hcm_needed;
133     int mvec[I_MAX + 1];
134     struct shpstr *carrier;
135     struct plchrstr *pcp = &plchr[(int)pp->pln_type];
136     struct sctstr *sp = getsectp(pp->pln_x, pp->pln_y);
137     int delta;
138     int mult;
139     int avail;
140     int w_p_eff;
141     int used;
142
143     carrier = NULL;
144     if (pp->pln_ship >= 0) {
145         if (pp->pln_effic >= 80)
146             return;
147         carrier = getshipp(pp->pln_ship);
148         if (CANT_HAPPEN(!carrier))
149             return;
150         if (carrier->shp_off)
151             return;
152         if (CANT_HAPPEN(carrier->shp_own != pp->pln_own))
153             return;
154     }
155
156     if (sp->sct_off)
157         return;
158     mult = 1;
159     if (np->nat_level[NAT_TLEV] < pp->pln_tech * 0.85)
160         mult = 2;
161
162     if (pp->pln_effic == 100)
163         return;
164
165     if (!player->simulation)
166         avail = sp->sct_avail * 100;
167     else
168         avail = gt_bg_nmbr(bp, sp, I_MAX + 1) * 100;
169     if (carrier)
170         avail += etus * carrier->shp_item[I_MILIT] / 2;
171
172     w_p_eff = PLN_BLD_WORK(pcp->pl_lcm, pcp->pl_hcm);
173     delta = roundavg((double)avail / w_p_eff);
174     if (delta <= 0)
175         return;
176     if (delta > (int)((float)etus * plane_grow_scale))
177         delta = (int)((float)etus * plane_grow_scale);
178
179     /* delta is the max amount we can grow */
180
181     left = 100 - pp->pln_effic;
182     if (left > delta)
183         left = delta;
184
185     leftp = left / 100.0;
186     memset(mvec, 0, sizeof(mvec));
187     mvec[I_MILIT] = mil_needed = ldround(pcp->pl_crew * leftp, 1);
188     mvec[I_LCM] = lcm_needed = ldround(pcp->pl_lcm * leftp, 1);
189     mvec[I_HCM] = hcm_needed = ldround(pcp->pl_hcm * leftp, 1);
190     get_materials(sp, bp, mvec, 0);
191
192     buildp = leftp;
193     if (mvec[I_MILIT] < mil_needed)
194         buildp = MIN(buildp, (float)mvec[I_MILIT] / (float)pcp->pl_crew);
195     if (mvec[I_LCM] < lcm_needed)
196         buildp = MIN(buildp, (float)mvec[I_LCM] / (float)pcp->pl_lcm);
197     if (mvec[I_HCM] < hcm_needed)
198         buildp = MIN(buildp, (float)mvec[I_HCM] / (float)pcp->pl_hcm);
199
200     build = ldround(buildp * 100.0, 1);
201     memset(mvec, 0, sizeof(mvec));
202     mvec[I_MILIT] = roundavg(pcp->pl_crew * buildp);
203     mvec[I_LCM] = roundavg(pcp->pl_lcm * buildp);
204     mvec[I_HCM] = roundavg(pcp->pl_hcm * buildp);
205     get_materials(sp, bp, mvec, 1);
206
207     if (carrier)
208         build = delta;
209
210     used = build * w_p_eff;
211     /*
212      * I didn't use roundavg here, because I want to
213      * penalize the player with a large number of planes.
214      */
215     if (!player->simulation)
216         avail = (sp->sct_avail * 100 - used) / 100;
217     else
218         avail = (gt_bg_nmbr(bp, sp, I_MAX + 1) * 100 - used) / 100;
219
220     if (avail < 0)
221         avail = 0;
222     if (!player->simulation)
223         sp->sct_avail = avail;
224     else
225         pt_bg_nmbr(bp, sp, I_MAX + 1, avail);
226
227     if (sp->sct_type != SCT_AIRPT)
228         build /= 3;
229     if (carrier) {
230         if ((pp->pln_effic + build) > 80)
231             build = 80 - pp->pln_effic;
232     }
233
234     np->nat_money -= mult * build * pcp->pl_cost / 100.0;
235
236     if (!player->simulation)
237         pp->pln_effic += (signed char)build;
238 }