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