X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fcommon%2Fent_cs.qc;h=4ef6b2f793b819805c3a78c5f0fb0e32f190ab2d;hp=3d9127cbb5029af38ab53079f7ad1ed0f3345925;hb=HEAD;hpb=cda2b74a40a9b013c9ed947a38d1866efb164138 diff --git a/qcsrc/common/ent_cs.qc b/qcsrc/common/ent_cs.qc index 3d9127cbb..85119de08 100644 --- a/qcsrc/common/ent_cs.qc +++ b/qcsrc/common/ent_cs.qc @@ -2,12 +2,12 @@ #if defined(CSQC) #include - #include + #include #elif defined(MENUQC) #elif defined(SVQC) #include - #include - #include + #include + #include #endif REGISTRY(EntCSProps, BITS(16) - 1) @@ -115,7 +115,7 @@ ENTCS_PROP(ORIGIN, false, origin, origin, ENTCS_SET_NORMAL, { WriteVector(chan, ent.origin); }, { ent.has_sv_origin = true; vector v = ReadVector(); setorigin(ent, v); }) -#define DEC_FACTOR (360 / 32) +#define DEC_FACTOR (360 / 64) ENTCS_PROP_CODED(ANGLES, false, angles_y, angles_y, ENTCS_SET_NORMAL, DEC_FACTOR, { WriteByte(chan, ent.angles.y / DEC_FACTOR); }, { vector v = '0 0 0'; v.y = ReadByte() * DEC_FACTOR; ent.angles = v; }) @@ -159,12 +159,23 @@ ENTCS_PROP(SOLID, true, sv_solid, solid, ENTCS_SET_NORMAL, #ifdef SVQC - int ENTCS_PUBLICMASK = 0; + int ENTCS_PUBLICMASK = 0, ENTCS_PRIVATEMASK = 0; STATIC_INIT(ENTCS_PUBLICMASK) { - FOREACH(EntCSProps, it.m_public, + FOREACH(EntCSProps, true, { - ENTCS_PUBLICMASK |= BIT(it.m_id); + if (it.m_public) + ENTCS_PUBLICMASK |= BIT(it.m_id); + else + ENTCS_PRIVATEMASK |= BIT(it.m_id); + }); + } + + void entcs_update_players(entity player) + { + FOREACH_CLIENT(it != player && IS_PLAYER(it), + { + CS(it).entcs.SendFlags |= ENTCS_PRIVATEMASK; }); } @@ -177,7 +188,7 @@ ENTCS_PROP(SOLID, true, sv_solid, solid, ENTCS_SET_NORMAL, { if (radar_showenemies) break; if (SAME_TEAM(to, player)) break; - if (!(IS_PLAYER(to) || to.caplayer)) break; + if (!(IS_PLAYER(to) || INGAME(to))) break; } sf &= ENTCS_PUBLICMASK; // no private updates } while (0); @@ -219,17 +230,18 @@ ENTCS_PROP(SOLID, true, sv_solid, solid, ENTCS_SET_NORMAL, } // always send origin of players even if they stand still otherwise - // if a teammate isn't in my pvs and his health (or view angle or name - // etc...) changes then his tag disappears + // if a teammate isn't in my pvs and their health (or view angle or name + // etc...) changes then their tag disappears if (IS_PLAYER(this.owner)) this.SendFlags |= BIT(ENTCS_PROP_ORIGIN_id); - setorigin(this, this.origin); // relink + // not needed, origin is just data to be sent + //setorigin(this, this.origin); // relink } void entcs_attach(entity player) { - entity e = CS(player).entcs = new(entcs_sender); + entity e = CS(player).entcs = new_pure(entcs_sender); e.owner = player; setthink(e, entcs_think); e.nextthink = time; @@ -270,11 +282,17 @@ ENTCS_PROP(SOLID, true, sv_solid, solid, ENTCS_SET_NORMAL, entity e = CSQCModel_server2csqc(this.sv_entnum); if (e == NULL) { + // player model is NOT in client's PVS + InterpolateOrigin_Do(this); this.has_origin = this.has_sv_origin; return; } this.has_origin = true; + // when a player model is in client's PVS we use its origin directly + // (entcs networked origin is overriden) this.origin = e.origin; + InterpolateOrigin_Reset(this); + setorigin(this, this.origin); // `cl_forceplayermodels 1` sounds will be wrong until the player has been in the PVS, but so be it if (this.model != e.model) {