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