]> git.pond.sub.org Git - empserver/blob - src/lib/common/wantupd.c
b1861dc86b05959a28a495da9ec7d7350b3cba54
[empserver] / src / lib / common / wantupd.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  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 <stdio.h>
35 #if !defined(_WIN32)
36 #include <unistd.h>
37 #endif
38 #include "misc.h"
39 #include "nat.h"
40 #include "file.h"
41 #include "wantupd.h"
42 #include "optlist.h"
43 #include "common.h"
44
45 #include <sys/types.h>
46 #include <fcntl.h>
47 #include <time.h>
48
49 void
50 update_policy_check(void)
51 {
52     if (update_policy < 0)
53         update_policy = UDP_DEFAULT;
54     if (update_policy > UDP_MAX)
55         update_policy = UDP_DEFAULT;
56     if (update_demandpolicy < 0)
57         update_demandpolicy = UDDEM_DEFAULT;
58     if (update_demandpolicy > UDDEM_MAX)
59         update_demandpolicy = UDDEM_DEFAULT;
60     if (update_wantmin < 0)
61         update_wantmin = 0;
62     if (update_wantmin > MAXNOC)
63         update_wantmin = MAXNOC;
64     if (blitz_time < 0)
65         blitz_time = 0;
66 }
67
68 static int
69 demand_update_time(time_t *now)
70 {
71     struct tm *tm;
72
73     tm = localtime(now);
74     return is_daytime_allowed(60 * tm->tm_hour + tm->tm_min,
75                               update_demandtimes);
76 }
77
78 /* When is the next regularly scheduled update from now. */
79 static void
80 regular_update_time(time_t *now, time_t *tim, time_t *delta)
81 {
82     time_t tw;
83     int secs_per_update;
84
85     tw = *now + adj_update;
86     secs_per_update = etu_per_update * s_p_etu;
87     *delta = secs_per_update - (tw % secs_per_update);
88     *tim = *now + *delta;
89 }
90
91 /* Is this a valid time for a scheduled update. */
92 static int
93 scheduled_update_time(time_t *now)
94 {
95     struct tm *tm;
96
97     tm = localtime(now);
98     return is_daytime_near(60 * tm->tm_hour + tm->tm_min,
99                            update_times, hourslop);
100 }
101
102 static int
103 next_scheduled_time(time_t *now, time_t *tim, time_t *delta)
104 {
105     struct tm *tm;
106     int d;
107
108     tm = localtime(now);
109     d = min_to_next_daytime(60 * tm->tm_hour + tm->tm_min, update_times);
110     if (d < 0)
111         return 0;
112     *delta = 60 * d;
113     *tim = *now + *delta - tm->tm_sec;
114     return 1;
115 }
116
117 int
118 demand_update_want(int *want, int *pop, int which)
119 {
120     natid cn;
121     struct natstr *natp;
122     int totpop;
123     int totwant;
124     int whichwants;
125
126     whichwants = totpop = totwant = 0;
127     for (cn = 1; 0 != (natp = getnatp(cn)); cn++) {
128         /* Only countries which are normal. */
129         /* Should probably include sanctuaries ..... */
130         if (((natp->nat_stat & NORM) == NORM) &&
131             ((natp->nat_stat & GOD) != GOD)) {
132             totpop++;
133             if ((natp->nat_update & WUPD_WANT) == WUPD_WANT) {
134                 totwant++;
135                 if (which == cn)
136                     whichwants++;
137             }
138         }
139     }
140     *want = totwant;
141     *pop = totpop;
142     return (whichwants);
143 }
144
145 static int
146 demand_check(void)
147 {
148     struct natstr *natp;
149     int want, pop, cn, veto;
150     time_t now;
151     time_t cur;
152
153     time(&cur);
154
155     if (0 == update_wantmin) {
156         logerror("no demand update allowed, wantmin = 0");
157         return (0);
158     }
159
160     demand_update_want(&want, &pop, 0);
161     if (want < update_wantmin) {
162         logerror("no demand update, want = %d, min = %d",
163                  want, update_wantmin);
164         return (0);
165     }
166
167     time(&now);
168     if (!demand_update_time(&now)) {
169         logerror("no demand update, not within hours allowed.");
170         return (0);
171     }
172
173
174     veto = 0;
175     for (cn = 1; 0 != (natp = getnatp(cn)); cn++) {
176         if (((natp->nat_stat & NORM) == NORM) &&
177             ((natp->nat_stat & GOD) != GOD)) {
178             if (natp->nat_missed >= update_missed)
179                 veto = cn + 1;
180         }
181     }
182
183     if (veto) {
184         logerror("no demand update, %d has missed more than %d updates",
185                  veto - 1, update_missed);
186         return (0);
187     }
188
189     return (1);
190 }
191
192 /* Check if enough countries want an update,
193  * and if demand updates are allowed now.
194  */
195 int
196 demandupdatecheck(void)
197 {
198     if (UDDEM_COMSET != update_demandpolicy) {
199         logerror("no demand update, not policy.");
200         return (0);
201     }
202
203     return (demand_check());
204 }
205
206 /* Is it time for a regular or scheduled update?
207  * As well, if none of the above, check to see if
208  * a demand update can occur.
209  */
210 int
211 updatetime(time_t *now)
212 {
213     if (opt_BLITZ && update_policy == UDP_BLITZ) {
214         logerror("BLITZ Update.");
215         return (1);
216     }
217
218     if (UDP_NORMAL == update_policy) {
219         logerror("Regular update, etu type.");
220         return (1);
221     }
222
223     if (UDP_TIMES == update_policy) {
224         if (scheduled_update_time(now)) {
225             logerror("Scheduled update.");
226             return (1);
227         }
228     }
229     if (opt_DEMANDUPDATE) {
230         if (demand_check()) {
231             logerror("Demand update, at check time.");
232             return (1);
233         }
234     }
235     return (0);
236 }
237
238 /* Return the time, and delta seconds, of the next update.
239  * If the policy is no regular updates, return the time of
240  * the next possible check.
241  */
242 void
243 next_update_time(time_t *now, time_t *tim, time_t *delta)
244                         /* From when */
245                         /* Time of next update */
246                         /* Seconds till next update */
247 {
248     time_t stim, sdelta;
249
250     switch (update_policy) {
251     case UDP_NORMAL:
252         regular_update_time(now, tim, delta);
253         break;
254     case UDP_TIMES:
255         if (!next_scheduled_time(now, tim, delta))
256             regular_update_time(now, tim, delta);
257         break;
258     case UDP_BLITZ:
259         *delta = (blitz_time * 60) - (*now % (blitz_time * 60));
260         *tim = *now + *delta;
261         break;
262
263     case UDP_NOREG:
264     default:
265         regular_update_time(now, tim, delta);
266         if (next_scheduled_time(now, &stim, &sdelta)) {
267             if (*delta > sdelta) {
268                 *delta = sdelta;
269                 *tim = stim;
270             }
271         }
272         break;
273     }
274 }
275
276 void
277 next_update_check_time(time_t *now, time_t *tim, time_t *delta)
278                         /* From when */
279                         /* Time of next update */
280                         /* Seconds till next update check */
281 {
282     time_t stim, sdelta;
283
284     switch (update_policy) {
285     case UDP_NORMAL:
286         regular_update_time(now, tim, delta);
287         break;
288     case UDP_BLITZ:
289         *delta = (blitz_time * 60) - (*now % (blitz_time * 60));
290         *tim = *now + *delta;
291         break;
292     case UDP_TIMES:
293     case UDP_NOREG:
294     default:
295         regular_update_time(now, tim, delta);
296         if (next_scheduled_time(now, &stim, &sdelta)) {
297             if (*delta > sdelta) {
298                 *delta = sdelta;
299                 *tim = stim;
300             }
301         }
302     }
303 }
304
305 int
306 updates_disabled(void)
307 {
308     int fd;
309
310     if ((fd = open(disablefil, O_RDONLY, 0)) < 0)
311         return 0;
312     close(fd);
313     return 1;
314 }