2 Copyright (C) 1996-1997 Id Software, Inc.
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.
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.
13 See the GNU General Public License for more details.
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.
25 typedef struct server_static_s
27 // number of svs.clients slots (updated by maxplayers command)
30 struct client_s *clients;
31 // episode completion information
33 // cleared when at SV_SpawnServer
34 qboolean changelevel_issued;
36 char serverinfo[MAX_SERVERINFO_STRING];
40 float perf_offset_avg;
41 float perf_offset_max;
42 float perf_offset_sdev;
43 // temporary performance data accumulators
44 float perf_acc_realtime;
45 float perf_acc_sleeptime;
47 float perf_acc_offset;
48 float perf_acc_offset_squared;
49 float perf_acc_offset_max;
50 int perf_acc_offset_samples;
53 //=============================================================================
55 typedef enum server_state_e {ss_loading, ss_active} server_state_t;
57 #define MAX_CONNECTFLOODADDRESSES 16
58 typedef struct server_connectfloodaddress_s
61 lhnetaddress_t address;
63 server_connectfloodaddress_t;
65 typedef struct server_s
67 // false if only a net client
71 // handle connections specially
74 // one of the PROTOCOL_ values
75 protocolversion_t protocol;
81 // used by PF_checkclient
85 // crc of clientside progs at time of level start
86 int csqc_progcrc; // -1 = no progs
87 int csqc_progsize; // -1 = no progs
88 char csqc_progname[MAX_QPATH]; // copied from csqc_progname at level start
90 // collision culling data
95 // maps/<name>.bsp, for model_precache[0]
97 struct model_s *worldmodel;
99 // LordHavoc: precaches are now MAX_QPATH rather than a pointer
100 // updated by SV_ModelIndex
101 char model_precache[MAX_MODELS][MAX_QPATH];
102 struct model_s *models[MAX_MODELS];
104 // LordHavoc: precaches are now MAX_QPATH rather than a pointer
105 // updated by SV_SoundIndex
106 char sound_precache[MAX_SOUNDS][MAX_QPATH];
107 char lightstyles[MAX_LIGHTSTYLES][64];
108 // some actions are only valid during load
109 server_state_t state;
112 unsigned char datagram_buf[NET_MAXMESSAGE];
114 // copied to all clients at end of frame
115 sizebuf_t reliable_datagram;
116 unsigned char reliable_datagram_buf[NET_MAXMESSAGE];
119 // LordHavoc: increased signon message buffer from 8192
120 unsigned char signon_buf[NET_MAXMESSAGE];
122 // connection flood blocking
123 // note this is in server_t rather than server_static_t so that it is
124 // reset on each map command (such as New Game in singleplayer)
125 server_connectfloodaddress_t connectfloodaddresses[MAX_CONNECTFLOODADDRESSES];
127 #define SV_MAX_PARTICLEEFFECTNAME 256
128 qboolean particleeffectnamesloaded;
129 char particleeffectname[SV_MAX_PARTICLEEFFECTNAME][MAX_QPATH];
131 int writeentitiestoclient_stats_culled_pvs;
132 int writeentitiestoclient_stats_culled_trace;
133 int writeentitiestoclient_stats_visibleentities;
134 int writeentitiestoclient_stats_totalentities;
135 int writeentitiestoclient_cliententitynumber;
136 int writeentitiestoclient_clientnumber;
137 sizebuf_t *writeentitiestoclient_msg;
138 vec3_t writeentitiestoclient_testeye;
139 int writeentitiestoclient_pvsbytes;
140 unsigned char writeentitiestoclient_pvs[MAX_MAP_LEAFS/8];
141 entity_state_t writeentitiestoclient_sendstates[MAX_EDICTS];
144 // if defined this does ping smoothing, otherwise it does not
145 //#define NUM_PING_TIMES 16
147 #define NUM_SPAWN_PARMS 16
149 typedef struct client_s
151 // false = empty client slot
153 // false = don't do ClientDisconnect on drop
154 qboolean clientconnectcalled;
155 // false = don't send datagrams
157 // 1 = send svc_serverinfo and advance to 2, 2 doesn't send, then advances to 0 (allowing unlimited sending) when prespawn is received
160 // requested rate in bytes per second
163 // realtime this client connected
166 // keepalive messages must be sent periodically during signon
167 double keepalivetime;
169 // communications handle
170 netconn_t *netconnection;
175 // intended motion calced from cmd
178 // PRVM_EDICT_NUM(clientnum+1)
181 #ifdef NUM_PING_TIMES
182 float ping_times[NUM_PING_TIMES];
183 // ping_times[num_pings%NUM_PING_TIMES]
186 // LordHavoc: can be used for prediction or whatever...
189 // this is used by sv_clmovement_minping code
190 double clmovement_disabletimeout;
191 // this is used by sv_clmvoement_waitforinput code
192 int clmovement_skipphysicsframes;
194 // spawn parms are carried from level to level
195 float spawn_parms[NUM_SPAWN_PARMS];
197 // properties that are sent across the network only when changed
198 char name[64], old_name[64];
199 int colors, old_colors;
200 int frags, old_frags;
201 char playermodel[MAX_QPATH], old_model[MAX_QPATH];
202 char playerskin[MAX_QPATH], old_skin[MAX_QPATH];
204 // netaddress support
205 char netaddress[MAX_QPATH];
208 float visibletime[MAX_EDICTS];
210 // version number of csqc-based entity to decide whether to send it
211 unsigned char csqcentityversion[MAX_EDICTS];
213 // prevent animated names
216 // latest received clc_ackframe (used to detect packet loss)
219 // cache weaponmodel name lookups
220 char weaponmodel[MAX_QPATH];
221 int weaponmodelindex;
223 entityframe_database_t *entitydatabase;
224 entityframe4_database_t *entitydatabase4;
225 entityframe5_database_t *entitydatabase5;
227 // delta compression of stats
228 unsigned char statsdeltabits[(MAX_CL_STATS+7)/8];
229 int stats[MAX_CL_STATS];
231 unsigned char unreliablemsg_data[NET_MAXMESSAGE];
232 sizebuf_t unreliablemsg;
233 int unreliablemsg_splitpoints;
234 int unreliablemsg_splitpoint[NET_MAXMESSAGE/16];
236 // information on an active download if any
237 qfile_t *download_file;
238 int download_expectedposition; // next position the client should ack
239 qboolean download_started;
240 char download_name[MAX_QPATH];
243 qboolean fixangle_angles_set;
244 vec3_t fixangle_angles;
247 qfile_t *sv_demo_file;
251 //=============================================================================
253 // edict->movetype values
254 #define MOVETYPE_NONE 0 // never moves
255 #define MOVETYPE_ANGLENOCLIP 1
256 #define MOVETYPE_ANGLECLIP 2
257 #define MOVETYPE_WALK 3 // gravity
258 #define MOVETYPE_STEP 4 // gravity, special edge handling
259 #define MOVETYPE_FLY 5
260 #define MOVETYPE_TOSS 6 // gravity
261 #define MOVETYPE_PUSH 7 // no clip to world, push and crush
262 #define MOVETYPE_NOCLIP 8
263 #define MOVETYPE_FLYMISSILE 9 // extra size to monsters
264 #define MOVETYPE_BOUNCE 10
265 #define MOVETYPE_BOUNCEMISSILE 11 // bounce w/o gravity
266 #define MOVETYPE_FOLLOW 12 // track movement of aiment
267 #define MOVETYPE_FAKEPUSH 13 // tenebrae's push that doesn't push
269 // edict->solid values
270 #define SOLID_NOT 0 // no interaction with other objects
271 #define SOLID_TRIGGER 1 // touch on edge, but not blocking
272 #define SOLID_BBOX 2 // touch on edge, block
273 #define SOLID_SLIDEBOX 3 // touch on edge, but not an onground
274 #define SOLID_BSP 4 // bsp clip, touch on edge, block
275 // LordHavoc: corpse code
276 #define SOLID_CORPSE 5 // same as SOLID_BBOX, except it behaves as SOLID_NOT against SOLID_SLIDEBOX objects (players/monsters)
278 // edict->deadflag values
290 #define FL_CONVEYOR 4
292 #define FL_INWATER 16
293 #define FL_MONSTER 32
294 #define FL_GODMODE 64
295 #define FL_NOTARGET 128
297 #define FL_ONGROUND 512
298 #define FL_PARTIALGROUND 1024 // not all corners are valid
299 #define FL_WATERJUMP 2048 // player jumping out of water
300 #define FL_JUMPRELEASED 4096 // for jump debouncing
302 #define SPAWNFLAG_NOT_EASY 256
303 #define SPAWNFLAG_NOT_MEDIUM 512
304 #define SPAWNFLAG_NOT_HARD 1024
305 #define SPAWNFLAG_NOT_DEATHMATCH 2048
307 //============================================================================
310 extern cvar_t deathmatch;
311 extern cvar_t fraglimit;
312 extern cvar_t gamecfg;
313 extern cvar_t noexit;
314 extern cvar_t nomonsters;
315 extern cvar_t pausable;
316 extern cvar_t pr_checkextension;
317 extern cvar_t samelevel;
318 extern cvar_t saved1;
319 extern cvar_t saved2;
320 extern cvar_t saved3;
321 extern cvar_t saved4;
322 extern cvar_t savedgamecfg;
323 extern cvar_t scratch1;
324 extern cvar_t scratch2;
325 extern cvar_t scratch3;
326 extern cvar_t scratch4;
328 extern cvar_t slowmo;
329 extern cvar_t sv_accelerate;
330 extern cvar_t sv_aim;
331 extern cvar_t sv_airaccel_qw;
332 extern cvar_t sv_airaccel_sideways_friction;
333 extern cvar_t sv_airaccelerate;
334 extern cvar_t sv_allowdownloads;
335 extern cvar_t sv_allowdownloads_archive;
336 extern cvar_t sv_allowdownloads_config;
337 extern cvar_t sv_allowdownloads_dlcache;
338 extern cvar_t sv_allowdownloads_inarchive;
339 extern cvar_t sv_areagrid_mingridsize;
340 extern cvar_t sv_checkforpacketsduringsleep;
341 extern cvar_t sv_clmovement_enable;
342 extern cvar_t sv_clmovement_minping;
343 extern cvar_t sv_clmovement_minping_disabletime;
344 extern cvar_t sv_clmovement_waitforinput;
345 extern cvar_t sv_cullentities_nevercullbmodels;
346 extern cvar_t sv_cullentities_pvs;
347 extern cvar_t sv_cullentities_stats;
348 extern cvar_t sv_cullentities_trace;
349 extern cvar_t sv_cullentities_trace_delay;
350 extern cvar_t sv_cullentities_trace_enlarge;
351 extern cvar_t sv_cullentities_trace_prediction;
352 extern cvar_t sv_cullentities_trace_samples;
353 extern cvar_t sv_cullentities_trace_samples_extra;
354 extern cvar_t sv_debugmove;
355 extern cvar_t sv_echobprint;
356 extern cvar_t sv_edgefriction;
357 extern cvar_t sv_entpatch;
358 extern cvar_t sv_fixedframeratesingleplayer;
359 extern cvar_t sv_freezenonclients;
360 extern cvar_t sv_friction;
361 extern cvar_t sv_gameplayfix_blowupfallenzombies;
362 extern cvar_t sv_gameplayfix_delayprojectiles;
363 extern cvar_t sv_gameplayfix_droptofloorstartsolid;
364 extern cvar_t sv_gameplayfix_findradiusdistancetobox;
365 extern cvar_t sv_gameplayfix_grenadebouncedownslopes;
366 extern cvar_t sv_gameplayfix_multiplethinksperframe;
367 extern cvar_t sv_gameplayfix_noairborncorpse;
368 extern cvar_t sv_gameplayfix_qwplayerphysics;
369 extern cvar_t sv_gameplayfix_setmodelrealbox;
370 extern cvar_t sv_gameplayfix_stepdown;
371 extern cvar_t sv_gameplayfix_stepwhilejumping;
372 extern cvar_t sv_gameplayfix_swiminbmodels;
373 extern cvar_t sv_gameplayfix_upwardvelocityclearsongroundflag;
374 extern cvar_t sv_gravity;
375 extern cvar_t sv_idealpitchscale;
376 extern cvar_t sv_jumpstep;
377 extern cvar_t sv_jumpvelocity;
378 extern cvar_t sv_maxairspeed;
379 extern cvar_t sv_maxrate;
380 extern cvar_t sv_maxspeed;
381 extern cvar_t sv_maxvelocity;
382 extern cvar_t sv_newflymove;
383 extern cvar_t sv_nostep;
384 extern cvar_t sv_playerphysicsqc;
385 extern cvar_t sv_progs;
386 extern cvar_t sv_protocolname;
387 extern cvar_t sv_random_seed;
388 extern cvar_t sv_ratelimitlocalplayer;
389 extern cvar_t sv_sound_land;
390 extern cvar_t sv_sound_watersplash;
391 extern cvar_t sv_stepheight;
392 extern cvar_t sv_stopspeed;
393 extern cvar_t sv_wallfriction;
394 extern cvar_t sv_wateraccelerate;
395 extern cvar_t sv_waterfriction;
396 extern cvar_t sys_ticrate;
397 extern cvar_t teamplay;
399 extern cvar_t timelimit;
401 extern mempool_t *sv_mempool;
403 // persistant server info
404 extern server_static_t svs;
408 extern client_t *host_client;
410 //===========================================================
414 void SV_StartParticle (vec3_t org, vec3_t dir, int color, int count);
415 void SV_StartEffect (vec3_t org, int modelindex, int startframe, int framecount, int framerate);
416 void SV_StartSound (prvm_edict_t *entity, int channel, const char *sample, int volume, float attenuation);
417 void SV_StartPointSound (vec3_t origin, const char *sample, int volume, float attenuation);
419 void SV_ConnectClient (int clientnum, netconn_t *netconnection);
420 void SV_DropClient (qboolean crash);
422 void SV_SendClientMessages (void);
424 void SV_ReadClientMessage(void);
426 // precachemode values:
427 // 0 = fail if not precached,
428 // 1 = warn if not found and precache if possible
430 int SV_ModelIndex(const char *s, int precachemode);
431 int SV_SoundIndex(const char *s, int precachemode);
433 int SV_ParticleEffectIndex(const char *name);
435 void SV_SetIdealPitch (void);
437 void SV_AddUpdates (void);
439 void SV_ClientThink (void);
441 void SV_ClientPrint(const char *msg);
442 void SV_ClientPrintf(const char *fmt, ...) DP_FUNC_PRINTF(1);
443 void SV_BroadcastPrint(const char *msg);
444 void SV_BroadcastPrintf(const char *fmt, ...) DP_FUNC_PRINTF(1);
446 void SV_Physics (void);
447 void SV_Physics_ClientMove (void);
448 void SV_Physics_ClientEntity (prvm_edict_t *ent);
450 qboolean SV_PlayerCheckGround (prvm_edict_t *ent);
451 qboolean SV_CheckBottom (prvm_edict_t *ent);
452 qboolean SV_movestep (prvm_edict_t *ent, vec3_t move, qboolean relink, qboolean noenemy, qboolean settrace);
454 // Needs to be called any time an entity changes origin, mins, maxs, or solid
455 // sets ent->v.absmin and ent->v.absmax
456 // if touchtriggers, calls prog functions for the intersected triggers
457 void SV_LinkEdict (prvm_edict_t *ent, qboolean touch_triggers);
459 // calculates hitsupercontentsmask for a generic qc entity
460 int SV_GenericHitSuperContentsMask(const prvm_edict_t *edict);
461 // traces a box move against worldmodel and all entities in the specified area
462 trace_t SV_Move(const vec3_t start, const vec3_t mins, const vec3_t maxs, const vec3_t end, int type, prvm_edict_t *passedict, int hitsupercontentsmask);
464 #define SV_PointSuperContents(point) (SV_Move((point), vec3_origin, vec3_origin, (point), sv_gameplayfix_swiminbmodels.integer ? MOVE_NOMONSTERS : MOVE_WORLDONLY, NULL, 0).startsupercontents)
466 void SV_FlushBroadcastMessages(void);
467 void SV_WriteClientdataToMessage (client_t *client, prvm_edict_t *ent, sizebuf_t *msg, int *stats);
469 void SV_MoveToGoal (void);
471 void SV_ApplyClientMove (void);
472 void SV_SaveSpawnparms (void);
473 void SV_SpawnServer (const char *server);
475 void SV_CheckVelocity (prvm_edict_t *ent);
477 void SV_SetupVM(void);
479 void SV_VM_Begin(void);
480 void SV_VM_End(void);
482 const char *Host_TimingReport(); // for output in Host_Status_f