]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/weapons/accuracy.qc
Use IS_DEAD everywhere
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / weapons / accuracy.qc
1 #include "accuracy.qh"
2
3 #include "../mutators/all.qh"
4 #include <common/constants.qh>
5 #include <common/teams.qh>
6 #include <common/util.qh>
7 #include <common/weapons/all.qh>
8
9 int accuracy_byte(float n, float d)
10 {
11         if (n <= 0) return 0;
12         if (n > d) return 255;
13         return 1 + rint(n * 100.0 / d);
14 }
15
16 bool accuracy_send(entity this, entity to, int sf)
17 {
18         WriteHeader(MSG_ENTITY, ENT_CLIENT_ACCURACY);
19
20         entity a = this.owner;
21         if (IS_SPEC(a)) a = a.enemy;
22         a = a.accuracy;
23
24         if (to != a.owner)
25                 if (!autocvar_sv_accuracy_data_share && !a.owner.cvar_cl_accuracy_data_share)
26                         sf = 0;
27         // note: zero sendflags can never be sent... so we can use that to say that we send no accuracy!
28         WriteInt24_t(MSG_ENTITY, sf);
29         if (sf == 0) return true;
30         // note: we know that client and server agree about SendFlags...
31         int f = 1;
32         for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w) {
33                 if (sf & f) WriteByte(MSG_ENTITY, accuracy_byte(a.accuracy_hit[w], a.accuracy_fired[w]));
34                 f = (f == 0x800000) ? 1 : f * 2;
35         }
36         return true;
37 }
38
39 // init/free
40 void accuracy_init(entity e)
41 {
42         entity a = e.accuracy = new(accuracy);
43         make_pure(a);
44         a.owner = e;
45         a.drawonlytoclient = e;
46         Net_LinkEntity(a, false, 0, accuracy_send);
47 }
48
49 void accuracy_free(entity e)
50 {
51         remove(e.accuracy);
52 }
53
54 // force a resend of a player's accuracy stats
55 void accuracy_resend(entity e)
56 {
57         e.accuracy.SendFlags = 0xFFFFFF;
58 }
59
60 // update accuracy stats
61 //.float hit_time;
62 .float fired_time;
63
64 void accuracy_add(entity this, int w, int fired, int hit)
65 {
66         if (IS_INDEPENDENT_PLAYER(this)) return;
67         entity a = this.accuracy;
68         if (!a) return;
69         if (!hit && !fired) return;
70         w -= WEP_FIRST;
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;
74
75     if (hit && a.hit_time != time) { // only run this once per frame
76         a.accuracy_cnt_hit[w] += 1;
77         a.hit_time = time;
78     }
79
80     if (fired && a.fired_time != time) { // only run this once per frame
81         a.accuracy_cnt_fired[w] += 1;
82         a.fired_time = time;
83     }
84
85         if (b == accuracy_byte(a.accuracy_hit[w], a.accuracy_fired[w])) return; // no change
86         int sf = 1 << (w % 24);
87         a.SendFlags |= sf;
88         FOREACH_CLIENT(IS_SPEC(it) && it.enemy == this, LAMBDA(it.accuracy.SendFlags |= sf));
89 }
90
91 bool accuracy_isgooddamage(entity attacker, entity targ)
92 {
93         int mutator_check = MUTATOR_CALLHOOK(AccuracyTargetValid, attacker, targ);
94
95         if (warmup_stage) return false;
96         if (IS_DEAD(targ)) return false;
97         if (targ.frozen) return false;
98         if (SAME_TEAM(attacker, targ)) return false;
99
100         if (mutator_check == MUT_ACCADD_INVALID) return true;
101
102         if (mutator_check != MUT_ACCADD_VALID) return false;
103         if (!IS_CLIENT(targ)) return false;
104
105         return true;
106 }
107
108 bool accuracy_canbegooddamage(entity attacker)
109 {
110         return !warmup_stage;
111 }