X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fent_cs.qc;h=71052bd2b7fdbf256aaf2d034ec2490801e9657c;hb=429e52163f53e75b848135f076b77c4eb43935ac;hp=17ee08e7cf14937037696112f4a7edf941c2ab4e;hpb=268f9c69576b6bb929f66d19f0d077d19ba47edd;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/ent_cs.qc b/qcsrc/common/ent_cs.qc index 17ee08e7c..71052bd2b 100644 --- a/qcsrc/common/ent_cs.qc +++ b/qcsrc/common/ent_cs.qc @@ -11,43 +11,43 @@ MACRO_END MACRO_END // #define PROP(public, fld, set, sv, cl) -#define ENTCS_NETPROPS(PROP) PROP(false, sv_entnum, ENTCS_SET_NORMAL, {}, {}) /* sentinel */ \ +#define ENTCS_NETPROPS(ent, PROP) PROP(false, sv_entnum, ENTCS_SET_NORMAL, {}, {}) /* sentinel */ \ PROP(false, origin, ENTCS_SET_NORMAL, \ - { WriteShort(chan, this.origin.x); WriteShort(chan, this.origin.y); \ - WriteShort(chan, this.origin.z); }, \ - { this.has_sv_origin = true; vector v; v.x = ReadShort(); v.y = ReadShort(); v.z = ReadShort(); setorigin(this, v); }) \ + { WriteShort(chan, ent.origin.x); WriteShort(chan, ent.origin.y); \ + WriteShort(chan, ent.origin.z); }, \ + { ent.has_sv_origin = true; vector v; v.x = ReadShort(); v.y = ReadShort(); v.z = ReadShort(); setorigin(ent, v); }) \ \ PROP(false, angles_y, ENTCS_SET_NORMAL, \ - { WriteByte(chan, this.angles.y / 360 * 256); }, \ - { vector v = '0 0 0'; v.y = ReadByte() / 256 * 360; this.angles = v; }) \ + { WriteByte(chan, ent.angles.y / 360 * 256); }, \ + { vector v = '0 0 0'; v.y = ReadByte() / 256 * 360; ent.angles = v; }) \ \ PROP(false, health, ENTCS_SET_NORMAL, \ - { WriteByte(chan, bound(0, this.health / 10, 255)); /* FIXME: use a better scale? */ }, \ - { this.healthvalue = ReadByte() * 10; }) \ + { WriteByte(chan, bound(0, ent.health / 10, 255)); /* FIXME: use a better scale? */ }, \ + { ent.healthvalue = ReadByte() * 10; }) \ \ PROP(false, armorvalue, ENTCS_SET_NORMAL, \ - { WriteByte(chan, bound(0, this.armorvalue / 10, 255)); /* FIXME: use a better scale? */ }, \ - { this.armorvalue = ReadByte() * 10; }) \ + { WriteByte(chan, bound(0, ent.armorvalue / 10, 255)); /* FIXME: use a better scale? */ }, \ + { ent.armorvalue = ReadByte() * 10; }) \ \ PROP(true, netname, ENTCS_SET_MUTABLE_STRING, \ - { WriteString(chan, this.netname); }, \ - { if (this.netname) strunzone(this.netname); this.netname = strzone(ReadString()); }) \ + { WriteString(chan, ent.netname); }, \ + { if (ent.netname) strunzone(ent.netname); ent.netname = strzone(ReadString()); }) \ \ PROP(true, model, ENTCS_SET_NORMAL, \ - { WriteString(chan, this.model); }, \ - { if (this.model) strunzone(this.model); this.model = strzone(ReadString()); }) \ + { WriteString(chan, ent.model); }, \ + { if (ent.model) strunzone(ent.model); ent.model = strzone(ReadString()); }) \ \ PROP(true, skin, ENTCS_SET_NORMAL, \ - { WriteByte(chan, this.skin); }, \ - { this.skin = ReadByte(); }) \ + { WriteByte(chan, ent.skin); }, \ + { ent.skin = ReadByte(); }) \ \ PROP(true, clientcolors, ENTCS_SET_NORMAL, \ - { WriteByte(chan, this.clientcolors); }, \ - { this.colormap = ReadByte(); }) \ + { WriteByte(chan, ent.clientcolors); }, \ + { ent.colormap = ReadByte(); }) \ \ PROP(true, frags, ENTCS_SET_NORMAL, \ - { WriteShort(chan, this.frags); }, \ - { this.frags = ReadShort(); }) \ + { WriteShort(chan, ent.frags); }, \ + { ent.frags = ReadShort(); }) \ \ /**/ @@ -63,7 +63,7 @@ MACRO_END } \ i += 1; \ } - ENTCS_NETPROPS(X); + ENTCS_NETPROPS(this, X); #undef X if (i >= BITS(16 - 1)) LOG_FATAL("Exceeded ENTCS_NETPROPS limit"); } @@ -73,6 +73,11 @@ MACRO_END entity player = this.owner; sf |= BIT(0); // assume private do { + if (!(IS_PLAYER(player))) + { + sf &= ENTCS_PUBLICMASK; // no private updates + break; + } if (radar_showennemies) break; if (SAME_TEAM(to, player)) break; if (!(IS_PLAYER(to) || to.caplayer) && time > game_starttime) break; @@ -93,7 +98,7 @@ MACRO_END } \ i += 1; \ } - ENTCS_NETPROPS(X); + ENTCS_NETPROPS(this, X); #undef X return true; } @@ -115,7 +120,7 @@ MACRO_END } \ i += 1; \ } - ENTCS_NETPROPS(X); + ENTCS_NETPROPS(this, X); #undef X setorigin(this, this.origin); // relink } @@ -175,33 +180,26 @@ MACRO_END { int n = ReadByte(); entity e = entcs_receiver(n); - #define X(e) { \ - setthink(e, entcs_think); \ - entcs_receiver(n, e); \ - } if (e == NULL) { if (!this) - { // initial = temp e = new_pure(entcs_receiver); - X(e); - } else - { // initial = linked e = this; - X(e); - } + setthink(e, entcs_think); + entcs_receiver(n, e); } else if (e != this && this) { // upgrade to linked delete(e); e = this; - X(e); + setthink(e, entcs_think); + entcs_receiver(n, e); } - #undef X + InterpolateOrigin_Undo(e); e.sv_entnum = n; int sf = ReadShort(); @@ -214,7 +212,7 @@ MACRO_END } \ i += 1; \ } - ENTCS_NETPROPS(X); + ENTCS_NETPROPS(e, X); #undef X e.iflags |= IFLAG_ORIGIN; InterpolateOrigin_Note(e);