]> git.pond.sub.org Git - empserver/blob - src/lib/update/age.c
License upgrade to GPL version 3 or later
[empserver] / src / lib / update / age.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, 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  *  age.c: Age people
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  */
32
33 #include <config.h>
34
35 #include "update.h"
36
37 int
38 age_people(int n, int etu)
39 {
40     /* age by 1% per 24 etus */
41     return roundavg(n * (1.0 - etu / 2400.0));
42 }
43
44 void
45 age_levels(int etu)
46 {
47     float best_tech, best_res;
48     struct natstr *np;
49     int i;
50     double level;
51     double delta;
52
53     best_tech = 0.0;
54     best_res = 0.0;
55     for (i = 0; NULL != (np = getnatp(i)); i++) {
56         if (np->nat_stat != STAT_ACTIVE)
57             continue;
58
59         if (best_tech < np->nat_level[NAT_TLEV])
60             best_tech = np->nat_level[NAT_TLEV];
61         if (best_res < np->nat_level[NAT_RLEV])
62             best_res = np->nat_level[NAT_RLEV];
63         if (level_age_rate != 0.0) {
64             delta = np->nat_level[NAT_RLEV] * etu / (100 * level_age_rate);
65             np->nat_level[NAT_RLEV] -= delta;
66             delta = np->nat_level[NAT_TLEV] * etu / (100 * level_age_rate);
67             np->nat_level[NAT_TLEV] -= delta;
68         }
69         np->nat_reserve = age_people(np->nat_reserve, etu);
70     }
71     best_tech /= 5;
72     best_res /= 5;
73     for (i = 0; NULL != (np = getnatp(i)); i++) {
74         if (np->nat_stat < STAT_SANCT || np->nat_stat == STAT_GOD)
75             continue;
76         level = np->nat_level[NAT_TLEV];
77         if (level < best_tech && chance(0.2))
78             np->nat_level[NAT_TLEV] += (best_tech - level) / 3;
79         level = np->nat_level[NAT_RLEV];
80         if (level < best_res && chance(0.2))
81             np->nat_level[NAT_RLEV] += (best_res - level) / 3;
82     }
83 }