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