Rename to make more sense

This commit is contained in:
Amos 2022-02-23 21:11:35 +01:00
parent 8c940fcbc8
commit d3c7b9baf5
4 changed files with 8 additions and 8 deletions

View File

@ -410,16 +410,16 @@ void CConsole::FindFromPartial(void)
m_bSuggestUpdate = true;
m_vsvSuggest.clear();
for (int i = 0; i < g_vsvAllConVars.size(); i++)
for (int i = 0; i < g_vsvCommandBases.size(); i++)
{
if (m_vsvSuggest.size() < con_suggestion_limit->GetInt())
{
if (g_vsvAllConVars[i].find(m_szInputBuf) != std::string::npos)
if (g_vsvCommandBases[i].find(m_szInputBuf) != std::string::npos)
{
if (std::find(m_vsvSuggest.begin(), m_vsvSuggest.end(), g_vsvAllConVars[i]) == m_vsvSuggest.end())
if (std::find(m_vsvSuggest.begin(), m_vsvSuggest.end(), g_vsvCommandBases[i]) == m_vsvSuggest.end())
{
std::string svValue;
ConCommandBase* pCommandBase = g_pCVar->FindCommandBase(g_vsvAllConVars[i].c_str());
ConCommandBase* pCommandBase = g_pCVar->FindCommandBase(g_vsvCommandBases[i].c_str());
if (pCommandBase != nullptr)
{
@ -452,7 +452,7 @@ void CConsole::FindFromPartial(void)
}
}
m_vsvSuggest.push_back(g_vsvAllConVars[i] + svValue);
m_vsvSuggest.push_back(g_vsvCommandBases[i] + svValue);
}
}
}

View File

@ -60,7 +60,7 @@ bool HModAppSystemGroup_Create(CModAppSystemGroup* modAppSystemGroup)
for (auto& map : g_pCVar->DumpToMap())
{
g_vsvAllConVars.push_back(map.first.c_str());
g_vsvCommandBases.push_back(map.first.c_str());
}
g_bAppSystemInit = true;

View File

@ -141,5 +141,5 @@ std::unordered_map<std::string, ConCommandBase*> CCVar::DumpToMap()
}
///////////////////////////////////////////////////////////////////////////////
std::vector<std::string> g_vsvAllConVars;
std::vector<std::string> g_vsvCommandBases;
CCVar* g_pCVar = reinterpret_cast<CCVar*>(p_CEngineAPI_Connect.FindPatternSelf("48 8D 0D", ADDRESS::Direction::DOWN, 40).ResolveRelativeAddressSelf(0x3, 0x7).GetPtr());

View File

@ -112,7 +112,7 @@ public:
};
///////////////////////////////////////////////////////////////////////////////
extern std::vector<std::string> g_vsvAllConVars;
extern std::vector<std::string> g_vsvCommandBases;
extern CCVar* g_pCVar;