]> git.pond.sub.org Git - empserver/blob - src/lib/update/plane.c
Update copyright notice
[empserver] / src / lib / update / plane.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2013, 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-2011
33  */
34
35 #include <config.h>
36
37 #include "budg.h"
38 #include "lost.h"
39 #include "plane.h"
40 #include "player.h"
41 #include "ship.h"
42 #include "update.h"
43
44 static void planerepair(struct plnstr *, struct natstr *, struct bp *, int);
45 static void upd_plane(struct plnstr *, int, struct natstr *, struct bp *, int);
46
47 int
48 prod_plane(int etus, int natnum, struct bp *bp, int buildem)
49                  /* Build = 1, maintain =0 */
50 {
51     struct plnstr *pp;
52     struct natstr *np;
53     int n, k = 0;
54     int start_money;
55
56     for (n = 0; NULL != (pp = getplanep(n)); n++) {
57         if (pp->pln_own == 0)
58             continue;
59         if (pp->pln_own != natnum)
60             continue;
61         if (pp->pln_effic < PLANE_MINEFF) {
62             makelost(EF_PLANE, pp->pln_own, pp->pln_uid,
63                      pp->pln_x, pp->pln_y);
64             pp->pln_own = 0;
65             continue;
66         }
67
68         if (pln_is_in_orbit(pp)) {
69             if (!player->simulation && buildem == 0
70                 && !(pp->pln_flags & PLN_SYNCHRONOUS))
71                 move_sat(pp);
72             continue;
73         }
74
75         np = getnatp(pp->pln_own);
76         start_money = np->nat_money;
77         upd_plane(pp, etus, np, bp, buildem);
78         air_money[pp->pln_own] += np->nat_money - start_money;
79         if (buildem == 0 || np->nat_money != start_money)
80             k++;
81         if (player->simulation)
82             np->nat_money = start_money;
83     }
84
85     return k;
86 }
87
88 static void
89 upd_plane(struct plnstr *pp, int etus,
90           struct natstr *np, struct bp *bp, int build)
91 {
92     struct plchrstr *pcp = &plchr[(int)pp->pln_type];
93     int mult, cost, eff_lost;
94
95     if (build == 1) {
96         if (!pp->pln_off && np->nat_money >= 0)
97             planerepair(pp, np, bp, etus);
98         if (!player->simulation)
99             pp->pln_off = 0;
100     } else {
101         mult = 1;
102         if (np->nat_level[NAT_TLEV] < pp->pln_tech * 0.85)
103             mult = 2;
104         cost = -(mult * etus * MIN(0.0, pcp->pl_cost * money_plane));
105         if (np->nat_money < cost && !player->simulation) {
106             eff_lost = etus / 5;
107             if (pp->pln_effic - eff_lost < PLANE_MINEFF)
108                 eff_lost = pp->pln_effic - PLANE_MINEFF;
109             if (eff_lost > 0) {
110                 wu(0, pp->pln_own, "%s lost %d%% to lack of maintenance\n",
111                    prplane(pp), eff_lost);
112                 pp->pln_effic -= eff_lost;
113             }
114         } else {
115             np->nat_money -= cost;
116         }
117         /* flight pay is 5x the pay received by other military */
118         np->nat_money += etus * pcp->pl_crew * money_mil * 5;
119     }
120 }
121
122 static void
123 planerepair(struct plnstr *pp, struct natstr *np, struct bp *bp, int etus)
124 {
125     int build;
126     int mvec[I_MAX + 1];
127     struct shpstr *carrier;
128     struct plchrstr *pcp = &plchr[(int)pp->pln_type];
129     struct sctstr *sp = getsectp(pp->pln_x, pp->pln_y);
130     int delta;
131     int mult;
132     int avail;
133     int w_p_eff;
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     w_p_eff = PLN_BLD_WORK(pcp->pl_lcm, pcp->pl_hcm);
169     delta = roundavg((double)avail / w_p_eff);
170     if (delta <= 0)
171         return;
172     if (delta > (int)((float)etus * plane_grow_scale))
173         delta = (int)((float)etus * plane_grow_scale);
174     if (delta > 100 - pp->pln_effic)
175         delta = 100 - pp->pln_effic;
176
177     memset(mvec, 0, sizeof(mvec));
178     mvec[I_MILIT] = pcp->pl_crew;
179     mvec[I_LCM] = pcp->pl_lcm;
180     mvec[I_HCM] = pcp->pl_hcm;
181     build = get_materials(sp, bp, mvec, delta);
182
183     if (carrier)
184         build = delta;
185
186     used = build * w_p_eff;
187     /*
188      * I didn't use roundavg here, because I want to
189      * penalize the player with a large number of planes.
190      */
191     if (!player->simulation)
192         avail = (sp->sct_avail * 100 - used) / 100;
193     else
194         avail = (bp_get_avail(bp, sp) * 100 - used) / 100;
195
196     if (avail < 0)
197         avail = 0;
198     if (!player->simulation)
199         sp->sct_avail = avail;
200     else
201         bp_put_avail(bp, sp, avail);
202
203     if (sp->sct_type != SCT_AIRPT)
204         build /= 3;
205     if (carrier) {
206         if ((pp->pln_effic + build) > 80)
207             build = 80 - pp->pln_effic;
208     }
209
210     np->nat_money -= mult * build * pcp->pl_cost / 100.0;
211
212     if (!player->simulation)
213         pp->pln_effic += (signed char)build;
214 }