Improve bullet-hit trajectory debug

The ConVar 'bhit_abs_origin' will now draw a sphere at the predicted abs origin of the entity upon hit. This is useful for debugging lag compensation on the server (white star).
This commit is contained in:
Kawe Mazidjatari 2022-10-01 00:27:51 +02:00
parent dbc47f81aa
commit f215ca0720
5 changed files with 25 additions and 24 deletions

View File

@ -4,7 +4,8 @@
class IClientNetworkable
{
public:
virtual ~IClientNetworkable(void) = 0;
void* __vftable /*VFT*/;
//virtual ~IClientNetworkable(void) = 0;
// !TODO!
};

View File

@ -118,7 +118,7 @@ void ConVar::Init(void) const
#endif // DEDICATED
#endif // !CLIENT_DLL
#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1)
bhit_abs_origin = ConVar::Create("bhit_abs_origin", "0", FCVAR_DEVELOPMENTONLY | FCVAR_REPLICATED, "Use player's absolute origin for bhit tracing.", false, 0.f, false, 0.f, nullptr, nullptr);
bhit_abs_origin = ConVar::Create("bhit_abs_origin", "1", FCVAR_DEVELOPMENTONLY | FCVAR_REPLICATED, "Draw entity's predicted abs origin upon bullet impact for trajectory debugging.", false, 0.f, false, 0.f, nullptr, nullptr);
#endif // !GAMEDLL_S0 && !GAMEDLL_S1
//-------------------------------------------------------------------------
// CLIENT |
@ -249,6 +249,7 @@ void ConVar::InitShipped(void) const
stream_overlay = g_pCVar->FindVar("stream_overlay");
stream_overlay_mode = g_pCVar->FindVar("stream_overlay_mode");
sv_visualizetraces = g_pCVar->FindVar("sv_visualizetraces");
sv_visualizetraces_duration = g_pCVar->FindVar("sv_visualizetraces_duration");
old_gather_props = g_pCVar->FindVar("old_gather_props");
#ifndef DEDICATED
origin_disconnectWhenOffline = g_pCVar->FindVar("origin_disconnectWhenOffline");

View File

@ -84,11 +84,11 @@ ConVar* sv_rcon_maxsockets = nullptr;
ConVar* sv_rcon_whitelist_address = nullptr;
#endif // DEDICATED
#endif // !CLIENT_DLL
ConVar* sv_visualizetraces = nullptr;
ConVar* sv_visualizetraces = nullptr;
ConVar* sv_visualizetraces_duration = nullptr;
#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1)
ConVar* bhit_enable = nullptr;
ConVar* bhit_abs_origin = nullptr;
ConVar* bhit_enable = nullptr;
ConVar* bhit_abs_origin = nullptr;
#endif // !GAMEDLL_S0 && !GAMEDLL_S1
//-----------------------------------------------------------------------------
// CLIENT |

View File

@ -81,6 +81,7 @@ extern ConVar* sv_rcon_whitelist_address;
#endif // DEDICATED
#endif // CLIENT_DLL
extern ConVar* sv_visualizetraces;
extern ConVar* sv_visualizetraces_duration;
#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1)
extern ConVar* bhit_enable;
extern ConVar* bhit_abs_origin;

View File

@ -927,10 +927,10 @@ BHit_f
*/
void BHit_f(const CCommand& args)
{
#ifndef DEDICATED //
if (args.ArgC() != 9)
return;
#ifndef DEDICATED
if (bhit_enable->GetBool() && sv_visualizetraces->GetBool())
{
Vector3D vecAbsStart;
@ -939,23 +939,12 @@ void BHit_f(const CCommand& args)
for (int i = 0; i < 3; ++i)
vecAbsStart[i] = atof(args[i + 4]);
if (bhit_abs_origin->GetBool())
{
int iEnt = atof(args[2]);
if (IClientEntity* pEntity = g_pClientEntityList->GetClientEntity(iEnt))
vecAbsEnd = pEntity->GetAbsOrigin();
else
goto VEC_RENDER;
}
else VEC_RENDER:
{
QAngle vecBulletAngles;
for (int i = 0; i < 2; ++i)
vecBulletAngles[i] = atof(args[i + 7]);
QAngle vecBulletAngles;
for (int i = 0; i < 2; ++i)
vecBulletAngles[i] = atof(args[i + 7]);
vecBulletAngles.z = 180.f; // Flipped axis.
AngleVectors(vecBulletAngles, &vecAbsEnd);
}
vecBulletAngles.z = 180.f; // Flipped axis.
AngleVectors(vecBulletAngles, &vecAbsEnd);
static char szBuf[2048];
snprintf(szBuf, sizeof(szBuf), "drawline %g %g %g %g %g %g",
@ -963,8 +952,17 @@ void BHit_f(const CCommand& args)
vecAbsStart.x + vecAbsEnd.x * MAX_COORD_RANGE,
vecAbsStart.y + vecAbsEnd.y * MAX_COORD_RANGE,
vecAbsStart.z + vecAbsEnd.z * MAX_COORD_RANGE);
Cbuf_AddText(Cbuf_GetCurrentPlayer(), szBuf, cmd_source_t::kCommandSrcCode);
if (bhit_abs_origin->GetBool())
{
const int iEnt = atof(args[2]);
if (const IClientEntity* pEntity = g_pClientEntityList->GetClientEntity(iEnt))
{
g_pDebugOverlay->AddSphereOverlay( // Render a debug sphere at the client's predicted entity origin.
pEntity->GetAbsOrigin(), 10.f, 8, 6, 20, 60, 255, 0, sv_visualizetraces_duration->GetFloat());
}
}
}
#endif // !DEDICATED
}