]> git.pond.sub.org Git - empserver/blob - src/lib/update/nat.c
(bzero, bcopy): Obsolete BSDisms; remove. Remove some calls without
[empserver] / src / lib / update / nat.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  nat.c: Accumulate tech, edu, research and happiness.
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  *     Steve McClure, 1997
33  */
34
35 #include <math.h>
36 #include "misc.h"
37 #include "var.h"
38 #include "sect.h"
39 #include "nat.h"
40 #include "item.h"
41 #include "news.h"
42 #include "file.h"
43 #include "xy.h"
44 #include "optlist.h"
45 #include "update.h"
46 #include "subs.h"
47
48 /*
49  * hap and edu avg mean that the weight on current happiness is
50  *  (cur_hap * hap_avg + hap_prod * etu) / (hap_avg + etu);
51  * same for education.
52  * right now, happiness has 1 day (48 etu) average, prod of 10 from
53  * initial level of 0 yields (1) 1.42, (6) 6.03, (12) 8.42, (18) 9.37
54  *
55  * education has 4 day (192 etu) average, prod of 10 from initial
56  * level of 0 yields (1) 0.4, (6) 2.2, (12) 3.9, (18) 5.2.
57  */
58
59 extern float hap_avg;
60 extern float edu_avg;
61 extern float ally_factor;
62
63 static void share_incr(register double *, register double *);
64
65 /*
66  * for values below the "easy level" values, production is
67  * as normal.  For values above "easy", production gets harder
68  * based on an equation in "limit_level()" in update/nat.c.
69  * Basically, the smaller the the values for "level_log", the
70  * smaller return on investment above level_easy[] values.
71  */
72 /*
73  * Damn! I hate this, but ...
74  * The values here for tech are *not* the real ones.
75  * They are changed later in the limit_level routine.
76  */
77                         /*tech   res   edu   hap */
78 float level_easy[4] = { 0.75, 0.75, 5.00, 5.00 };
79 float level_log[4] = { 1.75, 2.00, 4.00, 6.00 };
80
81 float levels[MAXNOC][4];
82
83 /*
84  * technique to limit the sharpers who turn entire countries
85  * into tech plants overnight...
86  */
87
88 double
89 logx(double d, double base)
90 {
91     if (base == 1.0)
92         return d;
93     return log10(d) / log10(base);
94 }
95
96 static double
97 limit_level(double level, int type, int flag)
98 {
99     double above_easy;
100     double above;
101     double logbase;
102     double easy;
103
104 /*
105  * Begin ugly hack.
106  */
107     extern float easy_tech, tech_log_base;
108
109     level_easy[0] = easy_tech;
110     level_log[0] = tech_log_base;
111 /*
112  * End ugly hack.
113  */
114
115     if (level > level_easy[type]) {
116         logbase = level_log[type];
117         easy = level_easy[type];
118         above_easy = level - easy;
119         if (flag)
120             above = above_easy / logx(logbase + above_easy, logbase);
121         else
122             above = logx(above_easy + 1.0, logbase);
123         if (above > 250)
124             above = 250;
125         return ((above) < 0) ? easy : (easy + above);
126     } else
127         return level;
128 }
129
130 void
131 prod_nat(int etu)
132 {
133     extern long money[MAXNOC];
134     extern long pops[MAXNOC];
135     extern double hap_cons, edu_cons;
136     extern long sea_money[MAXNOC];
137     extern long lnd_money[MAXNOC];
138     extern long air_money[MAXNOC];
139     struct natstr *np;
140     float hap;
141     float edu;
142     float hap_edu;
143     long pop;
144     double rlev;
145     double tlev;
146     double tech[MAXNOC];
147     double res[MAXNOC];
148     double newvalue;
149     natid n;
150     int cn, cont;
151
152     for (n = 0; NULL != (np = getnatp(n)); n++) {
153         if ((np->nat_stat & STAT_NORM) == 0)
154             continue;
155         /*
156          * hap_edu: the more education people have, the
157          * more happiness they want.
158          */
159         hap_edu = np->nat_level[NAT_ELEV];
160         hap_edu = 1.5 - ((hap_edu + 10.0) / (hap_edu + 20.0));
161         pop = pops[n] + 1;
162         /*
163          * get per-population happiness and education
164          * see what the total per-civilian production is
165          * for this time period.
166          */
167         hap = levels[n][NAT_HLEV] * hap_edu * hap_cons /
168             ((float)pop * etu);
169         edu = levels[n][NAT_ELEV] * edu_cons / ((float)pop * etu);
170         wu((natid)0, n, "%3.0f happiness, %3.0f education produced\n",
171            levels[n][NAT_HLEV], levels[n][NAT_ELEV]);
172         hap = limit_level(hap, NAT_HLEV, 1);
173         edu = limit_level(edu, NAT_ELEV, 1);
174         /*
175          * change the "moving average"...old happiness and
176          * education levels are weighted heavier than current
177          * production.
178          */
179         newvalue = (np->nat_level[NAT_HLEV] * hap_avg + hap * etu) /
180             (hap_avg + etu);
181         np->nat_level[NAT_HLEV] = newvalue;
182         newvalue = (np->nat_level[NAT_ELEV] * edu_avg + edu * etu) /
183             (edu_avg + etu);
184         np->nat_level[NAT_ELEV] = newvalue;
185         /*
186          * limit tech/research production
187          */
188         levels[n][NAT_TLEV] =
189             limit_level(levels[n][NAT_TLEV] / 1, NAT_TLEV, 0) * 1;
190         levels[n][NAT_RLEV] =
191             limit_level(levels[n][NAT_RLEV] / 1, NAT_RLEV, 0) * 1;
192         wu((natid)0, n,
193            "total pop is %d, yielding %4.2f hap, %4.2f edu\n",
194            pop - 1, hap, edu);
195     }
196     if (ally_factor > 0.0)
197         share_incr(res, tech);
198     else {
199         memset(res, 0, sizeof(res));
200         memset(tech, 0, sizeof(tech));
201     }
202     for (n = 0; NULL != (np = getnatp(n)); n++) {
203         if ((np->nat_stat & STAT_NORM) == 0)
204             continue;
205         tlev = levels[n][NAT_TLEV];
206         rlev = levels[n][NAT_RLEV];
207         if (tech[n] != 0.0 || res[n] != 0.0) {
208             wu((natid)0, n,
209                "%5.4f technology (%5.4f + %5.4f), ",
210                tlev + tech[n], tlev, tech[n]);
211             wu((natid)0, n,
212                "%5.4f research (%5.4f + %5.4f) produced\n",
213                rlev + res[n], rlev, res[n]);
214         } else
215             wu((natid)0, n,
216                "%5.4f tech, %5.4f research produced\n", tlev, rlev);
217         rlev += res[n];
218         tlev += tech[n];
219         if (rlev != 0.0)
220             np->nat_level[NAT_RLEV] += rlev;
221         if (tlev != 0.0)
222             np->nat_level[NAT_TLEV] += tlev;
223         if ((sea_money[n] != 0) || (air_money[n] != 0) ||
224             (lnd_money[n] != 0))
225             wu((natid)0, n,
226                "Army delta $%d, Navy delta $%d, Air force delta $%d\n",
227                lnd_money[n], sea_money[n], air_money[n]);
228         wu((natid)0, n, "money delta was $%d for this update\n",
229            np->nat_money - money[n]);
230         if (opt_LOSE_CONTACT) {
231             for (cn = 0; cn <= MAXNOC; cn++) {
232                 cont = getcontact(np, cn);
233                 if (cont > 0) {
234                     logerror("country %d at level %d with country %d.\n",
235                              n, cont, cn);
236                     setcont(n, cn, cont - 1);
237                 }
238             }
239         }
240     }
241 }
242
243 /*
244  * find out everyones increment
245  */
246 static void
247 share_incr(register double *res, register double *tech)
248 {
249     register struct natstr *np;
250     register struct natstr *other;
251     register natid i;
252     register natid j;
253     int rnc;
254     int tnc;
255
256     for (i = 0; NULL != (np = getnatp(i)); i++) {
257         res[i] = tech[i] = 0.0;
258         if ((np->nat_stat & STAT_INUSE) == 0)
259             continue;
260         if (np->nat_stat & STAT_GOD)
261             continue;
262         if (np->nat_stat == VIS)
263             continue;
264         rnc = tnc = 0;
265         for (j = 0; NULL != (other = getnatp(j)); j++) {
266             if (j == i)
267                 continue;
268             if (other->nat_stat & STAT_GOD)
269                 continue;
270             if (other->nat_stat == VIS)
271                 continue;
272             if ((other->nat_stat & STAT_INUSE) == 0)
273                 continue;
274             if (opt_HIDDEN) {
275                 if (!getcontact(np, j))
276                     continue;
277             }
278             if (!opt_ALL_BLEED) {
279                 if (getrel(np, j) != ALLIED)
280                     continue;
281                 if (getrel(other, i) != ALLIED)
282                     continue;
283                 res[i] += levels[j][NAT_RLEV];
284                 tech[i] += levels[j][NAT_TLEV];
285                 rnc++;
286                 tnc++;
287             } else {
288                 if (levels[j][NAT_TLEV] > 0.001) {
289                     tech[i] += levels[j][NAT_TLEV];
290                     tnc++;
291                 }
292                 if (levels[j][NAT_RLEV] > 0.001) {
293                     res[i] += levels[j][NAT_RLEV];
294                     rnc++;
295                 }
296             }
297         }
298         if (rnc == 0 && tnc == 0)
299             continue;
300         if (rnc > 0) {
301             res[i] /= rnc * ally_factor;
302         }
303         if (tnc > 0) {
304             tech[i] /= tnc * ally_factor;
305         }
306 /*              logerror("Country #%d gets %g res from %d allies, %g tech from %d allies", i, res[i], rnc, tech[i], tnc);*/
307     }
308 }