]> git.pond.sub.org Git - empserver/blob - src/lib/commands/turn.c
99dce03d8eaa605e7c033537b181693722bb39eb
[empserver] / src / lib / commands / turn.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, 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 "game.h"
39 #include "tel.h"
40 #include "commands.h"
41 #include "optlist.h"
42
43 /*
44  * Enable / disable logins and set the message of the day.
45  */
46 int
47 turn(void)
48 {
49     FILE *fptr;
50     struct telstr tgm;
51     char *p;
52     char buf[1024];
53     char msgbuf[MAXTELSIZE + 1]; /* UTF-8 */
54     char *msgfilepath;
55     int len;
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_FAIL;
68         }
69         game_ctrl_play(1);
70         return RET_OK;
71     } else {
72         msgfilepath = motdfil;
73     }
74
75     if (msgfilepath == downfil)
76         pr("Enter a message shown to countries trying to log in.\n");
77     else
78         pr("Enter a new message of the day.\n");
79
80     len = getele("The World", msgbuf);
81     if (len < 0) {
82         pr("Ignored\n");
83         if (msgfilepath == downfil)
84             pr("NOT disabling logins.\n");
85         return RET_FAIL;
86     }
87     if (len == 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_FAIL;
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_FAIL;
106     }
107
108     if (msgfilepath == downfil)
109         pr("Logins disabled.\n");
110
111     memset(&tgm, 0, sizeof(tgm));
112     time(&tgm.tel_date);
113     tgm.tel_length = len;
114     if (fwrite(&tgm, sizeof(tgm), 1, fptr) != 1 ||
115         fwrite(msgbuf, 1, tgm.tel_length, fptr) != tgm.tel_length) {
116         fclose(fptr);
117         pr("Something went wrong writing the message file.\n");
118         logerror("Could not properly write message file (%s).\n",
119             msgfilepath);
120         return RET_FAIL;
121     }
122     if (fclose(fptr)) {
123         pr("Something went wrong closing the message.\n");
124         logerror("Could not properly close message file (%s).\n",
125             msgfilepath);
126         return RET_FAIL;
127     }
128
129     pr("\n");
130
131     game_ctrl_play(0);
132     return RET_OK;
133 }