Skip to content

Commit d44f27f

Browse files
committed
fix(defib): correctly pop score from death array (Issue #9)
Somtimes position of reviving target does not correct at event time. It can be more than 100 when we expect below 5. Now algoright reworked to get nearest body for clear death score cell
1 parent ee50e14 commit d44f27f

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

src/routine.cpp

+20-5
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,30 @@
3434
#define GET_FIRST_EMPTY_ELEMENT(E) while( E->m_Pos.x ) ++E
3535

3636
void r_nowAlive(const Vector& position, death_info_t *data, size_t len) {
37+
L4D_DEBUG_LOG("r_nowAlive: %f.%f.%f", position.x, position.y, position.z);
3738
death_info_t *begin = data;
38-
for(; static_cast<size_t>(data - begin) < len; ++data)
39-
if(data->m_Pos.DistTo(position) < 5.0) {
40-
memset(data, 0, sizeof(death_info_t));
41-
break;
42-
}
39+
death_info_t *nearest = NULL;
40+
41+
float min_distance = 999999;
42+
for(; static_cast<size_t>(data - begin) < len; ++data){
43+
if (data->m_DeathDist == 0) continue;
44+
float dist = data->m_Pos.DistTo(position);
45+
L4D_DEBUG_LOG("data->m_Pos.DistTo(position): %f", dist);
46+
47+
if (dist > min_distance) continue;
48+
min_distance = dist;
49+
nearest = data;
50+
}
51+
52+
if(nearest) {
53+
L4D_DEBUG_LOG("RESET SCORE AT: %f.%f.%f", nearest->m_Pos.x, nearest->m_Pos.y, nearest->m_Pos.z);
54+
memset(nearest, 0, sizeof(death_info_t));
55+
}
56+
4357
}
4458

4559
void r_nowDead(const Vector& position, uint32_t score, death_info_t *data) {
60+
L4D_DEBUG_LOG("r_nowDead: %f.%f.%f", position.x, position.y, position.z);
4661
GET_FIRST_EMPTY_ELEMENT(data);
4762
data->m_Pos = position;
4863
data->m_DeathDist = score;

0 commit comments

Comments
 (0)