|
34 | 34 | #define GET_FIRST_EMPTY_ELEMENT(E) while( E->m_Pos.x ) ++E
|
35 | 35 |
|
36 | 36 | 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); |
37 | 38 | 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 | + |
43 | 57 | }
|
44 | 58 |
|
45 | 59 | 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); |
46 | 61 | GET_FIRST_EMPTY_ELEMENT(data);
|
47 | 62 | data->m_Pos = position;
|
48 | 63 | data->m_DeathDist = score;
|
|
0 commit comments