]> git.pond.sub.org Git - empserver/blob - include/player.h
WIP empdump, %a
[empserver] / include / player.h
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  *  player.h: Definitions for player information (threads)
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1994
32  *     Doug Hay, 1998
33  */
34
35 #ifndef PLAYER_H
36 #define PLAYER_H
37
38 #include <time.h>
39 #include "empthread.h"
40 #include "misc.h"
41 #include "queue.h"
42 #include "types.h"
43
44         /* nstat values */
45 #define VIS             bit(0)
46 #define SANCT           (bit(1) | VIS)
47 #define NORM            (bit(2) | VIS)
48 #define GOD             (bit(3) | NORM | VIS)
49 #define EXEC            bit(5)
50 #define CAP             bit(6)
51 #define MONEY           bit(7)
52
53 struct player {
54     struct emp_qelem queue;
55     empth_t *proc;
56     char hostaddr[32];
57     char hostname[512];         /* may be empty */
58     char client[128];           /* may be empty */
59     char userid[32];            /* may be empty */
60     int authenticated;
61     natid cnum;
62     int state;
63     int flags;
64     struct cmndstr *command;    /* currently executing command */
65     struct iop *iop;
66     char combuf[1024];          /* command input buffer, UTF-8 */
67     char *argp[128];            /* arguments, ASCII, valid if command */
68     char *condarg;              /* conditional, ASCII, valid if command */
69     char *comtail[128];         /* start of args in combuf[] */
70     time_t lasttime;            /* when minleft was last debited */
71     int minleft;
72     int btused;
73     int god;
74     int owner;
75     int nstat;                  /* command capabilities */
76     int simulation;             /* e.g. budget command */
77     double dolcost;
78     time_t curup;               /* when last input was received */
79     int aborted;                /* interrupt cookie received? */
80     int eof;                    /* EOF (cookie or real) received? */
81     int curid;                  /* for pr, cur. line's id, -1 none */
82     char *map;                  /* pointer to in-mem map */
83     char *bmap;                 /* pointer to in-mem bmap */
84 };
85
86 #define PS_INIT         0
87 #define PS_PLAYING      1
88 #define PS_SHUTDOWN     2
89
90 /* player flags */
91 enum {
92     PF_UTF8 = bit(0)                    /* client wants UTF-8 */
93 };
94
95 #endif