]> git.pond.sub.org Git - empserver/blob - src/lib/update/age.c
COPYING duplicates information from README. Remove. Move GPL from
[empserver] / src / lib / update / age.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  *  age.c: Age people
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  */
33
34 #include <config.h>
35
36 #include "misc.h"
37 #include "nat.h"
38 #include "file.h"
39 #include "update.h"
40 #include "gen.h"
41 #include "optlist.h"
42
43 void
44 age_levels(int etu)
45 {
46     register float best_tech;
47     register float best_res;
48     register struct natstr *np;
49     int i;
50     double level;
51     double delta;
52     int deltares;
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         /*
71          * age reserves by 1% per every 24 etus
72          */
73         deltares = -roundavg(np->nat_reserve * etu / 2400.0);
74         if (deltares != 0)
75             np->nat_reserve += deltares;
76         /* Chad Zabel - above number is negative ( was a -= there
77            which was wrong. */
78     }
79     best_tech /= 5;
80     best_res /= 5;
81     for (i = 0; NULL != (np = getnatp(i)); i++) {
82         if (np->nat_stat < STAT_SANCT || np->nat_stat == STAT_GOD)
83             continue;
84         level = np->nat_level[NAT_TLEV];
85         if (level < best_tech && chance(0.2))
86             np->nat_level[NAT_TLEV] += (best_tech - level) / 3;
87         level = np->nat_level[NAT_RLEV];
88         if (level < best_res && chance(0.2))
89             np->nat_level[NAT_RLEV] += (best_res - level) / 3;
90     }
91 }