]> git.pond.sub.org Git - empserver/blob - src/lib/player/player.c
Update copyright notice
[empserver] / src / lib / player / player.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  *  player.c: Main command loop for a player
29  *
30  *  Known contributors to this file:
31  *     Steve McClure, 2000
32  *     Markus Armbruster, 2004-2008
33  *     Ron Koenderink, 2004-2007
34  */
35
36 #include <config.h>
37
38 #include <errno.h>
39 #include <stdio.h>
40 #include "com.h"
41 #include "empio.h"
42 #include "empthread.h"
43 #include "file.h"
44 #include "journal.h"
45 #include "misc.h"
46 #include "nat.h"
47 #include "optlist.h"
48 #include "player.h"
49 #include "proto.h"
50 #include "prototypes.h"
51 #include "tel.h"
52
53
54 static int command(void);
55 static int status(void);
56
57 struct player *player;
58
59 void
60 player_main(struct player *p)
61 {
62     struct natstr *natp;
63     char buf[128];
64
65     p->state = PS_PLAYING;
66     player = p;
67     time(&player->curup);
68     update_timeused_login(player->curup);
69     show_motd();
70     if (init_nats() < 0) {
71         pr("Server confused, try again later\n");
72         return;
73     }
74     natp = getnatp(player->cnum);
75     if (!may_play_now(natp, player->curup, 0))
76         return;
77     if (natp->nat_stat != STAT_VIS
78         && natp->nat_last_login
79         && (strcmp(natp->nat_hostaddr, player->hostaddr)
80             || strcmp(natp->nat_userid, player->userid))) {
81         pr("Last connection from: %s", ctime(&natp->nat_last_login));
82         pr("                  to: %s",
83            natp->nat_last_login <= natp->nat_last_logout
84            ? ctime(&natp->nat_last_logout) : "?");
85         pr("                  by: %s@%s\n",
86            natp->nat_userid,
87            *natp->nat_hostname ? natp->nat_hostname : natp->nat_hostaddr);
88     }
89     strcpy(natp->nat_userid, player->userid);
90     strcpy(natp->nat_hostname, player->hostname);
91     strcpy(natp->nat_hostaddr, player->hostaddr);
92     natp->nat_last_login = player->curup;
93     putnat(natp);
94     journal_login();
95     if (natp->nat_flags & NF_INFORM && natp->nat_tgms > 0) {
96         if (natp->nat_tgms == 1)
97             pr("You have a new telegram waiting ...\n");
98         else
99             pr("You have %s new telegrams waiting ...\n",
100                numstr(buf, natp->nat_tgms));
101         natp->nat_tgms = 0;
102     }
103
104     while (status() && command()) {
105         player->aborted = player->eof;
106         empth_yield();
107     }
108     /* #*# I put the following line in to prevent server crash -KHS */
109     natp = getnatp(player->cnum);
110     time(&natp->nat_last_logout);
111     putnat(natp);
112     update_timeused(natp->nat_last_logout);
113     enforce_minimum_session_time();
114     pr("Bye-bye\n");
115     journal_logout();
116 }
117
118 static int
119 command(void)
120 {
121     char *redir;                /* UTF-8 */
122     char scanspace[1024];
123
124     if (getcommand(player->combuf) < 0)
125         return 0;
126
127     if (!may_play_now(getnatp(player->cnum), time(NULL), 1))
128         return 0;
129
130     if (parse(player->combuf, scanspace, player->argp, player->comtail,
131               &player->condarg, &redir) < 0) {
132         pr("See \"info Syntax\"?\n");
133     } else {
134         if (dispatch(player->combuf, redir) < 0)
135             pr("Try \"list of commands\" or \"info\"\n");
136     }
137     return 1;
138 }
139
140 static int
141 status(void)
142 {
143     struct natstr *natp;
144     int old_nstat;
145     char buf[128];
146
147     if (player->eof || player->state == PS_SHUTDOWN)
148         return 0;
149     natp = getnatp(player->cnum);
150     if (player->dolcost > 100.0)
151         pr("That just cost you $%.2f\n", player->dolcost);
152     else if (player->dolcost < -100.0)
153         pr("You just made $%.2f\n", -player->dolcost);
154     if (player->dolcost != 0.0) {
155         /*
156          * Hackish work around for a race condition in the nightly
157          * build's regression tests: sometimes the update starts right
158          * after the force command yields, sometimes a bit later.  If
159          * it is late, we use one random number here, for the bye,
160          * and throwing off the random sequence.
161          */
162         natp->nat_money -= roundavg(player->dolcost);
163         player->dolcost = 0.0;
164     }
165
166     old_nstat = player->nstat;
167     player_set_nstat(player, natp);
168     if ((old_nstat & MONEY) && !(player->nstat & MONEY))
169         pr("You are now broke; industries are on strike.\n");
170     if (!(old_nstat & MONEY) && (player->nstat & MONEY))
171         pr("You are no longer broke!\n");
172
173     time(&player->curup);
174     if (!may_play_now(natp, player->curup, 0))
175         return 0;
176     if (player->btused) {
177         natp->nat_btu -= player->btused;
178         player->btused = 0;
179     }
180     if (natp->nat_tgms > 0) {
181         if (!(natp->nat_flags & NF_INFORM)) {
182             if (natp->nat_tgms == 1)
183                 pr("You have a new telegram waiting ...\n");
184             else
185                 pr("You have %s new telegrams waiting ...\n",
186                    numstr(buf, natp->nat_tgms));
187             natp->nat_tgms = 0;
188         }
189     }
190     if (natp->nat_ann > 0) {
191         if (natp->nat_ann == 1)
192             pr("You have a new announcement waiting ...\n");
193         else
194             pr("You have %s new announcements waiting ...\n",
195                numstr(buf, natp->nat_ann));
196         natp->nat_ann = 0;
197     }
198     if (natp->nat_stat == STAT_ACTIVE && (player->nstat & CAP) == 0)
199         pr("You lost your capital... better designate one (see info capital)\n");
200     putnat(natp);
201     return 1;
202 }
203
204 /*
205  * XXX This whole mess should be redone; execute block should
206  * start with "exec start", and should end with "exec end".
207  * We'll wait until 1.2 I guess.
208  */
209 int
210 execute(void)
211 {
212     char buf[1024];
213     int failed;
214     char *p;
215     char *redir;                /* UTF-8 */
216     char scanspace[1024];
217
218     failed = 0;
219
220     if (player->comtail[1])
221         p = player->comtail[1];
222     else
223         p = getstring("File? ", buf);
224     if (p == NULL || *p == '\0')
225         return RET_SYN;
226     prexec(p);
227
228     while (!failed && status()) {
229         player->nstat &= ~EXEC;
230         if (recvclient(buf, sizeof(buf)) < 0)
231             break;
232         if (parse(buf, scanspace, player->argp, player->comtail,
233                   &player->condarg, &redir) < 0) {
234             failed = 1;
235             continue;
236         }
237         pr("\nExecute : %s\n", buf);
238         if (redir) {
239             pr("Execute : redirection not supported\n");
240             failed = 1;
241         } else if (dispatch(buf, NULL) < 0)
242             failed = 1;
243     }
244     if (failed) {
245         while (recvclient(buf, sizeof(buf)) >= 0) ;
246     }
247
248     pr("Execute : %s\n", failed ? "aborted" : "terminated");
249     player->eof = 0;
250     return RET_OK;
251 }
252
253 int
254 show_motd(void)
255 {
256     FILE *motd_fp;
257     struct telstr tgm;
258     char buf[MAXTELSIZE + 1];   /* UTF-8 */
259
260     if ((motd_fp = fopen(motdfil, "rb")) == NULL) {
261         if (errno == ENOENT)
262             return RET_OK;
263         else {
264             pr ("Could not open motd.\n");
265             logerror("Could not open motd (%s).\n", motdfil);
266             return RET_FAIL;
267         }
268     }
269     if (fread(&tgm, sizeof(tgm), 1, motd_fp) != 1) {
270         logerror("bad header on login message (motdfil)");
271         fclose(motd_fp);
272         return RET_FAIL;
273     }
274     if (tgm.tel_length >= (long)sizeof(buf)) {
275         logerror("text length (%ld) is too long for login message (motdfil)", tgm.tel_length);
276         fclose(motd_fp);
277         return RET_FAIL;
278     }
279     if (fread(buf, tgm.tel_length, 1, motd_fp) != 1) {
280         logerror("bad length %ld on login message", tgm.tel_length);
281         fclose(motd_fp);
282         return RET_FAIL;
283     }
284     buf[tgm.tel_length] = 0;
285     uprnf(buf);
286     fclose(motd_fp);
287     return RET_OK;
288 }
289
290 int
291 quit(void)
292 {
293     player->state = PS_SHUTDOWN;
294     return RET_OK;
295 }
296
297 char *
298 praddr(struct player *p)
299 {
300     return prbuf("%s@%s", p->userid,
301                  *p->hostname ? p->hostname : p->hostaddr);
302 }