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