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