]> git.pond.sub.org Git - empserver/blob - src/lib/common/hours.c
Don't declare library functions, include appropriate headers.
[empserver] / src / lib / common / hours.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  *  hours.c: Game hours determination; is it legal to play now?
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  *     Doug Hay, 1998
33  *     Steve McClure, 1998
34  */
35
36 #include <errno.h>
37 #include <stdio.h>
38 #include "misc.h"
39 #include "nat.h"
40 #include "tel.h"
41 #include "proto.h"
42 #include "com.h"
43 #include "deity.h"
44 #include "keyword.h"
45 #include "file.h"
46 #include "common.h"
47 #include "optlist.h"
48
49 #include <time.h>
50
51 /*
52  * returns true if game can be played now.
53  * Sets the number of minutes until the hours
54  * function must be re-called.
55  */
56 int
57 gamehours(time_t now, int *hour)
58 {
59     register s_char *bp;
60     register struct tm *tm;
61     int day;
62     int curtime;
63     int okday[7];
64     int tomorrow;
65
66     tm = localtime(&now);
67     curtime = tm->tm_min + tm->tm_hour * 60;
68     bp = game_days;
69     if (*bp != 0) {
70         for (day = 0; day < 7; day++)
71             okday[day] = 0;
72         while (NULL != (bp = kw_parse(CF_WEEKDAY, bp, &day)))
73             okday[day] = 1;
74     } else {
75         for (day = 0; day < 7; day++)
76             okday[day] = 1;
77     }
78     if (!okday[tm->tm_wday])
79         return 0;
80     bp = game_hours;
81     if (*bp != 0) {
82         while (NULL != (bp = kw_parse(CF_TIMERANGE, bp, hour)))
83             if (curtime >= hour[0] && curtime < hour[1])
84                 break;
85         if (bp == 0)
86             return 0;
87     } else {
88         hour[0] = 0;
89         hour[1] = 24 * 60;
90     }
91     tomorrow = tm->tm_wday + 1;
92     if (tomorrow >= 7)
93         tomorrow = 0;
94     return 1;
95 }