X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fg_models.qc;h=8bc5387367542162947a07b205be9b51b3db38a9;hb=21307f327df5609b82d90496c1c6156d636d1c8d;hp=101f16796a27c3f565404ce3f509708f7e3945f0;hpb=754e6b0083895315729a0d0ba42a2e798f61d365;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/g_models.qc b/qcsrc/server/g_models.qc index 101f16796..8bc538736 100644 --- a/qcsrc/server/g_models.qc +++ b/qcsrc/server/g_models.qc @@ -1,19 +1,22 @@ -#if defined(CSQC) -#elif defined(MENUQC) -#elif defined(SVQC) - #include "../dpdefs/progsdefs.qh" - #include "../dpdefs/dpextensions.qh" - #include "../common/constants.qh" - #include "autocvars.qh" - #include "constants.qh" - #include "defs.qh" - #include "../csqcmodellib/sv_model.qh" -#endif + +#include "g_subs.qh" +#include "../common/triggers/subs.qh" +#include "../common/triggers/triggers.qh" + +entityclass(BGMScript); +class(BGMScript) .string bgmscript; +class(BGMScript) .float bgmscriptattack; +class(BGMScript) .float bgmscriptdecay; +class(BGMScript) .float bgmscriptsustain; +class(BGMScript) .float bgmscriptrelease; + +#include "../common/constants.qh" +#include "../lib/csqcmodel/sv_model.qh" .float modelscale; void g_model_setcolormaptoactivator (void) -{ +{SELFPARAM(); if(teamplay) { if(activator.team) @@ -27,13 +30,13 @@ void g_model_setcolormaptoactivator (void) } void g_clientmodel_setcolormaptoactivator (void) -{ +{SELFPARAM(); g_model_setcolormaptoactivator(); - self.SendFlags |= 9; + self.SendFlags |= (8 | 1); } void g_clientmodel_use(void) -{ +{SELFPARAM(); if (self.antiwall_flag == 1) { self.inactive = 1; @@ -48,7 +51,7 @@ void g_clientmodel_use(void) } void g_model_dropbyspawnflags() -{ +{SELFPARAM(); if((self.spawnflags & 3) == 1) // ALIGN_ORIGIN { traceline(self.origin, self.origin - '0 0 4096', MOVE_NOMONSTERS, self); @@ -67,7 +70,7 @@ void g_model_dropbyspawnflags() } void g_clientmodel_dropbyspawnflags() -{ +{SELFPARAM(); vector o0; o0 = self.origin; g_model_dropbyspawnflags(); @@ -75,7 +78,7 @@ void g_clientmodel_dropbyspawnflags() self.SendFlags |= 2; } -float g_clientmodel_genericsendentity (entity to, float sf) +bool g_clientmodel_genericsendentity(entity this, entity to, int sf) { sf = sf & 0x0F; if(self.angles != '0 0 0') @@ -153,6 +156,7 @@ float g_clientmodel_genericsendentity (entity to, float sf) WriteShort(MSG_ENTITY, self.alpha_max); WriteShort(MSG_ENTITY, self.alpha_min); WriteShort(MSG_ENTITY, self.inactive); + WriteShort(MSG_ENTITY, self.fade_vertical_offset); } return true; @@ -179,15 +183,15 @@ float g_clientmodel_genericsendentity (entity to, float sf) self.default_solid = sol; // non-solid model entities: -void spawnfunc_misc_gamemodel() { self.angles_x = -self.angles.x; G_MODEL_INIT (SOLID_NOT) } // model entity -void spawnfunc_misc_clientmodel() { self.angles_x = -self.angles.x; G_CLIENTMODEL_INIT(SOLID_NOT) } // model entity -void spawnfunc_misc_models() { self.angles_x = -self.angles.x; G_MODEL_INIT (SOLID_NOT) } // DEPRECATED old compat entity with confusing name, do not use +spawnfunc(misc_gamemodel) { self.angles_x = -self.angles.x; G_MODEL_INIT (SOLID_NOT) } // model entity +spawnfunc(misc_clientmodel) { self.angles_x = -self.angles.x; G_CLIENTMODEL_INIT(SOLID_NOT) } // model entity +spawnfunc(misc_models) { self.angles_x = -self.angles.x; G_MODEL_INIT (SOLID_NOT) } // DEPRECATED old compat entity with confusing name, do not use // non-solid brush entities: -void spawnfunc_func_illusionary() { G_MODEL_INIT (SOLID_NOT) } // Q1 name (WARNING: MISPREDICTED) -void spawnfunc_func_clientillusionary() { G_CLIENTMODEL_INIT(SOLID_NOT) } // brush entity -void spawnfunc_func_static() { G_MODEL_INIT (SOLID_NOT) } // DEPRECATED old alias name from some other game +spawnfunc(func_illusionary) { G_MODEL_INIT (SOLID_NOT) } // Q1 name (WARNING: MISPREDICTED) +spawnfunc(func_clientillusionary) { G_CLIENTMODEL_INIT(SOLID_NOT) } // brush entity +spawnfunc(func_static) { G_MODEL_INIT (SOLID_NOT) } // DEPRECATED old alias name from some other game // solid brush entities -void spawnfunc_func_wall() { G_MODEL_INIT (SOLID_BSP) } // Q1 name -void spawnfunc_func_clientwall() { G_CLIENTMODEL_INIT(SOLID_BSP) } // brush entity (WARNING: MISPREDICTED) +spawnfunc(func_wall) { G_MODEL_INIT (SOLID_BSP) } // Q1 name +spawnfunc(func_clientwall) { G_CLIENTMODEL_INIT(SOLID_BSP) } // brush entity (WARNING: MISPREDICTED)