]> git.pond.sub.org Git - empserver/blob - src/lib/update/nat.c
Declare all configuration variables in optlist.h. Include that
[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     level_easy[0] = easy_tech;
108     level_log[0] = tech_log_base;
109 /*
110  * End ugly hack.
111  */
112
113     if (level > level_easy[type]) {
114         logbase = level_log[type];
115         easy = level_easy[type];
116         above_easy = level - easy;
117         if (flag)
118             above = above_easy / logx(logbase + above_easy, logbase);
119         else
120             above = logx(above_easy + 1.0, logbase);
121         if (above > 250)
122             above = 250;
123         return ((above) < 0) ? easy : (easy + above);
124     } else
125         return level;
126 }
127
128 void
129 prod_nat(int etu)
130 {
131     extern long money[MAXNOC];
132     extern long pops[MAXNOC];
133     extern long sea_money[MAXNOC];
134     extern long lnd_money[MAXNOC];
135     extern long air_money[MAXNOC];
136     struct natstr *np;
137     float hap;
138     float edu;
139     float hap_edu;
140     long pop;
141     double rlev;
142     double tlev;
143     double tech[MAXNOC];
144     double res[MAXNOC];
145     double newvalue;
146     natid n;
147     int cn, cont;
148
149     for (n = 0; NULL != (np = getnatp(n)); n++) {
150         if ((np->nat_stat & STAT_NORM) == 0)
151             continue;
152         /*
153          * hap_edu: the more education people have, the
154          * more happiness they want.
155          */
156         hap_edu = np->nat_level[NAT_ELEV];
157         hap_edu = 1.5 - ((hap_edu + 10.0) / (hap_edu + 20.0));
158         pop = pops[n] + 1;
159         /*
160          * get per-population happiness and education
161          * see what the total per-civilian production is
162          * for this time period.
163          */
164         hap = levels[n][NAT_HLEV] * hap_edu * hap_cons /
165             ((float)pop * etu);
166         edu = levels[n][NAT_ELEV] * edu_cons / ((float)pop * etu);
167         wu((natid)0, n, "%3.0f happiness, %3.0f education produced\n",
168            levels[n][NAT_HLEV], levels[n][NAT_ELEV]);
169         hap = limit_level(hap, NAT_HLEV, 1);
170         edu = limit_level(edu, NAT_ELEV, 1);
171         /*
172          * change the "moving average"...old happiness and
173          * education levels are weighted heavier than current
174          * production.
175          */
176         newvalue = (np->nat_level[NAT_HLEV] * hap_avg + hap * etu) /
177             (hap_avg + etu);
178         np->nat_level[NAT_HLEV] = newvalue;
179         newvalue = (np->nat_level[NAT_ELEV] * edu_avg + edu * etu) /
180             (edu_avg + etu);
181         np->nat_level[NAT_ELEV] = newvalue;
182         /*
183          * limit tech/research production
184          */
185         levels[n][NAT_TLEV] =
186             limit_level(levels[n][NAT_TLEV] / 1, NAT_TLEV, 0) * 1;
187         levels[n][NAT_RLEV] =
188             limit_level(levels[n][NAT_RLEV] / 1, NAT_RLEV, 0) * 1;
189         wu((natid)0, n,
190            "total pop is %d, yielding %4.2f hap, %4.2f edu\n",
191            pop - 1, hap, edu);
192     }
193     if (ally_factor > 0.0)
194         share_incr(res, tech);
195     else {
196         memset(res, 0, sizeof(res));
197         memset(tech, 0, sizeof(tech));
198     }
199     for (n = 0; NULL != (np = getnatp(n)); n++) {
200         if ((np->nat_stat & STAT_NORM) == 0)
201             continue;
202         tlev = levels[n][NAT_TLEV];
203         rlev = levels[n][NAT_RLEV];
204         if (tech[n] != 0.0 || res[n] != 0.0) {
205             wu((natid)0, n,
206                "%5.4f technology (%5.4f + %5.4f), ",
207                tlev + tech[n], tlev, tech[n]);
208             wu((natid)0, n,
209                "%5.4f research (%5.4f + %5.4f) produced\n",
210                rlev + res[n], rlev, res[n]);
211         } else
212             wu((natid)0, n,
213                "%5.4f tech, %5.4f research produced\n", tlev, rlev);
214         rlev += res[n];
215         tlev += tech[n];
216         if (rlev != 0.0)
217             np->nat_level[NAT_RLEV] += rlev;
218         if (tlev != 0.0)
219             np->nat_level[NAT_TLEV] += tlev;
220         if ((sea_money[n] != 0) || (air_money[n] != 0) ||
221             (lnd_money[n] != 0))
222             wu((natid)0, n,
223                "Army delta $%d, Navy delta $%d, Air force delta $%d\n",
224                lnd_money[n], sea_money[n], air_money[n]);
225         wu((natid)0, n, "money delta was $%d for this update\n",
226            np->nat_money - money[n]);
227         if (opt_LOSE_CONTACT) {
228             for (cn = 0; cn <= MAXNOC; cn++) {
229                 cont = getcontact(np, cn);
230                 if (cont > 0) {
231                     logerror("country %d at level %d with country %d.\n",
232                              n, cont, cn);
233                     setcont(n, cn, cont - 1);
234                 }
235             }
236         }
237     }
238 }
239
240 /*
241  * find out everyones increment
242  */
243 static void
244 share_incr(register double *res, register double *tech)
245 {
246     register struct natstr *np;
247     register struct natstr *other;
248     register natid i;
249     register natid j;
250     int rnc;
251     int tnc;
252
253     for (i = 0; NULL != (np = getnatp(i)); i++) {
254         res[i] = tech[i] = 0.0;
255         if ((np->nat_stat & STAT_INUSE) == 0)
256             continue;
257         if (np->nat_stat & STAT_GOD)
258             continue;
259         if (np->nat_stat == VIS)
260             continue;
261         rnc = tnc = 0;
262         for (j = 0; NULL != (other = getnatp(j)); j++) {
263             if (j == i)
264                 continue;
265             if (other->nat_stat & STAT_GOD)
266                 continue;
267             if (other->nat_stat == VIS)
268                 continue;
269             if ((other->nat_stat & STAT_INUSE) == 0)
270                 continue;
271             if (opt_HIDDEN) {
272                 if (!getcontact(np, j))
273                     continue;
274             }
275             if (!opt_ALL_BLEED) {
276                 if (getrel(np, j) != ALLIED)
277                     continue;
278                 if (getrel(other, i) != ALLIED)
279                     continue;
280                 res[i] += levels[j][NAT_RLEV];
281                 tech[i] += levels[j][NAT_TLEV];
282                 rnc++;
283                 tnc++;
284             } else {
285                 if (levels[j][NAT_TLEV] > 0.001) {
286                     tech[i] += levels[j][NAT_TLEV];
287                     tnc++;
288                 }
289                 if (levels[j][NAT_RLEV] > 0.001) {
290                     res[i] += levels[j][NAT_RLEV];
291                     rnc++;
292                 }
293             }
294         }
295         if (rnc == 0 && tnc == 0)
296             continue;
297         if (rnc > 0) {
298             res[i] /= rnc * ally_factor;
299         }
300         if (tnc > 0) {
301             tech[i] /= tnc * ally_factor;
302         }
303 /*              logerror("Country #%d gets %g res from %d allies, %g tech from %d allies", i, res[i], rnc, tech[i], tnc);*/
304     }
305 }