]> git.pond.sub.org Git - empserver/blob - src/lib/player/empdis.c
COPYING duplicates information from README. Remove. Move GPL from
[empserver] / src / lib / player / empdis.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  *  empdis.c: Empire dispatcher stuff
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1994
32  *     Steve McClure, 2000
33  */
34
35 #include <config.h>
36
37 #include "prototypes.h"
38 #include <stdio.h>
39 #include "misc.h"
40 #include "player.h"
41 #include "nat.h"
42 #include "tel.h"
43 #include "proto.h"
44 #include "com.h"
45 #include "file.h"
46 #include "empio.h"
47 #include "subs.h"
48 #include "common.h"
49 #include "optlist.h"
50
51 #include <fcntl.h>
52 #include <time.h>
53 #if !defined(_WIN32)
54 #include <unistd.h>
55 #endif
56 #include <signal.h>
57
58 #define KEEP_COMMANDS 50
59
60 /* ring buffer of most recent command prompts and commands, user text */
61 static char player_commands[KEEP_COMMANDS][1024 + 8];
62
63 /* the slot holding the most recent command in player_commands[] */
64 static int player_commands_index = 0;
65
66 /*
67  * Get a command from the current player into COMBUFP[1024], in UTF-8.
68  * This may block for input, yielding the processor.  Flush buffered
69  * output when blocking, to make sure player sees the prompt.
70  * Return command's byte length on success, -1 on error.
71  */
72 int
73 getcommand(char *combufp)
74 {
75     struct natstr *natp = getnatp(player->cnum);
76     char buf[1024];             /* user text */
77
78     if (++player_commands_index >= KEEP_COMMANDS)
79         player_commands_index = 0;
80     sprintf(player_commands[player_commands_index], "%3d %3d [prompt]",
81             player_commands_index, player->cnum);
82
83     do {
84         prprompt(natp->nat_minused, natp->nat_btu);
85         buf[0] = 0;
86         if (recvclient(buf, 1024) < 0) {
87             return -1;
88         }
89     } while (buf[0] == 0);
90
91     if (++player_commands_index >= KEEP_COMMANDS)
92         player_commands_index = 0;
93     sprintf(player_commands[player_commands_index], "%3d %3d %s",
94             player_commands_index, player->cnum, buf);
95
96     if (player->flags & PF_UTF8)
97         return copy_utf8_no_funny(combufp, buf);
98     return copy_ascii_no_funny(combufp, buf);
99 }
100
101 void
102 init_player_commands(void)
103 {
104     int i;
105
106     for (i = 0; i < KEEP_COMMANDS; ++i)
107         *player_commands[i] = 0;
108 }
109
110 void
111 log_last_commands(void)
112 {
113     int i;
114
115     logerror("Most recent player commands:");
116     for (i = player_commands_index; i >= 0; --i)
117         if (*player_commands[i])
118             logerror("%s", player_commands[i] + 4);
119     for (i = KEEP_COMMANDS - 1; i > player_commands_index; --i)
120         if (*player_commands[i])
121             logerror("%s", player_commands[i] + 4);
122 }
123
124 int
125 explain(void)
126 {
127     register s_char *format;
128     register int i;
129
130     pr("\t\tCurrent EMPIRE Command List\n"
131        "\t\t------- ------ ------- ----\n"
132        "Initial number is cost in B.T.U. units.\n"
133        "Next 2 chars (if present) are:\n"
134        "$ - must be non-broke\tc -- must have capital\n"
135        "Args in [brackets] are optional.\n"
136        "All-caps args in <angle brackets>"
137        " have the following meanings:\n"
138        "  <NUM> :: a number in unspecified units\n"
139        "  <COMM> :: a commodity such as `food', `guns', etc\n"
140        "  <VAR> :: a commodity such as `food', `guns', etc\n"
141        "  <TYPE> :: an item type such as `ship', `plane', etc\n");
142     for (i = 0; (format = player_coms[i].c_form) != 0; i++) {
143         if ((player_coms[i].c_permit & player->ncomstat) ==
144             player_coms[i].c_permit) {
145             pr("%2d ", player_coms[i].c_cost);
146             if ((player_coms[i].c_permit & MONEY) == MONEY)
147                 pr("$");
148             else
149                 pr(" ");
150             if ((player_coms[i].c_permit & CAP) == CAP)
151                 pr("c");
152             else
153                 pr(" ");
154             pr(" %s\n", format);
155         }
156     }
157     pr("For further info on command syntax see \"info Syntax\".\n");
158     return RET_OK;
159 }
160
161 /*
162  * returns true if down
163  */
164 int
165 gamedown(void)
166 {
167     FILE *down_fp;
168     struct telstr tgm;
169     char buf[MAXTELSIZE + 1];   /* UTF-8 */
170
171     if (player->god)
172         return 0;
173     if ((down_fp = fopen(downfil, "rb")) == NULL)
174         return 0;
175     if (fread(&tgm, sizeof(tgm), 1, down_fp) != 1) {
176         logerror("bad header on login message (downfil)");
177         fclose(down_fp);
178         return 1;
179     }
180     if (tgm.tel_length >= (long)sizeof(buf)) {
181         logerror("text length (%ld) is too long for login message (downfil)", tgm.tel_length);
182         fclose(down_fp);
183         return 1;
184     }
185     if (fread(buf, tgm.tel_length, 1, down_fp) != 1) {
186         logerror("bad length %ld on login message", tgm.tel_length);
187         fclose(down_fp);
188         return 1;
189     }
190     buf[tgm.tel_length] = 0;
191     uprnf(buf);
192     pr("\nThe game is down\n");
193     fclose(down_fp);
194     return 1;
195 }
196
197 void
198 daychange(time_t now)
199 {
200     struct natstr *natp;
201     struct tm *tm;
202
203     natp = getnatp(player->cnum);
204     tm = localtime(&now);
205     if ((tm->tm_yday % 128) != natp->nat_dayno) {
206         natp->nat_dayno = tm->tm_yday % 128;
207         natp->nat_minused = 0;
208     }
209 }
210
211 int
212 getminleft(time_t now, int mpd)
213 {
214     struct tm *tm;
215     int nminleft;
216     struct natstr *natp;
217     int n;
218
219     tm = localtime(&now);
220     natp = getnatp(player->cnum);
221     nminleft = mpd - natp->nat_minused;
222     n = 60 * 24 - (tm->tm_min + tm->tm_hour * 60);
223     if (n < nminleft)
224         nminleft = n;
225     return nminleft;
226 }