1 void CSQCModel_Hook_PreDraw(float isplayer);
9 void CSQCPlayer_LOD_Apply(void)
12 if(self.lodmodelindex0 != self.modelindex)
14 string modelname = self.model;
17 vector mi = self.mins;
18 vector ma = self.maxs;
21 self.lodmodelindex0 = self.modelindex;
22 self.lodmodelindex1 = self.modelindex;
23 self.lodmodelindex2 = self.modelindex;
25 // FIXME: this only supports 3-letter extensions
26 s = strcat(substring(modelname, 0, strlen(modelname)-4), "_lod1", substring(modelname, -4, 4));
32 self.lodmodelindex1 = self.modelindex;
35 s = strcat(substring(modelname, 0, strlen(modelname)-4), "_lod2", substring(modelname, -4, 4));
41 self.lodmodelindex2 = self.modelindex;
44 setmodel(self, modelname); // make everything normal again
45 setsize(self, mi, ma);
49 if(autocvar_cl_playerdetailreduction <= 0)
51 if(autocvar_cl_playerdetailreduction <= -2)
52 self.modelindex = self.lodmodelindex2;
53 else if(autocvar_cl_playerdetailreduction <= -1)
54 self.modelindex = self.lodmodelindex1;
56 self.modelindex = self.lodmodelindex0;
60 float distance = vlen(self.origin - view_origin);
61 float f = (distance * current_viewzoom + 100.0) * autocvar_cl_playerdetailreduction;
62 f *= 1.0 / bound(0.01, view_quality, 1);
63 if(f > autocvar_cl_loddistance2)
64 self.modelindex = self.lodmodelindex2;
65 else if(f > autocvar_cl_loddistance1)
66 self.modelindex = self.lodmodelindex1;
68 self.modelindex = self.lodmodelindex0;
72 // FEATURE: forcemodel (MUST be called BEFORE LOD!)
73 string forceplayermodels_model;
74 float forceplayermodels_modelisgoodmodel;
75 float forceplayermodels_modelindex;
76 float forceplayermodels_skin;
78 string forceplayermodels_mymodel;
79 float forceplayermodels_myisgoodmodel;
80 float forceplayermodels_mymodelindex;
82 float forceplayermodels_attempted;
84 .string forceplayermodels_savemodel;
85 .float forceplayermodels_savemodelindex;
86 .float forceplayermodels_saveskin;
87 .float forceplayermodels_savecolormap;
89 .string forceplayermodels_isgoodmodel_mdl;
90 .float forceplayermodels_isgoodmodel;
92 string forceplayermodels_goodmodel;
93 float forceplayermodels_goodmodelindex;
95 void CSQCPlayer_ForceModel_PreUpdate(void)
97 self.model = self.forceplayermodels_savemodel;
98 self.modelindex = self.forceplayermodels_savemodelindex;
99 self.skin = self.forceplayermodels_saveskin;
100 self.colormap = self.forceplayermodels_savecolormap;
102 void CSQCPlayer_ForceModel_PostUpdate(void)
104 self.forceplayermodels_savemodel = self.model;
105 self.forceplayermodels_savemodelindex = self.modelindex;
106 self.forceplayermodels_saveskin = self.skin;
107 self.forceplayermodels_savecolormap = self.colormap;
109 if(self.forceplayermodels_savemodel != self.forceplayermodels_isgoodmodel_mdl)
111 self.forceplayermodels_isgoodmodel = fexists(self.forceplayermodels_savemodel);
112 self.forceplayermodels_isgoodmodel_mdl = self.forceplayermodels_savemodel;
113 if(!self.forceplayermodels_isgoodmodel)
114 print(sprintf("Warning: missing model %s has been used\n", self.forceplayermodels_savemodel));
117 void CSQCPlayer_ForceModel_Apply(float islocalplayer)
119 // which one is ALWAYS good?
120 if not(forceplayermodels_goodmodel)
124 precache_model(cvar_defstring("_cl_playermodel"));
125 setmodel(e, cvar_defstring("_cl_playermodel"));
126 forceplayermodels_goodmodel = e.model;
127 forceplayermodels_goodmodelindex = e.modelindex;
131 // first, try finding it from the server
132 if(self.forceplayermodels_savemodelindex && self.forceplayermodels_savemodel != "null")
136 if(!isdemo()) // this is mainly cheat protection; not needed for demos
138 // trust server's idea of "own player model"
139 forceplayermodels_modelisgoodmodel = self.forceplayermodels_isgoodmodel;
140 forceplayermodels_model = self.forceplayermodels_savemodel;
141 forceplayermodels_modelindex = self.forceplayermodels_savemodelindex;
142 forceplayermodels_skin = self.forceplayermodels_saveskin;
143 forceplayermodels_attempted = 1;
148 // forcemodel finding
149 if(!forceplayermodels_attempted)
151 forceplayermodels_attempted = 1;
153 // only if this failed, find it out on our own
156 setmodel(e, autocvar__cl_playermodel); // this is harmless, see below
157 forceplayermodels_modelisgoodmodel = fexists(e.model);
158 forceplayermodels_model = e.model;
159 forceplayermodels_modelindex = e.modelindex;
160 forceplayermodels_skin = autocvar__cl_playerskin;
164 if(autocvar_cl_forcemyplayermodel != "" && autocvar_cl_forcemyplayermodel != forceplayermodels_mymodel)
168 setmodel(e, autocvar_cl_forcemyplayermodel); // this is harmless, see below
169 forceplayermodels_myisgoodmodel = fexists(e.model);
170 forceplayermodels_mymodel = e.model;
171 forceplayermodels_mymodelindex = e.modelindex;
178 cm = self.forceplayermodels_savecolormap;
179 cm = (cm >= 1024) ? cm : (stof(getplayerkeyvalue(self.colormap - 1, "colors")) + 1024);
182 isfriend = (cm == 1024 + 17 * myteam);
184 isfriend = islocalplayer;
186 if(autocvar_cl_forcemyplayermodel != "" && forceplayermodels_myisgoodmodel && isfriend)
188 self.model = forceplayermodels_mymodel;
189 self.modelindex = forceplayermodels_mymodelindex;
190 self.skin = autocvar_cl_forcemyplayerskin;
192 else if(autocvar_cl_forceplayermodels && forceplayermodels_modelisgoodmodel)
194 self.model = forceplayermodels_model;
195 self.modelindex = forceplayermodels_modelindex;
196 self.skin = forceplayermodels_skin;
198 else if(self.forceplayermodels_isgoodmodel)
200 self.model = self.forceplayermodels_savemodel;
201 self.modelindex = self.forceplayermodels_savemodelindex;
202 self.skin = self.forceplayermodels_saveskin;
206 self.model = forceplayermodels_goodmodel;
207 self.modelindex = forceplayermodels_goodmodelindex;
208 self.skin = self.forceplayermodels_saveskin;
211 // forceplayercolors too
214 // own team's color is never forced
215 float forcecolor_friend = 0;
216 float forcecolor_enemy = 0;
217 float teams_count = 0;
220 for(tm = teams.sort_next; tm; tm = tm.sort_next)
221 if(tm.team != COLOR_SPECTATOR)
224 if(autocvar_cl_forcemyplayercolors)
225 forcecolor_friend = 1024 + autocvar_cl_forcemyplayercolors;
226 if(autocvar_cl_forceplayercolors && teams_count == 2)
227 forcecolor_enemy = 1024 + autocvar__cl_color;
229 if(forcecolor_enemy && !forcecolor_friend)
231 // only enemy color is forced?
232 // verify it is not equal to the friend color
233 if(forcecolor_enemy == 1024 + 17 * myteam)
234 forcecolor_enemy = 0;
237 if(forcecolor_friend && !forcecolor_enemy)
239 // only friend color is forced?
240 // verify it is not equal to the enemy color
241 for(tm = teams.sort_next; tm; tm = tm.sort_next)
242 // note: we even compare against our own team.
243 // if we rejected because we matched our OWN team color,
244 // this is not bad; we then simply keep our color as is
246 if(forcecolor_friend == 1024 + 17 * tm.team)
247 forcecolor_friend = 0;
250 if(cm == 1024 + 17 * myteam)
252 if(forcecolor_friend)
253 self.colormap = forcecolor_friend;
258 self.colormap = forcecolor_enemy;
263 if(autocvar_cl_forcemyplayercolors && islocalplayer)
264 self.colormap = 1024 + autocvar_cl_forcemyplayercolors;
265 else if(autocvar_cl_forceplayercolors)
266 self.colormap = player_localnum + 1;
270 // FEATURE: fallback frames
271 .float csqcmodel_saveframe;
272 .float csqcmodel_saveframe2;
273 #ifdef CSQCMODEL_HAVE_TWO_FRAMES
274 .float csqcmodel_saveframe3;
275 .float csqcmodel_saveframe4;
277 .float csqcmodel_framecount;
279 #define IS_DEAD_FRAME(f) ((f) == 0 || (f) == 1)
280 void CSQCPlayer_FallbackFrame_PreUpdate(void)
282 self.frame = self.csqcmodel_saveframe;
283 self.frame2 = self.csqcmodel_saveframe2;
284 #ifdef CSQCMODEL_HAVE_TWO_FRAMES
285 self.frame3 = self.csqcmodel_saveframe3;
286 self.frame4 = self.csqcmodel_saveframe4;
289 void CSQCPlayer_FallbackFrame_PostUpdate(float isnew)
291 self.csqcmodel_saveframe = self.frame;
292 self.csqcmodel_saveframe2 = self.frame2;
293 #ifdef CSQCMODEL_HAVE_TWO_FRAMES
294 self.csqcmodel_saveframe3 = self.frame3;
295 self.csqcmodel_saveframe4 = self.frame4;
298 // hack for death animations: set their frametime to zero in case a
302 #define FIX_FRAMETIME(f,ft) \
303 if(IS_DEAD_FRAME(self.f) && self.ft != 0 && self.death_time != 0) \
305 self.ft = self.death_time; \
307 FIX_FRAMETIME(frame, frame1time)
308 FIX_FRAMETIME(frame2, frame2time)
309 #ifdef CSQCMODEL_HAVE_TWO_FRAMES
310 FIX_FRAMETIME(frame3, frame3time)
311 FIX_FRAMETIME(frame4, frame4time)
314 self.csqcmodel_isdead = IS_DEAD_FRAME(self.frame);
316 float CSQCPlayer_FallbackFrame(float f)
318 if(frameduration(self.modelindex, f) > 0)
319 return f; // goooooood
320 if(frameduration(self.modelindex, 1) <= 0)
321 return f; // this is a static model. We can't fix it if we wanted to
324 case 23: return 11; // anim_melee -> anim_shoot
325 case 24: return 4; // anim_duckwalkbackwards -> anim_duckwalk
326 case 25: return 4; // anim_duckwalkstrafeleft -> anim_duckwalk
327 case 26: return 4; // anim_duckwalkstraferight -> anim_duckwalk
328 case 27: return 4; // anim_duckwalkforwardright -> anim_duckwalk
329 case 28: return 4; // anim_duckwalkforwardleft -> anim_duckwalk
330 case 29: return 4; // anim_duckwalkbackright -> anim_duckwalk
331 case 30: return 4; // anim_duckwalkbackleft -> anim_duckwalk
333 print(sprintf("Frame %d missing in model %s, and we have no fallback - FAIL!\n", f, self.model));
336 void CSQCPlayer_FallbackFrame_Apply(void)
338 self.frame = CSQCPlayer_FallbackFrame(self.frame);
339 self.frame2 = CSQCPlayer_FallbackFrame(self.frame2);
340 #ifdef CSQCMODEL_HAVE_TWO_FRAMES
341 self.frame3 = CSQCPlayer_FallbackFrame(self.frame3);
342 self.frame4 = CSQCPlayer_FallbackFrame(self.frame4);
346 // FEATURE: auto tag_index
348 .float tag_entity_lastmodelindex;
350 void CSQCModel_AutoTagIndex_Apply(void)
352 if(self.tag_entity && wasfreed(self.tag_entity))
353 self.tag_entity = world;
355 if(self.tag_networkentity)
359 if(self.tag_entity.entnum != self.tag_networkentity)
361 self.tag_entity = findfloat(world, entnum, self.tag_networkentity);
365 // recursive predraw call to fix issues with forcemodels and LOD if bone indexes mismatch
366 if(self.tag_entity.classname == "csqcmodel")
368 entity oldself = self;
369 self = self.tag_entity;
370 CSQCModel_Hook_PreDraw((self.entnum >= 1 && self.entnum <= maxclients));
374 if(self.tag_entity.modelindex != self.tag_entity_lastmodelindex)
376 self.tag_entity_lastmodelindex = self.tag_entity.modelindex;
383 // the best part is: IT EXISTS
384 if(substring(self.model, 0, 17) == "models/weapons/v_")
386 if(substring(self.tag_entity.model, 0, 17) == "models/weapons/h_")
388 self.tag_index = gettagindex(self.tag_entity, "weapon");
390 self.tag_index = gettagindex(self.tag_entity, "tag_weapon");
393 // we need to prevent this from 'appening
394 self.tag_entity = world;
396 dprint("h_ model lacks weapon attachment, but v_ model is attached to it\n");
399 else if(self.tag_entity.isplayermodel)
401 skeleton_loadinfo(self.tag_entity);
402 self.tag_index = self.tag_entity.bone_weapon;
406 if(substring(self.tag_entity.model, 0, 17) == "models/weapons/v_")
408 self.tag_index = gettagindex(self.tag_entity, "shot");
410 self.tag_index = gettagindex(self.tag_entity, "tag_shot");
415 // damn, see you next frame
422 // FEATURE: EF_NODRAW workalike
423 float EF_BRIGHTFIELD = 1;
424 float EF_BRIGHTLIGHT = 4;
425 float EF_DIMLIGHT = 8;
426 float EF_DOUBLESIDED = 32768;
427 float EF_NOSELFSHADOW = 65536;
428 float EF_DYNAMICMODELLIGHT = 131072;
429 float EF_RESTARTANIM_BIT = 1048576;
430 float EF_TELEPORT_BIT = 2097152;
431 float MF_ROCKET = 1; // leave a trail
432 float MF_GRENADE = 2; // leave a trail
433 float MF_GIB = 4; // leave a trail
434 float MF_ROTATE = 8; // rotate (bonus items)
435 float MF_TRACER = 16; // green split trail
436 float MF_ZOMGIB = 32; // small blood trail
437 float MF_TRACER2 = 64; // orange split trail
438 float MF_TRACER3 = 128; // purple trail
439 .float csqcmodel_effects;
440 .float csqcmodel_modelflags;
441 void CSQCModel_Effects_PreUpdate(void)
443 self.effects = self.csqcmodel_effects;
444 self.modelflags = self.csqcmodel_modelflags;
446 void CSQCModel_Effects_PostUpdate(void)
448 self.csqcmodel_effects = self.effects;
449 self.csqcmodel_modelflags = self.modelflags;
452 if(self.csqcmodel_teleported)
453 Projectile_ResetTrail(self.origin);
456 void CSQCModel_Effects_Apply(void)
458 float eff = self.csqcmodel_effects;
459 eff &~= CSQCMODEL_EF_RESPAWNGHOST;
461 self.renderflags &~= (RF_DEPTHHACK | RF_ADDITIVE | RF_FULLBRIGHT | EF_NOSHADOW | RF_USEAXIS);
463 self.traileffect = 0;
465 if(eff & EF_BRIGHTFIELD)
466 self.traileffect = particleeffectnum("TR_NEXUIZPLASMA");
467 // ignoring EF_MUZZLEFLASH
468 if(eff & EF_BRIGHTLIGHT)
469 adddynamiclight(self.origin, 400, '3 3 3');
470 if(eff & EF_DIMLIGHT)
471 adddynamiclight(self.origin, 200, '1.5 1.5 1.5');
472 if((eff & EF_NODRAW) || (self.alpha < 0))
474 if(eff & EF_ADDITIVE)
475 self.renderflags |= RF_ADDITIVE;
477 adddynamiclight(self.origin, 200, '0.15 0.15 1.5');
479 adddynamiclight(self.origin, 200, '1.5 0.15 0.15');
480 // ignoring EF_NOGUNBOB
481 if(eff & EF_FULLBRIGHT)
482 self.renderflags |= RF_FULLBRIGHT;
484 pointparticles(particleeffectnum("EF_FLAME"), self.origin, '0 0 0', bound(0, frametime, 0.1));
485 if(eff & EF_STARDUST)
486 pointparticles(particleeffectnum("EF_STARDUST"), self.origin, '0 0 0', bound(0, frametime, 0.1));
487 if(eff & EF_NOSHADOW)
488 self.renderflags |= RF_NOSHADOW;
489 if(eff & EF_NODEPTHTEST)
490 self.renderflags |= RF_DEPTHHACK;
491 // ignoring EF_SELECTABLE
492 if(eff & EF_DOUBLESIDED)
493 self.effects |= EF_DOUBLESIDED;
494 if(eff & EF_NOSELFSHADOW)
495 self.effects |= EF_NOSELFSHADOW;
496 if(eff & EF_DYNAMICMODELLIGHT)
497 self.renderflags |= RF_DYNAMICMODELLIGHT;
498 // ignoring EF_UNUSED18, EF_UNUSED19, EF_RESTARTANIM_BIT, EF_TELEPORT_BIT, EF_LOWPRECISION
499 if(self.csqcmodel_modelflags & MF_ROCKET)
500 self.traileffect = particleeffectnum("TR_ROCKET");
501 if(self.csqcmodel_modelflags & MF_GRENADE)
502 self.traileffect = particleeffectnum("TR_GRENADE");
503 if(self.csqcmodel_modelflags & MF_GIB)
504 self.traileffect = particleeffectnum("TR_BLOOD");
505 if(self.csqcmodel_modelflags & MF_ROTATE)
507 self.renderflags |= RF_USEAXIS;
508 makevectors(self.angles + '0 100 0' * fmod(time, 3.6));
510 if(self.csqcmodel_modelflags & MF_TRACER)
511 self.traileffect = particleeffectnum("TR_WIZSPIKE");
512 if(self.csqcmodel_modelflags & MF_ZOMGIB)
513 self.traileffect = particleeffectnum("TR_SLIGHTBLOOD");
514 if(self.csqcmodel_modelflags & MF_TRACER2)
515 self.traileffect = particleeffectnum("TR_KNIGHTSPIKE");
516 if(self.csqcmodel_modelflags & MF_TRACER3)
517 self.traileffect = particleeffectnum("TR_VORESPIKE");
520 Projectile_DrawTrail(self.origin);
522 Projectile_ResetTrail(self.origin);
524 if(self.csqcmodel_effects & CSQCMODEL_EF_RESPAWNGHOST)
525 self.renderflags |= RF_ADDITIVE;
526 // also special in CSQCPlayer_GlowMod_Apply
528 if(self.csqcmodel_modelflags & MF_ROCKET)
530 if(!self.snd_looping)
532 sound(self, CH_TRIGGER_SINGLE, "misc/jetpack_fly.wav", VOL_BASE, autocvar_g_jetpack_attenuation);
533 self.snd_looping = CH_TRIGGER_SINGLE;
540 sound(self, self.snd_looping, "misc/null.wav", VOL_BASE, autocvar_g_jetpack_attenuation);
541 self.snd_looping = 0;
546 void CSQCPlayer_Precache()
548 precache_sound("misc/jetpack_fly.wav");
551 // FEATURE: auto glowmod
553 void CSQCPlayer_GlowMod_Apply(void)
555 float cm = self.colormap;
557 if(self.csqcmodel_effects & CSQCMODEL_EF_RESPAWNGHOST)
560 if(self.colormap > 0)
561 self.glowmod = colormapPaletteColor(((self.colormap >= 1024) ? self.colormap : stof(getplayerkeyvalue(self.colormap - 1, "colors"))) & 0x0F, TRUE) * 2;
563 self.glowmod = '1 1 1';
565 if(autocvar_cl_deathglow > 0)
566 if(self.csqcmodel_isdead)
568 self.glowmod = self.glowmod * bound(0, 1 - (time - self.death_time) / autocvar_cl_deathglow, 1);
569 // prevent the zero vector
570 self.glowmod_x = max(self.glowmod_x, 0.0001);
571 self.glowmod_y = max(self.glowmod_y, 0.0001);
572 self.glowmod_z = max(self.glowmod_z, 0.0001);
577 .float csqcmodel_predraw_run;
579 .float anim_frame1time;
581 .float anim_frame2time;
582 .float anim_saveframe;
583 .float anim_saveframe1time;
584 .float anim_saveframe2;
585 .float anim_saveframe2time;
586 .float anim_prev_pmove_flags;
587 void CSQCModel_Hook_PreDraw(float isplayer)
589 if(self.csqcmodel_predraw_run == framecount)
591 self.csqcmodel_predraw_run = framecount;
593 if(!self.modelindex || self.model == "null")
599 self.drawmask = MASK_NORMAL;
601 if(self.isplayermodel) // this checks if it's a player MODEL!
603 CSQCPlayer_ForceModel_Apply(self.entnum == player_localnum + 1);
604 CSQCPlayer_GlowMod_Apply();
605 CSQCPlayer_LOD_Apply();
607 CSQCPlayer_FallbackFrame_Apply();
610 // we know that frame3 and frame4 fields, used by InterpolateAnimation, are left alone - but that is all we know!
611 skeleton_loadinfo(self);
612 float doblend = (self.bone_upperbody >= 0);
614 if(self == csqcplayer)
616 if(self.pmove_flags & PMF_ONGROUND)
618 self.anim_prev_pmove_flags = self.pmove_flags;
619 if(self.pmove_flags & PMF_DUCKED)
620 animdecide_setstate(self, self.anim_state | ANIMSTATE_DUCK, FALSE);
621 else if(self.anim_state & ANIMSTATE_DUCK)
622 animdecide_setstate(self, self.anim_state - ANIMSTATE_DUCK, FALSE);
626 tracebox(self.origin + '0 0 1', self.mins, self.maxs, self.origin - '0 0 4', MOVE_NORMAL, self);
627 if(trace_startsolid || trace_fraction < 1)
630 animdecide_init(self);
631 animdecide_setimplicitstate(self, onground);
632 animdecide_setframes(self, doblend, anim_frame, anim_frame1time, anim_frame2, anim_frame2time);
634 if(self.anim_saveframe != self.anim_frame || self.anim_saveframe1time != self.anim_frame1time)
635 sf |= CSQCMODEL_PROPERTY_FRAME;
636 if(self.anim_saveframe2 != self.anim_frame2 || self.anim_saveframe2time != self.anim_frame2time)
637 sf |= CSQCMODEL_PROPERTY_FRAME2;
638 self.anim_saveframe = self.anim_frame;
639 self.anim_saveframe1time = self.anim_frame1time;
640 self.anim_saveframe2 = self.anim_frame2;
641 self.anim_saveframe2time = self.anim_frame2time;
644 CSQCModel_InterpolateAnimation_2To4_PreNote(sf | CSQCMODEL_PROPERTY_LERPFRAC);
645 self.lerpfrac = (doblend ? 0.5 : 0);
646 self.frame = self.anim_frame;
647 self.frame1time = self.anim_frame1time;
648 self.frame2 = self.anim_frame2;
649 self.frame2time = self.anim_frame2time;
650 CSQCModel_InterpolateAnimation_2To4_Note(sf | CSQCMODEL_PROPERTY_LERPFRAC, FALSE);
652 CSQCModel_InterpolateAnimation_2To4_Do();
655 skeleton_from_frames(self, self.csqcmodel_isdead);
659 free_skeleton_from_frames(self);
660 // just in case, clear these (we're animating in frame and frame3)
667 CSQCModel_AutoTagIndex_Apply();
669 CSQCModel_Effects_Apply();
672 void CSQCModel_Hook_PreUpdate(float isnew, float isplayer, float islocalplayer)
674 // interpolate v_angle
675 self.iflags |= IFLAG_V_ANGLE_X;
676 // revert to values from server
677 CSQCModel_Effects_PreUpdate();
678 if(self.isplayermodel)
681 CSQCPlayer_FallbackFrame_PreUpdate();
682 CSQCPlayer_ForceModel_PreUpdate();
686 void CSQCModel_Hook_PostUpdate(float isnew, float isplayer, float islocalplayer)
688 // is it a player model? (shared state)
689 self.isplayermodel = (substring(self.model, 0, 14) == "models/player/" || substring(self.model, 0, 17) == "models/ok_player/");
691 // save values set by server
692 if(self.isplayermodel)
694 CSQCPlayer_ForceModel_PostUpdate();
696 CSQCPlayer_FallbackFrame_PostUpdate(isnew);
698 CSQCModel_Effects_PostUpdate();