]> git.pond.sub.org Git - empserver/blob - src/lib/common/hours.c
7fadfc5462afef4869e905ff0fd6c42782fcc16f
[empserver] / src / lib / common / hours.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, 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  *  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  *     Markus Armbruster, 2004
35  */
36
37 #include <config.h>
38
39 #include <ctype.h>
40 #include <time.h>
41 #include "misc.h"
42 #include "optlist.h"
43 #include "prototypes.h"
44
45 static char *weekday(char *str, int *wday);
46 static char *daytime(char *str, int *min);
47 static char *daytime_range(char *str, int *from_min, int *to_min);
48
49 /*
50  * Is week day WDAY (Sunday is 0) allowed by restriction DAYS?
51  * If DAYS is not empty, it lists the allowed week day names.  See
52  * weekday() for syntax.
53  */
54 int
55 is_wday_allowed(int wday, char *days)
56 {
57     int wd;
58
59     if (!days || !*days)
60         return 1;
61
62     while (NULL != (days = weekday(days, &wd)))
63         if (wd == wday)
64             return 1;
65
66     return 0;
67 }
68
69 /*
70  * Is day time DTIME (minutes since midnight) allowed by restriction TIMES?
71  * If TIMES is not empty, it lists the allowed day time ranges.  See
72  * daytime_range() for syntax.
73  */
74 int
75 is_daytime_allowed(int dtime, char *times)
76 {
77     int from, to;
78
79     if (!times || !*times)
80         return 1;
81
82     while (NULL != (times = daytime_range(times, &from, &to)))
83         if (from <= dtime && dtime < to)
84             return 1;
85
86     return 0;
87 }
88
89 /*
90  * Can the game played at time T?
91  */
92 int
93 gamehours(time_t t)
94 {
95     struct tm *tm;
96
97     tm = localtime(&t);
98     if (!is_wday_allowed(tm->tm_wday, game_days))
99         return 0;
100     return is_daytime_allowed(60 * tm->tm_hour + tm->tm_min, game_hours);
101 }
102
103 /*
104  * Parse weekday name in STR.
105  * On success assign day number (Sunday is 0) to *WDAY and return
106  * pointer to first character not parsed.
107  * Else return NULL.
108  * Abbreviated names are recognized, but not single characters.
109  * Initial whitespace is ignored.
110  */
111 static char *
112 weekday(char *str, int *wday)
113 {
114     /*
115      * strptime() format " %a" would do fine, but it's XPG and Windows
116      * doesn't have it.  Besides, Empire accepts more abbreviations.
117      */
118     static char *day_name[7] = {
119         "sunday", "monday", "tuesday", "wednesday",
120         "thursday", "friday", "saturday" };
121     int i, j;
122
123     for (; isspace(*str); ++str) ;
124
125     for (i = 0; i < 7; ++i) {
126         j = 0;
127         while (str[j] && tolower(str[j]) == day_name[i][j])
128             ++j;
129         if (j > 1) {
130             *wday = i;
131             return str + j;
132         }
133     }
134
135     return NULL;
136 }
137
138 /*
139  * Parse day time in STR.
140  * On success store minutes since midnight in *MIN and return pointer
141  * to first character not parsed.
142  * Else return NULL.
143  * Time format is HOUR:MINUTE.  Initial whitespace is ignored.
144  */
145 char *
146 daytime(char *str, int *min)
147 {
148     /*
149      * strptime() format " %H:%M" would do fine, but it's XPG and
150      * Windows doesn't have it.
151      */
152     char *end;
153     unsigned long h, m;
154
155     h = strtoul(str, &end, 10);
156     if (end == str || h > 23)
157         return NULL;
158
159     if (*end++ != ':')
160         return NULL;
161
162     str = end;
163     m = strtoul(str, &end, 10);
164     if (end == str || m > 59)
165         return NULL;
166
167     *min = 60 * h + m;
168     return end;
169 }
170
171 /*
172  * Parse a day time range in STR.
173  * On success store minutes since midnight in *FROM and *TO, return
174  * pointer to first character not parsed.
175  * Else return NULL.
176  * Format is HOUR:MINUTE-HOUR:MINUTE.  Initial whitespace is ignored.
177  */
178 char *
179 daytime_range(char *str, int *from_min, int *to_min)
180 {
181     char *end;
182
183     end = daytime(str, from_min);
184     if (!end)
185         return NULL;
186     while (isspace(*end)) ++end;
187     if (*end++ != '-')
188         return NULL;
189     return daytime(end, to_min);
190 }