]> git.pond.sub.org Git - empserver/blob - include/misc.h
(index, rindex): Obsolete BSDisms; remove. Use standard strchr() and
[empserver] / include / misc.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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  *  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 <ctype.h>
39 #include <sys/types.h>
40 #include <ctype.h>
41
42 #if defined(hpux) || defined(SUN4) || defined(solaris) || defined(_WIN32)
43 #include <string.h>
44 #else
45 #include <strings.h>
46 #endif
47
48 #if defined(_WIN32)
49 typedef unsigned char u_char;
50 typedef unsigned short u_short;
51 typedef char *caddr_t;
52 typedef unsigned int u_int;
53
54 /* integral mismatch, due to misuse of sector short */
55 #pragma warning (disable : 4761 )
56
57 #include <minmax.h>
58 #include <io.h>
59
60 #define random rand
61 #define srandom srand
62
63 /*#define _POSIX_ */
64 #endif
65
66 #include "prototype.h"
67 #include "options.h"
68
69 /* This is the structure we use to keep track of the global mobility
70    things, such as when the server is supposed to start/stop updating
71    mobility and the timestamp of when the game was last up.  These
72    times are in seconds. */
73 struct mob_acc_globals {
74     time_t timestamp;           /* Last timestamp of when the game was up */
75     time_t starttime;           /* When we should start updating mobility again. */
76 };
77
78 #define ANNO_KEEP_DAYS 7        /* Keep announcements around for this many days */
79 #define RESOLVE_IPADDRESS       /* resolve ip addresses into hostnames */
80
81 typedef u_char natid;           /* also change NSC_NATID in nsc.h */
82
83 #if defined(__linux__ ) || defined(__osf__)
84 #define POSIXSIGNALS 1
85 #endif
86
87 #if !defined (_EMPTH_LWP) && !defined (_EMPTH_POSIX)
88 #define _EMPTH_LWP     1
89 #endif
90
91 #if defined(_EMPTH_POSIX) && !defined(POSIXSIGNALS)
92 #define POSIXSIGNALS
93 #endif
94
95 #if defined(POSIXSIGNALS) || defined(__STDC__)
96 typedef void emp_sig_t;
97 #else
98 typedef int emp_sig_t;
99 #endif
100
101
102 #if !defined(aix) && !defined(sgi)
103 #ifndef ultrix                  /* already defined in ultrix */
104 typedef char s_char;            /* change to signed char for aix */
105 #endif /* ultrix */
106 #else
107 typedef signed char s_char;
108 #endif /* !aix && !sgi */
109 typedef short coord;            /* also change NSC_COORD in nsc.h */
110 /*
111  * watch it; your compiler might not like this.
112  * If you think this is bogus, look at /usr/include/struct.h
113  */
114 #define OFFSET(stype, oset) ((int)(&(((struct stype *)0)->oset)))
115 #define SETOFF(sinst, oset) ((s_char *) (sinst) + (oset))
116
117 #ifndef bit
118 #define bit(x)          (1<<(x))
119 #endif
120
121 #define minutes(x)      (60*(x))
122 #define hours(x)        (60*60*(x))
123 #define days(x)         (60*60*24*(x))
124
125 typedef void (*voidfunc) ();
126 typedef int (*qsort_func_t) (const void *, const void *);
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 #define MAX_DISTPATH_LEN        10      /* Has to go somewhere */
135
136 /*
137  * references to library functions which aren't related to any
138  * particular object, and are of general interest
139  */
140 #if !defined(ALPHA) && !defined(__osf__) && !defined(__linux__) && !defined(_WIN32)
141 extern long random();
142 #endif
143
144 double dmax _PROTO((double n1, double n2));
145 double dmin _PROTO((double n1, double n2));
146
147 extern s_char *numstr _PROTO((s_char buf[], int n));
148 extern s_char *esplur _PROTO((int n));
149 extern s_char *splur _PROTO((int n));
150 extern s_char *iesplur _PROTO((int n));
151 extern s_char *plur _PROTO((int n, s_char *no, s_char *yes));
152 extern s_char *getstarg
153 _PROTO((s_char *input, s_char *prompt, s_char buf[]));
154 extern s_char *getstring _PROTO((s_char *prompt, s_char buf[]));
155 extern s_char *prbuf(s_char *format, ...);
156
157 /*
158  * frequently used libc functions
159  */
160
161 #if !defined(_WIN32)
162 #if defined(linux)
163 #ifndef __STDC__
164 extern char *malloc();
165 extern char *calloc();
166 #endif
167 #else
168 #if !defined(ALPHA) && !defined(__osf__) && !defined(ultrix) && !defined(hpux) && !defined(FBSD)
169 extern char *malloc();
170 extern char *calloc();
171 #endif
172 #endif
173 #endif
174
175 #if (!defined (aix) && !defined (sgi))
176 extern char *ctime();
177 extern char *strncpy();
178 extern char *strcpy();
179 #endif /* !aix && !sgi */
180
181 extern time_t time();
182 #if !defined(_WIN32)
183 #ifdef linux
184 #ifndef atof
185 extern double atof();
186 #endif
187 #else
188 extern double atof();
189 #endif
190 #endif
191
192 #if !defined(_WIN32)
193 #if !defined (__ppc__) && !defined (hpux) && !defined (aix) && !defined (linux) && !defined(ALPHA) && !defined(__osf__) && !defined(SUN4) && !defined (Rel4) && !(defined (ultrix) && (defined (__STDC__) || defined (__SYSTEMFIVE) || defined (__POSIX)))
194 extern char *sprintf();
195 #endif /* aix */
196 #endif
197
198 #define MAXCHRNV 12
199
200 #include "prototypes.h"         /* must come at end, after defines and typedefs */
201
202 #endif /* _MISC_H_ */