]> icculus.org git repositories - divverent/darkplaces.git/blob - sv_main.c
fixed precache problems in non-DARKPLACES6 protocols
[divverent/darkplaces.git] / sv_main.c
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 // sv_main.c -- server main program
21
22 #include "quakedef.h"
23
24 // select which protocol to host, by name
25 // this is named the same as PROTOCOL_DARKPLACES6 for example, minus the PROTOCOL_ prefix
26 cvar_t sv_protocolname = {0, "sv_protocolname", "DARKPLACES6"};
27 cvar_t sv_ratelimitlocalplayer = {0, "sv_ratelimitlocalplayer", "0"};
28 cvar_t sv_maxrate = {CVAR_SAVE | CVAR_NOTIFY, "sv_maxrate", "10000"};
29
30 static cvar_t sv_cullentities_pvs = {0, "sv_cullentities_pvs", "1"}; // fast but loose
31 static cvar_t sv_cullentities_trace = {0, "sv_cullentities_trace", "0"}; // tends to get false negatives, uses a timeout to keep entities visible a short time after becoming hidden
32 static cvar_t sv_cullentities_stats = {0, "sv_cullentities_stats", "0"};
33 static cvar_t sv_entpatch = {0, "sv_entpatch", "1"};
34
35 extern cvar_t sys_ticrate;
36
37 cvar_t sv_gameplayfix_grenadebouncedownslopes = {0, "sv_gameplayfix_grenadebouncedownslopes", "1"};
38 cvar_t sv_gameplayfix_noairborncorpse = {0, "sv_gameplayfix_noairborncorpse", "1"};
39 cvar_t sv_gameplayfix_stepdown = {0, "sv_gameplayfix_stepdown", "1"};
40 cvar_t sv_gameplayfix_stepwhilejumping = {0, "sv_gameplayfix_stepwhilejumping", "1"};
41 cvar_t sv_gameplayfix_swiminbmodels = {0, "sv_gameplayfix_swiminbmodels", "1"};
42 cvar_t sv_gameplayfix_setmodelrealbox = {0, "sv_gameplayfix_setmodelrealbox", "1"};
43
44 server_t sv;
45 server_static_t svs;
46
47 mempool_t *sv_edicts_mempool = NULL;
48
49 //============================================================================
50
51 extern void SV_Phys_Init (void);
52 extern void SV_World_Init (void);
53 static void SV_SaveEntFile_f(void);
54
55 /*
56 ===============
57 SV_Init
58 ===============
59 */
60 void SV_Init (void)
61 {
62         Cmd_AddCommand("sv_saveentfile", SV_SaveEntFile_f);
63         Cvar_RegisterVariable (&sv_maxvelocity);
64         Cvar_RegisterVariable (&sv_gravity);
65         Cvar_RegisterVariable (&sv_friction);
66         Cvar_RegisterVariable (&sv_edgefriction);
67         Cvar_RegisterVariable (&sv_stopspeed);
68         Cvar_RegisterVariable (&sv_maxspeed);
69         Cvar_RegisterVariable (&sv_accelerate);
70         Cvar_RegisterVariable (&sv_idealpitchscale);
71         Cvar_RegisterVariable (&sv_aim);
72         Cvar_RegisterVariable (&sv_nostep);
73         Cvar_RegisterVariable (&sv_deltacompress);
74         Cvar_RegisterVariable (&sv_cullentities_pvs);
75         Cvar_RegisterVariable (&sv_cullentities_trace);
76         Cvar_RegisterVariable (&sv_cullentities_stats);
77         Cvar_RegisterVariable (&sv_entpatch);
78         Cvar_RegisterVariable (&sv_gameplayfix_grenadebouncedownslopes);
79         Cvar_RegisterVariable (&sv_gameplayfix_noairborncorpse);
80         Cvar_RegisterVariable (&sv_gameplayfix_stepdown);
81         Cvar_RegisterVariable (&sv_gameplayfix_stepwhilejumping);
82         Cvar_RegisterVariable (&sv_gameplayfix_swiminbmodels);
83         Cvar_RegisterVariable (&sv_gameplayfix_setmodelrealbox);
84         Cvar_RegisterVariable (&sv_protocolname);
85         Cvar_RegisterVariable (&sv_ratelimitlocalplayer);
86         Cvar_RegisterVariable (&sv_maxrate);
87
88         SV_Phys_Init();
89         SV_World_Init();
90
91         sv_edicts_mempool = Mem_AllocPool("server edicts", 0, NULL);
92 }
93
94 static void SV_SaveEntFile_f(void)
95 {
96         char basename[MAX_QPATH];
97         if (!sv.active || !sv.worldmodel)
98         {
99                 Con_Print("Not running a server\n");
100                 return;
101         }
102         FS_StripExtension(sv.worldmodel->name, basename, sizeof(basename));
103         FS_WriteFile(va("%s.ent", basename), sv.worldmodel->brush.entities, strlen(sv.worldmodel->brush.entities));
104 }
105
106
107 /*
108 =============================================================================
109
110 EVENT MESSAGES
111
112 =============================================================================
113 */
114
115 /*
116 ==================
117 SV_StartParticle
118
119 Make sure the event gets sent to all clients
120 ==================
121 */
122 void SV_StartParticle (vec3_t org, vec3_t dir, int color, int count)
123 {
124         int             i, v;
125
126         if (sv.datagram.cursize > MAX_PACKETFRAGMENT-18)
127                 return;
128         MSG_WriteByte (&sv.datagram, svc_particle);
129         MSG_WriteCoord (&sv.datagram, org[0], sv.protocol);
130         MSG_WriteCoord (&sv.datagram, org[1], sv.protocol);
131         MSG_WriteCoord (&sv.datagram, org[2], sv.protocol);
132         for (i=0 ; i<3 ; i++)
133         {
134                 v = dir[i]*16;
135                 if (v > 127)
136                         v = 127;
137                 else if (v < -128)
138                         v = -128;
139                 MSG_WriteChar (&sv.datagram, v);
140         }
141         MSG_WriteByte (&sv.datagram, count);
142         MSG_WriteByte (&sv.datagram, color);
143 }
144
145 /*
146 ==================
147 SV_StartEffect
148
149 Make sure the event gets sent to all clients
150 ==================
151 */
152 void SV_StartEffect (vec3_t org, int modelindex, int startframe, int framecount, int framerate)
153 {
154         if (modelindex >= 256 || startframe >= 256)
155         {
156                 if (sv.datagram.cursize > MAX_PACKETFRAGMENT-19)
157                         return;
158                 MSG_WriteByte (&sv.datagram, svc_effect2);
159                 MSG_WriteCoord (&sv.datagram, org[0], sv.protocol);
160                 MSG_WriteCoord (&sv.datagram, org[1], sv.protocol);
161                 MSG_WriteCoord (&sv.datagram, org[2], sv.protocol);
162                 MSG_WriteShort (&sv.datagram, modelindex);
163                 MSG_WriteShort (&sv.datagram, startframe);
164                 MSG_WriteByte (&sv.datagram, framecount);
165                 MSG_WriteByte (&sv.datagram, framerate);
166         }
167         else
168         {
169                 if (sv.datagram.cursize > MAX_PACKETFRAGMENT-17)
170                         return;
171                 MSG_WriteByte (&sv.datagram, svc_effect);
172                 MSG_WriteCoord (&sv.datagram, org[0], sv.protocol);
173                 MSG_WriteCoord (&sv.datagram, org[1], sv.protocol);
174                 MSG_WriteCoord (&sv.datagram, org[2], sv.protocol);
175                 MSG_WriteByte (&sv.datagram, modelindex);
176                 MSG_WriteByte (&sv.datagram, startframe);
177                 MSG_WriteByte (&sv.datagram, framecount);
178                 MSG_WriteByte (&sv.datagram, framerate);
179         }
180 }
181
182 /*
183 ==================
184 SV_StartSound
185
186 Each entity can have eight independant sound sources, like voice,
187 weapon, feet, etc.
188
189 Channel 0 is an auto-allocate channel, the others override anything
190 already running on that entity/channel pair.
191
192 An attenuation of 0 will play full volume everywhere in the level.
193 Larger attenuations will drop off.  (max 4 attenuation)
194
195 ==================
196 */
197 void SV_StartSound (edict_t *entity, int channel, char *sample, int volume, float attenuation)
198 {
199         int sound_num, field_mask, i, ent;
200
201         if (volume < 0 || volume > 255)
202                 Host_Error ("SV_StartSound: volume = %i", volume);
203
204         if (attenuation < 0 || attenuation > 4)
205                 Host_Error ("SV_StartSound: attenuation = %f", attenuation);
206
207         if (channel < 0 || channel > 7)
208                 Host_Error ("SV_StartSound: channel = %i", channel);
209
210         if (sv.datagram.cursize > MAX_PACKETFRAGMENT-21)
211                 return;
212
213 // find precache number for sound
214         sound_num = SV_SoundIndex(sample, 1);
215         if (!sound_num)
216                 return;
217
218         ent = NUM_FOR_EDICT(entity);
219
220         field_mask = 0;
221         if (volume != DEFAULT_SOUND_PACKET_VOLUME)
222                 field_mask |= SND_VOLUME;
223         if (attenuation != DEFAULT_SOUND_PACKET_ATTENUATION)
224                 field_mask |= SND_ATTENUATION;
225         if (ent >= 8192)
226                 field_mask |= SND_LARGEENTITY;
227         if (sound_num >= 256 || channel >= 8)
228                 field_mask |= SND_LARGESOUND;
229
230 // directed messages go only to the entity they are targeted on
231         MSG_WriteByte (&sv.datagram, svc_sound);
232         MSG_WriteByte (&sv.datagram, field_mask);
233         if (field_mask & SND_VOLUME)
234                 MSG_WriteByte (&sv.datagram, volume);
235         if (field_mask & SND_ATTENUATION)
236                 MSG_WriteByte (&sv.datagram, attenuation*64);
237         if (field_mask & SND_LARGEENTITY)
238         {
239                 MSG_WriteShort (&sv.datagram, ent);
240                 MSG_WriteByte (&sv.datagram, channel);
241         }
242         else
243                 MSG_WriteShort (&sv.datagram, (ent<<3) | channel);
244         if (field_mask & SND_LARGESOUND)
245                 MSG_WriteShort (&sv.datagram, sound_num);
246         else
247                 MSG_WriteByte (&sv.datagram, sound_num);
248         for (i = 0;i < 3;i++)
249                 MSG_WriteCoord (&sv.datagram, entity->v->origin[i]+0.5*(entity->v->mins[i]+entity->v->maxs[i]), sv.protocol);
250 }
251
252 /*
253 ==============================================================================
254
255 CLIENT SPAWNING
256
257 ==============================================================================
258 */
259
260 /*
261 ================
262 SV_SendServerinfo
263
264 Sends the first message from the server to a connected client.
265 This will be sent on the initial connection and upon each server load.
266 ================
267 */
268 void SV_SendServerinfo (client_t *client)
269 {
270         int i;
271         char message[128];
272
273         // edicts get reallocated on level changes, so we need to update it here
274         client->edict = EDICT_NUM((client - svs.clients) + 1);
275
276         // if client is a botclient coming from a level change, we need to set up
277         // client info that normally requires networking
278         if (!client->netconnection)
279         {
280                 // set up the edict
281                 ED_ClearEdict(client->edict);
282
283                 // copy spawn parms out of the client_t
284                 for (i=0 ; i< NUM_SPAWN_PARMS ; i++)
285                         (&pr_global_struct->parm1)[i] = host_client->spawn_parms[i];
286
287                 // call the spawn function
288                 pr_global_struct->time = sv.time;
289                 pr_global_struct->self = EDICT_TO_PROG(client->edict);
290                 PR_ExecuteProgram (pr_global_struct->ClientConnect, "QC function ClientConnect is missing");
291                 PR_ExecuteProgram (pr_global_struct->PutClientInServer, "QC function PutClientInServer is missing");
292                 host_client->spawned = true;
293                 return;
294         }
295
296         // LordHavoc: clear entityframe tracking
297         client->latestframenum = 0;
298
299         if (client->entitydatabase)
300                 EntityFrame_FreeDatabase(client->entitydatabase);
301         if (client->entitydatabase4)
302                 EntityFrame4_FreeDatabase(client->entitydatabase4);
303         if (client->entitydatabase5)
304                 EntityFrame5_FreeDatabase(client->entitydatabase5);
305
306         if (sv.protocol == PROTOCOL_DARKPLACES1 || sv.protocol == PROTOCOL_DARKPLACES2 || sv.protocol == PROTOCOL_DARKPLACES3)
307                 client->entitydatabase = EntityFrame_AllocDatabase(sv_clients_mempool);
308         if (sv.protocol == PROTOCOL_DARKPLACES4)
309                 client->entitydatabase4 = EntityFrame4_AllocDatabase(sv_clients_mempool);
310         if (sv.protocol == PROTOCOL_DARKPLACES5 || sv.protocol == PROTOCOL_DARKPLACES6)
311                 client->entitydatabase5 = EntityFrame5_AllocDatabase(sv_clients_mempool);
312
313         MSG_WriteByte (&client->message, svc_print);
314         snprintf (message, sizeof (message), "\002\nServer: %s build %s (progs %i crc)", gamename, buildstring, pr_crc);
315         MSG_WriteString (&client->message,message);
316
317         MSG_WriteByte (&client->message, svc_serverinfo);
318         MSG_WriteLong (&client->message, sv.protocol);
319         MSG_WriteByte (&client->message, svs.maxclients);
320
321         if (!coop.integer && deathmatch.integer)
322                 MSG_WriteByte (&client->message, GAME_DEATHMATCH);
323         else
324                 MSG_WriteByte (&client->message, GAME_COOP);
325
326         MSG_WriteString (&client->message,PR_GetString(sv.edicts->v->message));
327
328         for (i = 1;i < MAX_MODELS && sv.model_precache[i][0];i++)
329                 MSG_WriteString (&client->message, sv.model_precache[i]);
330         MSG_WriteByte (&client->message, 0);
331
332         for (i = 1;i < MAX_SOUNDS && sv.sound_precache[i][0];i++)
333                 MSG_WriteString (&client->message, sv.sound_precache[i]);
334         MSG_WriteByte (&client->message, 0);
335
336 // send music
337         MSG_WriteByte (&client->message, svc_cdtrack);
338         MSG_WriteByte (&client->message, sv.edicts->v->sounds);
339         MSG_WriteByte (&client->message, sv.edicts->v->sounds);
340
341 // set view
342         MSG_WriteByte (&client->message, svc_setview);
343         MSG_WriteShort (&client->message, NUM_FOR_EDICT(client->edict));
344
345         MSG_WriteByte (&client->message, svc_signonnum);
346         MSG_WriteByte (&client->message, 1);
347
348         client->sendsignon = true;
349         client->spawned = false;                // need prespawn, spawn, etc
350 }
351
352 /*
353 ================
354 SV_ConnectClient
355
356 Initializes a client_t for a new net connection.  This will only be called
357 once for a player each game, not once for each level change.
358 ================
359 */
360 void SV_ConnectClient (int clientnum, netconn_t *netconnection)
361 {
362         client_t                *client;
363         int                             i;
364         float                   spawn_parms[NUM_SPAWN_PARMS];
365
366         client = svs.clients + clientnum;
367
368 // set up the client_t
369         if (sv.loadgame)
370                 memcpy (spawn_parms, client->spawn_parms, sizeof(spawn_parms));
371         memset (client, 0, sizeof(*client));
372         client->active = true;
373         client->netconnection = netconnection;
374
375         Con_DPrintf("Client %s connected\n", client->netconnection ? client->netconnection->address : "botclient");
376
377         strcpy(client->name, "unconnected");
378         strcpy(client->old_name, "unconnected");
379         client->spawned = false;
380         client->edict = EDICT_NUM(clientnum+1);
381         client->message.data = client->msgbuf;
382         client->message.maxsize = sizeof(client->msgbuf);
383         client->message.allowoverflow = true;           // we can catch it
384         // updated by receiving "rate" command from client
385         client->rate = NET_MINRATE;
386         // no limits for local player
387         if (client->netconnection && LHNETADDRESS_GetAddressType(&client->netconnection->peeraddress) == LHNETADDRESSTYPE_LOOP)
388                 client->rate = 1000000000;
389         client->connecttime = realtime;
390
391         if (sv.loadgame)
392                 memcpy (client->spawn_parms, spawn_parms, sizeof(spawn_parms));
393         else
394         {
395                 // call the progs to get default spawn parms for the new client
396                 PR_ExecuteProgram (pr_global_struct->SetNewParms, "QC function SetNewParms is missing");
397                 for (i=0 ; i<NUM_SPAWN_PARMS ; i++)
398                         client->spawn_parms[i] = (&pr_global_struct->parm1)[i];
399         }
400
401         // don't call SendServerinfo for a fresh botclient because its fields have
402         // not been set up by the qc yet
403         if (client->netconnection)
404                 SV_SendServerinfo (client);
405         else
406                 client->spawned = true;
407 }
408
409
410 /*
411 ===============================================================================
412
413 FRAME UPDATES
414
415 ===============================================================================
416 */
417
418 /*
419 ==================
420 SV_ClearDatagram
421
422 ==================
423 */
424 void SV_ClearDatagram (void)
425 {
426         SZ_Clear (&sv.datagram);
427 }
428
429 /*
430 =============================================================================
431
432 The PVS must include a small area around the client to allow head bobbing
433 or other small motion on the client side.  Otherwise, a bob might cause an
434 entity that should be visible to not show up, especially when the bob
435 crosses a waterline.
436
437 =============================================================================
438 */
439
440 int sv_writeentitiestoclient_pvsbytes;
441 qbyte sv_writeentitiestoclient_pvs[MAX_MAP_LEAFS/8];
442
443 static int numsendentities;
444 static entity_state_t sendentities[MAX_EDICTS];
445 static entity_state_t *sendentitiesindex[MAX_EDICTS];
446
447 void SV_PrepareEntitiesForSending(void)
448 {
449         int e, i;
450         float f;
451         edict_t *ent;
452         entity_state_t cs;
453         // send all entities that touch the pvs
454         numsendentities = 0;
455         sendentitiesindex[0] = NULL;
456         for (e = 1, ent = NEXT_EDICT(sv.edicts);e < sv.num_edicts;e++, ent = NEXT_EDICT(ent))
457         {
458                 sendentitiesindex[e] = NULL;
459                 if (ent->e->free)
460                         continue;
461
462                 cs = defaultstate;
463                 cs.active = true;
464                 cs.number = e;
465                 VectorCopy(ent->v->origin, cs.origin);
466                 VectorCopy(ent->v->angles, cs.angles);
467                 cs.flags = 0;
468                 cs.effects = (int)ent->v->effects;
469                 cs.colormap = (qbyte)ent->v->colormap;
470                 cs.skin = (qbyte)ent->v->skin;
471                 cs.frame = (qbyte)ent->v->frame;
472                 cs.viewmodelforclient = GETEDICTFIELDVALUE(ent, eval_viewmodelforclient)->edict;
473                 cs.exteriormodelforclient = GETEDICTFIELDVALUE(ent, eval_exteriormodeltoclient)->edict;
474                 cs.nodrawtoclient = GETEDICTFIELDVALUE(ent, eval_nodrawtoclient)->edict;
475                 cs.drawonlytoclient = GETEDICTFIELDVALUE(ent, eval_drawonlytoclient)->edict;
476                 cs.tagentity = GETEDICTFIELDVALUE(ent, eval_tag_entity)->edict;
477                 cs.tagindex = (qbyte)GETEDICTFIELDVALUE(ent, eval_tag_index)->_float;
478                 i = (int)(GETEDICTFIELDVALUE(ent, eval_glow_size)->_float * 0.25f);
479                 cs.glowsize = (qbyte)bound(0, i, 255);
480                 if (GETEDICTFIELDVALUE(ent, eval_glow_trail)->_float)
481                         cs.flags |= RENDER_GLOWTRAIL;
482
483                 cs.modelindex = 0;
484                 i = (int)ent->v->modelindex;
485                 if (i >= 1 && i < MAX_MODELS && *PR_GetString(ent->v->model))
486                         cs.modelindex = i;
487
488                 cs.alpha = 255;
489                 f = (GETEDICTFIELDVALUE(ent, eval_alpha)->_float * 255.0f);
490                 if (f)
491                 {
492                         i = (int)f;
493                         cs.alpha = (qbyte)bound(0, i, 255);
494                 }
495                 // halflife
496                 f = (GETEDICTFIELDVALUE(ent, eval_renderamt)->_float);
497                 if (f)
498                 {
499                         i = (int)f;
500                         cs.alpha = (qbyte)bound(0, i, 255);
501                 }
502
503                 cs.scale = 16;
504                 f = (GETEDICTFIELDVALUE(ent, eval_scale)->_float * 16.0f);
505                 if (f)
506                 {
507                         i = (int)f;
508                         cs.scale = (qbyte)bound(0, i, 255);
509                 }
510
511                 cs.glowcolor = 254;
512                 f = (GETEDICTFIELDVALUE(ent, eval_glow_color)->_float);
513                 if (f)
514                         cs.glowcolor = (int)f;
515
516                 if (GETEDICTFIELDVALUE(ent, eval_fullbright)->_float)
517                         cs.effects |= EF_FULLBRIGHT;
518
519                 if (ent->v->movetype == MOVETYPE_STEP)
520                         cs.flags |= RENDER_STEP;
521                 if ((cs.effects & EF_LOWPRECISION) && cs.origin[0] >= -32768 && cs.origin[1] >= -32768 && cs.origin[2] >= -32768 && cs.origin[0] <= 32767 && cs.origin[1] <= 32767 && cs.origin[2] <= 32767)
522                         cs.flags |= RENDER_LOWPRECISION;
523                 if (ent->v->colormap >= 1024)
524                         cs.flags |= RENDER_COLORMAPPED;
525                 if (cs.viewmodelforclient)
526                         cs.flags |= RENDER_VIEWMODEL; // show relative to the view
527
528                 f = GETEDICTFIELDVALUE(ent, eval_color)->vector[0]*256;
529                 cs.light[0] = (unsigned short)bound(0, f, 65535);
530                 f = GETEDICTFIELDVALUE(ent, eval_color)->vector[1]*256;
531                 cs.light[1] = (unsigned short)bound(0, f, 65535);
532                 f = GETEDICTFIELDVALUE(ent, eval_color)->vector[2]*256;
533                 cs.light[2] = (unsigned short)bound(0, f, 65535);
534                 f = GETEDICTFIELDVALUE(ent, eval_light_lev)->_float;
535                 cs.light[3] = (unsigned short)bound(0, f, 65535);
536                 cs.lightstyle = (qbyte)GETEDICTFIELDVALUE(ent, eval_style)->_float;
537                 cs.lightpflags = (qbyte)GETEDICTFIELDVALUE(ent, eval_pflags)->_float;
538
539                 if (gamemode == GAME_TENEBRAE)
540                 {
541                         // tenebrae's EF_FULLDYNAMIC conflicts with Q2's EF_NODRAW
542                         if (cs.effects & 16)
543                         {
544                                 cs.effects &= ~16;
545                                 cs.lightpflags |= PFLAGS_FULLDYNAMIC;
546                         }
547                         // tenebrae's EF_GREEN conflicts with DP's EF_ADDITIVE
548                         if (cs.effects & 32)
549                         {
550                                 cs.effects &= ~32;
551                                 cs.light[0] = 0.2;
552                                 cs.light[1] = 1;
553                                 cs.light[2] = 0.2;
554                                 cs.light[3] = 200;
555                                 cs.lightpflags |= PFLAGS_FULLDYNAMIC;
556                         }
557                 }
558
559                 cs.specialvisibilityradius = 0;
560                 if (cs.lightpflags & PFLAGS_FULLDYNAMIC)
561                         cs.specialvisibilityradius = max(cs.specialvisibilityradius, cs.light[3]);
562                 if (cs.glowsize)
563                         cs.specialvisibilityradius = max(cs.specialvisibilityradius, cs.glowsize * 4);
564                 if (cs.flags & RENDER_GLOWTRAIL)
565                         cs.specialvisibilityradius = max(cs.specialvisibilityradius, 100);
566                 if (cs.effects & (EF_BRIGHTFIELD | EF_MUZZLEFLASH | EF_BRIGHTLIGHT | EF_DIMLIGHT | EF_RED | EF_BLUE | EF_FLAME | EF_STARDUST))
567                 {
568                         if (cs.effects & EF_BRIGHTFIELD)
569                                 cs.specialvisibilityradius = max(cs.specialvisibilityradius, 80);
570                         if (cs.effects & EF_MUZZLEFLASH)
571                                 cs.specialvisibilityradius = max(cs.specialvisibilityradius, 100);
572                         if (cs.effects & EF_BRIGHTLIGHT)
573                                 cs.specialvisibilityradius = max(cs.specialvisibilityradius, 400);
574                         if (cs.effects & EF_DIMLIGHT)
575                                 cs.specialvisibilityradius = max(cs.specialvisibilityradius, 200);
576                         if (cs.effects & EF_RED)
577                                 cs.specialvisibilityradius = max(cs.specialvisibilityradius, 200);
578                         if (cs.effects & EF_BLUE)
579                                 cs.specialvisibilityradius = max(cs.specialvisibilityradius, 200);
580                         if (cs.effects & EF_FLAME)
581                                 cs.specialvisibilityradius = max(cs.specialvisibilityradius, 250);
582                         if (cs.effects & EF_STARDUST)
583                                 cs.specialvisibilityradius = max(cs.specialvisibilityradius, 100);
584                 }
585
586                 if (numsendentities >= MAX_EDICTS)
587                         continue;
588                 // we can omit invisible entities with no effects that are not clients
589                 // LordHavoc: this could kill tags attached to an invisible entity, I
590                 // just hope we never have to support that case
591                 if (cs.number > svs.maxclients && ((cs.effects & EF_NODRAW) || (!cs.modelindex && !cs.specialvisibilityradius)))
592                         continue;
593                 sendentitiesindex[e] = sendentities + numsendentities;
594                 sendentities[numsendentities++] = cs;
595         }
596 }
597
598 static int sententitiesmark = 0;
599 static int sententities[MAX_EDICTS];
600 static int sententitiesconsideration[MAX_EDICTS];
601 static int sv_writeentitiestoclient_culled_pvs;
602 static int sv_writeentitiestoclient_culled_trace;
603 static int sv_writeentitiestoclient_visibleentities;
604 static int sv_writeentitiestoclient_totalentities;
605 //static entity_frame_t sv_writeentitiestoclient_entityframe;
606 static int sv_writeentitiestoclient_clentnum;
607 static vec3_t sv_writeentitiestoclient_testeye;
608 static client_t *sv_writeentitiestoclient_client;
609
610 void SV_MarkWriteEntityStateToClient(entity_state_t *s)
611 {
612         int isbmodel;
613         vec3_t entmins, entmaxs, lightmins, lightmaxs, testorigin;
614         model_t *model;
615         trace_t trace;
616         if (sententitiesconsideration[s->number] == sententitiesmark)
617                 return;
618         sententitiesconsideration[s->number] = sententitiesmark;
619         // viewmodels don't have visibility checking
620         if (s->viewmodelforclient)
621         {
622                 if (s->viewmodelforclient != sv_writeentitiestoclient_clentnum)
623                         return;
624         }
625         // never reject player
626         else if (s->number != sv_writeentitiestoclient_clentnum)
627         {
628                 // check various rejection conditions
629                 if (s->nodrawtoclient == sv_writeentitiestoclient_clentnum)
630                         return;
631                 if (s->drawonlytoclient && s->drawonlytoclient != sv_writeentitiestoclient_clentnum)
632                         return;
633                 if (s->effects & EF_NODRAW)
634                         return;
635                 // LordHavoc: only send entities with a model or important effects
636                 if (!s->modelindex && s->specialvisibilityradius == 0)
637                         return;
638                 if (s->tagentity)
639                 {
640                         // tag attached entities simply check their parent
641                         if (!sendentitiesindex[s->tagentity])
642                                 return;
643                         SV_MarkWriteEntityStateToClient(sendentitiesindex[s->tagentity]);
644                         if (sententities[s->tagentity] != sententitiesmark)
645                                 return;
646                 }
647                 // skip invalid modelindexes to avoid crashes
648                 else if (s->modelindex >= MAX_MODELS)
649                         return;
650                 // always send world submodels, they don't generate much traffic
651                 // except in PROTOCOL_QUAKE where they hog bandwidth like crazy
652                 else if (!(s->effects & EF_NODEPTHTEST) && (!(isbmodel = (model = sv.models[s->modelindex]) != NULL && model->name[0] == '*') || sv.protocol == PROTOCOL_QUAKE))
653                 {
654                         Mod_CheckLoaded(model);
655                         // entity has survived every check so far, check if visible
656                         // enlarged box to account for prediction (not that there is
657                         // any currently, but still helps the 'run into a room and
658                         // watch items pop up' problem)
659                         entmins[0] = s->origin[0] - 32.0f;
660                         entmins[1] = s->origin[1] - 32.0f;
661                         entmins[2] = s->origin[2] - 32.0f;
662                         entmaxs[0] = s->origin[0] + 32.0f;
663                         entmaxs[1] = s->origin[1] + 32.0f;
664                         entmaxs[2] = s->origin[2] + 32.0f;
665                         // using the model's bounding box to ensure things are visible regardless of their physics box
666                         if (model)
667                         {
668                                 if (s->angles[0] || s->angles[2]) // pitch and roll
669                                 {
670                                         VectorAdd(entmins, model->rotatedmins, entmins);
671                                         VectorAdd(entmaxs, model->rotatedmaxs, entmaxs);
672                                 }
673                                 else if (s->angles[1])
674                                 {
675                                         VectorAdd(entmins, model->yawmins, entmins);
676                                         VectorAdd(entmaxs, model->yawmaxs, entmaxs);
677                                 }
678                                 else
679                                 {
680                                         VectorAdd(entmins, model->normalmins, entmins);
681                                         VectorAdd(entmaxs, model->normalmaxs, entmaxs);
682                                 }
683                         }
684                         lightmins[0] = min(entmins[0], s->origin[0] - s->specialvisibilityradius);
685                         lightmins[1] = min(entmins[1], s->origin[1] - s->specialvisibilityradius);
686                         lightmins[2] = min(entmins[2], s->origin[2] - s->specialvisibilityradius);
687                         lightmaxs[0] = max(entmaxs[0], s->origin[0] + s->specialvisibilityradius);
688                         lightmaxs[1] = max(entmaxs[1], s->origin[1] + s->specialvisibilityradius);
689                         lightmaxs[2] = max(entmaxs[2], s->origin[2] + s->specialvisibilityradius);
690                         sv_writeentitiestoclient_totalentities++;
691                         // if not touching a visible leaf
692                         if (sv_cullentities_pvs.integer && sv_writeentitiestoclient_pvsbytes && sv.worldmodel && sv.worldmodel->brush.BoxTouchingPVS && !sv.worldmodel->brush.BoxTouchingPVS(sv.worldmodel, sv_writeentitiestoclient_pvs, lightmins, lightmaxs))
693                         {
694                                 sv_writeentitiestoclient_culled_pvs++;
695                                 return;
696                         }
697                         // or not seen by random tracelines
698                         if (sv_cullentities_trace.integer && !isbmodel)
699                         {
700                                 // LordHavoc: test center first
701                                 testorigin[0] = (entmins[0] + entmaxs[0]) * 0.5f;
702                                 testorigin[1] = (entmins[1] + entmaxs[1]) * 0.5f;
703                                 testorigin[2] = (entmins[2] + entmaxs[2]) * 0.5f;
704                                 sv.worldmodel->TraceBox(sv.worldmodel, 0, &trace, sv_writeentitiestoclient_testeye, sv_writeentitiestoclient_testeye, testorigin, testorigin, SUPERCONTENTS_SOLID);
705                                 if (trace.fraction == 1 || BoxesOverlap(trace.endpos, trace.endpos, entmins, entmaxs))
706                                         sv_writeentitiestoclient_client->visibletime[s->number] = realtime + 1;
707                                 else
708                                 {
709                                         // LordHavoc: test random offsets, to maximize chance of detection
710                                         testorigin[0] = lhrandom(entmins[0], entmaxs[0]);
711                                         testorigin[1] = lhrandom(entmins[1], entmaxs[1]);
712                                         testorigin[2] = lhrandom(entmins[2], entmaxs[2]);
713                                         sv.worldmodel->TraceBox(sv.worldmodel, 0, &trace, sv_writeentitiestoclient_testeye, sv_writeentitiestoclient_testeye, testorigin, testorigin, SUPERCONTENTS_SOLID);
714                                         if (trace.fraction == 1 || BoxesOverlap(trace.endpos, trace.endpos, entmins, entmaxs))
715                                                 sv_writeentitiestoclient_client->visibletime[s->number] = realtime + 1;
716                                         else
717                                         {
718                                                 if (s->specialvisibilityradius)
719                                                 {
720                                                         // LordHavoc: test random offsets, to maximize chance of detection
721                                                         testorigin[0] = lhrandom(lightmins[0], lightmaxs[0]);
722                                                         testorigin[1] = lhrandom(lightmins[1], lightmaxs[1]);
723                                                         testorigin[2] = lhrandom(lightmins[2], lightmaxs[2]);
724                                                         sv.worldmodel->TraceBox(sv.worldmodel, 0, &trace, sv_writeentitiestoclient_testeye, sv_writeentitiestoclient_testeye, testorigin, testorigin, SUPERCONTENTS_SOLID);
725                                                         if (trace.fraction == 1 || BoxesOverlap(trace.endpos, trace.endpos, entmins, entmaxs))
726                                                                 sv_writeentitiestoclient_client->visibletime[s->number] = realtime + 1;
727                                                 }
728                                         }
729                                 }
730                                 if (realtime > sv_writeentitiestoclient_client->visibletime[s->number])
731                                 {
732                                         sv_writeentitiestoclient_culled_trace++;
733                                         return;
734                                 }
735                         }
736                         sv_writeentitiestoclient_visibleentities++;
737                 }
738         }
739         // this just marks it for sending
740         // FIXME: it would be more efficient to send here, but the entity
741         // compressor isn't that flexible
742         sententities[s->number] = sententitiesmark;
743 }
744
745 entity_state_t sendstates[MAX_EDICTS]; 
746
747 void SV_WriteEntitiesToClient(client_t *client, edict_t *clent, sizebuf_t *msg, int *stats)
748 {
749         int i, numsendstates;
750         entity_state_t *s;
751
752         // if there isn't enough space to accomplish anything, skip it
753         if (msg->cursize + 25 > msg->maxsize)
754                 return;
755
756         sv_writeentitiestoclient_client = client;
757
758         sv_writeentitiestoclient_culled_pvs = 0;
759         sv_writeentitiestoclient_culled_trace = 0;
760         sv_writeentitiestoclient_visibleentities = 0;
761         sv_writeentitiestoclient_totalentities = 0;
762
763         Mod_CheckLoaded(sv.worldmodel);
764
765 // find the client's PVS
766         // the real place being tested from
767         VectorAdd(clent->v->origin, clent->v->view_ofs, sv_writeentitiestoclient_testeye);
768         sv_writeentitiestoclient_pvsbytes = 0;
769         if (sv.worldmodel && sv.worldmodel->brush.FatPVS)
770                 sv_writeentitiestoclient_pvsbytes = sv.worldmodel->brush.FatPVS(sv.worldmodel, sv_writeentitiestoclient_testeye, 8, sv_writeentitiestoclient_pvs, sizeof(sv_writeentitiestoclient_pvs));
771
772         sv_writeentitiestoclient_clentnum = EDICT_TO_PROG(clent); // LordHavoc: for comparison purposes
773
774         sententitiesmark++;
775
776         for (i = 0;i < numsendentities;i++)
777                 SV_MarkWriteEntityStateToClient(sendentities + i);
778
779         numsendstates = 0;
780         for (i = 0;i < numsendentities;i++)
781         {
782                 if (sententities[sendentities[i].number] == sententitiesmark)
783                 {
784                         s = &sendstates[numsendstates++];
785                         *s = sendentities[i];
786                         if (s->exteriormodelforclient && s->exteriormodelforclient == sv_writeentitiestoclient_clentnum)
787                                 s->flags |= RENDER_EXTERIORMODEL;
788                 }
789         }
790
791         if (sv_cullentities_stats.integer)
792                 Con_Printf("client \"%s\" entities: %d total, %d visible, %d culled by: %d pvs %d trace\n", client->name, sv_writeentitiestoclient_totalentities, sv_writeentitiestoclient_visibleentities, sv_writeentitiestoclient_culled_pvs + sv_writeentitiestoclient_culled_trace, sv_writeentitiestoclient_culled_pvs, sv_writeentitiestoclient_culled_trace);
793
794         if (client->entitydatabase5)
795                 EntityFrame5_WriteFrame(msg, client->entitydatabase5, numsendstates, sendstates, client - svs.clients + 1, stats);
796         else if (client->entitydatabase4)
797                 EntityFrame4_WriteFrame(msg, client->entitydatabase4, numsendstates, sendstates);
798         else if (client->entitydatabase)
799                 EntityFrame_WriteFrame(msg, client->entitydatabase, numsendstates, sendstates, client - svs.clients + 1);
800         else
801                 EntityFrameQuake_WriteFrame(msg, numsendstates, sendstates);
802 }
803
804 /*
805 =============
806 SV_CleanupEnts
807
808 =============
809 */
810 void SV_CleanupEnts (void)
811 {
812         int             e;
813         edict_t *ent;
814
815         ent = NEXT_EDICT(sv.edicts);
816         for (e=1 ; e<sv.num_edicts ; e++, ent = NEXT_EDICT(ent))
817                 ent->v->effects = (int)ent->v->effects & ~EF_MUZZLEFLASH;
818 }
819
820 /*
821 ==================
822 SV_WriteClientdataToMessage
823
824 ==================
825 */
826 void SV_WriteClientdataToMessage (client_t *client, edict_t *ent, sizebuf_t *msg, int *stats)
827 {
828         int             bits;
829         int             i;
830         edict_t *other;
831         int             items;
832         eval_t  *val;
833         vec3_t  punchvector;
834         qbyte   viewzoom;
835         int             weaponmodelindex;
836
837 //
838 // send a damage message
839 //
840         if (ent->v->dmg_take || ent->v->dmg_save)
841         {
842                 other = PROG_TO_EDICT(ent->v->dmg_inflictor);
843                 MSG_WriteByte (msg, svc_damage);
844                 MSG_WriteByte (msg, ent->v->dmg_save);
845                 MSG_WriteByte (msg, ent->v->dmg_take);
846                 for (i=0 ; i<3 ; i++)
847                         MSG_WriteCoord (msg, other->v->origin[i] + 0.5*(other->v->mins[i] + other->v->maxs[i]), sv.protocol);
848
849                 ent->v->dmg_take = 0;
850                 ent->v->dmg_save = 0;
851         }
852
853 //
854 // send the current viewpos offset from the view entity
855 //
856         SV_SetIdealPitch ();            // how much to look up / down ideally
857
858 // a fixangle might get lost in a dropped packet.  Oh well.
859         if ( ent->v->fixangle )
860         {
861                 MSG_WriteByte (msg, svc_setangle);
862                 for (i=0 ; i < 3 ; i++)
863                         MSG_WriteAngle (msg, ent->v->angles[i], sv.protocol);
864                 ent->v->fixangle = 0;
865         }
866
867         // stuff the sigil bits into the high bits of items for sbar, or else
868         // mix in items2
869         val = GETEDICTFIELDVALUE(ent, eval_items2);
870         if (val)
871                 items = (int)ent->v->items | ((int)val->_float << 23);
872         else
873                 items = (int)ent->v->items | ((int)pr_global_struct->serverflags << 28);
874
875         VectorClear(punchvector);
876         if ((val = GETEDICTFIELDVALUE(ent, eval_punchvector)))
877                 VectorCopy(val->vector, punchvector);
878
879         weaponmodelindex = SV_ModelIndex(PR_GetString(ent->v->weaponmodel), 1);
880
881         viewzoom = 255;
882         if ((val = GETEDICTFIELDVALUE(ent, eval_viewzoom)))
883                 viewzoom = val->_float * 255.0f;
884         if (viewzoom == 0)
885                 viewzoom = 255;
886
887         bits = 0;
888
889         if ((int)ent->v->flags & FL_ONGROUND)
890                 bits |= SU_ONGROUND;
891         if (ent->v->waterlevel >= 2)
892                 bits |= SU_INWATER;
893         if (ent->v->idealpitch)
894                 bits |= SU_IDEALPITCH;
895
896         for (i=0 ; i<3 ; i++)
897         {
898                 if (ent->v->punchangle[i])
899                         bits |= (SU_PUNCH1<<i);
900                 if (sv.protocol == PROTOCOL_DARKPLACES1 || sv.protocol == PROTOCOL_DARKPLACES2 || sv.protocol == PROTOCOL_DARKPLACES3 || sv.protocol == PROTOCOL_DARKPLACES4 || sv.protocol == PROTOCOL_DARKPLACES5 || sv.protocol == PROTOCOL_DARKPLACES6)
901                         if (punchvector[i])
902                                 bits |= (SU_PUNCHVEC1<<i);
903                 if (ent->v->velocity[i])
904                         bits |= (SU_VELOCITY1<<i);
905         }
906
907         memset(stats, 0, sizeof(int[MAX_CL_STATS]));
908         stats[STAT_VIEWHEIGHT] = ent->v->view_ofs[2];
909         stats[STAT_ITEMS] = items;
910         stats[STAT_WEAPONFRAME] = ent->v->weaponframe;
911         stats[STAT_ARMOR] = ent->v->armorvalue;
912         stats[STAT_WEAPON] = weaponmodelindex;
913         stats[STAT_HEALTH] = ent->v->health;
914         stats[STAT_AMMO] = ent->v->currentammo;
915         stats[STAT_SHELLS] = ent->v->ammo_shells;
916         stats[STAT_NAILS] = ent->v->ammo_nails;
917         stats[STAT_ROCKETS] = ent->v->ammo_rockets;
918         stats[STAT_CELLS] = ent->v->ammo_cells;
919         stats[STAT_ACTIVEWEAPON] = ent->v->weapon;
920         stats[STAT_VIEWZOOM] = viewzoom;
921         // the QC bumps these itself by sending svc_'s, so we have to keep them
922         // zero or they'll be corrected by the engine
923         //stats[STAT_TOTALSECRETS] = pr_global_struct->total_secrets;
924         //stats[STAT_TOTALMONSTERS] = pr_global_struct->total_monsters;
925         //stats[STAT_SECRETS] = pr_global_struct->found_secrets;
926         //stats[STAT_MONSTERS] = pr_global_struct->killed_monsters;
927
928         if (sv.protocol != PROTOCOL_DARKPLACES6)
929         {
930                 if (stats[STAT_VIEWHEIGHT] != DEFAULT_VIEWHEIGHT) bits |= SU_VIEWHEIGHT;
931                 bits |= SU_ITEMS;
932                 if (stats[STAT_WEAPONFRAME]) bits |= SU_WEAPONFRAME;
933                 if (stats[STAT_ARMOR]) bits |= SU_ARMOR;
934                 bits |= SU_WEAPON;
935                 // FIXME: which protocols support this?  does PROTOCOL_DARKPLACES3 support viewzoom?
936                 if (sv.protocol == PROTOCOL_DARKPLACES4 || sv.protocol == PROTOCOL_DARKPLACES5)
937                         if (viewzoom != 255)
938                                 bits |= SU_VIEWZOOM;
939         }
940
941         if (bits >= 65536)
942                 bits |= SU_EXTEND1;
943         if (bits >= 16777216)
944                 bits |= SU_EXTEND2;
945
946         // send the data
947         MSG_WriteByte (msg, svc_clientdata);
948         MSG_WriteShort (msg, bits);
949         if (bits & SU_EXTEND1)
950                 MSG_WriteByte(msg, bits >> 16);
951         if (bits & SU_EXTEND2)
952                 MSG_WriteByte(msg, bits >> 24);
953
954         if (bits & SU_VIEWHEIGHT)
955                 MSG_WriteChar (msg, stats[STAT_VIEWHEIGHT]);
956
957         if (bits & SU_IDEALPITCH)
958                 MSG_WriteChar (msg, ent->v->idealpitch);
959
960         for (i=0 ; i<3 ; i++)
961         {
962                 if (bits & (SU_PUNCH1<<i))
963                 {
964                         if (sv.protocol == PROTOCOL_QUAKE)
965                                 MSG_WriteChar(msg, ent->v->punchangle[i]);
966                         else if (sv.protocol == PROTOCOL_DARKPLACES1 || sv.protocol == PROTOCOL_DARKPLACES2 || sv.protocol == PROTOCOL_DARKPLACES3 || sv.protocol == PROTOCOL_DARKPLACES4 || sv.protocol == PROTOCOL_DARKPLACES5 || sv.protocol == PROTOCOL_DARKPLACES6)
967                                 MSG_WriteAngle16i(msg, ent->v->punchangle[i]);
968                 }
969                 if (sv.protocol == PROTOCOL_DARKPLACES1 || sv.protocol == PROTOCOL_DARKPLACES2 || sv.protocol == PROTOCOL_DARKPLACES3 || sv.protocol == PROTOCOL_DARKPLACES4 || sv.protocol == PROTOCOL_DARKPLACES5 || sv.protocol == PROTOCOL_DARKPLACES6)
970                 {
971                         if (bits & (SU_PUNCHVEC1<<i))
972                         {
973                                 if (sv.protocol == PROTOCOL_DARKPLACES1 || sv.protocol == PROTOCOL_DARKPLACES2 || sv.protocol == PROTOCOL_DARKPLACES3 || sv.protocol == PROTOCOL_DARKPLACES4)
974                                         MSG_WriteCoord16i(msg, punchvector[i]);
975                                 else if (sv.protocol == PROTOCOL_DARKPLACES5 || sv.protocol == PROTOCOL_DARKPLACES6)
976                                         MSG_WriteCoord32f(msg, punchvector[i]);
977                         }
978                 }
979                 if (bits & (SU_VELOCITY1<<i))
980                 {
981                         if (sv.protocol == PROTOCOL_QUAKE || sv.protocol == PROTOCOL_DARKPLACES1 || sv.protocol == PROTOCOL_DARKPLACES2 || sv.protocol == PROTOCOL_DARKPLACES3 || sv.protocol == PROTOCOL_DARKPLACES4)
982                                 MSG_WriteChar(msg, ent->v->velocity[i] * (1.0f / 16.0f));
983                         else if (sv.protocol == PROTOCOL_DARKPLACES5 || sv.protocol == PROTOCOL_DARKPLACES6)
984                                 MSG_WriteCoord32f(msg, ent->v->velocity[i]);
985                 }
986         }
987
988         if (bits & SU_ITEMS)
989                 MSG_WriteLong (msg, stats[STAT_ITEMS]);
990
991         if (sv.protocol == PROTOCOL_DARKPLACES5)
992         {
993                 if (bits & SU_WEAPONFRAME)
994                         MSG_WriteShort (msg, stats[STAT_WEAPONFRAME]);
995                 if (bits & SU_ARMOR)
996                         MSG_WriteShort (msg, stats[STAT_ARMOR]);
997                 if (bits & SU_WEAPON)
998                         MSG_WriteShort (msg, stats[STAT_WEAPON]);
999                 MSG_WriteShort (msg, stats[STAT_HEALTH]);
1000                 MSG_WriteShort (msg, stats[STAT_AMMO]);
1001                 MSG_WriteShort (msg, stats[STAT_SHELLS]);
1002                 MSG_WriteShort (msg, stats[STAT_NAILS]);
1003                 MSG_WriteShort (msg, stats[STAT_ROCKETS]);
1004                 MSG_WriteShort (msg, stats[STAT_CELLS]);
1005                 MSG_WriteShort (msg, stats[STAT_ACTIVEWEAPON]);
1006                 if (bits & SU_VIEWZOOM)
1007                         MSG_WriteShort (msg, min(stats[STAT_VIEWZOOM], 65535));
1008         }
1009         else if (sv.protocol != PROTOCOL_DARKPLACES6)
1010         {
1011                 if (bits & SU_WEAPONFRAME)
1012                         MSG_WriteByte (msg, stats[STAT_WEAPONFRAME]);
1013                 if (bits & SU_ARMOR)
1014                         MSG_WriteByte (msg, stats[STAT_ARMOR]);
1015                 if (bits & SU_WEAPON)
1016                         MSG_WriteByte (msg, stats[STAT_WEAPON]);
1017                 MSG_WriteShort (msg, stats[STAT_HEALTH]);
1018                 MSG_WriteByte (msg, stats[STAT_AMMO]);
1019                 MSG_WriteByte (msg, stats[STAT_SHELLS]);
1020                 MSG_WriteByte (msg, stats[STAT_NAILS]);
1021                 MSG_WriteByte (msg, stats[STAT_ROCKETS]);
1022                 MSG_WriteByte (msg, stats[STAT_CELLS]);
1023                 if (gamemode == GAME_HIPNOTIC || gamemode == GAME_ROGUE || gamemode == GAME_NEXUIZ)
1024                 {
1025                         for (i = 0;i < 32;i++)
1026                                 if (stats[STAT_WEAPON] & (1<<i))
1027                                         break;
1028                         MSG_WriteByte (msg, i);
1029                 }
1030                 else
1031                         MSG_WriteByte (msg, stats[STAT_WEAPON]);
1032                 if (bits & SU_VIEWZOOM)
1033                 {
1034                         if (sv.protocol == PROTOCOL_DARKPLACES4)
1035                                 MSG_WriteByte (msg, min(stats[STAT_VIEWZOOM], 255));
1036                         else if (sv.protocol == PROTOCOL_DARKPLACES5 || sv.protocol == PROTOCOL_DARKPLACES6)
1037                                 MSG_WriteShort (msg, min(stats[STAT_VIEWZOOM], 65535));
1038                 }
1039         }
1040 }
1041
1042 /*
1043 =======================
1044 SV_SendClientDatagram
1045 =======================
1046 */
1047 static qbyte sv_sendclientdatagram_buf[NET_MAXMESSAGE]; // FIXME?
1048 qboolean SV_SendClientDatagram (client_t *client)
1049 {
1050         int rate, maxrate, maxsize, maxsize2;
1051         sizebuf_t msg;
1052         int stats[MAX_CL_STATS];
1053
1054         if (LHNETADDRESS_GetAddressType(&host_client->netconnection->peeraddress) == LHNETADDRESSTYPE_LOOP && !sv_ratelimitlocalplayer.integer)
1055         {
1056                 // for good singleplayer, send huge packets
1057                 maxsize = sizeof(sv_sendclientdatagram_buf);
1058                 maxsize2 = sizeof(sv_sendclientdatagram_buf);
1059         }
1060         else if (sv.protocol == PROTOCOL_DARKPLACES5 || sv.protocol == PROTOCOL_DARKPLACES6)
1061         {
1062                 // PROTOCOL_DARKPLACES5 supports packet size limiting of updates
1063                 maxrate = bound(NET_MINRATE, sv_maxrate.integer, NET_MAXRATE);
1064                 if (sv_maxrate.integer != maxrate)
1065                         Cvar_SetValueQuick(&sv_maxrate, maxrate);
1066
1067                 rate = bound(NET_MINRATE, client->rate, maxrate);
1068                 rate = (int)(client->rate * sys_ticrate.value);
1069                 maxsize = bound(100, rate, 1400);
1070                 maxsize2 = 1400;
1071         }
1072         else
1073         {
1074                 // no rate limiting support on older protocols because dp protocols
1075                 // 1-4 kick the client off if they overflow, and quake protocol shows
1076                 // less than the full entity set if rate limited
1077                 maxsize = 1400;
1078                 maxsize2 = 1400;
1079         }
1080
1081         msg.data = sv_sendclientdatagram_buf;
1082         msg.maxsize = maxsize;
1083         msg.cursize = 0;
1084
1085         MSG_WriteByte (&msg, svc_time);
1086         MSG_WriteFloat (&msg, sv.time);
1087
1088         // add the client specific data to the datagram
1089         SV_WriteClientdataToMessage (client, client->edict, &msg, stats);
1090         SV_WriteEntitiesToClient (client, client->edict, &msg, stats);
1091
1092         // expand packet size to allow effects to go over the rate limit
1093         // (dropping them is FAR too ugly)
1094         msg.maxsize = maxsize2;
1095
1096         // copy the server datagram if there is space
1097         // FIXME: put in delayed queue of effects to send
1098         if (sv.datagram.cursize > 0 && msg.cursize + sv.datagram.cursize <= msg.maxsize)
1099                 SZ_Write (&msg, sv.datagram.data, sv.datagram.cursize);
1100
1101 // send the datagram
1102         if (NetConn_SendUnreliableMessage (client->netconnection, &msg) == -1)
1103         {
1104                 SV_DropClient (true);// if the message couldn't send, kick off
1105                 return false;
1106         }
1107
1108         return true;
1109 }
1110
1111 /*
1112 =======================
1113 SV_UpdateToReliableMessages
1114 =======================
1115 */
1116 void SV_UpdateToReliableMessages (void)
1117 {
1118         int i, j;
1119         client_t *client;
1120         eval_t *val;
1121         char *name;
1122         char *model;
1123         char *skin;
1124
1125 // check for changes to be sent over the reliable streams
1126         for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
1127         {
1128                 // update the host_client fields we care about according to the entity fields
1129                 host_client->edict = EDICT_NUM(i+1);
1130
1131                 // DP_SV_CLIENTNAME
1132                 name = PR_GetString(host_client->edict->v->netname);
1133                 if (name == NULL)
1134                         name = "";
1135                 // always point the string back at host_client->name to keep it safe
1136                 strlcpy (host_client->name, name, sizeof (host_client->name));
1137                 host_client->edict->v->netname = PR_SetString(host_client->name);
1138                 if (strcmp(host_client->old_name, host_client->name))
1139                 {
1140                         if (host_client->spawned)
1141                                 SV_BroadcastPrintf("%s changed name to %s\n", host_client->old_name, host_client->name);
1142                         strcpy(host_client->old_name, host_client->name);
1143                         // send notification to all clients
1144                         MSG_WriteByte (&sv.reliable_datagram, svc_updatename);
1145                         MSG_WriteByte (&sv.reliable_datagram, i);
1146                         MSG_WriteString (&sv.reliable_datagram, host_client->name);
1147                 }
1148
1149                 // DP_SV_CLIENTCOLORS
1150                 // this is always found (since it's added by the progs loader)
1151                 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_clientcolors)))
1152                         host_client->colors = (int)val->_float;
1153                 if (host_client->old_colors != host_client->colors)
1154                 {
1155                         host_client->old_colors = host_client->colors;
1156                         // send notification to all clients
1157                         MSG_WriteByte (&sv.reliable_datagram, svc_updatecolors);
1158                         MSG_WriteByte (&sv.reliable_datagram, i);
1159                         MSG_WriteByte (&sv.reliable_datagram, host_client->colors);
1160                 }
1161
1162                 // NEXUIZ_PLAYERMODEL
1163                 model = PR_GetString(host_client->edict->v->playermodel);
1164                 if (model == NULL)
1165                         model = "";
1166                 // always point the string back at host_client->name to keep it safe
1167                 strlcpy (host_client->playermodel, model, sizeof (host_client->playermodel));
1168                 host_client->edict->v->playermodel = PR_SetString(host_client->playermodel);
1169
1170                 // NEXUIZ_PLAYERSKIN
1171                 skin = PR_GetString(host_client->edict->v->playerskin);
1172                 if (skin == NULL)
1173                         skin = "";
1174                 // always point the string back at host_client->name to keep it safe
1175                 strlcpy (host_client->playerskin, skin, sizeof (host_client->playerskin));
1176                 host_client->edict->v->playerskin = PR_SetString(host_client->playerskin);
1177
1178                 // frags
1179                 host_client->frags = (int)host_client->edict->v->frags;
1180                 if (host_client->old_frags != host_client->frags)
1181                 {
1182                         host_client->old_frags = host_client->frags;
1183                         // send notification to all clients
1184                         MSG_WriteByte (&sv.reliable_datagram, svc_updatefrags);
1185                         MSG_WriteByte (&sv.reliable_datagram, i);
1186                         MSG_WriteShort (&sv.reliable_datagram, host_client->frags);
1187                 }
1188         }
1189
1190         for (j = 0, client = svs.clients;j < svs.maxclients;j++, client++)
1191                 if (client->netconnection)
1192                         SZ_Write (&client->message, sv.reliable_datagram.data, sv.reliable_datagram.cursize);
1193
1194         SZ_Clear (&sv.reliable_datagram);
1195 }
1196
1197
1198 /*
1199 =======================
1200 SV_SendNop
1201
1202 Send a nop message without trashing or sending the accumulated client
1203 message buffer
1204 =======================
1205 */
1206 void SV_SendNop (client_t *client)
1207 {
1208         sizebuf_t       msg;
1209         qbyte           buf[4];
1210
1211         msg.data = buf;
1212         msg.maxsize = sizeof(buf);
1213         msg.cursize = 0;
1214
1215         MSG_WriteChar (&msg, svc_nop);
1216
1217         if (NetConn_SendUnreliableMessage (client->netconnection, &msg) == -1)
1218                 SV_DropClient (true);   // if the message couldn't send, kick off
1219         client->last_message = realtime;
1220 }
1221
1222 /*
1223 =======================
1224 SV_SendClientMessages
1225 =======================
1226 */
1227 void SV_SendClientMessages (void)
1228 {
1229         int i, prepared = false;
1230
1231 // update frags, names, etc
1232         SV_UpdateToReliableMessages();
1233
1234 // build individual updates
1235         for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
1236         {
1237                 if (!host_client->active)
1238                         continue;
1239                 if (!host_client->netconnection)
1240                 {
1241                         SZ_Clear(&host_client->message);
1242                         continue;
1243                 }
1244
1245                 if (host_client->deadsocket || host_client->message.overflowed)
1246                 {
1247                         SV_DropClient (true);   // if the message couldn't send, kick off
1248                         continue;
1249                 }
1250
1251                 if (host_client->spawned)
1252                 {
1253                         if (!prepared)
1254                         {
1255                                 prepared = true;
1256                                 // only prepare entities once per frame
1257                                 SV_PrepareEntitiesForSending();
1258                         }
1259                         if (!SV_SendClientDatagram (host_client))
1260                                 continue;
1261                 }
1262                 else
1263                 {
1264                 // the player isn't totally in the game yet
1265                 // send small keepalive messages if too much time has passed
1266                 // send a full message when the next signon stage has been requested
1267                 // some other message data (name changes, etc) may accumulate
1268                 // between signon stages
1269                         if (!host_client->sendsignon)
1270                         {
1271                                 if (realtime - host_client->last_message > 5)
1272                                         SV_SendNop (host_client);
1273                                 continue;       // don't send out non-signon messages
1274                         }
1275                 }
1276
1277                 if (host_client->message.cursize || host_client->dropasap)
1278                 {
1279                         if (!NetConn_CanSendMessage (host_client->netconnection))
1280                                 continue;
1281
1282                         if (host_client->dropasap)
1283                                 SV_DropClient (false);  // went to another level
1284                         else
1285                         {
1286                                 if (NetConn_SendReliableMessage (host_client->netconnection, &host_client->message) == -1)
1287                                         SV_DropClient (true);   // if the message couldn't send, kick off
1288                                 SZ_Clear (&host_client->message);
1289                                 host_client->last_message = realtime;
1290                                 host_client->sendsignon = false;
1291                         }
1292                 }
1293         }
1294
1295 // clear muzzle flashes
1296         SV_CleanupEnts();
1297 }
1298
1299
1300 /*
1301 ==============================================================================
1302
1303 SERVER SPAWNING
1304
1305 ==============================================================================
1306 */
1307
1308 /*
1309 ================
1310 SV_ModelIndex
1311
1312 ================
1313 */
1314 int SV_ModelIndex(char *s, int precachemode)
1315 {
1316         int i, limit = (sv.protocol == PROTOCOL_QUAKE ? 256 : MAX_MODELS);
1317         char filename[MAX_QPATH];
1318         if (!s || !*s)
1319                 return 0;
1320         // testing
1321         //if (precachemode == 2)
1322         //      return 0;
1323         strlcpy(filename, s, sizeof(filename));
1324         for (i = 2;i < limit;i++)
1325         {
1326                 if (!sv.model_precache[i][0])
1327                 {
1328                         if (precachemode)
1329                         {
1330                                 if (sv.state != ss_loading && (sv.protocol == PROTOCOL_QUAKE || sv.protocol == PROTOCOL_DARKPLACES1 || sv.protocol == PROTOCOL_DARKPLACES2 || sv.protocol == PROTOCOL_DARKPLACES3 || sv.protocol == PROTOCOL_DARKPLACES4 || sv.protocol == PROTOCOL_DARKPLACES5))
1331                                 {
1332                                         Con_Printf("SV_ModelIndex(\"%s\"): precache_model can only be done in spawn functions\n", filename);
1333                                         return 0;
1334                                 }
1335                                 if (precachemode == 1)
1336                                         Con_Printf("SV_ModelIndex(\"%s\"): not precached (fix your code), precaching anyway\n", filename);
1337                                 strlcpy(sv.model_precache[i], filename, sizeof(sv.model_precache[i]));
1338                                 sv.models[i] = Mod_ForName (sv.model_precache[i], true, false, false);
1339                                 if (sv.protocol == PROTOCOL_DARKPLACES6)
1340                                 {
1341                                         MSG_WriteByte(&sv.reliable_datagram, svc_precache);
1342                                         MSG_WriteShort(&sv.reliable_datagram, i + 32768);
1343                                         MSG_WriteString(&sv.reliable_datagram, filename);
1344                                 }
1345                                 return i;
1346                         }
1347                         Con_Printf("SV_ModelIndex(\"%s\"): not precached\n", filename);
1348                         return 0;
1349                 }
1350                 if (!strcmp(sv.model_precache[i], filename))
1351                         return i;
1352         }
1353         Con_Printf("SV_ModelIndex(\"%s\"): i (%i) == MAX_MODELS (%i)\n", filename, i, MAX_MODELS);
1354         return 0;
1355 }
1356
1357 /*
1358 ================
1359 SV_SoundIndex
1360
1361 ================
1362 */
1363 int SV_SoundIndex(char *s, int precachemode)
1364 {
1365         int i, limit = (sv.protocol == PROTOCOL_QUAKE ? 256 : MAX_SOUNDS);
1366         char filename[MAX_QPATH];
1367         if (!s || !*s)
1368                 return 0;
1369         // testing
1370         //if (precachemode == 2)
1371         //      return 0;
1372         strlcpy(filename, s, sizeof(filename));
1373         for (i = 1;i < limit;i++)
1374         {
1375                 if (!sv.sound_precache[i][0])
1376                 {
1377                         if (precachemode)
1378                         {
1379                                 if (sv.state != ss_loading && (sv.protocol == PROTOCOL_QUAKE || sv.protocol == PROTOCOL_DARKPLACES1 || sv.protocol == PROTOCOL_DARKPLACES2 || sv.protocol == PROTOCOL_DARKPLACES3 || sv.protocol == PROTOCOL_DARKPLACES4 || sv.protocol == PROTOCOL_DARKPLACES5))
1380                                 {
1381                                         Con_Printf("SV_SoundIndex(\"%s\"): precache_sound can only be done in spawn functions\n", filename);
1382                                         return 0;
1383                                 }
1384                                 if (precachemode == 1)
1385                                         Con_Printf("SV_SoundIndex(\"%s\"): not precached (fix your code), precaching anyway\n", filename);
1386                                 strlcpy(sv.sound_precache[i], filename, sizeof(sv.sound_precache[i]));
1387                                 if (sv.protocol == PROTOCOL_DARKPLACES6)
1388                                 {
1389                                         MSG_WriteByte(&sv.reliable_datagram, svc_precache);
1390                                         MSG_WriteShort(&sv.reliable_datagram, i + 32768);
1391                                         MSG_WriteString(&sv.reliable_datagram, filename);
1392                                 }
1393                                 return i;
1394                         }
1395                         Con_Printf("SV_SoundIndex(\"%s\"): not precached\n", filename);
1396                         return 0;
1397                 }
1398                 if (!strcmp(sv.sound_precache[i], filename))
1399                         return i;
1400         }
1401         Con_Printf("SV_SoundIndex(\"%s\"): i (%i) == MAX_SOUNDS (%i)\n", filename, i, MAX_SOUNDS);
1402         return 0;
1403 }
1404
1405 /*
1406 ================
1407 SV_CreateBaseline
1408
1409 ================
1410 */
1411 void SV_CreateBaseline (void)
1412 {
1413         int i, entnum, large;
1414         edict_t *svent;
1415
1416         // LordHavoc: clear *all* states (note just active ones)
1417         for (entnum = 0;entnum < sv.max_edicts;entnum++)
1418         {
1419                 // get the current server version
1420                 svent = EDICT_NUM(entnum);
1421
1422                 // LordHavoc: always clear state values, whether the entity is in use or not
1423                 svent->e->baseline = defaultstate;
1424
1425                 if (svent->e->free)
1426                         continue;
1427                 if (entnum > svs.maxclients && !svent->v->modelindex)
1428                         continue;
1429
1430                 // create entity baseline
1431                 VectorCopy (svent->v->origin, svent->e->baseline.origin);
1432                 VectorCopy (svent->v->angles, svent->e->baseline.angles);
1433                 svent->e->baseline.frame = svent->v->frame;
1434                 svent->e->baseline.skin = svent->v->skin;
1435                 if (entnum > 0 && entnum <= svs.maxclients)
1436                 {
1437                         svent->e->baseline.colormap = entnum;
1438                         svent->e->baseline.modelindex = SV_ModelIndex("progs/player.mdl", 1);
1439                 }
1440                 else
1441                 {
1442                         svent->e->baseline.colormap = 0;
1443                         svent->e->baseline.modelindex = svent->v->modelindex;
1444                 }
1445
1446                 large = false;
1447                 if (svent->e->baseline.modelindex & 0xFF00 || svent->e->baseline.frame & 0xFF00)
1448                         large = true;
1449
1450                 // add to the message
1451                 if (large)
1452                         MSG_WriteByte (&sv.signon, svc_spawnbaseline2);
1453                 else
1454                         MSG_WriteByte (&sv.signon, svc_spawnbaseline);
1455                 MSG_WriteShort (&sv.signon, entnum);
1456
1457                 if (large)
1458                 {
1459                         MSG_WriteShort (&sv.signon, svent->e->baseline.modelindex);
1460                         MSG_WriteShort (&sv.signon, svent->e->baseline.frame);
1461                 }
1462                 else
1463                 {
1464                         MSG_WriteByte (&sv.signon, svent->e->baseline.modelindex);
1465                         MSG_WriteByte (&sv.signon, svent->e->baseline.frame);
1466                 }
1467                 MSG_WriteByte (&sv.signon, svent->e->baseline.colormap);
1468                 MSG_WriteByte (&sv.signon, svent->e->baseline.skin);
1469                 for (i=0 ; i<3 ; i++)
1470                 {
1471                         MSG_WriteCoord(&sv.signon, svent->e->baseline.origin[i], sv.protocol);
1472                         MSG_WriteAngle(&sv.signon, svent->e->baseline.angles[i], sv.protocol);
1473                 }
1474         }
1475 }
1476
1477
1478 /*
1479 ================
1480 SV_SendReconnect
1481
1482 Tell all the clients that the server is changing levels
1483 ================
1484 */
1485 void SV_SendReconnect (void)
1486 {
1487         char    data[128];
1488         sizebuf_t       msg;
1489
1490         msg.data = data;
1491         msg.cursize = 0;
1492         msg.maxsize = sizeof(data);
1493
1494         MSG_WriteChar (&msg, svc_stufftext);
1495         MSG_WriteString (&msg, "reconnect\n");
1496         NetConn_SendToAll (&msg, 5);
1497
1498         if (cls.state != ca_dedicated)
1499                 Cmd_ExecuteString ("reconnect\n", src_command);
1500 }
1501
1502
1503 /*
1504 ================
1505 SV_SaveSpawnparms
1506
1507 Grabs the current state of each client for saving across the
1508 transition to another level
1509 ================
1510 */
1511 void SV_SaveSpawnparms (void)
1512 {
1513         int             i, j;
1514
1515         svs.serverflags = pr_global_struct->serverflags;
1516
1517         for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
1518         {
1519                 if (!host_client->active)
1520                         continue;
1521
1522         // call the progs to get default spawn parms for the new client
1523                 pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
1524                 PR_ExecuteProgram (pr_global_struct->SetChangeParms, "QC function SetChangeParms is missing");
1525                 for (j=0 ; j<NUM_SPAWN_PARMS ; j++)
1526                         host_client->spawn_parms[j] = (&pr_global_struct->parm1)[j];
1527         }
1528 }
1529
1530 void SV_IncreaseEdicts(void)
1531 {
1532         int i;
1533         edict_t *ent;
1534         int oldmax_edicts = sv.max_edicts;
1535         void *oldedictsengineprivate = sv.edictsengineprivate;
1536         void *oldedictsfields = sv.edictsfields;
1537         void *oldmoved_edicts = sv.moved_edicts;
1538
1539         if (sv.max_edicts >= MAX_EDICTS)
1540                 return;
1541
1542         // links don't survive the transition, so unlink everything
1543         for (i = 0, ent = sv.edicts;i < sv.max_edicts;i++, ent++)
1544         {
1545                 if (!ent->e->free)
1546                         SV_UnlinkEdict(sv.edicts + i);
1547                 memset(&ent->e->areagrid, 0, sizeof(ent->e->areagrid));
1548         }
1549         SV_ClearWorld();
1550
1551         sv.max_edicts   = min(sv.max_edicts + 256, MAX_EDICTS);
1552         sv.edictsengineprivate = Mem_Alloc(sv_edicts_mempool, sv.max_edicts * sizeof(edict_engineprivate_t));
1553         sv.edictsfields = Mem_Alloc(sv_edicts_mempool, sv.max_edicts * pr_edict_size);
1554         sv.moved_edicts = Mem_Alloc(sv_edicts_mempool, sv.max_edicts * sizeof(edict_t *));
1555
1556         memcpy(sv.edictsengineprivate, oldedictsengineprivate, oldmax_edicts * sizeof(edict_engineprivate_t));
1557         memcpy(sv.edictsfields, oldedictsfields, oldmax_edicts * pr_edict_size);
1558
1559         for (i = 0, ent = sv.edicts;i < sv.max_edicts;i++, ent++)
1560         {
1561                 ent->e = sv.edictsengineprivate + i;
1562                 ent->v = (void *)((qbyte *)sv.edictsfields + i * pr_edict_size);
1563                 // link every entity except world
1564                 if (!ent->e->free)
1565                         SV_LinkEdict(ent, false);
1566         }
1567
1568         Mem_Free(oldedictsengineprivate);
1569         Mem_Free(oldedictsfields);
1570         Mem_Free(oldmoved_edicts);
1571 }
1572
1573 /*
1574 ================
1575 SV_SpawnServer
1576
1577 This is called at the start of each level
1578 ================
1579 */
1580 extern float            scr_centertime_off;
1581
1582 void SV_SpawnServer (const char *server)
1583 {
1584         edict_t *ent;
1585         int i;
1586         qbyte *entities;
1587         model_t *worldmodel;
1588         char modelname[sizeof(sv.modelname)];
1589
1590         Con_DPrintf("SpawnServer: %s\n", server);
1591
1592         snprintf (modelname, sizeof(modelname), "maps/%s.bsp", server);
1593         worldmodel = Mod_ForName(modelname, false, true, true);
1594         if (!worldmodel || !worldmodel->TraceBox)
1595         {
1596                 Con_Printf("Couldn't load map %s\n", modelname);
1597                 return;
1598         }
1599
1600         // let's not have any servers with no name
1601         if (hostname.string[0] == 0)
1602                 Cvar_Set ("hostname", "UNNAMED");
1603         scr_centertime_off = 0;
1604
1605         svs.changelevel_issued = false;         // now safe to issue another
1606
1607 //
1608 // tell all connected clients that we are going to a new level
1609 //
1610         if (sv.active)
1611                 SV_SendReconnect();
1612         else
1613         {
1614                 // make sure cvars have been checked before opening the ports
1615                 NetConn_ServerFrame();
1616                 NetConn_OpenServerPorts(true);
1617         }
1618
1619 //
1620 // make cvars consistant
1621 //
1622         if (coop.integer)
1623                 Cvar_SetValue ("deathmatch", 0);
1624         current_skill = bound(0, (int)(skill.value + 0.5), 3);
1625
1626         Cvar_SetValue ("skill", (float)current_skill);
1627
1628 //
1629 // set up the new server
1630 //
1631         Host_ClearMemory ();
1632
1633         memset (&sv, 0, sizeof(sv));
1634
1635         strlcpy (sv.name, server, sizeof (sv.name));
1636
1637         sv.netquakecompatible = false;
1638         if (!strcasecmp(sv_protocolname.string, "QUAKE"))
1639         {
1640                 sv.protocol = PROTOCOL_QUAKE;
1641                 sv.netquakecompatible = true;
1642         }
1643         else if (!strcasecmp(sv_protocolname.string, "QUAKEDP"))
1644                 sv.protocol = PROTOCOL_QUAKE;
1645         else if (!strcasecmp(sv_protocolname.string, "DARKPLACES1"))
1646                 sv.protocol = PROTOCOL_DARKPLACES1;
1647         else if (!strcasecmp(sv_protocolname.string, "DARKPLACES2"))
1648                 sv.protocol = PROTOCOL_DARKPLACES2;
1649         else if (!strcasecmp(sv_protocolname.string, "DARKPLACES3"))
1650                 sv.protocol = PROTOCOL_DARKPLACES3;
1651         else if (!strcasecmp(sv_protocolname.string, "DARKPLACES4"))
1652                 sv.protocol = PROTOCOL_DARKPLACES4;
1653         else if (!strcasecmp(sv_protocolname.string, "DARKPLACES5"))
1654                 sv.protocol = PROTOCOL_DARKPLACES5;
1655         else if (!strcasecmp(sv_protocolname.string, "DARKPLACES6"))
1656                 sv.protocol = PROTOCOL_DARKPLACES6;
1657         else
1658         {
1659                 sv.protocol = PROTOCOL_DARKPLACES6;
1660                 Con_Printf("Unknown sv_protocolname \"%s\", valid values are QUAKE, QUAKEDP, DARKPLACES1, DARKPLACES2, DARKPLACES3, DARKPLACES4, DARKPLACES5, DARKPLACES6, falling back to DARKPLACES6 protocol\n", sv_protocolname.string);
1661         }
1662
1663 // load progs to get entity field count
1664         PR_LoadProgs ();
1665
1666 // allocate server memory
1667         // start out with just enough room for clients and a reasonable estimate of entities
1668         sv.max_edicts = max(svs.maxclients + 1, 512);
1669         sv.max_edicts = min(sv.max_edicts, MAX_EDICTS);
1670
1671         // clear the edict memory pool
1672         Mem_EmptyPool(sv_edicts_mempool);
1673         // edict_t structures (hidden from progs)
1674         sv.edicts = Mem_Alloc(sv_edicts_mempool, MAX_EDICTS * sizeof(edict_t));
1675         // engine private structures (hidden from progs)
1676         sv.edictsengineprivate = Mem_Alloc(sv_edicts_mempool, sv.max_edicts * sizeof(edict_engineprivate_t));
1677         // progs fields, often accessed by server
1678         sv.edictsfields = Mem_Alloc(sv_edicts_mempool, sv.max_edicts * pr_edict_size);
1679         // used by PushMove to move back pushed entities
1680         sv.moved_edicts = Mem_Alloc(sv_edicts_mempool, sv.max_edicts * sizeof(edict_t *));
1681         for (i = 0;i < sv.max_edicts;i++)
1682         {
1683                 ent = sv.edicts + i;
1684                 ent->e = sv.edictsengineprivate + i;
1685                 ent->v = (void *)((qbyte *)sv.edictsfields + i * pr_edict_size);
1686         }
1687
1688         // fix up client->edict pointers for returning clients right away...
1689         for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
1690                 host_client->edict = EDICT_NUM(i + 1);
1691
1692         sv.datagram.maxsize = sizeof(sv.datagram_buf);
1693         sv.datagram.cursize = 0;
1694         sv.datagram.data = sv.datagram_buf;
1695
1696         sv.reliable_datagram.maxsize = sizeof(sv.reliable_datagram_buf);
1697         sv.reliable_datagram.cursize = 0;
1698         sv.reliable_datagram.data = sv.reliable_datagram_buf;
1699
1700         sv.signon.maxsize = sizeof(sv.signon_buf);
1701         sv.signon.cursize = 0;
1702         sv.signon.data = sv.signon_buf;
1703
1704 // leave slots at start for clients only
1705         sv.num_edicts = svs.maxclients+1;
1706
1707         sv.state = ss_loading;
1708         sv.paused = false;
1709
1710         sv.time = 1.0;
1711
1712         Mod_ClearUsed();
1713         worldmodel->used = true;
1714
1715         strlcpy (sv.name, server, sizeof (sv.name));
1716         strcpy(sv.modelname, modelname);
1717         sv.worldmodel = worldmodel;
1718         sv.models[1] = sv.worldmodel;
1719
1720 //
1721 // clear world interaction links
1722 //
1723         SV_ClearWorld ();
1724
1725         strlcpy(sv.sound_precache[0], "", sizeof(sv.sound_precache[0]));
1726
1727         strlcpy(sv.model_precache[0], "", sizeof(sv.model_precache[0]));
1728         strlcpy(sv.model_precache[1], sv.modelname, sizeof(sv.model_precache[1]));
1729         for (i = 1;i < sv.worldmodel->brush.numsubmodels;i++)
1730         {
1731                 snprintf(sv.model_precache[i+1], sizeof(sv.model_precache[i+1]), "*%i", i);
1732                 sv.models[i+1] = Mod_ForName (sv.model_precache[i+1], false, false, false);
1733         }
1734
1735 //
1736 // load the rest of the entities
1737 //
1738         ent = EDICT_NUM(0);
1739         memset (ent->v, 0, progs->entityfields * 4);
1740         ent->e->free = false;
1741         ent->v->model = PR_SetString(sv.modelname);
1742         ent->v->modelindex = 1;         // world model
1743         ent->v->solid = SOLID_BSP;
1744         ent->v->movetype = MOVETYPE_PUSH;
1745
1746         if (coop.value)
1747                 pr_global_struct->coop = coop.integer;
1748         else
1749                 pr_global_struct->deathmatch = deathmatch.integer;
1750
1751         pr_global_struct->mapname = PR_SetString(sv.name);
1752
1753 // serverflags are for cross level information (sigils)
1754         pr_global_struct->serverflags = svs.serverflags;
1755
1756         // load replacement entity file if found
1757         entities = NULL;
1758         if (sv_entpatch.integer)
1759                 entities = FS_LoadFile(va("maps/%s.ent", sv.name), tempmempool, true);
1760         if (entities)
1761         {
1762                 Con_Printf("Loaded maps/%s.ent\n", sv.name);
1763                 ED_LoadFromFile (entities);
1764                 Mem_Free(entities);
1765         }
1766         else
1767                 ED_LoadFromFile (sv.worldmodel->brush.entities);
1768
1769
1770         // LordHavoc: clear world angles (to fix e3m3.bsp)
1771         VectorClear(sv.edicts->v->angles);
1772
1773         sv.active = true;
1774
1775 // all setup is completed, any further precache statements are errors
1776         sv.state = ss_active;
1777
1778 // run two frames to allow everything to settle
1779         for (i = 0;i < 2;i++)
1780         {
1781                 sv.frametime = pr_global_struct->frametime = host_frametime = 0.1;
1782                 SV_Physics ();
1783         }
1784
1785         Mod_PurgeUnused();
1786
1787 // create a baseline for more efficient communications
1788         if (sv.protocol == PROTOCOL_QUAKE)
1789                 SV_CreateBaseline ();
1790
1791 // send serverinfo to all connected clients
1792         // (note this also handles botclients coming back from a level change)
1793         for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
1794                 if (host_client->active)
1795                         SV_SendServerinfo(host_client);
1796
1797         Con_DPrint("Server spawned.\n");
1798         NetConn_Heartbeat (2);
1799 }
1800