From e4eb6d278f92cf8631f29d67020936d528ddd8de Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 13 Aug 2022 13:06:30 +0200 Subject: [PATCH] Hook up 'convar_findByFlags' command callback In-engine implementation has logging stripped. --- r5dev/tier1/cmd.cpp | 1 + r5dev/vstdlib/callback.cpp | 13 +++++++++++++ r5dev/vstdlib/callback.h | 1 + 3 files changed, 15 insertions(+) diff --git a/r5dev/tier1/cmd.cpp b/r5dev/tier1/cmd.cpp index 36fd0216..7a887261 100644 --- a/r5dev/tier1/cmd.cpp +++ b/r5dev/tier1/cmd.cpp @@ -378,6 +378,7 @@ void ConCommand::InitShipped(void) g_pCVar->FindCommand("help")->m_fnCommandCallback = CVHelp_f; g_pCVar->FindCommand("convar_list")->m_fnCommandCallback = CVList_f; g_pCVar->FindCommand("convar_differences")->m_fnCommandCallback = CVDiff_f; + g_pCVar->FindCommand("convar_findByFlags")->m_fnCommandCallback = CVFlag_f; #ifndef DEDICATED //------------------------------------------------------------------------- // MATERIAL SYSTEM diff --git a/r5dev/vstdlib/callback.cpp b/r5dev/vstdlib/callback.cpp index beb861a4..52c7aea2 100644 --- a/r5dev/vstdlib/callback.cpp +++ b/r5dev/vstdlib/callback.cpp @@ -1092,3 +1092,16 @@ void CVDiff_f(const CCommand& args) { cv->CvarDifferences(args); } + +/* +===================== +CVFlag_f + + List all ConVar's + with specified flags +===================== +*/ +void CVFlag_f(const CCommand& args) +{ + cv->CvarFindFlags_f(args); +} diff --git a/r5dev/vstdlib/callback.h b/r5dev/vstdlib/callback.h index 1f0d9153..2765f124 100644 --- a/r5dev/vstdlib/callback.h +++ b/r5dev/vstdlib/callback.h @@ -57,6 +57,7 @@ void BHit_f(const CCommand& args); void CVHelp_f(const CCommand& args); void CVList_f(const CCommand& args); void CVDiff_f(const CCommand& args); +void CVFlag_f(const CCommand& args); /////////////////////////////////////////////////////////////////////////////// class VCallback : public IDetour {