]> git.pond.sub.org Git - empserver/blob - src/lib/commands/mobu.c
(mobupdate): Fix argument of time().
[empserver] / src / lib / commands / mobu.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  *  mobu.c: Adjust mobility updating
29  * 
30  *  Known contributors to this file:
31  *     Steve McClure, 1996
32  */
33
34 #include "misc.h"
35 #include "player.h"
36 #include "var.h"
37 #include "xy.h"
38 #include "sect.h"
39 #include "nsc.h"
40 #include "nat.h"
41 #include "path.h"
42 #include "file.h"
43 #include "commands.h"
44 #include "optlist.h"
45 #include "server.h"
46 #include "prototypes.h"
47
48 #include <stdio.h>
49
50 int
51 mobupdate(void)
52 {
53     FILE *fp;
54     long minites;
55     struct mob_acc_globals timestamps;
56     time_t now;
57
58     if (!opt_MOB_ACCESS) {
59         pr("Command invalid - MOB_ACCESS is not enabled.\n");
60         return RET_FAIL;
61     }
62     if (!player->argp[1])
63         return RET_SYN;
64     if (*player->argp[1] == 'c')
65         minites = -1;
66     else
67         minites = atol(player->argp[1]) * 60;
68     time(&now);
69 #if !defined(_WIN32)
70     if ((fp = fopen(timestampfil, "r+")) == NULL) {
71 #else
72     if ((fp = fopen(timestampfil, "r+b")) == NULL) {
73 #endif
74         logerror("Unable to edit timestamp file.");
75     } else {
76         rewind(fp);
77         fread(&timestamps, sizeof(timestamps), 1, fp);
78         if (minites < 0) {
79             fclose(fp);
80             if (updating_mob)
81                 pr("Mobility updating is enabled.");
82             else {
83                 pr("Mobility updating will come back on around %s",
84                    ctime(&timestamps.starttime));
85                 pr("within 3 minutes, depending on when the server checks.");
86             }
87             return 0;
88         }
89         timestamps.timestamp = now;
90         timestamps.starttime = now + minites;
91         rewind(fp);
92         fwrite(&timestamps, sizeof(timestamps), 1, fp);
93         fclose(fp);
94         if (now >= timestamps.starttime) {
95             pr("Turning on mobility updating.");
96             update_all_mob();
97             updating_mob = 1;
98         } else if (updating_mob == 1) {
99             pr("Turning off mobility updating.\n\r");
100             pr("Mobility updating will come back on around %s",
101                ctime(&timestamps.starttime));
102             pr("within 3 minutes, depending on when the server checks.");
103             update_all_mob();
104             updating_mob = 0;
105         } else if (updating_mob == 0) {
106             pr("Mobility updating is already off.\n\r");
107             pr("Mobility updating will come back on around %s",
108                ctime(&timestamps.starttime));
109             pr("within 3 minutes, depending on when the server checks.");
110         }
111     }
112
113     return 0;
114 }