]> git.pond.sub.org Git - empserver/blob - src/server/timestamp.c
Update copyright notice.
[empserver] / src / server / timestamp.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  *  timestamp.c: Timestamp writer/maintainer thread
29  * 
30  *  Known contributors to this file:
31  *     Steve McClure, 1996
32  *     Doug Hay, 1998
33  */
34
35 #include <config.h>
36
37 #include <stdio.h>
38 #include <time.h>
39 #include "empthread.h"
40 #include "misc.h"
41 #include "optlist.h"
42 #include "prototypes.h"
43 #include "server.h"
44
45 /*ARGSUSED*/
46 void
47 mobility_check(void *unused)
48 {
49     struct mob_acc_globals timestamps;
50     time_t now;
51     FILE *fp;
52
53     while (1) {
54         time(&now);
55 /*              logerror("Updating timestamp file at %s", ctime(&now));*/
56         if ((fp = fopen(timestampfil, "rb+")) == NULL) {
57             logerror("Unable to edit timestamp file.");
58             continue;
59         }
60         rewind(fp);
61         fread(&timestamps, sizeof(timestamps), 1, fp);
62         timestamps.timestamp = now;
63         rewind(fp);
64         fwrite(&timestamps, sizeof(timestamps), 1, fp);
65         fclose(fp);
66         if (!gamehours(now)) {
67             if (updating_mob == 1) {
68                 update_all_mob();
69                 logerror("Turning off mobility updating (gamehours).");
70                 updating_mob = 0;
71             }
72         } else if (updating_mob == 1 && now < timestamps.starttime) {
73             logerror("Turning off mobility updating at %s", ctime(&now));
74             update_all_mob();
75             updating_mob = 0;
76         } else if (updating_mob == 0 && now >= timestamps.starttime) {
77             logerror("Turning on mobility updating at %s", ctime(&now));
78             update_all_mob();
79             updating_mob = 1;
80         }
81         now = now + 180;        /* Every 3 minutes */
82         empth_sleep(now);
83
84     }
85     /*NOTREACHED*/
86 }
87
88 void
89 mobility_init(void)
90 {
91     struct mob_acc_globals timestamps;
92     time_t now;
93     time_t lastsavedtime;
94     FILE *fp;
95
96     /* During downtime, we don't want mobility to accrue.  So, we look
97        at the timestamp file, and determine how far forward to push
98        mobility */
99
100     time(&now);
101     if ((fp = fopen(timestampfil, "rb+")) == NULL) {
102         logerror("Unable to edit timestamp file.");
103         /* FIXME safe to continue? */
104     } else {
105         rewind(fp);
106         fread(&timestamps, sizeof(timestamps), 1, fp);
107         lastsavedtime = timestamps.timestamp;
108         timestamps.timestamp = now;
109         rewind(fp);
110         fwrite(&timestamps, sizeof(timestamps), 1, fp);
111         fclose(fp);
112     }
113     time(&now);
114     logerror("Adjusting timestamps at %s", ctime(&now));
115     logerror("(was %s)", ctime(&lastsavedtime));
116     /* Update the timestamps to this point in time */
117     update_timestamps(lastsavedtime);
118     time(&now);
119     logerror("Done at %s", ctime(&now));
120
121     if (now >= timestamps.starttime && gamehours(now)) {
122         logerror("Turning on mobility updating.");
123         updating_mob = 1;
124     } else {
125         logerror("Turning off mobility updating.");
126         updating_mob = 0;
127     }
128 }