3 #include "../mutators/_mod.qh"
4 #include <common/constants.qh>
5 #include <common/net_linked.qh>
6 #include <common/teams.qh>
7 #include <common/util.qh>
8 #include <common/weapons/_all.qh>
10 int accuracy_byte(float n, float d)
13 if (n > d) return 255;
14 return 1 + rint(n * 100.0 / d);
17 bool accuracy_send(entity this, entity to, int sf)
19 WriteHeader(MSG_ENTITY, ENT_CLIENT_ACCURACY);
21 entity a = this.owner;
22 if (IS_SPEC(a)) a = a.enemy;
26 if (!autocvar_sv_accuracy_data_share && !CS(a.owner).cvar_cl_accuracy_data_share)
28 // note: zero sendflags can never be sent... so we can use that to say that we send no accuracy!
29 WriteInt24_t(MSG_ENTITY, sf);
30 if (sf == 0) return true;
31 // note: we know that client and server agree about SendFlags...
33 for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w) {
34 if (sf & f) WriteByte(MSG_ENTITY, accuracy_byte(a.accuracy_hit[w], a.accuracy_fired[w]));
35 f = (f == 0x800000) ? 1 : f * 2;
41 void accuracy_init(entity e)
43 entity a = CS(e).accuracy = new_pure(accuracy);
45 a.drawonlytoclient = e;
46 Net_LinkEntity(a, false, 0, accuracy_send);
49 void accuracy_free(entity e)
51 delete(CS(e).accuracy);
54 // force a resend of a player's accuracy stats
55 void accuracy_resend(entity e)
57 CS(e).accuracy.SendFlags = 0xFFFFFF;
60 // update accuracy stats
64 void accuracy_add(entity this, int w, int fired, int hit)
66 if (IS_INDEPENDENT_PLAYER(this)) return;
67 entity a = CS(this).accuracy;
69 if (!hit && !fired) return;
71 int b = accuracy_byte(a.accuracy_hit[w], a.accuracy_fired[w]);
72 if (hit) a.accuracy_hit [w] += hit;
73 if (fired) a.accuracy_fired[w] += fired;
75 if (hit && a.hit_time != time) { // only run this once per frame
76 a.accuracy_cnt_hit[w] += 1;
80 if (fired && a.fired_time != time) { // only run this once per frame
81 a.accuracy_cnt_fired[w] += 1;
85 if (b == accuracy_byte(a.accuracy_hit[w], a.accuracy_fired[w])) return; // no change
86 int sf = 1 << (w % 24);
88 FOREACH_CLIENT(IS_SPEC(it) && it.enemy == this, { CS(it).accuracy.SendFlags |= sf; });
91 bool accuracy_isgooddamage(entity attacker, entity targ)
93 int mutator_check = MUTATOR_CALLHOOK(AccuracyTargetValid, attacker, targ);
95 if (warmup_stage) return false;
96 if (IS_DEAD(targ)) return false;
97 if (STAT(FROZEN, targ)) return false;
98 if (SAME_TEAM(attacker, targ)) return false;
100 if (mutator_check == MUT_ACCADD_INVALID) return true;
102 if (mutator_check != MUT_ACCADD_VALID) return false;
103 if (!IS_CLIENT(targ)) return false;
108 bool accuracy_canbegooddamage(entity attacker)
110 return !warmup_stage;