Utilize the internal autocomplete suggest system

Utilize 'ConCommand::AutoCompleteSuggest' instead of our temporary inline console solution. This fixes all crashes caused by calling command autocomplete callbacks that uses the newer system (e.g. 'ent_fire').
This commit is contained in:
Kawe Mazidjatari 2023-03-17 00:17:35 +01:00
parent 98a01e0ae2
commit fd1a5d76cf

View File

@ -511,13 +511,12 @@ bool CConsole::AutoComplete(void)
svCommand += m_szInputBuf[i];
}
const ConCommand* pCommand = g_pCVar->FindCommand(svCommand.c_str());
if (pCommand && pCommand->m_bHasCompletionCallback)
{
const char* szPartial = m_szInputBuf;
ConCommand* pCommand = g_pCVar->FindCommand(svCommand.c_str());
char rgpchCommands[COMMAND_COMPLETION_MAXITEMS][COMMAND_COMPLETION_ITEM_LENGTH];
int iret = (pCommand->m_fnCompletionCallback)(szPartial, rgpchCommands);
if (pCommand && pCommand->CanAutoComplete())
{
CUtlVector< CUtlString > commands;
int iret = pCommand->AutoCompleteSuggest(svCommand.c_str(), commands);
if (!iret)
{
@ -526,8 +525,7 @@ bool CConsole::AutoComplete(void)
for (int i = 0; i < iret; ++i)
{
const char* str = rgpchCommands[i];
m_vSuggest.push_back(CSuggest(str, COMMAND_COMPLETION_MARKER));
m_vSuggest.push_back(CSuggest(commands[i].String(), COMMAND_COMPLETION_MARKER));
}
}
else