]> icculus.org git repositories - divverent/darkplaces.git/blob - server.h
fix an uninitialized variable warning in win32
[divverent/darkplaces.git] / server.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // server.h
21
22 #ifndef SERVER_H
23 #define SERVER_H
24
25 typedef struct
26 {
27         int maxclients;
28         // [maxclients]
29         struct client_s *clients;
30         // episode completion information
31         int serverflags;
32         // cleared when at SV_SpawnServer
33         qboolean changelevel_issued;
34 } server_static_t;
35
36 //=============================================================================
37
38 typedef enum {ss_loading, ss_active} server_state_t;
39
40 typedef struct
41 {
42         // false if only a net client
43         qboolean active;
44
45         qboolean paused;
46         // handle connections specially
47         qboolean loadgame;
48
49         double time;
50
51         double frametime;
52
53         // used by PF_checkclient
54         int lastcheck;
55         double lastchecktime;
56
57         // map name
58         char name[64];
59         // maps/<name>.bsp, for model_precache[0]
60         char modelname[64];
61         struct model_s *worldmodel;
62         // NULL terminated
63         char *model_precache[MAX_MODELS];
64         struct model_s *models[MAX_MODELS];
65         // NULL terminated
66         char *sound_precache[MAX_SOUNDS];
67         char *lightstyles[MAX_LIGHTSTYLES];
68         int num_edicts;
69         int max_edicts;
70         // small edict_t structures which just contain pointers
71         // (allocated at server startup only)
72         edict_t *edicts;
73         // engine private edict information
74         // (dynamically resized - always access through edict_t!)
75         edict_engineprivate_t *edictsengineprivate;
76         // QuakeC fields array
77         // (dynamically resized - always access through edict_t!)
78         void *edictsfields;
79         // PushMove sometimes has to move entities back from a failed move
80         // (dynamically resized)
81         edict_t **moved_edicts;
82         // some actions are only valid during load
83         server_state_t state;
84
85         sizebuf_t datagram;
86         qbyte datagram_buf[MAX_DATAGRAM];
87
88         // copied to all clients at end of frame
89         sizebuf_t reliable_datagram;
90         qbyte reliable_datagram_buf[MAX_DATAGRAM];
91
92         sizebuf_t signon;
93         // LordHavoc: increased signon message buffer from 8192 to 32768
94         qbyte signon_buf[32768];
95 } server_t;
96
97
98 #define NUM_PING_TIMES 16
99 #define NUM_SPAWN_PARMS 16
100
101 typedef struct client_s
102 {
103         // false = client is free
104         qboolean active;
105         // false = don't send datagrams
106         qboolean spawned;
107         // has been told to go to another level
108         qboolean dropasap;
109         // only valid before spawned
110         qboolean sendsignon;
111
112         // reliable messages must be sent periodically
113         double last_message;
114
115         // communications handle
116         struct qsocket_s *netconnection;
117
118         // movement
119         usercmd_t cmd;
120         // intended motion calced from cmd
121         vec3_t wishdir;
122
123         // can be added to at any time, copied and clear once per frame
124         sizebuf_t message;
125         qbyte msgbuf[MAX_DATAGRAM];
126         // EDICT_NUM(clientnum+1)
127         edict_t *edict;
128         // for printing to other people
129         char name[32];
130         int colors;
131
132         float ping_times[NUM_PING_TIMES];
133         // ping_times[num_pings%NUM_PING_TIMES]
134         int num_pings;
135         // LordHavoc: can be used for prediction or whatever...
136         float ping;
137         // LordHavoc: specifically used for prediction, accounts for sys_ticrate too
138         float latency;
139
140 // spawn parms are carried from level to level
141         float spawn_parms[NUM_SPAWN_PARMS];
142
143 // client known data for deltas
144         int old_frags;
145         int pmodel;
146
147 #ifdef QUAKEENTITIES
148         // delta compression state
149         float nextfullupdate[MAX_EDICTS];
150 #endif
151         // visibility state
152         float visibletime[MAX_EDICTS];
153
154 #ifndef QUAKEENTITIES
155         entity_database_t entitydatabase;
156         int entityframenumber; // incremented each time an entity frame is sent
157 #endif
158 } client_t;
159
160
161 //=============================================================================
162
163 // edict->movetype values
164 #define MOVETYPE_NONE                   0               // never moves
165 #define MOVETYPE_ANGLENOCLIP    1
166 #define MOVETYPE_ANGLECLIP              2
167 #define MOVETYPE_WALK                   3               // gravity
168 #define MOVETYPE_STEP                   4               // gravity, special edge handling
169 #define MOVETYPE_FLY                    5
170 #define MOVETYPE_TOSS                   6               // gravity
171 #define MOVETYPE_PUSH                   7               // no clip to world, push and crush
172 #define MOVETYPE_NOCLIP                 8
173 #define MOVETYPE_FLYMISSILE             9               // extra size to monsters
174 #define MOVETYPE_BOUNCE                 10
175 #define MOVETYPE_BOUNCEMISSILE  11              // bounce w/o gravity
176 #define MOVETYPE_FOLLOW                 12              // track movement of aiment
177
178 // edict->solid values
179 #define SOLID_NOT                               0               // no interaction with other objects
180 #define SOLID_TRIGGER                   1               // touch on edge, but not blocking
181 #define SOLID_BBOX                              2               // touch on edge, block
182 #define SOLID_SLIDEBOX                  3               // touch on edge, but not an onground
183 #define SOLID_BSP                               4               // bsp clip, touch on edge, block
184 // LordHavoc: corpse code
185 #define SOLID_CORPSE                    5               // same as SOLID_BBOX, except it behaves as SOLID_NOT against SOLID_SLIDEBOX objects (players/monsters)
186
187 // edict->deadflag values
188 #define DEAD_NO                                 0
189 #define DEAD_DYING                              1
190 #define DEAD_DEAD                               2
191
192 #define DAMAGE_NO                               0
193 #define DAMAGE_YES                              1
194 #define DAMAGE_AIM                              2
195
196 // edict->flags
197 #define FL_FLY                                  1
198 #define FL_SWIM                                 2
199 #define FL_CONVEYOR                             4
200 #define FL_CLIENT                               8
201 #define FL_INWATER                              16
202 #define FL_MONSTER                              32
203 #define FL_GODMODE                              64
204 #define FL_NOTARGET                             128
205 #define FL_ITEM                                 256
206 #define FL_ONGROUND                             512
207 #define FL_PARTIALGROUND                1024    // not all corners are valid
208 #define FL_WATERJUMP                    2048    // player jumping out of water
209 #define FL_JUMPRELEASED                 4096    // for jump debouncing
210
211 // entity effects
212
213 #define EF_BRIGHTFIELD                  1
214 #define EF_MUZZLEFLASH                  2
215 #define EF_BRIGHTLIGHT                  4
216 #define EF_DIMLIGHT                     8
217 // added EF_ effects:
218 #define EF_NODRAW                               16
219 #define EF_ADDITIVE                             32  // LordHavoc: Additive Rendering
220 #define EF_BLUE                                 64
221 #define EF_RED                                  128
222
223 #define SPAWNFLAG_NOT_EASY                      256
224 #define SPAWNFLAG_NOT_MEDIUM            512
225 #define SPAWNFLAG_NOT_HARD                      1024
226 #define SPAWNFLAG_NOT_DEATHMATCH        2048
227
228 //============================================================================
229
230 extern cvar_t teamplay;
231 extern cvar_t skill;
232 extern cvar_t deathmatch;
233 extern cvar_t coop;
234 extern cvar_t fraglimit;
235 extern cvar_t timelimit;
236 extern cvar_t pausable;
237 extern cvar_t sv_deltacompress;
238 extern cvar_t sv_maxvelocity;
239 extern cvar_t sv_gravity;
240 extern cvar_t sv_nostep;
241 extern cvar_t sv_friction;
242 extern cvar_t sv_edgefriction;
243 extern cvar_t sv_stopspeed;
244 extern cvar_t sv_maxspeed;
245 extern cvar_t sv_accelerate;
246 extern cvar_t sv_idealpitchscale;
247 extern cvar_t sv_aim;
248 extern cvar_t sv_predict;
249 extern cvar_t sv_stepheight;
250 extern cvar_t sv_jumpstep;
251
252 // persistant server info
253 extern server_static_t svs;
254 // local server
255 extern server_t sv;
256
257 extern client_t *host_client;
258
259 extern jmp_buf host_abortserver;
260
261 extern edict_t *sv_player;
262
263 //===========================================================
264
265 void SV_Init (void);
266
267 void SV_StartParticle (vec3_t org, vec3_t dir, int color, int count);
268 void SV_StartEffect (vec3_t org, int modelindex, int startframe, int framecount, int framerate);
269 void SV_StartSound (edict_t *entity, int channel, char *sample, int volume, float attenuation);
270
271 void SV_DropClient (qboolean crash);
272
273 void SV_SendClientMessages (void);
274 void SV_ClearDatagram (void);
275
276 int SV_ModelIndex (const char *name);
277
278 void SV_SetIdealPitch (void);
279
280 void SV_AddUpdates (void);
281
282 void SV_ClientThink (void);
283 void SV_AddClientToServer (struct qsocket_s     *ret);
284
285 void SV_ClientPrintf (const char *fmt, ...);
286 void SV_BroadcastPrintf (const char *fmt, ...);
287
288 void SV_Physics (void);
289
290 qboolean SV_CheckBottom (edict_t *ent);
291 qboolean SV_movestep (edict_t *ent, vec3_t move, qboolean relink);
292
293 void SV_WriteClientdataToMessage (edict_t *ent, sizebuf_t *msg);
294
295 void SV_MoveToGoal (void);
296
297 void SV_CheckForNewClients (void);
298 void SV_RunClients (void);
299 void SV_SaveSpawnparms (void);
300 void SV_SpawnServer (const char *server);
301
302 void SV_SetMaxClients(int n);
303
304 void SV_CheckVelocity (edict_t *ent);
305
306 #endif
307