]> icculus.org git repositories - divverent/darkplaces.git/blob - server.h
vid_vsync 0 now causes a warning due to the fact GLX_SGI_swap_control has no way...
[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         // number of svs.clients slots (updated by maxplayers command)
28         int maxclients;
29         // client slots
30         struct client_s *clients;
31         // episode completion information
32         int serverflags;
33         // cleared when at SV_SpawnServer
34         qboolean changelevel_issued;
35 } server_static_t;
36
37 //=============================================================================
38
39 typedef enum {ss_loading, ss_active} server_state_t;
40
41 typedef struct
42 {
43         // false if only a net client
44         qboolean active;
45
46         qboolean paused;
47         // handle connections specially
48         qboolean loadgame;
49
50         // one of the PROTOCOL_ values
51         int protocol;
52         // this disables extensions when using PROTOCOL_QUAKE
53         qboolean netquakecompatible;
54
55         // used for running multiple steps in one frame, etc
56         double timer;
57
58         double time;
59
60         double frametime;
61
62         // used by PF_checkclient
63         int lastcheck;
64         double lastchecktime;
65
66         // map name
67         char name[64];
68         // maps/<name>.bsp, for model_precache[0]
69         char modelname[64];
70         struct model_s *worldmodel;
71         // NULL terminated
72         // LordHavoc: precaches are now MAX_QPATH rather than a pointer
73         // updated by SV_ModelIndex
74         char model_precache[MAX_MODELS][MAX_QPATH];
75         struct model_s *models[MAX_MODELS];
76         // NULL terminated
77         // LordHavoc: precaches are now MAX_QPATH rather than a pointer
78         // updated by SV_SoundIndex
79         char sound_precache[MAX_SOUNDS][MAX_QPATH];
80         char *lightstyles[MAX_LIGHTSTYLES];
81         int num_edicts;
82         int max_edicts;
83         // small edict_t structures which just contain pointers
84         // (allocated at server startup only)
85         edict_t *edicts;
86         // engine private edict information
87         // (dynamically resized - always access through edict_t!)
88         edict_engineprivate_t *edictsengineprivate;
89         // QuakeC fields array
90         // (dynamically resized - always access through edict_t!)
91         void *edictsfields;
92         // PushMove sometimes has to move entities back from a failed move
93         // (dynamically resized)
94         edict_t **moved_edicts;
95         // some actions are only valid during load
96         server_state_t state;
97
98         sizebuf_t datagram;
99         qbyte datagram_buf[NET_MAXMESSAGE];
100
101         // copied to all clients at end of frame
102         sizebuf_t reliable_datagram;
103         qbyte reliable_datagram_buf[NET_MAXMESSAGE];
104
105         sizebuf_t signon;
106         // LordHavoc: increased signon message buffer from 8192
107         qbyte signon_buf[NET_MAXMESSAGE];
108 } server_t;
109
110
111 #define NUM_PING_TIMES 16
112 #define NUM_SPAWN_PARMS 16
113
114 typedef struct client_s
115 {
116         // false = empty client slot
117         qboolean active;
118         // false = don't send datagrams
119         qboolean spawned;
120         // has been told to go to another level
121         qboolean dropasap;
122         // only valid before spawned
123         qboolean sendsignon;
124         // remove this client immediately
125         qboolean deadsocket;
126
127         // requested rate in bytes per second
128         int rate;
129
130         // realtime this client connected
131         double connecttime;
132
133         // reliable messages must be sent periodically
134         double last_message;
135
136         // communications handle
137         netconn_t *netconnection;
138
139         // movement
140         usercmd_t cmd;
141         // intended motion calced from cmd
142         vec3_t wishdir;
143
144         // can be added to at any time, copied and clear once per frame
145         sizebuf_t message;
146         qbyte msgbuf[NET_MAXMESSAGE];
147         // EDICT_NUM(clientnum+1)
148         edict_t *edict;
149
150         float ping_times[NUM_PING_TIMES];
151         // ping_times[num_pings%NUM_PING_TIMES]
152         int num_pings;
153         // LordHavoc: can be used for prediction or whatever...
154         float ping;
155
156 // spawn parms are carried from level to level
157         float spawn_parms[NUM_SPAWN_PARMS];
158
159         // properties that are sent across the network only when changed
160         char name[64], old_name[64];
161         int colors, old_colors;
162         int frags, old_frags;
163         char playermodel[MAX_QPATH], old_model[MAX_QPATH];
164         char playerskin[MAX_QPATH], old_skin[MAX_QPATH];
165
166         // visibility state
167         float visibletime[MAX_EDICTS];
168
169         // prevent animated names
170         float nametime;
171
172         // latest received clc_ackframe (used to detect packet loss)
173         int latestframenum;
174
175         entityframe_database_t *entitydatabase;
176         entityframe4_database_t *entitydatabase4;
177         entityframe5_database_t *entitydatabase5;
178 } client_t;
179
180
181 //=============================================================================
182
183 // edict->movetype values
184 #define MOVETYPE_NONE                   0               // never moves
185 #define MOVETYPE_ANGLENOCLIP    1
186 #define MOVETYPE_ANGLECLIP              2
187 #define MOVETYPE_WALK                   3               // gravity
188 #define MOVETYPE_STEP                   4               // gravity, special edge handling
189 #define MOVETYPE_FLY                    5
190 #define MOVETYPE_TOSS                   6               // gravity
191 #define MOVETYPE_PUSH                   7               // no clip to world, push and crush
192 #define MOVETYPE_NOCLIP                 8
193 #define MOVETYPE_FLYMISSILE             9               // extra size to monsters
194 #define MOVETYPE_BOUNCE                 10
195 #define MOVETYPE_BOUNCEMISSILE  11              // bounce w/o gravity
196 #define MOVETYPE_FOLLOW                 12              // track movement of aiment
197 #define MOVETYPE_FAKEPUSH               13              // tenebrae's push that doesn't push
198
199 // edict->solid values
200 #define SOLID_NOT                               0               // no interaction with other objects
201 #define SOLID_TRIGGER                   1               // touch on edge, but not blocking
202 #define SOLID_BBOX                              2               // touch on edge, block
203 #define SOLID_SLIDEBOX                  3               // touch on edge, but not an onground
204 #define SOLID_BSP                               4               // bsp clip, touch on edge, block
205 // LordHavoc: corpse code
206 #define SOLID_CORPSE                    5               // same as SOLID_BBOX, except it behaves as SOLID_NOT against SOLID_SLIDEBOX objects (players/monsters)
207
208 // edict->deadflag values
209 #define DEAD_NO                                 0
210 #define DEAD_DYING                              1
211 #define DEAD_DEAD                               2
212
213 #define DAMAGE_NO                               0
214 #define DAMAGE_YES                              1
215 #define DAMAGE_AIM                              2
216
217 // edict->flags
218 #define FL_FLY                                  1
219 #define FL_SWIM                                 2
220 #define FL_CONVEYOR                             4
221 #define FL_CLIENT                               8
222 #define FL_INWATER                              16
223 #define FL_MONSTER                              32
224 #define FL_GODMODE                              64
225 #define FL_NOTARGET                             128
226 #define FL_ITEM                                 256
227 #define FL_ONGROUND                             512
228 #define FL_PARTIALGROUND                1024    // not all corners are valid
229 #define FL_WATERJUMP                    2048    // player jumping out of water
230 #define FL_JUMPRELEASED                 4096    // for jump debouncing
231
232 // entity effects
233
234 #define EF_BRIGHTFIELD                  1
235 #define EF_MUZZLEFLASH                  2
236 #define EF_BRIGHTLIGHT                  4
237 #define EF_DIMLIGHT                     8
238 // added EF_ effects:
239 #define EF_NODRAW                               16
240 #define EF_ADDITIVE                             32  // LordHavoc: Additive Rendering
241 #define EF_BLUE                                 64
242 #define EF_RED                                  128
243
244 #define SPAWNFLAG_NOT_EASY                      256
245 #define SPAWNFLAG_NOT_MEDIUM            512
246 #define SPAWNFLAG_NOT_HARD                      1024
247 #define SPAWNFLAG_NOT_DEATHMATCH        2048
248
249 //============================================================================
250
251 extern cvar_t teamplay;
252 extern cvar_t skill;
253 extern cvar_t deathmatch;
254 extern cvar_t coop;
255 extern cvar_t fraglimit;
256 extern cvar_t timelimit;
257 extern cvar_t pausable;
258 extern cvar_t sv_deltacompress;
259 extern cvar_t sv_maxvelocity;
260 extern cvar_t sv_gravity;
261 extern cvar_t sv_nostep;
262 extern cvar_t sv_friction;
263 extern cvar_t sv_edgefriction;
264 extern cvar_t sv_stopspeed;
265 extern cvar_t sv_maxspeed;
266 extern cvar_t sv_accelerate;
267 extern cvar_t sv_idealpitchscale;
268 extern cvar_t sv_aim;
269 extern cvar_t sv_stepheight;
270 extern cvar_t sv_jumpstep;
271 extern cvar_t sv_public;
272 extern cvar_t sv_maxrate;
273
274 extern cvar_t sv_gameplayfix_grenadebouncedownslopes;
275 extern cvar_t sv_gameplayfix_noairborncorpse;
276 extern cvar_t sv_gameplayfix_stepdown;
277 extern cvar_t sv_gameplayfix_stepwhilejumping;
278 extern cvar_t sv_gameplayfix_swiminbmodels;
279 extern cvar_t sv_gameplayfix_setmodelrealbox;
280
281 extern mempool_t *sv_clients_mempool;
282 extern mempool_t *sv_edicts_mempool;
283
284 // persistant server info
285 extern server_static_t svs;
286 // local server
287 extern server_t sv;
288
289 extern client_t *host_client;
290
291 extern jmp_buf host_abortserver;
292
293 //===========================================================
294
295 void SV_Init (void);
296
297 void SV_StartParticle (vec3_t org, vec3_t dir, int color, int count);
298 void SV_StartEffect (vec3_t org, int modelindex, int startframe, int framecount, int framerate);
299 void SV_StartSound (edict_t *entity, int channel, char *sample, int volume, float attenuation);
300
301 void SV_ConnectClient (int clientnum, netconn_t *netconnection);
302 void SV_DropClient (qboolean crash);
303
304 void SV_SendClientMessages (void);
305 void SV_ClearDatagram (void);
306
307 void SV_ReadClientMessage(void);
308
309 // precachemode values:
310 // 0 = fail if not precached,
311 // 1 = warn if not found and precache if possible
312 // 2 = precache
313 int SV_ModelIndex(char *s, int precachemode);
314 int SV_SoundIndex(char *s, int precachemode);
315
316 void SV_SetIdealPitch (void);
317
318 void SV_AddUpdates (void);
319
320 void SV_ClientThink (void);
321
322 void SV_ClientPrint(const char *msg);
323 void SV_ClientPrintf(const char *fmt, ...);
324 void SV_BroadcastPrint(const char *msg);
325 void SV_BroadcastPrintf(const char *fmt, ...);
326
327 void SV_Physics (void);
328
329 qboolean SV_PlayerCheckGround (edict_t *ent);
330 qboolean SV_CheckBottom (edict_t *ent);
331 qboolean SV_movestep (edict_t *ent, vec3_t move, qboolean relink);
332
333 void SV_WriteClientdataToMessage (client_t *client, edict_t *ent, sizebuf_t *msg, int *stats);
334
335 void SV_MoveToGoal (void);
336
337 void SV_RunClients (void);
338 void SV_SaveSpawnparms (void);
339 void SV_SpawnServer (const char *server);
340
341 void SV_CheckVelocity (edict_t *ent);
342
343 #endif
344