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