]> 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-2008, 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  *  age.c: Age people
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  */
33
34 #include <config.h>
35
36 #include "update.h"
37
38 void
39 age_levels(int etu)
40 {
41     float best_tech, best_res;
42     struct natstr *np;
43     int i;
44     double level;
45     double delta;
46     int deltares;
47
48     best_tech = 0.0;
49     best_res = 0.0;
50     for (i = 0; NULL != (np = getnatp(i)); i++) {
51         if (np->nat_stat != STAT_ACTIVE)
52             continue;
53
54         if (best_tech < np->nat_level[NAT_TLEV])
55             best_tech = np->nat_level[NAT_TLEV];
56         if (best_res < np->nat_level[NAT_RLEV])
57             best_res = np->nat_level[NAT_RLEV];
58         if (level_age_rate != 0.0) {
59             delta = np->nat_level[NAT_RLEV] * etu / (100 * level_age_rate);
60             np->nat_level[NAT_RLEV] -= delta;
61             delta = np->nat_level[NAT_TLEV] * etu / (100 * level_age_rate);
62             np->nat_level[NAT_TLEV] -= delta;
63         }
64         /*
65          * age reserves by 1% per every 24 etus
66          */
67         deltares = -roundavg(np->nat_reserve * etu / 2400.0);
68         if (deltares != 0)
69             np->nat_reserve += deltares;
70         /* Chad Zabel - above number is negative ( was a -= there
71            which was wrong. */
72     }
73     best_tech /= 5;
74     best_res /= 5;
75     for (i = 0; NULL != (np = getnatp(i)); i++) {
76         if (np->nat_stat < STAT_SANCT || np->nat_stat == STAT_GOD)
77             continue;
78         level = np->nat_level[NAT_TLEV];
79         if (level < best_tech && chance(0.2))
80             np->nat_level[NAT_TLEV] += (best_tech - level) / 3;
81         level = np->nat_level[NAT_RLEV];
82         if (level < best_res && chance(0.2))
83             np->nat_level[NAT_RLEV] += (best_res - level) / 3;
84     }
85 }