]> git.pond.sub.org Git - empserver/blob - src/lib/commands/turn.c
Break inclusion cycle: prototypes.h and commands.h included each
[empserver] / src / lib / commands / turn.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 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  *  turn.c: Turn the game on, off, or set the login message.
29  * 
30  *  Known contributors to this file:
31  *     Marc Olzheim, 2004
32  */
33
34 #include <config.h>
35
36 #include <errno.h>
37 #if !defined(_WIN32)
38 #include <unistd.h>
39 #endif
40 #include "tel.h"
41 #include "commands.h"
42 #include "optlist.h"
43
44 /*
45  * Enable / disable logins and set the message of the day.
46  */
47 int
48 turn(void)
49 {
50     FILE *fptr;
51     struct telstr tgm;
52     char *p;
53     char buf[1024];
54     char msgbuf[MAXTELSIZE + 1]; /* UTF-8 */
55     char *msgfilepath;
56
57     p = getstarg(player->argp[1], "on, off or motd? ", buf);
58     if (!p)
59         return RET_SYN;
60     if (strcmp(p, "off") == 0) {
61         msgfilepath = downfil;
62     } else if (strcmp(p, "on") == 0) {
63         pr("Removing no-login message and re-enabling logins.\n");
64         if ((unlink(downfil) == -1) && (errno != ENOENT)) {
65             pr("Could not remove no-login file, logins still disabled.\n");
66             logerror("Could not remove no-login file (%s).\n", downfil);
67             return RET_SYS;
68         }
69         return RET_OK;
70     } else {
71         msgfilepath = motdfil;
72     }
73
74     if (msgfilepath == downfil)
75         pr("Enter a message shown to countries trying to log in.\n");
76     else
77         pr("Enter a new message of the day.\n");
78
79     time(&tgm.tel_date);
80     tgm.tel_length = getele("The World", msgbuf);
81
82     if (tgm.tel_length < 0) {
83         pr("Ignored\n");
84         if (msgfilepath == downfil)
85             pr("NOT disabling logins.\n");
86         return RET_SYN;
87     } else if (tgm.tel_length == 0) {
88         if (msgfilepath == motdfil) {
89             pr("Removing exsting motd.\n");
90             if ((unlink(msgfilepath) == -1) && (errno != ENOENT)) {
91                 pr("Could not remove motd.\n");
92                 logerror("Could not remove motd file (%s).\n",
93                          msgfilepath);
94                 return RET_SYS;
95             }
96             return RET_OK;
97         } else
98             pr("Writing empty no-login message.\n");
99     }
100
101     fptr = fopen(msgfilepath, "wb");
102     if (fptr == NULL) {
103         pr("Something went wrong opening the message file.\n");
104         logerror("Could not open message file (%s).\n", msgfilepath);
105         return RET_SYS;
106     }
107
108     if (msgfilepath == downfil)
109         pr("Logins disabled.\n");
110
111     if ((fwrite(&tgm, sizeof(tgm), 1, fptr) != 1) ||
112         (fwrite(msgbuf, tgm.tel_length, 1, fptr) != 1)) {
113         fclose(fptr);
114         pr("Something went wrong writing the message file.\n");
115         logerror("Could not properly write message file (%s).\n",
116             msgfilepath);
117         return RET_SYS;
118     }
119     if (fclose(fptr)) {
120         pr("Something went wrong closing the message.\n");
121         logerror("Could not properly close message file (%s).\n",
122             msgfilepath);
123         return RET_SYS;
124     }
125
126     pr("\n");
127
128     return RET_OK;
129 }