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