3 #include "clprogdefs.h"
5 #include "cl_collision.h"
9 //============================================================================
10 // Client prog handling
11 //[515]: omg !!! optimize it ! a lot of hacks here and there also :P
13 #define CSQC_RETURNVAL prog->globals.generic[OFS_RETURN]
14 #define CSQC_BEGIN csqc_tmpprog=prog;prog=0;PRVM_SetProg(PRVM_CLIENTPROG);
15 #define CSQC_END prog=csqc_tmpprog;
17 static prvm_prog_t *csqc_tmpprog;
19 //[515]: these are required funcs
20 static char *cl_required_func[] =
25 "CSQC_ConsoleCommand",
28 static int cl_numrequiredfunc = sizeof(cl_required_func) / sizeof(char*);
30 void CL_VM_Error (const char *format, ...) DP_FUNC_PRINTF(1);
31 void CL_VM_Error (const char *format, ...) //[515]: hope it will be never executed =)
33 char errorstring[4096];
36 va_start (argptr, format);
37 dpvsnprintf (errorstring, sizeof(errorstring), format, argptr);
39 // Con_Printf( "CL_VM_Error: %s\n", errorstring );
42 cl.csqc_loaded = false;
44 Cvar_SetValueQuick(&csqc_progcrc, -1);
45 Cvar_SetValueQuick(&csqc_progsize, -1);
47 // Host_AbortCurrentFrame(); //[515]: hmmm... if server says it needs csqc then client MUST disconnect
48 Host_Error("CL_VM_Error: %s", errorstring);
50 void CL_VM_UpdateDmgGlobals (int dmg_take, int dmg_save, vec3_t dmg_origin)
56 val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.dmg_take);
58 val->_float = dmg_take;
59 val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.dmg_save);
61 val->_float = dmg_save;
62 val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.dmg_origin);
65 val->vector[0] = dmg_origin[0];
66 val->vector[1] = dmg_origin[1];
67 val->vector[2] = dmg_origin[2];
73 void CSQC_UpdateNetworkTimes(double newtime, double oldtime)
79 if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.servertime)))
80 val->_float = newtime;
81 if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.serverprevtime)))
82 val->_float = oldtime;
83 if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.serverdeltatime)))
84 val->_float = newtime - oldtime;
88 //[515]: set globals before calling R_UpdateView, WEIRD CRAP
89 static void CSQC_SetGlobals (void)
93 prog->globals.client->time = cl.time;
94 prog->globals.client->frametime = max(0, cl.time - cl.oldtime);
95 prog->globals.client->servercommandframe = cls.servermovesequence;
96 prog->globals.client->clientcommandframe = cl.movecmd[0].sequence;
97 VectorCopy(cl.viewangles, prog->globals.client->input_angles);
98 VectorCopy(cl.viewangles, cl.csqc_angles);
99 // // FIXME: this actually belongs into getinputstate().. [12/17/2007 Black]
100 prog->globals.client->input_buttons = cl.movecmd[0].buttons;
101 VectorSet(prog->globals.client->input_movevalues, cl.movecmd[0].forwardmove, cl.movecmd[0].sidemove, cl.movecmd[0].upmove);
102 //VectorCopy(cl.movement_origin, cl.csqc_origin);
103 Matrix4x4_OriginFromMatrix(&cl.entities[cl.viewentity].render.matrix, cl.csqc_origin);
105 // LordHavoc: Spike says not to do this, but without pmove_org the
106 // CSQC is useless as it can't alter the view origin without
107 // completely replacing it
108 VectorCopy(cl.csqc_origin, prog->globals.client->pmove_org);
109 VectorCopy(cl.velocity, prog->globals.client->pmove_vel);
111 if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.view_angles)))
112 VectorCopy(cl.viewangles, val->vector);
113 prog->globals.client->maxclients = cl.maxclients;
117 void CSQC_Predraw (prvm_edict_t *ed)
120 if(!ed->fields.client->predraw)
122 b = prog->globals.client->self;
123 prog->globals.client->self = PRVM_EDICT_TO_PROG(ed);
124 PRVM_ExecuteProgram(ed->fields.client->predraw, "CSQC_Predraw: NULL function\n");
125 prog->globals.client->self = b;
128 void CSQC_Think (prvm_edict_t *ed)
131 if(ed->fields.client->think)
132 if(ed->fields.client->nextthink && ed->fields.client->nextthink <= prog->globals.client->time)
134 ed->fields.client->nextthink = 0;
135 b = prog->globals.client->self;
136 prog->globals.client->self = PRVM_EDICT_TO_PROG(ed);
137 PRVM_ExecuteProgram(ed->fields.client->think, "CSQC_Think: NULL function\n");
138 prog->globals.client->self = b;
142 extern cvar_t cl_noplayershadow;
143 qboolean CSQC_AddRenderEdict(prvm_edict_t *ed)
149 entity_render_t *entrender;
151 matrix4x4_t tagmatrix, matrix2;
153 model = CL_GetModelFromEdict(ed);
157 entrender = CL_NewTempEntity(0);
161 entrender->model = model;
162 entrender->skinnum = (int)ed->fields.client->skin;
163 entrender->effects |= entrender->model->effects;
166 if((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.renderflags)) && val->_float) renderflags = (int)val->_float;
167 if((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.alpha)) && val->_float) entrender->alpha = val->_float;
168 if((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.scale)) && val->_float) entrender->scale = scale = val->_float;
169 if((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.colormod)) && VectorLength2(val->vector)) VectorCopy(val->vector, entrender->colormod);
170 if((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.effects)) && val->_float) entrender->effects |= (int)val->_float;
171 if((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.tag_entity)) && val->edict)
175 tagentity = val->edict;
176 if((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.tag_index)) && val->_float)
177 tagindex = (int)val->_float;
178 CL_GetTagMatrix (&tagmatrix, PRVM_PROG_TO_EDICT(tagentity), tagindex);
181 Matrix4x4_CreateIdentity(&tagmatrix);
183 if (renderflags & RF_USEAXIS)
186 VectorNegate(prog->globals.client->v_right, left);
187 Matrix4x4_FromVectors(&matrix2, prog->globals.client->v_forward, left, prog->globals.client->v_up, ed->fields.client->origin);
188 Matrix4x4_Scale(&matrix2, scale, 1);
193 VectorCopy(ed->fields.client->angles, angles);
194 // if model is alias, reverse pitch direction
195 if (entrender->model->type == mod_alias)
196 angles[0] = -angles[0];
198 // set up the render matrix
199 Matrix4x4_CreateFromQuakeEntity(&matrix2, ed->fields.client->origin[0], ed->fields.client->origin[1], ed->fields.client->origin[2], angles[0], angles[1], angles[2], scale);
202 // set up the animation data
203 // self.frame is the interpolation target (new frame)
204 // self.frame1time is the animation base time for the interpolation target
205 // self.frame2 is the interpolation start (previous frame)
206 // self.frame2time is the animation base time for the interpolation start
207 entrender->frame1 = entrender->frame2 = (int) ed->fields.client->frame;
208 if ((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.frame2))) entrender->frame2 = (int) val->_float;
209 if ((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.frame1time))) entrender->frame2time = val->_float;
210 if ((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.frame2time))) entrender->frame1time = val->_float;
211 if ((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.lerpfrac))) entrender->framelerp = val->_float;
212 if ((val = PRVM_EDICTFIELDVALUE(ed, prog->fieldoffsets.shadertime))) entrender->shadertime = val->_float;
214 // concat the matrices to make the entity relative to its tag
215 Matrix4x4_Concat(&entrender->matrix, &tagmatrix, &matrix2);
219 if(renderflags & RF_VIEWMODEL) entrender->flags |= RENDER_VIEWMODEL;
220 if(renderflags & RF_EXTERNALMODEL)entrender->flags |= RENDER_EXTERIORMODEL;
221 if(renderflags & RF_DEPTHHACK) entrender->effects |= EF_NODEPTHTEST;
222 if(renderflags & RF_ADDITIVE) entrender->effects |= EF_ADDITIVE;
225 c = (int)ed->fields.client->colormap;
227 CL_SetEntityColormapColors(entrender, -1);
228 else if (c <= cl.maxclients && cl.scores != NULL)
229 CL_SetEntityColormapColors(entrender, cl.scores[c-1].colors);
231 CL_SetEntityColormapColors(entrender, c);
233 entrender->flags &= ~(RENDER_SHADOW | RENDER_LIGHT | RENDER_NOSELFSHADOW);
234 // either fullbright or lit
235 if (!(entrender->effects & EF_FULLBRIGHT) && !r_fullbright.integer)
236 entrender->flags |= RENDER_LIGHT;
237 // hide player shadow during intermission or nehahra movie
238 if (!(entrender->effects & (EF_NOSHADOW | EF_ADDITIVE | EF_NODEPTHTEST))
239 && (entrender->alpha >= 1)
240 && !(entrender->flags & RENDER_VIEWMODEL)
241 && (!(entrender->flags & RENDER_EXTERIORMODEL) || (!cl.intermission && cls.protocol != PROTOCOL_NEHAHRAMOVIE && !cl_noplayershadow.integer)))
242 entrender->flags |= RENDER_SHADOW;
243 if (entrender->flags & RENDER_VIEWMODEL)
244 entrender->flags |= RENDER_NOSELFSHADOW;
245 if (entrender->effects & EF_NOSELFSHADOW)
246 entrender->flags |= RENDER_NOSELFSHADOW;
248 // make the other useful stuff
249 CL_UpdateRenderEntity(entrender);
254 qboolean CL_VM_InputEvent (qboolean down, int key, int ascii)
262 if (!prog->funcoffsets.CSQC_InputEvent)
266 prog->globals.client->time = cl.time;
267 prog->globals.client->self = cl.csqc_server2csqcentitynumber[cl.playerentity];
268 PRVM_G_FLOAT(OFS_PARM0) = !down; // 0 is down, 1 is up
269 PRVM_G_FLOAT(OFS_PARM1) = key;
270 PRVM_G_FLOAT(OFS_PARM2) = ascii;
271 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_InputEvent, "QC function CSQC_InputEvent is missing");
278 qboolean CL_VM_UpdateView (void)
288 //VectorCopy(cl.viewangles, oldangles);
289 prog->globals.client->time = cl.time;
290 prog->globals.client->self = cl.csqc_server2csqcentitynumber[cl.playerentity];
292 // clear renderable entity and light lists to prevent crashes if the
293 // CSQC_UpdateView function does not call R_ClearScene as it should
294 r_refdef.scene.numentities = 0;
295 r_refdef.scene.numlights = 0;
296 // pass in width and height as parameters (EXT_CSQC_1)
297 PRVM_G_FLOAT(OFS_PARM0) = vid.width;
298 PRVM_G_FLOAT(OFS_PARM1) = vid.height;
299 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_UpdateView, "QC function CSQC_UpdateView is missing");
300 //VectorCopy(oldangles, cl.viewangles);
301 // Dresk : Reset Dmg Globals Here
302 CL_VM_UpdateDmgGlobals(0, 0, emptyvector);
307 extern sizebuf_t vm_tempstringsbuf;
308 qboolean CL_VM_ConsoleCommand (const char *cmd)
310 int restorevm_tempstringsbuf_cursize;
315 if (prog->funcoffsets.CSQC_ConsoleCommand)
317 prog->globals.client->time = cl.time;
318 prog->globals.client->self = cl.csqc_server2csqcentitynumber[cl.playerentity];
319 restorevm_tempstringsbuf_cursize = vm_tempstringsbuf.cursize;
320 PRVM_G_INT(OFS_PARM0) = PRVM_SetTempString(cmd);
321 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_ConsoleCommand, "QC function CSQC_ConsoleCommand is missing");
322 vm_tempstringsbuf.cursize = restorevm_tempstringsbuf_cursize;
329 qboolean CL_VM_Parse_TempEntity (void)
336 if(prog->funcoffsets.CSQC_Parse_TempEntity)
339 prog->globals.client->time = cl.time;
340 prog->globals.client->self = cl.csqc_server2csqcentitynumber[cl.playerentity];
341 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Parse_TempEntity, "QC function CSQC_Parse_TempEntity is missing");
353 void CL_VM_Parse_StuffCmd (const char *msg)
355 int restorevm_tempstringsbuf_cursize;
361 // if this is setting a csqc variable, deprotect csqc_progcrc
362 // temporarily so that it can be set by the cvar command,
363 // and then reprotect it afterwards
364 int crcflags = csqc_progcrc.flags;
365 int sizeflags = csqc_progcrc.flags;
366 csqc_progcrc.flags &= ~CVAR_READONLY;
367 csqc_progsize.flags &= ~CVAR_READONLY;
368 Cmd_ExecuteString (msg, src_command);
369 csqc_progcrc.flags = crcflags;
370 csqc_progsize.flags = sizeflags;
375 if(!strncmp(msg, "curl --clear_autodownload\ncurl --pak --forthismap --as ", 55))
377 // special handling for map download commands
378 // run these commands IMMEDIATELY, instead of waiting for a client frame
379 // that way, there is no black screen when playing back demos
380 // I know this is a really ugly hack, but I can't think of any better way
381 // FIXME find the actual CAUSE of this, and make demo playback WAIT
382 // until all maps are loaded, then remove this hack
384 char buf[MAX_INPUTLINE];
397 if(l > sizeof(buf) - 1)
399 strlcpy(buf, p, l + 1); // strlcpy needs a + 1 as it includes the newline!
401 Cmd_ExecuteString(buf, src_command);
405 ++p; // skip the newline and continue
407 break; // end of string or overflow
409 Cmd_ExecuteString("curl --clear_autodownload", src_command); // don't inhibit CSQC loading
419 if(prog->funcoffsets.CSQC_Parse_StuffCmd)
421 prog->globals.client->time = cl.time;
422 prog->globals.client->self = cl.csqc_server2csqcentitynumber[cl.playerentity];
423 restorevm_tempstringsbuf_cursize = vm_tempstringsbuf.cursize;
424 PRVM_G_INT(OFS_PARM0) = PRVM_SetTempString(msg);
425 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Parse_StuffCmd, "QC function CSQC_Parse_StuffCmd is missing");
426 vm_tempstringsbuf.cursize = restorevm_tempstringsbuf_cursize;
433 static void CL_VM_Parse_Print (const char *msg)
435 int restorevm_tempstringsbuf_cursize;
436 prog->globals.client->time = cl.time;
437 prog->globals.client->self = cl.csqc_server2csqcentitynumber[cl.playerentity];
438 restorevm_tempstringsbuf_cursize = vm_tempstringsbuf.cursize;
439 PRVM_G_INT(OFS_PARM0) = PRVM_SetTempString(msg);
440 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Parse_Print, "QC function CSQC_Parse_Print is missing");
441 vm_tempstringsbuf.cursize = restorevm_tempstringsbuf_cursize;
444 void CSQC_AddPrintText (const char *msg)
453 if(prog->funcoffsets.CSQC_Parse_Print)
455 // FIXME: is this bugged?
457 if(msg[i] != '\n' && msg[i] != '\r')
459 if(strlen(cl.csqc_printtextbuf)+i >= MAX_INPUTLINE)
461 CL_VM_Parse_Print(cl.csqc_printtextbuf);
462 cl.csqc_printtextbuf[0] = 0;
465 strlcat(cl.csqc_printtextbuf, msg, MAX_INPUTLINE);
468 strlcat(cl.csqc_printtextbuf, msg, MAX_INPUTLINE);
469 CL_VM_Parse_Print(cl.csqc_printtextbuf);
470 cl.csqc_printtextbuf[0] = 0;
477 void CL_VM_Parse_CenterPrint (const char *msg)
479 int restorevm_tempstringsbuf_cursize;
482 SCR_CenterPrint(msg);
486 if(prog->funcoffsets.CSQC_Parse_CenterPrint)
488 prog->globals.client->time = cl.time;
489 prog->globals.client->self = cl.csqc_server2csqcentitynumber[cl.playerentity];
490 restorevm_tempstringsbuf_cursize = vm_tempstringsbuf.cursize;
491 PRVM_G_INT(OFS_PARM0) = PRVM_SetTempString(msg);
492 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Parse_CenterPrint, "QC function CSQC_Parse_CenterPrint is missing");
493 vm_tempstringsbuf.cursize = restorevm_tempstringsbuf_cursize;
496 SCR_CenterPrint(msg);
500 void CL_VM_UpdateIntermissionState (int intermission)
506 val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.intermission);
508 val->_float = intermission;
512 void CL_VM_UpdateShowingScoresState (int showingscores)
518 val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.sb_showscores);
520 val->_float = showingscores;
524 qboolean CL_VM_Event_Sound(int sound_num, float volume, int channel, float attenuation, int ent, vec3_t pos)
530 if(prog->funcoffsets.CSQC_Event_Sound)
532 prog->globals.client->time = cl.time;
533 prog->globals.client->self = cl.csqc_server2csqcentitynumber[cl.playerentity];
534 PRVM_G_FLOAT(OFS_PARM0) = ent;
535 PRVM_G_FLOAT(OFS_PARM1) = channel;
536 PRVM_G_INT(OFS_PARM2) = PRVM_SetTempString(cl.sound_name[sound_num] );
537 PRVM_G_FLOAT(OFS_PARM3) = volume;
538 PRVM_G_FLOAT(OFS_PARM4) = attenuation;
539 VectorCopy(pos, PRVM_G_VECTOR(OFS_PARM5) );
540 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Event_Sound, "QC function CSQC_Event_Sound is missing");
548 void CL_VM_UpdateCoopDeathmatchGlobals (int gametype)
550 // Avoid global names for clean(er) coding
557 if(gametype == GAME_COOP)
563 if(gametype == GAME_DEATHMATCH)
570 // How did the ServerInfo send an unknown gametype?
571 // Better just assign the globals as 0...
576 val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.coop);
578 val->_float = localcoop;
579 val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.deathmatch);
581 val->_float = localdeathmatch;
585 float CL_VM_Event (float event) //[515]: needed ? I'd say "YES", but don't know for what :D
591 if(prog->funcoffsets.CSQC_Event)
593 prog->globals.client->time = cl.time;
594 prog->globals.client->self = cl.csqc_server2csqcentitynumber[cl.playerentity];
595 PRVM_G_FLOAT(OFS_PARM0) = event;
596 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Event, "QC function CSQC_Event is missing");
603 void CSQC_ReadEntities (void)
605 unsigned short entnum, oldself, realentnum;
608 Host_Error ("CSQC_ReadEntities: CSQC is not loaded");
613 prog->globals.client->time = cl.time;
614 oldself = prog->globals.client->self;
617 entnum = MSG_ReadShort();
618 if(!entnum || msg_badread)
620 realentnum = entnum & 0x7FFF;
621 prog->globals.client->self = cl.csqc_server2csqcentitynumber[realentnum];
624 if(prog->globals.client->self)
626 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Ent_Remove, "QC function CSQC_Ent_Remove is missing");
627 cl.csqc_server2csqcentitynumber[realentnum] = 0;
631 // LordHavoc: removing an entity that is already gone on
632 // the csqc side is possible for legitimate reasons (such
633 // as a repeat of the remove message), so no warning is
635 //Con_Printf("Bad csqc_server2csqcentitynumber map\n"); //[515]: never happens ?
640 if(!prog->globals.client->self)
642 if(!prog->funcoffsets.CSQC_Ent_Spawn)
645 ed = PRVM_ED_Alloc();
646 ed->fields.client->entnum = realentnum;
647 prog->globals.client->self = cl.csqc_server2csqcentitynumber[realentnum] = PRVM_EDICT_TO_PROG(ed);
651 // entity( float entnum ) CSQC_Ent_Spawn;
652 // the qc function should set entnum, too (this way it also can return world [2/1/2008 Andreas]
653 PRVM_G_FLOAT(OFS_PARM0) = (float) realentnum;
654 // make sure no one gets wrong ideas
655 prog->globals.client->self = 0;
656 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Ent_Spawn, "QC function CSQC_Ent_Spawn is missing");
657 prog->globals.client->self = cl.csqc_server2csqcentitynumber[realentnum] = PRVM_EDICT( PRVM_G_INT( OFS_RETURN ) );
659 PRVM_G_FLOAT(OFS_PARM0) = 1;
660 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Ent_Update, "QC function CSQC_Ent_Update is missing");
663 PRVM_G_FLOAT(OFS_PARM0) = 0;
664 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Ent_Update, "QC function CSQC_Ent_Update is missing");
668 prog->globals.client->self = oldself;
672 void CL_VM_CB_BeginIncreaseEdicts(void)
674 // links don't survive the transition, so unlink everything
675 World_UnlinkAll(&cl.world);
678 void CL_VM_CB_EndIncreaseEdicts(void)
683 // link every entity except world
684 for (i = 1, ent = prog->edicts;i < prog->max_edicts;i++, ent++)
685 if (!ent->priv.server->free)
689 void CL_VM_CB_InitEdict(prvm_edict_t *e)
691 e->priv.server->move = false; // don't move on first frame
694 void CL_VM_CB_FreeEdict(prvm_edict_t *ed)
696 World_UnlinkEdict(ed);
697 memset(ed->fields.client, 0, sizeof(*ed->fields.client));
700 void CL_VM_CB_CountEdicts(void)
704 int active = 0, models = 0, solid = 0;
706 for (i=0 ; i<prog->num_edicts ; i++)
708 ent = PRVM_EDICT_NUM(i);
709 if (ent->priv.server->free)
712 if (ent->fields.client->solid)
714 if (ent->fields.client->model)
718 Con_Printf("num_edicts:%3i\n", prog->num_edicts);
719 Con_Printf("active :%3i\n", active);
720 Con_Printf("view :%3i\n", models);
721 Con_Printf("touch :%3i\n", solid);
724 qboolean CL_VM_CB_LoadEdict(prvm_edict_t *ent)
729 void Cmd_ClearCsqcFuncs (void);
731 // returns true if the packet is valid, false if end of file is reached
732 // used for dumping the CSQC download into demo files
733 qboolean MakeDownloadPacket(const char *filename, unsigned char *data, unsigned long len, int crc, int cnt, sizebuf_t *buf, int protocol)
735 int packetsize = buf->maxsize - 7; // byte short long
736 int npackets = (len + packetsize - 1) / (packetsize);
738 if(protocol == PROTOCOL_QUAKEWORLD)
739 return false; // CSQC can't run in QW anyway
744 MSG_WriteByte(buf, svc_stufftext);
745 MSG_WriteString(buf, va("\ncl_downloadbegin %lu %s\n", len, filename));
748 else if(cnt >= 1 && cnt <= npackets)
750 unsigned long thispacketoffset = (cnt - 1) * packetsize;
751 int thispacketsize = len - thispacketoffset;
752 if(thispacketsize > packetsize)
753 thispacketsize = packetsize;
755 MSG_WriteByte(buf, svc_downloaddata);
756 MSG_WriteLong(buf, thispacketoffset);
757 MSG_WriteShort(buf, thispacketsize);
758 SZ_Write(buf, data + thispacketoffset, thispacketsize);
762 else if(cnt == npackets + 1)
764 MSG_WriteByte(buf, svc_stufftext);
765 MSG_WriteString(buf, va("\ncl_downloadfinished %lu %d\n", len, crc));
771 void CL_VM_Init (void)
773 const char* csprogsfn;
774 unsigned char *csprogsdata;
775 fs_offset_t csprogsdatasize;
776 int csprogsdatacrc, requiredcrc;
780 // reset csqc_progcrc after reading it, so that changing servers doesn't
781 // expect csqc on the next server
782 requiredcrc = csqc_progcrc.integer;
783 requiredsize = csqc_progsize.integer;
784 Cvar_SetValueQuick(&csqc_progcrc, -1);
785 Cvar_SetValueQuick(&csqc_progsize, -1);
787 // if the server is not requesting a csprogs, then we're done here
791 // see if the requested csprogs.dat file matches the requested crc
793 csprogsfn = va("dlcache/%s.%i.%i", csqc_progname.string, requiredsize, requiredcrc);
794 csprogsdata = FS_LoadFile(csprogsfn, tempmempool, true, &csprogsdatasize);
797 csprogsfn = csqc_progname.string;
798 csprogsdata = FS_LoadFile(csprogsfn, tempmempool, true, &csprogsdatasize);
802 csprogsdatacrc = CRC_Block(csprogsdata, csprogsdatasize);
803 if (csprogsdatacrc != requiredcrc || csprogsdatasize != requiredsize)
805 if (cls.demoplayback)
807 Con_Printf("^1Warning: Your %s is not the same version as the demo was recorded with (CRC/size are %i/%i but should be %i/%i)\n", csqc_progname.string, csprogsdatacrc, (int)csprogsdatasize, requiredcrc, requiredsize);
808 // Mem_Free(csprogsdata);
810 // We WANT to continue here, and play the demo with different csprogs!
811 // After all, this is just a warning. Sure things may go wrong from here.
815 Mem_Free(csprogsdata);
816 Con_Printf("^1Your %s is not the same version as the server (CRC is %i/%i but should be %i/%i)\n", csqc_progname.string, csprogsdatacrc, (int)csprogsdatasize, requiredcrc, requiredsize);
824 if (requiredcrc >= 0)
826 if (cls.demoplayback)
827 Con_Printf("CL_VM_Init: demo requires CSQC, but \"%s\" wasn't found\n", csqc_progname.string);
829 Con_Printf("CL_VM_Init: server requires CSQC, but \"%s\" wasn't found\n", csqc_progname.string);
836 PRVM_InitProg(PRVM_CLIENTPROG);
838 // allocate the mempools
839 prog->progs_mempool = Mem_AllocPool(csqc_progname.string, 0, NULL);
840 prog->headercrc = CL_PROGHEADER_CRC;
841 prog->edictprivate_size = 0; // no private struct used
842 prog->name = CL_NAME;
843 prog->num_edicts = 1;
844 prog->max_edicts = 512;
845 prog->limit_edicts = CL_MAX_EDICTS;
846 prog->reserved_edicts = 0;
847 prog->edictprivate_size = sizeof(edict_engineprivate_t);
848 // TODO: add a shared extension string #define and add real support for csqc extension strings [12/5/2007 Black]
849 prog->extensionstring = vm_sv_extensions;
850 prog->builtins = vm_cl_builtins;
851 prog->numbuiltins = vm_cl_numbuiltins;
852 prog->begin_increase_edicts = CL_VM_CB_BeginIncreaseEdicts;
853 prog->end_increase_edicts = CL_VM_CB_EndIncreaseEdicts;
854 prog->init_edict = CL_VM_CB_InitEdict;
855 prog->free_edict = CL_VM_CB_FreeEdict;
856 prog->count_edicts = CL_VM_CB_CountEdicts;
857 prog->load_edict = CL_VM_CB_LoadEdict;
858 prog->init_cmd = VM_CL_Cmd_Init;
859 prog->reset_cmd = VM_CL_Cmd_Reset;
860 prog->error_cmd = CL_VM_Error;
862 PRVM_LoadProgs(csprogsfn, cl_numrequiredfunc, cl_required_func, 0, NULL, 0, NULL);
866 CL_VM_Error("CSQC %s ^2failed to load\n", csprogsfn);
869 Mem_Free(csprogsdata);
873 Con_Printf("CSQC %s ^5loaded (crc=%i, size=%i)\n", csprogsfn, csprogsdatacrc, (int)csprogsdatasize);
875 if(cls.demorecording)
877 if(cls.demo_lastcsprogssize != csprogsdatasize || cls.demo_lastcsprogscrc != csprogsdatacrc)
880 char buf[NET_MAXMESSAGE];
882 unsigned char *demobuf; fs_offset_t demofilesize;
884 sb.data = (unsigned char *) buf;
885 sb.maxsize = sizeof(buf);
888 CL_CutDemo(&demobuf, &demofilesize);
889 while(MakeDownloadPacket(csqc_progname.string, csprogsdata, csprogsdatasize, csprogsdatacrc, i++, &sb, cls.protocol))
890 CL_WriteDemoMessage(&sb);
891 CL_PasteDemo(&demobuf, &demofilesize);
893 cls.demo_lastcsprogssize = csprogsdatasize;
894 cls.demo_lastcsprogscrc = csprogsdatacrc;
897 Mem_Free(csprogsdata);
899 // check if OP_STATE animation is possible in this dat file
900 if (prog->fieldoffsets.nextthink >= 0 && prog->fieldoffsets.frame >= 0 && prog->fieldoffsets.think >= 0 && prog->globaloffsets.self >= 0)
901 prog->flag |= PRVM_OP_STATE;
904 prog->globals.client->time = cl.time;
905 prog->globals.client->self = 0;
907 prog->globals.client->mapname = cl.worldmodel ? PRVM_SetEngineString(cl.worldmodel->name) : PRVM_SetEngineString("");
908 prog->globals.client->player_localentnum = cl.playerentity;
910 // set map description (use world entity 0)
911 val = PRVM_EDICTFIELDVALUE(prog->edicts, prog->fieldoffsets.message);
913 val->string = PRVM_SetEngineString(cl.levelname);
914 VectorCopy(cl.world.mins, prog->edicts->fields.client->mins);
915 VectorCopy(cl.world.maxs, prog->edicts->fields.client->maxs);
917 // call the prog init
918 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Init, "QC function CSQC_Init is missing");
921 cl.csqc_loaded = true;
923 cl.csqc_vidvars.drawcrosshair = false;
924 cl.csqc_vidvars.drawenginesbar = false;
926 // Update Coop and Deathmatch Globals (at this point the client knows them from ServerInfo)
927 CL_VM_UpdateCoopDeathmatchGlobals(cl.gametype);
930 void CL_VM_ShutDown (void)
932 Cmd_ClearCsqcFuncs();
933 //Cvar_SetValueQuick(&csqc_progcrc, -1);
934 //Cvar_SetValueQuick(&csqc_progsize, -1);
938 prog->globals.client->time = cl.time;
939 prog->globals.client->self = 0;
940 if (prog->funcoffsets.CSQC_Shutdown)
941 PRVM_ExecuteProgram(prog->funcoffsets.CSQC_Shutdown, "QC function CSQC_Shutdown is missing");
944 Con_Print("CSQC ^1unloaded\n");
945 cl.csqc_loaded = false;
948 qboolean CL_VM_GetEntitySoundOrigin(int entnum, vec3_t out)
956 // FIXME consider attachments here!
958 ed = PRVM_EDICT_NUM(entnum - 32768);
960 if(!ed->priv.required->free)
962 mod = CL_GetModelFromEdict(ed);
963 VectorCopy(ed->fields.client->origin, out);
964 if (mod && mod->soundfromcenter)
965 VectorMAMAM(1.0f, out, 0.5f, mod->normalmins, 0.5f, mod->normalmaxs, out);