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