]> git.pond.sub.org Git - empserver/blob - src/lib/update/main.c
update: Separate MOB_ACCESS from normal mobility update
[empserver] / src / lib / update / main.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2016, 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  *  main.c: World update main function
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1994
31  *     Steve McClure, 1996
32  *     Doug Hay, 1998
33  *     Markus Armbruster, 2006-2016
34  */
35
36 #include <config.h>
37
38 #include <sys/resource.h>
39 #include "empthread.h"
40 #include "file.h"
41 #include "game.h"
42 #include "journal.h"
43 #include "optlist.h"
44 #include "prototypes.h"
45 #include "server.h"
46 #include "unit.h"
47 #include "update.h"
48
49 struct budget nat_budget[MAXNOC];
50
51 void
52 update_main(void)
53 {
54     int etu = etu_per_update;
55     struct rusage rus1, rus2;
56     int n;
57     int i;
58     struct natstr *np;
59
60     logerror("production update (%d etus)", etu);
61     getrusage(RUSAGE_SELF, &rus1);
62     game_record_update(time(NULL));
63     journal_update(etu);
64     /* Ensure back-to-back production reports are separate: */
65     for (n = 0; n < MAXNOC; n++)
66         clear_telegram_is_new(n);
67
68     /* Credit the turn's remaining MOB_ACCESS mobility */
69     if (opt_MOB_ACCESS)
70         mob_access_all();
71
72     if (opt_AUTO_POWER)
73         update_power();
74
75     /*
76      * set up all the variables which get used in the
77      * sector production routine (for producing education,
78      * happiness, and printing out the state of the nation)
79      */
80     memset(nat_budget, 0, sizeof(nat_budget));
81     for (n = 0; n < MAXNOC; n++) {
82         if (!(np = getnatp(n)))
83             continue;
84         nat_budget[n].start_money = nat_budget[n].money = np->nat_money;
85     }
86
87     logerror("preparing sectors...");
88     prepare_sects(etu);
89     logerror("done preparing sectors.");
90     logerror("producing for countries...");
91     for (i = 0; i < MAXNOC; i++) {
92         if (!(np = getnatp(i)))
93             continue;
94         if (np->nat_stat == STAT_SANCT) {
95             continue;
96         }
97
98         /* maintain units */
99         prod_ship(etu, i, NULL, 0);
100         prod_plane(etu, i, NULL, 0);
101         prod_land(etu, i, NULL, 0);
102
103         /* produce all sects */
104         produce_sect(np, etu, NULL);
105
106         /* build units */
107         prod_ship(etu, i, NULL, 1);
108         prod_plane(etu, i, NULL, 1);
109         prod_land(etu, i, NULL, 1);
110     }
111     logerror("done producing for countries.");
112
113     finish_sects(etu);
114     prod_nat(etu);
115     age_levels(etu);
116     mob_inc_all(etu);
117
118     if (update_demand == UPD_DEMAND_SCHED
119         || update_demand == UPD_DEMAND_ASYNC)
120         update_removewants();
121     /* flush all mem file objects to disk */
122     ef_flush(EF_NATION);
123     ef_flush(EF_SECTOR);
124     ef_flush(EF_SHIP);
125     ef_flush(EF_PLANE);
126     ef_flush(EF_LAND);
127     unit_cargo_init();
128     delete_old_announcements();
129     delete_old_news();
130     delete_old_lostitems();
131     getrusage(RUSAGE_SELF, &rus2);
132     logerror("End update %g user %g system",
133              rus2.ru_utime.tv_sec + rus2.ru_utime.tv_usec / 1e6
134              - (rus1.ru_utime.tv_sec + rus1.ru_utime.tv_usec / 1e6),
135              rus2.ru_stime.tv_sec + rus2.ru_stime.tv_usec / 1e6
136              - (rus1.ru_stime.tv_sec + rus1.ru_stime.tv_usec / 1e6));
137 }