]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/csqcmodel_hooks.qc
Add support for traileffect on CSQC models
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / csqcmodel_hooks.qc
1 #include "_all.qh"
2
3 #include "gibs.qh"
4 #include "player_skeleton.qh"
5
6 #include "weapons/projectile.qh"
7
8 #include "../common/animdecide.qh"
9 #include "../common/csqcmodel_settings.qh"
10 #include "../common/effects/effects.qh"
11 #include "../common/teams.qh"
12 #include "../common/triggers/trigger/viewloc.qh"
13
14 #include "mutators/events.qh"
15
16 #include "../csqcmodellib/cl_model.qh"
17 #include "../csqcmodellib/cl_player.qh"
18 #include "../csqcmodellib/interpolate.qh"
19
20
21 .float death_time;
22 .int modelflags;
23
24 void CSQCModel_Hook_PreDraw(bool isplayer);
25
26 .bool isplayermodel;
27
28 // FEATURE: LOD
29 .int lodmodelindex0;
30 .int lodmodelindex1;
31 .int lodmodelindex2;
32 void CSQCPlayer_LOD_Apply(void)
33 {SELFPARAM();
34         // LOD model loading
35         if(self.lodmodelindex0 != self.modelindex)
36         {
37                 string modelname = self.model;
38                 string s;
39
40                 vector mi = self.mins;
41                 vector ma = self.maxs;
42
43                 // set modelindex
44                 self.lodmodelindex0 = self.modelindex;
45                 self.lodmodelindex1 = self.modelindex;
46                 self.lodmodelindex2 = self.modelindex;
47
48                 // FIXME: this only supports 3-letter extensions
49                 s = strcat(substring(modelname, 0, strlen(modelname)-4), "_lod1", substring(modelname, -4, 4));
50                 if(fexists(s))
51                 {
52                         precache_model(s);
53                         _setmodel(self, s);
54                         if(self.modelindex)
55                                 self.lodmodelindex1 = self.modelindex;
56                 }
57
58                 s = strcat(substring(modelname, 0, strlen(modelname)-4), "_lod2", substring(modelname, -4, 4));
59                 if(fexists(s))
60                 {
61                         precache_model(s);
62                         _setmodel(self, s);
63                         if(self.modelindex)
64                                 self.lodmodelindex2 = self.modelindex;
65                 }
66
67                 _setmodel(self, modelname); // make everything normal again
68                 setsize(self, mi, ma);
69         }
70
71         // apply LOD
72         if(autocvar_cl_playerdetailreduction <= 0)
73         {
74                 if(autocvar_cl_playerdetailreduction <= -2)
75                         self.modelindex = self.lodmodelindex2;
76                 else if(autocvar_cl_playerdetailreduction <= -1)
77                         self.modelindex = self.lodmodelindex1;
78                 else
79                         self.modelindex = self.lodmodelindex0;
80         }
81         else
82         {
83                 float distance = vlen(self.origin - view_origin);
84                 float f = (distance * current_viewzoom + 100.0) * autocvar_cl_playerdetailreduction;
85                 f *= 1.0 / bound(0.01, view_quality, 1);
86                 if(f > autocvar_cl_loddistance2)
87                         self.modelindex = self.lodmodelindex2;
88                 else if(f > autocvar_cl_loddistance1)
89                         self.modelindex = self.lodmodelindex1;
90                 else
91                         self.modelindex = self.lodmodelindex0;
92         }
93 }
94
95 // FEATURE: forcemodel and model color selection (MUST be called BEFORE LOD!)
96 string forceplayermodels_model;
97 bool forceplayermodels_modelisgoodmodel;
98 int forceplayermodels_modelindex;
99 int forceplayermodels_skin;
100
101 string forceplayermodels_mymodel;
102 bool forceplayermodels_myisgoodmodel;
103 int forceplayermodels_mymodelindex;
104
105 bool forceplayermodels_attempted;
106
107 .string forceplayermodels_savemodel;
108 .int forceplayermodels_savemodelindex;
109 .int forceplayermodels_saveskin;
110 .int forceplayermodels_savecolormap;
111
112 .string forceplayermodels_isgoodmodel_mdl;
113 .bool forceplayermodels_isgoodmodel;
114
115 string forceplayermodels_goodmodel;
116 int forceplayermodels_goodmodelindex;
117
118 .vector glowmod;
119 .vector old_glowmod;
120
121 void CSQCPlayer_ModelAppearance_PreUpdate(void)
122 {SELFPARAM();
123         self.model = self.forceplayermodels_savemodel;
124         self.modelindex = self.forceplayermodels_savemodelindex;
125         self.skin = self.forceplayermodels_saveskin;
126         self.colormap = self.forceplayermodels_savecolormap;
127 }
128 void CSQCPlayer_ModelAppearance_PostUpdate(void)
129 {SELFPARAM();
130         self.forceplayermodels_savemodel = self.model;
131         self.forceplayermodels_savemodelindex = self.modelindex;
132         self.forceplayermodels_saveskin = self.skin;
133         self.forceplayermodels_savecolormap = self.colormap;
134
135         if(self.forceplayermodels_savemodel != self.forceplayermodels_isgoodmodel_mdl)
136         {
137                 self.forceplayermodels_isgoodmodel = fexists(self.forceplayermodels_savemodel);
138                 self.forceplayermodels_isgoodmodel_mdl = self.forceplayermodels_savemodel;
139                 if(!self.forceplayermodels_isgoodmodel)
140                         LOG_INFOF("Warning: missing model %s has been used\n", self.forceplayermodels_savemodel);
141         }
142 }
143 void CSQCPlayer_ModelAppearance_Apply(bool islocalplayer)
144 {SELFPARAM();
145         // FORCEMODEL
146         // which one is ALWAYS good?
147         if (!forceplayermodels_goodmodel)
148         {
149                 entity e;
150                 e = spawn();
151                 precache_model(cvar_defstring("_cl_playermodel"));
152                 _setmodel(e, cvar_defstring("_cl_playermodel"));
153                 forceplayermodels_goodmodel = e.model;
154                 forceplayermodels_goodmodelindex = e.modelindex;
155                 remove(e);
156         }
157
158         // first, try finding it from the server
159         if(self.forceplayermodels_savemodelindex && self.forceplayermodels_savemodel != "null")
160         {
161                 if(islocalplayer)
162                 {
163                         if(!isdemo()) // this is mainly cheat protection; not needed for demos
164                         {
165                                 // trust server's idea of "own player model"
166                                 forceplayermodels_modelisgoodmodel = self.forceplayermodels_isgoodmodel;
167                                 forceplayermodels_model = self.forceplayermodels_savemodel;
168                                 forceplayermodels_modelindex = self.forceplayermodels_savemodelindex;
169                                 forceplayermodels_skin = self.forceplayermodels_saveskin;
170                                 forceplayermodels_attempted = 1;
171                         }
172                 }
173         }
174
175         // forcemodel finding
176         if(!forceplayermodels_attempted)
177         {
178                 forceplayermodels_attempted = 1;
179
180                 // only if this failed, find it out on our own
181                 entity e;
182                 e = spawn();
183                 _setmodel(e, autocvar__cl_playermodel); // this is harmless, see below
184                 forceplayermodels_modelisgoodmodel = fexists(e.model);
185                 forceplayermodels_model = e.model;
186                 forceplayermodels_modelindex = e.modelindex;
187                 forceplayermodels_skin = autocvar__cl_playerskin;
188                 remove(e);
189         }
190
191         if(autocvar_cl_forcemyplayermodel != "" && autocvar_cl_forcemyplayermodel != forceplayermodels_mymodel)
192         {
193                 entity e;
194                 e = spawn();
195                 _setmodel(e, autocvar_cl_forcemyplayermodel); // this is harmless, see below
196                 forceplayermodels_myisgoodmodel = fexists(e.model);
197                 forceplayermodels_mymodel = e.model;
198                 forceplayermodels_mymodelindex = e.modelindex;
199                 remove(e);
200         }
201
202         // apply it
203         bool isfriend;
204         int cm;
205         cm = self.forceplayermodels_savecolormap;
206         cm = (cm >= 1024) ? cm : (stof(getplayerkeyvalue(cm - 1, "colors")) + 1024);
207
208         if(teamplay)
209                 isfriend = (cm == 1024 + 17 * myteam);
210         else
211                 isfriend = islocalplayer;
212
213         if(autocvar_cl_forcemyplayermodel != "" && forceplayermodels_myisgoodmodel && isfriend)
214         {
215                 self.model = forceplayermodels_mymodel;
216                 self.modelindex = forceplayermodels_mymodelindex;
217                 self.skin = autocvar_cl_forcemyplayerskin;
218         }
219         else if(autocvar_cl_forceplayermodels && forceplayermodels_modelisgoodmodel)
220         {
221                 self.model = forceplayermodels_model;
222                 self.modelindex = forceplayermodels_modelindex;
223                 self.skin = forceplayermodels_skin;
224         }
225         else if(self.forceplayermodels_isgoodmodel)
226         {
227                 self.model = self.forceplayermodels_savemodel;
228                 self.modelindex = self.forceplayermodels_savemodelindex;
229                 self.skin = self.forceplayermodels_saveskin;
230         }
231         else
232         {
233                 self.model = forceplayermodels_goodmodel;
234                 self.modelindex = forceplayermodels_goodmodelindex;
235                 self.skin = self.forceplayermodels_saveskin;
236         }
237
238         // forceplayercolors too
239         if(teamplay)
240         {
241                 // own team's color is never forced
242                 int forcecolor_friend = 0;
243                 int forcecolor_enemy = 0;
244                 entity tm;
245
246                 if(autocvar_cl_forcemyplayercolors)
247                         forcecolor_friend = 1024 + autocvar_cl_forcemyplayercolors;
248                 if(autocvar_cl_forceplayercolors && team_count == 2)
249                         forcecolor_enemy = 1024 + autocvar__cl_color;
250
251                 if(forcecolor_enemy && !forcecolor_friend)
252                 {
253                         // only enemy color is forced?
254                         // verify it is not equal to the friend color
255                         if(forcecolor_enemy == 1024 + 17 * myteam)
256                                 forcecolor_enemy = 0;
257                 }
258
259                 if(forcecolor_friend && !forcecolor_enemy)
260                 {
261                         // only friend color is forced?
262                         // verify it is not equal to the enemy color
263                         for(tm = teams.sort_next; tm; tm = tm.sort_next)
264                                 // note: we even compare against our own team.
265                                 // if we rejected because we matched our OWN team color,
266                                 // this is not bad; we then simply keep our color as is
267                                 // anyway.
268                                 if(forcecolor_friend == 1024 + 17 * tm.team)
269                                         forcecolor_friend = 0;
270                 }
271
272                 if(cm == 1024 + 17 * myteam)
273                 {
274                         if(forcecolor_friend)
275                                 self.colormap = forcecolor_friend;
276                 }
277                 else
278                 {
279                         if(forcecolor_enemy)
280                                 self.colormap = forcecolor_enemy;
281                 }
282         }
283         else
284         {
285                 if(autocvar_cl_forcemyplayercolors && islocalplayer)
286                         self.colormap = 1024 + autocvar_cl_forcemyplayercolors;
287                 else if(autocvar_cl_forceplayercolors)
288                         self.colormap = player_localnum + 1;
289         }
290
291         // GLOWMOD AND DEATH FADING
292         if(self.colormap > 0)
293                 self.glowmod = colormapPaletteColor(((self.colormap >= 1024) ? self.colormap : stof(getplayerkeyvalue(self.colormap - 1, "colors"))) & 0x0F, true) * 2;
294         else
295                 self.glowmod = '1 1 1';
296
297         if(autocvar_cl_deathglow > 0)
298         {
299                 if(self.csqcmodel_isdead)
300                 {
301                         // Fade out to black now...
302                         if(self.old_glowmod == '0 0 0') { self.old_glowmod = self.glowmod; }
303                         self.colormap = 0;
304
305                         self.glowmod = self.old_glowmod * bound(0, 1 - (time - self.death_time) / autocvar_cl_deathglow, 1);
306                         self.glowmod_x = max(self.glowmod.x, 0.0001);
307                         self.glowmod_y = max(self.glowmod.y, 0.0001);
308                         self.glowmod_z = max(self.glowmod.z, 0.0001);
309                 }
310                 else if(self.old_glowmod != '0 0 0') { self.old_glowmod = '0 0 0'; }
311         }
312
313         //printf("CSQCPlayer_ModelAppearance_Apply(): state = %s, colormap = %f, glowmod = %s\n", (self.csqcmodel_isdead ? "DEAD" : "ALIVE"), self.colormap, vtos(self.glowmod));
314 }
315
316 // FEATURE: fallback frames
317 .int csqcmodel_saveframe;
318 .int csqcmodel_saveframe2;
319 #ifdef CSQCMODEL_HAVE_TWO_FRAMES
320 .int csqcmodel_saveframe3;
321 .int csqcmodel_saveframe4;
322 #endif
323 .int csqcmodel_framecount;
324
325 #define IS_DEAD_FRAME(f) ((f) == 0 || (f) == 1)
326 void CSQCPlayer_FallbackFrame_PreUpdate(void)
327 {SELFPARAM();
328         self.frame = self.csqcmodel_saveframe;
329         self.frame2 = self.csqcmodel_saveframe2;
330 #ifdef CSQCMODEL_HAVE_TWO_FRAMES
331         self.frame3 = self.csqcmodel_saveframe3;
332         self.frame4 = self.csqcmodel_saveframe4;
333 #endif
334 }
335 void CSQCPlayer_FallbackFrame_PostUpdate(bool isnew)
336 {SELFPARAM();
337         self.csqcmodel_saveframe = self.frame;
338         self.csqcmodel_saveframe2 = self.frame2;
339 #ifdef CSQCMODEL_HAVE_TWO_FRAMES
340         self.csqcmodel_saveframe3 = self.frame3;
341         self.csqcmodel_saveframe4 = self.frame4;
342 #endif
343
344         // hack for death animations: set their frametime to zero in case a
345         // player "pops in"
346         if(isnew)
347         {
348 #define FIX_FRAMETIME(f,ft) do {                                                                                                                                                                        \
349                 if(IS_DEAD_FRAME(self.f) && self.ft != 0 && self.death_time != 0)                                                                                       \
350                         self.ft = self.death_time;                                                                                                                                                              \
351 } while(0)
352                 FIX_FRAMETIME(frame, frame1time);
353                 FIX_FRAMETIME(frame2, frame2time);
354 #ifdef CSQCMODEL_HAVE_TWO_FRAMES
355                 FIX_FRAMETIME(frame3, frame3time);
356                 FIX_FRAMETIME(frame4, frame4time);
357 #endif
358         }
359         self.csqcmodel_isdead = IS_DEAD_FRAME(self.frame);
360 }
361 void CSQCPlayer_AnimDecide_PostUpdate(bool isnew)
362 {SELFPARAM();
363         self.csqcmodel_isdead = !!(self.anim_state & (ANIMSTATE_DEAD1 | ANIMSTATE_DEAD2));
364 }
365 int CSQCPlayer_FallbackFrame(int f)
366 {SELFPARAM();
367         if(frameduration(self.modelindex, f) > 0)
368                 return f; // goooooood
369         if(frameduration(self.modelindex, 1) <= 0)
370                 return f; // this is a static model. We can't fix it if we wanted to
371         switch(f)
372         {
373                 case 23: return 11; // anim_melee -> anim_shoot
374                 case 24: return 4; // anim_duckwalkbackwards -> anim_duckwalk
375                 case 25: return 4; // anim_duckwalkstrafeleft -> anim_duckwalk
376                 case 26: return 4; // anim_duckwalkstraferight -> anim_duckwalk
377                 case 27: return 4; // anim_duckwalkforwardright -> anim_duckwalk
378                 case 28: return 4; // anim_duckwalkforwardleft -> anim_duckwalk
379                 case 29: return 4; // anim_duckwalkbackright -> anim_duckwalk
380                 case 30: return 4; // anim_duckwalkbackleft -> anim_duckwalk
381         }
382         LOG_INFOF("Frame %d missing in model %s, and we have no fallback - FAIL!\n", f, self.model);
383         return f;
384 }
385 void CSQCPlayer_FallbackFrame_Apply(void)
386 {SELFPARAM();
387         self.frame = CSQCPlayer_FallbackFrame(self.frame);
388         self.frame2 = CSQCPlayer_FallbackFrame(self.frame2);
389 #ifdef CSQCMODEL_HAVE_TWO_FRAMES
390         self.frame3 = CSQCPlayer_FallbackFrame(self.frame3);
391         self.frame4 = CSQCPlayer_FallbackFrame(self.frame4);
392 #endif
393 }
394
395 // FEATURE: auto tag_index
396 .entity tag_entity;
397 .int tag_entity_lastmodelindex;
398 .int tag_index;
399 void CSQCModel_AutoTagIndex_Apply(void)
400 {SELFPARAM();
401         if(self.tag_entity && wasfreed(self.tag_entity))
402                 self.tag_entity = world;
403
404         if(self.viewloc && wasfreed(self.viewloc))
405                 self.viewloc = world;
406
407         if(self.viewloc.entnum != self.tag_networkviewloc)
408                 self.viewloc = findfloat(world, entnum, self.tag_networkviewloc);
409
410         MUTATOR_CALLHOOK(TagIndex_Update, self);
411
412         if(self.tag_networkentity)
413         {
414                 // we are ATTACHED!
415                 bool changed = 0;
416                 if(self.tag_entity.entnum != self.tag_networkentity)
417                 {
418                         self.tag_entity = findfloat(world, entnum, self.tag_networkentity);
419                         changed = 1;
420                 }
421
422                 // recursive predraw call to fix issues with forcemodels and LOD if bone indexes mismatch
423                 if(self.tag_entity.classname == "csqcmodel")
424                 {
425                         WITH(entity, self, self.tag_entity, CSQCModel_Hook_PreDraw((self.entnum >= 1 && self.entnum <= maxclients)));
426                 }
427
428                 if(self.tag_entity.modelindex != self.tag_entity_lastmodelindex)
429                 {
430                         self.tag_entity_lastmodelindex = self.tag_entity.modelindex;
431                         changed = 1;
432                 }
433                 if(changed)
434                 {
435                         if(self.tag_entity)
436                         {
437                                 // the best part is: IT EXISTS
438                                 if(substring(self.model, 0, 14) == "models/weapons")
439                                 {
440                                         if(substring(self.tag_entity.model, 0, 14) == "models/weapons")
441                                         {
442                                                 self.tag_index = gettagindex(self.tag_entity, "weapon");
443                                                 if(!self.tag_index)
444                                                         self.tag_index = gettagindex(self.tag_entity, "tag_weapon");
445                                                 if(!self.tag_index)
446                                                 {
447                                                         // we need to prevent this from 'appening
448                                                         self.tag_entity = world;
449                                                         self.drawmask = 0;
450                                                         LOG_TRACE("h_ model lacks weapon attachment, but v_ model is attached to it\n");
451                                                 }
452                                         }
453                                         else if(self.tag_entity.isplayermodel)
454                                         {
455                                                 skeleton_loadinfo(self.tag_entity);
456                                                 self.tag_index = self.tag_entity.bone_weapon;
457                                         }
458                                 }
459
460                                 if(substring(self.tag_entity.model, 0, 14) == "models/weapons")
461                                 {
462                                         self.tag_index = gettagindex(self.tag_entity, "shot");
463                                         if(!self.tag_index)
464                                                 self.tag_index = gettagindex(self.tag_entity, "tag_shot");
465                                 }
466
467                                 MUTATOR_CALLHOOK(TagIndex_Apply, self);
468                         }
469                         else
470                         {
471                                 // damn, see you next frame
472                                 self.drawmask = 0;
473                         }
474                 }
475         }
476 }
477
478 // FEATURE: EF_NODRAW workalike
479 const int EF_BRIGHTFIELD        = 1;
480 const int EF_BRIGHTLIGHT        = 4;
481 const int EF_DIMLIGHT           = 8;
482 const int EF_DOUBLESIDED        = 32768;
483 const int EF_NOSELFSHADOW       = 65536;
484 const int EF_DYNAMICMODELLIGHT = 131072;
485 const int EF_RESTARTANIM_BIT = 1048576;
486 const int EF_TELEPORT_BIT = 2097152;
487 const int MF_ROCKET  =   1; // leave a trail
488 const int MF_GRENADE =   2; // leave a trail
489 const int MF_GIB     =   4; // leave a trail
490 const int MF_ROTATE  =   8; // rotate (bonus items)
491 const int MF_TRACER  =  16; // green split trail
492 const int MF_ZOMGIB  =  32; // small blood trail
493 const int MF_TRACER2 =  64; // orange split trail
494 const int MF_TRACER3 = 128; // purple trail
495 .int csqcmodel_effects;
496 .int csqcmodel_modelflags;
497 .int csqcmodel_traileffect;
498 void CSQCModel_Effects_PreUpdate(void)
499 {SELFPARAM();
500         self.effects = self.csqcmodel_effects;
501         self.modelflags = self.csqcmodel_modelflags;
502         self.traileffect = self.csqcmodel_traileffect;
503 }
504 void Reset_ArcBeam(void);
505 void CSQCModel_Effects_PostUpdate(void)
506 {SELFPARAM();
507         if (self == csqcplayer) {
508                 if (self.csqcmodel_teleported) {
509                         Reset_ArcBeam();
510                 }
511         }
512         self.csqcmodel_effects = self.effects;
513         self.csqcmodel_modelflags = self.modelflags;
514         self.csqcmodel_traileffect = self.traileffect;
515         self.effects = 0;
516         self.modelflags = 0;
517         if(self.csqcmodel_teleported)
518                 Projectile_ResetTrail(self.origin);
519 }
520 .int snd_looping;
521 void CSQCModel_Effects_Apply(void)
522 {SELFPARAM();
523         int eff = self.csqcmodel_effects & ~CSQCMODEL_EF_RESPAWNGHOST;
524         int tref = self.csqcmodel_traileffect;
525
526         self.renderflags &= ~(RF_DEPTHHACK | RF_ADDITIVE | RF_FULLBRIGHT | EF_NOSHADOW | RF_USEAXIS);
527         self.effects = 0;
528         self.traileffect = 0;
529
530         if(eff & EF_BRIGHTFIELD)
531                 tref = particleeffectnum(EFFECT_TR_NEXUIZPLASMA);
532         // ignoring EF_MUZZLEFLASH
533         if(eff & EF_BRIGHTLIGHT)
534                 adddynamiclight(self.origin, 400, '3 3 3');
535         if(eff & EF_DIMLIGHT)
536                 adddynamiclight(self.origin, 200, '1.5 1.5 1.5');
537         if((eff & EF_NODRAW) || (self.alpha < 0))
538                 self.drawmask = 0;
539         if(eff & EF_ADDITIVE)
540                 self.renderflags |= RF_ADDITIVE;
541         if(eff & EF_BLUE)
542                 adddynamiclight(self.origin, 200, '0.15 0.15 1.5');
543         if(eff & EF_RED)
544                 adddynamiclight(self.origin, 200, '1.5 0.15 0.15');
545         // ignoring EF_NOGUNBOB
546         if(eff & EF_FULLBRIGHT)
547                 self.renderflags |= RF_FULLBRIGHT;
548         if(eff & EF_FLAME)
549                 pointparticles(particleeffectnum(EFFECT_EF_FLAME), self.origin, '0 0 0', bound(0, frametime, 0.1));
550         if(eff & EF_STARDUST)
551                 pointparticles(particleeffectnum(EFFECT_EF_STARDUST), self.origin, '0 0 0', bound(0, frametime, 0.1));
552         if(eff & EF_NOSHADOW)
553                 self.renderflags |= RF_NOSHADOW;
554         if(eff & EF_NODEPTHTEST)
555                 self.renderflags |= RF_DEPTHHACK;
556         // ignoring EF_SELECTABLE
557         if(eff & EF_DOUBLESIDED)
558                 self.effects |= EF_DOUBLESIDED;
559         if(eff & EF_NOSELFSHADOW)
560                 self.effects |= EF_NOSELFSHADOW;
561         if(eff & EF_DYNAMICMODELLIGHT)
562                 self.renderflags |= RF_DYNAMICMODELLIGHT;
563         // ignoring EF_UNUSED18, EF_UNUSED19, EF_RESTARTANIM_BIT, EF_TELEPORT_BIT, EF_LOWPRECISION
564         if(self.csqcmodel_modelflags & MF_ROCKET)
565                 tref = particleeffectnum(EFFECT_TR_ROCKET);
566         if(self.csqcmodel_modelflags & MF_GRENADE)
567                 tref = particleeffectnum(EFFECT_TR_GRENADE);
568         if(self.csqcmodel_modelflags & MF_GIB)
569                 tref = particleeffectnum(EFFECT_TR_BLOOD);
570         if(self.csqcmodel_modelflags & MF_ROTATE)
571         {
572                 self.renderflags |= RF_USEAXIS;
573                 makevectors(self.angles + '0 100 0' * fmod(time, 3.6));
574         }
575         if(self.csqcmodel_modelflags & MF_TRACER)
576                 tref = particleeffectnum(EFFECT_TR_WIZSPIKE);
577         if(self.csqcmodel_modelflags & MF_ZOMGIB)
578                 tref = particleeffectnum(EFFECT_TR_SLIGHTBLOOD);
579         if(self.csqcmodel_modelflags & MF_TRACER2)
580                 tref = particleeffectnum(EFFECT_TR_KNIGHTSPIKE);
581         if(self.csqcmodel_modelflags & MF_TRACER3)
582                 tref = particleeffectnum(EFFECT_TR_VORESPIKE);
583
584         self.traileffect = tref;
585
586         if(self.drawmask)
587                 Projectile_DrawTrail(self.origin);
588         else
589                 Projectile_ResetTrail(self.origin);
590
591         if(self.csqcmodel_effects & CSQCMODEL_EF_RESPAWNGHOST)
592                 self.renderflags |= RF_ADDITIVE;
593                 // also special in CSQCPlayer_GlowMod_Apply
594
595         if(self.csqcmodel_modelflags & MF_ROCKET)
596         {
597                 if(!self.snd_looping)
598                 {
599                         sound(self, CH_TRIGGER_SINGLE, SND_JETPACK_FLY, VOL_BASE, autocvar_g_jetpack_attenuation);
600                         self.snd_looping = CH_TRIGGER_SINGLE;
601                 }
602         }
603         else
604         {
605                 if(self.snd_looping)
606                 {
607                         sound(self, self.snd_looping, SND_Null, VOL_BASE, autocvar_g_jetpack_attenuation);
608                         self.snd_looping = 0;
609                 }
610         }
611 }
612
613 // general functions
614 .int csqcmodel_predraw_run;
615 .int anim_frame;
616 .int anim_frame1time;
617 .int anim_frame2;
618 .int anim_frame2time;
619 .int anim_saveframe;
620 .int anim_saveframe1time;
621 .int anim_saveframe2;
622 .int anim_saveframe2time;
623 .int anim_prev_pmove_flags;
624 void CSQCModel_Hook_PreDraw(bool isplayer)
625 {SELFPARAM();
626         if(self.csqcmodel_predraw_run == framecount)
627                 return;
628         self.csqcmodel_predraw_run = framecount;
629
630         if(!self.modelindex || self.model == "null")
631         {
632                 self.drawmask = 0;
633                 return;
634         }
635         else
636                 self.drawmask = MASK_NORMAL;
637
638         if(self.isplayermodel) // this checks if it's a player MODEL!
639         {
640                 CSQCPlayer_ModelAppearance_Apply(self.entnum == player_localnum + 1);
641                 CSQCPlayer_LOD_Apply();
642
643                 if(!isplayer)
644                 {
645                         skeleton_loadinfo(self);
646                         bool doblend = (self.bone_upperbody >= 0);
647                         CSQCPlayer_FallbackFrame_Apply();
648                         if(doblend)
649                         {
650                                 skeleton_from_frames(self, self.csqcmodel_isdead);
651                         }
652                         else
653                         {
654                                 free_skeleton_from_frames(self);
655                                 // just in case, clear these (we're animating in frame and frame3)
656                                 self.lerpfrac = 0;
657                                 self.lerpfrac4 = 0;
658                         }
659                 }
660                 else
661                 {
662                         // we know that frame3 and frame4 fields, used by InterpolateAnimation, are left alone - but that is all we know!
663                         skeleton_loadinfo(self);
664                         bool doblend = (self.bone_upperbody >= 0);
665                         bool onground = 0;
666                         if(self == csqcplayer)
667                         {
668                                 if(self.flags & FL_ONGROUND)
669                                         onground = 1;
670                                 self.anim_prev_pmove_flags = self.flags;
671                                 if(self.flags & FL_DUCKED)
672                                         animdecide_setstate(self, self.anim_state | ANIMSTATE_DUCK, false);
673                                 else if(self.anim_state & ANIMSTATE_DUCK)
674                                         animdecide_setstate(self, self.anim_state - ANIMSTATE_DUCK, false);
675                         }
676                         else
677                         {
678                                 tracebox(self.origin + '0 0 1', self.mins, self.maxs, self.origin - '0 0 4', MOVE_NORMAL, self);
679                                 if(trace_startsolid || trace_fraction < 1)
680                                         onground = 1;
681                         }
682                         animdecide_load_if_needed(self);
683                         animdecide_setimplicitstate(self, onground);
684                         animdecide_setframes(self, doblend, anim_frame, anim_frame1time, anim_frame2, anim_frame2time);
685                         int sf = 0;
686                         if(self.anim_saveframe != self.anim_frame || self.anim_saveframe1time != self.anim_frame1time)
687                                 sf |= CSQCMODEL_PROPERTY_FRAME;
688                         if(self.anim_saveframe2 != self.anim_frame2 || self.anim_saveframe2time != self.anim_frame2time)
689                                 sf |= CSQCMODEL_PROPERTY_FRAME2;
690                         self.anim_saveframe = self.anim_frame;
691                         self.anim_saveframe1time = self.anim_frame1time;
692                         self.anim_saveframe2 = self.anim_frame2;
693                         self.anim_saveframe2time = self.anim_frame2time;
694                         // Note: we always consider lerpfrac "changed", as it uses fixed values every time anyway.
695                         // This ensures that .frame etc. are always written.
696                         CSQCModel_InterpolateAnimation_2To4_PreNote(sf | CSQCMODEL_PROPERTY_LERPFRAC);
697                         self.lerpfrac = (doblend ? 0.5 : 0);
698                         self.frame = self.anim_frame;
699                         self.frame1time = self.anim_frame1time;
700                         self.frame2 = self.anim_frame2;
701                         self.frame2time = self.anim_frame2time;
702                         CSQCModel_InterpolateAnimation_2To4_Note(sf | CSQCMODEL_PROPERTY_LERPFRAC, false);
703                         CSQCModel_InterpolateAnimation_2To4_Do();
704                         if(doblend)
705                         {
706                                 skeleton_from_frames(self, self.csqcmodel_isdead);
707                         }
708                         else
709                         {
710                                 free_skeleton_from_frames(self);
711                                 // just in case, clear these (we're animating in frame and frame3)
712                                 self.lerpfrac = 0;
713                                 self.lerpfrac4 = 0;
714                         }
715                 }
716         }
717
718         CSQCModel_AutoTagIndex_Apply();
719
720         CSQCModel_Effects_Apply();
721 }
722
723 void CSQCModel_Hook_PreUpdate(bool isnew, bool isplayer, bool islocalplayer)
724 {SELFPARAM();
725         // interpolate v_angle
726         self.iflags |= IFLAG_V_ANGLE_X;
727         // revert to values from server
728         CSQCModel_Effects_PreUpdate();
729         if(self.isplayermodel)
730         {
731                 if(!isplayer)
732                         CSQCPlayer_FallbackFrame_PreUpdate();
733                 CSQCPlayer_ModelAppearance_PreUpdate();
734         }
735 }
736
737 void CSQCModel_Hook_PostUpdate(bool isnew, bool isplayer, bool islocalplayer)
738 {SELFPARAM();
739         // is it a player model? (shared state)
740         self.isplayermodel = (substring(self.model, 0, 14) == "models/player/" || substring(self.model, 0, 17) == "models/ok_player/" || (substring(self.model, 0, 16) == "models/monsters/" && (self.entnum >= 1 && self.entnum <= maxclients)));
741
742         // save values set by server
743         if(self.isplayermodel)
744         {
745                 CSQCPlayer_ModelAppearance_PostUpdate();
746                 if(isplayer)
747                         CSQCPlayer_AnimDecide_PostUpdate(isnew);
748                 else
749                         CSQCPlayer_FallbackFrame_PostUpdate(isnew);
750         }
751         CSQCModel_Effects_PostUpdate();
752 }