]> git.pond.sub.org Git - empserver/blob - src/lib/update/plane.c
config: Make work to build units independently configurable
[empserver] / src / lib / update / plane.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2016, 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  *  plane.c: Do production for planes
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Steve McClure, 1998
32  *     Markus Armbruster, 2006-2016
33  */
34
35 #include <config.h>
36
37 #include "budg.h"
38 #include "chance.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 *, struct bp *, int);
46 static void upd_plane(struct plnstr *, int, struct natstr *, struct bp *, int);
47
48 int
49 prod_plane(int etus, int natnum, struct bp *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 (pln_is_in_orbit(pp)) {
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, struct bp *bp, int build)
92 {
93     struct plchrstr *pcp = &plchr[(int)pp->pln_type];
94     int mult, cost, eff_lost;
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             eff_lost = etus / 5;
108             if (pp->pln_effic - eff_lost < PLANE_MINEFF)
109                 eff_lost = pp->pln_effic - PLANE_MINEFF;
110             if (eff_lost > 0) {
111                 wu(0, pp->pln_own, "%s lost %d%% to lack of maintenance\n",
112                    prplane(pp), eff_lost);
113                 pp->pln_effic -= eff_lost;
114             }
115         } else {
116             np->nat_money -= cost;
117         }
118         /* flight pay is 5x the pay received by other military */
119         np->nat_money += etus * pcp->pl_crew * money_mil * 5;
120     }
121 }
122
123 static void
124 planerepair(struct plnstr *pp, struct natstr *np, struct bp *bp, int etus)
125 {
126     int build;
127     int mvec[I_MAX + 1];
128     struct shpstr *carrier;
129     struct plchrstr *pcp = &plchr[(int)pp->pln_type];
130     struct sctstr *sp = getsectp(pp->pln_x, pp->pln_y);
131     int delta;
132     int mult;
133     int avail;
134     int used;
135
136     carrier = NULL;
137     if (pp->pln_ship >= 0) {
138         if (pp->pln_effic >= 80)
139             return;
140         carrier = getshipp(pp->pln_ship);
141         if (CANT_HAPPEN(!carrier))
142             return;
143         if (carrier->shp_off)
144             return;
145         if (relations_with(carrier->shp_own, pp->pln_own) != ALLIED)
146             return;
147     } else {
148         if (relations_with(sp->sct_own, pp->pln_own) != ALLIED)
149             return;
150     }
151
152     if (sp->sct_off)
153         return;
154     mult = 1;
155     if (np->nat_level[NAT_TLEV] < pp->pln_tech * 0.85)
156         mult = 2;
157
158     if (pp->pln_effic == 100)
159         return;
160
161     if (!player->simulation)
162         avail = sp->sct_avail * 100;
163     else
164         avail = bp_get_avail(bp, sp) * 100;
165     if (carrier)
166         avail += etus * carrier->shp_item[I_MILIT] / 2;
167
168     delta = roundavg((double)avail / pcp->pl_bwork);
169     if (delta <= 0)
170         return;
171     if (delta > (int)((float)etus * plane_grow_scale))
172         delta = (int)((float)etus * plane_grow_scale);
173     if (delta > 100 - pp->pln_effic)
174         delta = 100 - pp->pln_effic;
175
176     memset(mvec, 0, sizeof(mvec));
177     mvec[I_MILIT] = pcp->pl_crew;
178     mvec[I_LCM] = pcp->pl_lcm;
179     mvec[I_HCM] = pcp->pl_hcm;
180     build = get_materials(sp, bp, mvec, delta);
181
182     if (carrier)
183         build = delta;
184
185     used = build * pcp->pl_bwork;
186     /*
187      * I didn't use roundavg here, because I want to
188      * penalize the player with a large number of planes.
189      */
190     if (!player->simulation)
191         avail = (sp->sct_avail * 100 - used) / 100;
192     else
193         avail = (bp_get_avail(bp, sp) * 100 - used) / 100;
194
195     if (avail < 0)
196         avail = 0;
197     if (!player->simulation)
198         sp->sct_avail = avail;
199     else
200         bp_put_avail(bp, sp, avail);
201
202     if (sp->sct_type != SCT_AIRPT)
203         build /= 3;
204     if (carrier) {
205         if ((pp->pln_effic + build) > 80)
206             build = 80 - pp->pln_effic;
207     }
208
209     np->nat_money -= mult * build * pcp->pl_cost / 100.0;
210
211     if (!player->simulation)
212         pp->pln_effic += (signed char)build;
213 }