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