]> git.pond.sub.org Git - empserver/blob - src/lib/player/player.c
Change nation status from bits to a simple enum:
[empserver] / src / lib / player / player.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  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  *     
33  */
34
35 #include <config.h>
36
37 #include "prototypes.h"
38 #include <string.h>
39 #include "misc.h"
40 #include "player.h"
41 #include "proto.h"
42 #include "com.h"
43 #include "nat.h"
44 #include "sect.h"
45 #include "file.h"
46 #include "proto.h"
47 #include "empio.h"
48 #include "empthread.h"
49 #include "tel.h"
50 #include "gen.h"
51 #include "subs.h"
52 #include "common.h"
53 #include "optlist.h"
54
55 #if !defined(_WIN32)
56 #include <unistd.h>
57 #include <sys/time.h>
58 #endif
59 #include <stdio.h>
60 #include <errno.h>
61 #include <fcntl.h>
62
63 static int status(void);
64
65 struct player *player;
66
67 void
68 player_main(struct player *p)
69 {
70     struct natstr *natp;
71     int secs;
72     char buf[128];
73
74     p->state = PS_PLAYING;
75     player = p;
76     time(&player->lasttime);
77     time(&player->curup);
78     show_motd();
79     if (init_nats() < 0)
80         return;
81     natp = getnatp(player->cnum);
82     if (player->god && !match_user(authfil, player)) {
83         logerror("NON-AUTHed Login attempted by %s", praddr(player));
84         pr("You're not a deity!\n");
85         return;
86     }
87     if (!gamehours(player->curup)) {
88         pr("Empire hours restriction in force\n");
89         if (natp->nat_stat != STAT_GOD)
90             return;
91     }
92     daychange(player->curup);
93     if ((player->minleft = getminleft(player->curup, m_m_p_d)) <= 0) {
94         pr("Time exceeded today\n");
95         return;
96     }
97     if (natp->nat_stat != STAT_VIS
98         && natp->nat_last_login
99         && (strcmp(natp->nat_hostaddr, player->hostaddr)
100             || strcmp(natp->nat_userid, player->userid))) {
101         pr("Last connection from: %s", ctime(&natp->nat_last_login));
102         pr("                  to: %s",
103            natp->nat_last_login <= natp->nat_last_logout
104            ? ctime(&natp->nat_last_logout) : "?");
105         pr("                  by: %s@%s\n",
106            natp->nat_userid,
107            *natp->nat_hostname ? natp->nat_hostname : natp->nat_hostaddr);
108     }
109     strcpy(natp->nat_userid, player->userid);
110     strcpy(natp->nat_hostname, player->hostname);
111     strcpy(natp->nat_hostaddr, player->hostaddr);
112
113     time(&natp->nat_last_login);
114     putnat(natp);
115     if (natp->nat_flags & NF_INFORM && natp->nat_tgms > 0) {
116         if (natp->nat_tgms == 1)
117             pr("You have a new telegram waiting ...\n");
118         else
119             pr("You have %s new telegrams waiting ...\n",
120                numstr(buf, natp->nat_tgms));
121         natp->nat_tgms = 0;
122     }
123
124     while (status()) {
125         if (command() == 0 && !player->aborted)
126             break;
127         player->aborted = 0;
128         empth_yield();
129     }
130     /* #*# I put the following line in to prevent server crash -KHS */
131     natp = getnatp(player->cnum);
132     /*
133      * randomly round up to the nearest minute,
134      * charging at least 15 seconds.
135      */
136     time(&natp->nat_last_logout);
137     secs = max(natp->nat_last_logout - player->lasttime, 15);
138     natp->nat_minused += secs / 60;
139     secs = secs % 60;
140     if (chance(secs / 60.0))
141         natp->nat_minused += 1;
142     putnat(natp);
143     pr("Bye-bye\n");
144 }
145
146 int
147 command(void)
148 {
149     unsigned int x;
150     char *redir;                /* UTF-8 */
151     char scanspace[1024];
152
153     if (getcommand(player->combuf) < 0)
154         return 0;
155     if (parse(player->combuf, player->argp, &player->condarg,
156               scanspace, &redir) < 0) {
157         pr("See \"info Syntax\"?\n");
158     } else {
159         /* XXX don't use alarm; use a scavenger thread */
160         /* DONT USE IT!!!! alarm and sleep may and dont work
161            together -- Sasha */
162         /* alarm((unsigned int)60*60); 1 hour */
163         if (player->condarg != NULL)
164             for (x = 0; x < strlen(player->condarg); x++)
165                 if (isupper(*(player->condarg + x)))
166                     *(player->condarg + x) =
167                         tolower(*(player->condarg + x));
168         if (dispatch(player->combuf, redir) < 0)
169             pr("Try \"list of commands\" or \"info\"\n");
170     }
171     return 1;
172 }
173
174 static int
175 status(void)
176 {
177     struct natstr *natp;
178     int minute;
179     struct sctstr sect;
180     char buf[128];
181
182     if (player->state == PS_SHUTDOWN)
183         return 0;
184     natp = getnatp(player->cnum);
185     if (io_error(player->iop) || io_eof(player->iop)) {
186         putnat(natp);
187         return 0;
188     }
189     player->visitor = natp->nat_stat < STAT_SANCT;
190     if (player->dolcost != 0.0) {
191         if (player->dolcost > 100.0)
192             pr("That just cost you $%.2f\n", player->dolcost);
193         else if (player->dolcost < -100.0)
194             pr("You just made $%.2f\n", -player->dolcost);
195         if (natp->nat_money < player->dolcost && !player->broke) {
196             player->broke = 1;
197             player->nstat &= ~MONEY;
198             pr("You are now broke; industries are on strike.\n");
199         } else if (player->broke && natp->nat_money - player->dolcost > 0) {
200             player->broke = 0;
201             player->nstat |= MONEY;
202             pr("You are no longer broke!\n");
203         }
204         natp->nat_money -= roundavg(player->dolcost);
205         player->dolcost = 0.0;
206     } else {
207         if (natp->nat_money < 0.0 && !player->broke) {
208             player->broke = 1;
209             player->nstat &= ~MONEY;
210             pr("You are now broke; industries are on strike.\n");
211         }
212         if (player->broke && natp->nat_money > 0) {
213             player->broke = 0;
214             player->nstat |= MONEY;
215             pr("You are no longer broke!\n");
216         }
217     }
218     getsect(natp->nat_xcap, natp->nat_ycap, &sect);
219     if (influx(natp))
220         player->nstat &= ~CAP;
221     else
222         player->nstat |= CAP;
223     player->ncomstat = player->nstat;
224     time(&player->curup);
225     minute = (player->curup - player->lasttime) / 60;
226     if (minute > 0) {
227         player->minleft -= minute;
228         if (player->minleft <= 0) {
229             /*
230              * countdown timer "player->minleft" has expired.
231              * either day change, or hours restriction
232              */
233             daychange(player->curup);
234             if (!gamehours(player->curup)) {
235                 pr("Empire hours restriction in force\n");
236                 if (natp->nat_stat != STAT_GOD) {
237                     putnat(natp);
238                     return 0;
239                 }
240             }
241             player->minleft = getminleft(player->curup, m_m_p_d);
242         }
243         player->lasttime += minute * 60;
244         natp->nat_minused += minute;
245     }
246     if (natp->nat_stat == STAT_ACTIVE && natp->nat_minused > m_m_p_d) {
247         pr("Max minutes per day limit exceeded.\n");
248         player->ncomstat = VIS;
249     }
250     if (player->btused) {
251         natp->nat_btu -= player->btused;
252         player->btused = 0;
253     }
254     if (natp->nat_tgms > 0) {
255         if (!(natp->nat_flags & NF_INFORM)) {
256             if (natp->nat_tgms == 1)
257                 pr("You have a new telegram waiting ...\n");
258             else
259                 pr("You have %s new telegrams waiting ...\n",
260                    numstr(buf, natp->nat_tgms));
261             natp->nat_tgms = 0;
262         }
263     }
264     if (natp->nat_ann > 0) {
265         if (natp->nat_ann == 1)
266             pr("You have a new announcement waiting ...\n");
267         else
268             pr("You have %s new announcements waiting ...\n",
269                numstr(buf, natp->nat_ann));
270         natp->nat_ann = 0;
271     }
272     if (!player->visitor && !player->god && (player->nstat & CAP) == 0)
273         pr("You lost your capital... better designate one\n");
274     putnat(natp);
275     if (gamedown() && !player->god) {
276         pr("gamedown\n");
277         return 0;
278     }
279     return 1;
280 }
281
282 /*
283  * actually a command; redirection and piping ignored.
284  * XXX This whole mess should be redone; execute block should
285  * start with "exec start", and should end with "exec end".
286  * We'll wait until 1.2 I guess.
287  */
288 int
289 execute(void)
290 {
291     char buf[1024];
292     int failed;
293     char *p;
294     char *redir;                /* UTF-8 */
295     char scanspace[1024];
296
297     failed = 0;
298     redir = NULL;
299
300     p = getstarg(player->argp[1], "File? ", buf);
301
302     if (p == NULL || *p == '\0')
303         return RET_SYN;
304
305     /* FIXME should use raw argument here, to support UTF-8 file names */
306     prexec(player->argp[1]);
307
308     while (!failed && status()) {
309         if (recvclient(buf, sizeof(buf)) < 0)
310             break;
311         if (parse(buf, player->argp, &player->condarg,
312                   scanspace, &redir) < 0) {
313             failed = 1;
314             continue;
315         }
316         if (redir == NULL)
317             pr("\nExecute : %s\n", buf);
318         if (dispatch(buf, redir) < 0)
319             failed = 1;
320     }
321     if (failed) {
322         while (recvclient(buf, sizeof(buf)) >= 0) ;
323     }
324     if (redir == NULL)
325         pr("Execute : %s\n", failed ? "aborted" : "terminated");
326     return RET_OK;
327 }
328
329 int
330 show_motd(void)
331 {
332     FILE *motd_fp;
333     struct telstr tgm;
334     char buf[MAXTELSIZE + 1];   /* UTF-8 */
335
336     if ((motd_fp = fopen(motdfil, "rb")) == NULL) {
337         if (errno == ENOENT)
338             return RET_OK;
339         else {
340             pr ("Could not open motd.\n");
341             logerror("Could not open motd (%s).\n", motdfil);
342             return RET_SYS;
343         }
344     }
345     if (fread(&tgm, sizeof(tgm), 1, motd_fp) != 1) {
346         logerror("bad header on login message (motdfil)");
347         fclose(motd_fp);
348         return RET_FAIL;
349     }
350     if (tgm.tel_length >= (long)sizeof(buf)) {
351         logerror("text length (%ld) is too long for login message (motdfil)", tgm.tel_length);
352         fclose(motd_fp);
353         return RET_FAIL;
354     }
355     if (fread(buf, tgm.tel_length, 1, motd_fp) != 1) {
356         logerror("bad length %ld on login message", tgm.tel_length);
357         fclose(motd_fp);
358         return RET_FAIL;
359     }
360     buf[tgm.tel_length] = 0;
361     uprnf(buf);
362     fclose(motd_fp);
363     return RET_OK;
364 }
365
366 int
367 match_user(char *file, struct player *p)
368 {
369     FILE *fp;
370     int match = 0;
371     char host[256];
372     char user[256];
373
374     if ((fp = fopen(file, "r")) == NULL) {
375         /*logerror("Cannot find file %s", file); */
376         return 0;
377     }
378     match = 0;
379     while (!feof(fp) && !match) {
380         if (fgets(host, sizeof(host), fp) == NULL)
381             break;
382         if (host[0] == '#')
383             continue;
384         if (fgets(user, sizeof(user), fp) == NULL)
385             break;
386         host[strlen(host) - 1] = '\0';
387         user[strlen(user) - 1] = '\0';
388         if (strstr(p->userid, user) &&
389             (strstr(p->hostaddr, host) ||
390              strstr(p->hostname, host)))
391             ++match;
392     }
393     fclose(fp);
394     return match;
395 }
396
397 int
398 quit(void)
399 {
400     player->state = PS_SHUTDOWN;
401     return RET_OK;
402 }
403
404 char *
405 praddr(struct player *p)
406 {
407     return prbuf("%s@%s", p->userid,
408                  *p->hostname ? p->hostname : p->hostaddr);
409 }