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