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