]> git.pond.sub.org Git - empserver/blob - include/misc.h
Use the new Empire clock for implementing MOB_ACCESS:
[empserver] / include / misc.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, 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  *  misc.h: Misc. definitions which don't really belong anywhere,
29  *          but have to go somewhere!
30  * 
31  *  Known contributors to this file:
32  *       Doug Hay, 1998
33  */
34
35 #ifndef MISC_H
36 #define MISC_H
37
38 #include <time.h>
39
40 #define MAX(a,b) ((a) > (b) ? (a) : (b))
41 #define MIN(a,b) ((a) < (b) ? (a) : (b))
42
43 #ifdef _WIN32
44 #ifndef __GNUC__
45
46 typedef long ssize_t;
47
48 /* integral mismatch, due to misuse of sector short */
49 #pragma warning (disable : 4761 )
50
51 #define strncasecmp(s1, s2, s3) _strnicmp((s1), (s2), (s3))
52
53 typedef int pid_t;
54 #define vsnprintf _vsnprintf
55 #define snprintf _snprintf
56
57 #endif /* !__GNUC__ */
58
59 #define mkdir(dir,perm) _mkdir((dir))
60 #define random rand
61 #define srandom srand
62 #ifndef S_IRUSR
63 #define S_IRUSR     _S_IREAD
64 #define S_IWUSR     _S_IWRITE
65 #define S_IXUSR     _S_IEXEC
66 #define S_IRWXU     S_IRUSR | S_IWUSR | S_IXUSR
67 #endif
68 #ifndef S_IRGRP
69 #define S_IRGRP     0
70 #define S_IWGRP     0
71 #define S_IXGRP     0
72 #define S_IRWXG     S_IRGRP | S_IWGRP | S_IXGRP
73 #endif
74 #ifndef S_IROTH
75 #define S_IROTH     0
76 #define S_IWOTH     0
77 #define S_IXOTH     0
78 #define S_IRWXO     S_IROTH | S_IWOTH | S_IXOTH
79 #endif
80 #endif /* _WIN32 */
81
82 #ifndef S_IRWUG
83 #define S_IRWUG     S_IRGRP | S_IWGRP | S_IRUSR | S_IWUSR
84 #endif
85
86 #ifdef __GNUC__
87 #define ATTRIBUTE(attrs) __attribute__ (attrs)
88 #else
89 #define ATTRIBUTE(attrs)
90 #endif
91
92 /*
93  * This uses a lot of thread stack with some versions of GNU libc,
94  * which can lead to nasty heap smashes (observed with 2.2.93).
95  * Disabled for now, until we readjust thread stack sizes.
96  */
97 #if 0
98 #define RESOLVE_IPADDRESS       /* resolve ip addresses into hostnames */
99 #endif
100
101 #ifndef bit
102 #define bit(x)          (1<<(x))
103 #endif
104
105 #define minutes(x)      (60*(x))
106 #define hours(x)        (60*60*(x))
107 #define days(x)         (60*60*24*(x))
108
109 extern int debug;
110
111 /*
112  * If EXPR is true, an internal error occured.
113  * Return EXPR != 0.
114  * Usage: if (CANT_HAPPEN(...)) <recovery code>;
115  */
116 #define CANT_HAPPEN(expr) ((expr) ? oops(#expr, __FILE__, __LINE__) : 0)
117
118 /*
119  * Report internal error.
120  * Usage: CANT_REACH(); <recovery code>;
121  */
122 #define CANT_REACH() (void)oops(NULL, __FILE__, __LINE__)
123
124 extern int oops(char *, char *, int);
125
126 void exit_nomem(void) ATTRIBUTE((noreturn));
127
128         /* return codes from command routines */
129 #define RET_OK          0       /* command completed sucessfully */
130 #define RET_FAIL        1       /* command completed unsucessfully [?] */
131 #define RET_SYN         2       /* syntax error in command */
132 #define RET_SYS         3       /* system error (missing file, etc) */
133
134 extern char *getstarg(char *input, char *prompt, char buf[]);
135 extern char *getstring(char *prompt, char buf[]);
136 extern char *ugetstring(char *prompt, char buf[]);
137              
138 extern char *prbuf(char *format, ...)
139     ATTRIBUTE((format (printf, 1, 2)));
140
141 #define AGREE_FREE      0
142 #define AGREE_PROPOSED  1
143 #define AGREE_SIGNED    2
144
145 #endif