]> git.pond.sub.org Git - empserver/blob - src/lib/update/land.c
update budget: Fix civ counting for happiness and education
[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, eff_lost;
93     double cost;
94
95     if (!player->simulation)
96         if (lp->lnd_retreat < min)
97             lp->lnd_retreat = min;
98
99     if (build == 1) {
100         if (!lp->lnd_off && budget->money >= 0)
101             landrepair(lp, np, bp, etus, budget);
102         if (!player->simulation)
103             lp->lnd_off = 0;
104     } else {
105         budget->oldowned_civs += lp->lnd_item[I_CIVIL];
106         mult = 1;
107         if (np->nat_level[NAT_TLEV] < lp->lnd_tech * 0.85)
108             mult = 2;
109         if (lcp->l_flags & L_ENGINEER)
110             mult *= 3;
111         budget->bm[BUDG_LND_MAINT].count++;
112         cost = mult * etus * -money_land * lcp->l_cost;
113         if (budget->money < cost && !player->simulation) {
114             eff_lost = etus / 5;
115             if (lp->lnd_effic - eff_lost < LAND_MINEFF)
116                 eff_lost = lp->lnd_effic - LAND_MINEFF;
117             if (eff_lost > 0) {
118                 wu(0, lp->lnd_own, "%s lost %d%% to lack of maintenance\n",
119                    prland(lp), eff_lost);
120                 lp->lnd_effic -= eff_lost;
121             }
122         } else {
123             budget->bm[BUDG_LND_MAINT].money -= cost;
124             budget->money -= cost;
125         }
126
127         if (!player->simulation) {
128             /* feed */
129             if ((n = feed_land(lp, etus)) > 0) {
130                 wu(0, lp->lnd_own, "%d starved in %s%s\n",
131                    n, prland(lp),
132                    (lp->lnd_effic < LAND_MINEFF ? ", killing it" : ""));
133                 if (n > 10)
134                     nreport(lp->lnd_own, N_DIE_FAMINE, 0, 1);
135             }
136             /*
137              * do plague stuff.  plague can't break out on land units,
138              * but it can still kill people on them.
139              */
140             pstage = lp->lnd_pstage;
141             ptime = lp->lnd_ptime;
142             if (pstage != PLG_HEALTHY) {
143                 n = plague_people(np, lp->lnd_item, &pstage, &ptime, etus);
144                 switch (n) {
145                 case PLG_DYING:
146                     wu(0, lp->lnd_own,
147                        "PLAGUE deaths reported on %s\n", prland(lp));
148                     nreport(lp->lnd_own, N_DIE_PLAGUE, 0, 1);
149                     break;
150                 case PLG_INFECT:
151                     wu(0, lp->lnd_own, "%s battling PLAGUE\n", prland(lp));
152                     break;
153                 case PLG_INCUBATE:
154                     /* Are we still incubating? */
155                     if (n == pstage) {
156                         /* Yes. Will it turn "infectious" next time? */
157                         if (ptime <= etus) {
158                             /* Yes.  Report an outbreak. */
159                             wu(0, lp->lnd_own,
160                                "Outbreak of PLAGUE on %s!\n", prland(lp));
161                             nreport(lp->lnd_own, N_OUT_PLAGUE, 0, 1);
162                         }
163                     } else {
164                         /* It has already moved on to "infectious" */
165                         wu(0, lp->lnd_own,
166                            "%s battling PLAGUE\n", prland(lp));
167                     }
168                     break;
169                 case PLG_EXPOSED:
170                     /* Has the plague moved to "incubation" yet? */
171                     if (n != pstage) {
172                         /* Yes. Will it turn "infectious" next time? */
173                         if (ptime <= etus) {
174                             /* Yes.  Report an outbreak. */
175                             wu(0, lp->lnd_own,
176                                "Outbreak of PLAGUE on %s!\n", prland(lp));
177                             nreport(lp->lnd_own, N_OUT_PLAGUE, 0, 1);
178                         }
179                     }
180                     break;
181                 default:
182                     break;
183                 }
184                 lp->lnd_pstage = pstage;
185                 lp->lnd_ptime = ptime;
186             }
187         }                       /* end !player->simulation */
188     }
189 }
190
191 static void
192 landrepair(struct lndstr *land, struct natstr *np, struct bp *bp, int etus,
193            struct budget *budget)
194 {
195     struct lchrstr *lp = &lchr[(int)land->lnd_type];
196     int delta;
197     struct sctstr *sp, scratch_sect;
198     int build;
199     int avail;
200     int mult;
201     double cost;
202
203     if (land->lnd_effic == 100)
204         return;
205
206     sp = getsectp(land->lnd_x, land->lnd_y);
207     if (sp->sct_off)
208         return;
209
210     if (relations_with(sp->sct_own, land->lnd_own) != ALLIED)
211         return;
212
213     if (player->simulation) {
214         scratch_sect = *sp;
215         bp_to_sect(bp, &scratch_sect);
216         sp = &scratch_sect;
217     }
218
219     mult = 1;
220     if (np->nat_level[NAT_TLEV] < land->lnd_tech * 0.85)
221         mult = 2;
222
223     avail = sp->sct_avail * 100;
224
225     delta = avail / lp->l_bwork;
226     if (delta <= 0)
227         return;
228     if (delta > (int)((float)etus * land_grow_scale))
229         delta = (int)((float)etus * land_grow_scale);
230     if (delta > 100 - land->lnd_effic)
231         delta = 100 - land->lnd_effic;
232
233     build = get_materials(sp, lp->l_mat, delta);
234
235     if ((sp->sct_type != SCT_HEADQ) && (sp->sct_type != SCT_FORTR))
236         build /= 3;
237
238     avail = roundavg((avail - build * lp->l_bwork) / 100.0);
239     if (avail < 0)
240         avail = 0;
241     sp->sct_avail = avail;
242
243     bp_set_from_sect(bp, sp);
244     cost = mult * lp->l_cost * build / 100.0;
245     budget->bm[BUDG_LND_BUILD].count += !!build;
246     budget->bm[BUDG_LND_BUILD].money -= cost;
247     budget->money -= cost;
248     if (!player->simulation)
249         land->lnd_effic += (signed char)build;
250 }
251
252 /*
253  * returns the number who starved, if any.
254  */
255 static int
256 feed_land(struct lndstr *lp, int etus)
257 {
258     return feed_people(lp->lnd_item, etus);
259 }