]> git.pond.sub.org Git - empserver/blob - src/lib/update/land.c
budget: Fix treasury tracking
[empserver] / src / lib / update / land.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  *  land.c: Do production for land units
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Thomas Ruschak, 1992
32  *     Steve McClure, 1996
33  *     Markus Armbruster, 2006-2016
34  */
35
36 #include <config.h>
37
38 #include <math.h>
39 #include "chance.h"
40 #include "file.h"
41 #include "land.h"
42 #include "lost.h"
43 #include "nat.h"
44 #include "news.h"
45 #include "optlist.h"
46 #include "plague.h"
47 #include "player.h"
48 #include "prototypes.h"
49 #include "update.h"
50
51 static void upd_land(struct lndstr *, int, struct bp *, int);
52 static void landrepair(struct lndstr *, struct natstr *, struct bp *,
53                        int, struct budget *);
54 static int feed_land(struct lndstr *, int);
55
56 void
57 prod_land(int etus, int natnum, struct bp *bp, int build)
58                 /* build = 1, maintain = 0 */
59 {
60     struct lndstr *lp;
61     struct sctstr *sp;
62     int i;
63
64     for (i = 0; (lp = getlandp(i)); i++) {
65         if (lp->lnd_own == 0)
66             continue;
67         if (lp->lnd_own != natnum)
68             continue;
69         if (lp->lnd_effic < LAND_MINEFF) {
70             makelost(EF_LAND, lp->lnd_own, lp->lnd_uid,
71                      lp->lnd_x, lp->lnd_y);
72             lp->lnd_own = 0;
73             continue;
74         }
75
76         sp = getsectp(lp->lnd_x, lp->lnd_y);
77         if (sp->sct_type == SCT_SANCT)
78             continue;
79         upd_land(lp, etus, bp, build);
80     }
81 }
82
83 static void
84 upd_land(struct lndstr *lp, int etus, struct bp *bp, int build)
85                /* build = 1, maintain = 0 */
86 {
87     struct budget *budget = &nat_budget[lp->lnd_own];
88     struct lchrstr *lcp = &lchr[lp->lnd_type];
89     struct natstr *np = getnatp(lp->lnd_own);
90     int pstage, ptime;
91     int min = morale_base - (int)np->nat_level[NAT_HLEV];
92     int n, mult, cost, eff_lost;
93
94     if (!player->simulation)
95         if (lp->lnd_retreat < min)
96             lp->lnd_retreat = min;
97
98     if (build == 1) {
99         if (!lp->lnd_off && budget->money >= 0)
100             landrepair(lp, np, bp, etus, budget);
101         if (!player->simulation)
102             lp->lnd_off = 0;
103     } else {
104         mult = 1;
105         if (np->nat_level[NAT_TLEV] < lp->lnd_tech * 0.85)
106             mult = 2;
107         if (lcp->l_flags & L_ENGINEER)
108             mult *= 3;
109         budget->bm[BUDG_LND_MAINT].count++;
110         cost = -(mult * etus * MIN(0.0, money_land * lcp->l_cost));
111         if (budget->money < cost && !player->simulation) {
112             eff_lost = etus / 5;
113             if (lp->lnd_effic - eff_lost < LAND_MINEFF)
114                 eff_lost = lp->lnd_effic - LAND_MINEFF;
115             if (eff_lost > 0) {
116                 wu(0, lp->lnd_own, "%s lost %d%% to lack of maintenance\n",
117                    prland(lp), eff_lost);
118                 lp->lnd_effic -= eff_lost;
119             }
120         } else {
121             budget->bm[BUDG_LND_MAINT].money -= cost;
122             budget->money -= cost;
123         }
124
125         if (!player->simulation) {
126             /* feed */
127             if ((n = feed_land(lp, etus)) > 0) {
128                 wu(0, lp->lnd_own, "%d starved in %s%s\n",
129                    n, prland(lp),
130                    (lp->lnd_effic < LAND_MINEFF ? ", killing it" : ""));
131                 if (n > 10)
132                     nreport(lp->lnd_own, N_DIE_FAMINE, 0, 1);
133             }
134             /*
135              * do plague stuff.  plague can't break out on land units,
136              * but it can still kill people on them.
137              */
138             pstage = lp->lnd_pstage;
139             ptime = lp->lnd_ptime;
140             if (pstage != PLG_HEALTHY) {
141                 n = plague_people(np, lp->lnd_item, &pstage, &ptime, etus);
142                 switch (n) {
143                 case PLG_DYING:
144                     wu(0, lp->lnd_own,
145                        "PLAGUE deaths reported on %s\n", prland(lp));
146                     nreport(lp->lnd_own, N_DIE_PLAGUE, 0, 1);
147                     break;
148                 case PLG_INFECT:
149                     wu(0, lp->lnd_own, "%s battling PLAGUE\n", prland(lp));
150                     break;
151                 case PLG_INCUBATE:
152                     /* Are we still incubating? */
153                     if (n == pstage) {
154                         /* Yes. Will it turn "infectious" next time? */
155                         if (ptime <= etus) {
156                             /* Yes.  Report an outbreak. */
157                             wu(0, lp->lnd_own,
158                                "Outbreak of PLAGUE on %s!\n", prland(lp));
159                             nreport(lp->lnd_own, N_OUT_PLAGUE, 0, 1);
160                         }
161                     } else {
162                         /* It has already moved on to "infectious" */
163                         wu(0, lp->lnd_own,
164                            "%s battling PLAGUE\n", prland(lp));
165                     }
166                     break;
167                 case PLG_EXPOSED:
168                     /* Has the plague moved to "incubation" yet? */
169                     if (n != pstage) {
170                         /* Yes. Will it turn "infectious" next time? */
171                         if (ptime <= etus) {
172                             /* Yes.  Report an outbreak. */
173                             wu(0, lp->lnd_own,
174                                "Outbreak of PLAGUE on %s!\n", prland(lp));
175                             nreport(lp->lnd_own, N_OUT_PLAGUE, 0, 1);
176                         }
177                     }
178                     break;
179                 default:
180                     break;
181                 }
182                 lp->lnd_pstage = pstage;
183                 lp->lnd_ptime = ptime;
184             }
185         }                       /* end !player->simulation */
186     }
187 }
188
189 static void
190 landrepair(struct lndstr *land, struct natstr *np, struct bp *bp, int etus,
191            struct budget *budget)
192 {
193     struct lchrstr *lp = &lchr[(int)land->lnd_type];
194     int delta;
195     struct sctstr *sp, scratch_sect;
196     int build;
197     int avail;
198     int mult;
199     int cost;
200
201     if (land->lnd_effic == 100)
202         return;
203
204     sp = getsectp(land->lnd_x, land->lnd_y);
205     if (sp->sct_off)
206         return;
207
208     if (relations_with(sp->sct_own, land->lnd_own) != ALLIED)
209         return;
210
211     if (player->simulation) {
212         scratch_sect = *sp;
213         bp_to_sect(bp, &scratch_sect);
214         sp = &scratch_sect;
215     }
216
217     mult = 1;
218     if (np->nat_level[NAT_TLEV] < land->lnd_tech * 0.85)
219         mult = 2;
220
221     avail = sp->sct_avail * 100;
222
223     delta = avail / lp->l_bwork;
224     if (delta <= 0)
225         return;
226     if (delta > (int)((float)etus * land_grow_scale))
227         delta = (int)((float)etus * land_grow_scale);
228     if (delta > 100 - land->lnd_effic)
229         delta = 100 - land->lnd_effic;
230
231     build = get_materials(sp, lp->l_mat, delta);
232
233     if ((sp->sct_type != SCT_HEADQ) && (sp->sct_type != SCT_FORTR))
234         build /= 3;
235
236     avail = roundavg((avail - build * lp->l_bwork) / 100.0);
237     if (avail < 0)
238         avail = 0;
239     sp->sct_avail = avail;
240
241     bp_set_from_sect(bp, sp);
242     cost = roundavg(mult * lp->l_cost * build / 100.0);
243     budget->bm[BUDG_LND_BUILD].count += !!build;
244     budget->bm[BUDG_LND_BUILD].money -= cost;
245     budget->money -= cost;
246     if (!player->simulation)
247         land->lnd_effic += (signed char)build;
248 }
249
250 /*
251  * returns the number who starved, if any.
252  */
253 static int
254 feed_land(struct lndstr *lp, int etus)
255 {
256     return feed_people(lp->lnd_item, etus);
257 }