]> git.pond.sub.org Git - empserver/blob - src/lib/common/wantupd.c
Update copyright notice
[empserver] / src / lib / common / wantupd.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2010, 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  *  wantupd.c: Check to se if an update is wanted and/or allowed.
29  *
30  *  Known contributors to this file:
31  *     Doug Hay, 1990
32  */
33
34 #include <config.h>
35
36 #include <time.h>
37 #include "file.h"
38 #include "game.h"
39 #include "misc.h"
40 #include "nat.h"
41 #include "optlist.h"
42 #include "prototypes.h"
43
44 static int
45 demand_update_time(time_t *now)
46 {
47     struct tm *tm;
48
49     tm = localtime(now);
50     return is_daytime_allowed(60 * tm->tm_hour + tm->tm_min,
51                               update_demandtimes);
52 }
53
54 int
55 demand_update_want(int *want, int *pop, int which)
56 {
57     natid cn;
58     struct natstr *natp;
59     int totpop;
60     int totwant;
61     int whichwants;
62
63     whichwants = totpop = totwant = 0;
64     for (cn = 1; (natp = getnatp(cn)); cn++) {
65         /* Only countries which are normal. */
66         /* Should probably include sanctuaries ..... */
67         if (natp->nat_stat == STAT_ACTIVE) {
68             totpop++;
69             if (natp->nat_update) {
70                 totwant++;
71                 if (which == cn)
72                     whichwants++;
73             }
74         }
75     }
76     *want = totwant;
77     *pop = totpop;
78     return whichwants;
79 }
80
81 /*
82  * Do we have sufficient votes for a demand update?
83  */
84 int
85 demand_check(void)
86 {
87     int want, pop;
88
89     demand_update_want(&want, &pop, 0);
90     if (want < update_wantmin) {
91         logerror("no demand update, want = %d, min = %d",
92                  want, update_wantmin);
93         return 0;
94     }
95
96     return 1;
97 }
98
99 /*
100  * Can we have an unscheduled demand update now?
101  */
102 int
103 demandupdatecheck(void)
104 {
105     time_t now = time(NULL);
106
107     return update_demand == UPD_DEMAND_ASYNC
108         && !updates_disabled()
109         && demand_update_time(&now)
110         && demand_check();
111 }