1
0
mirror of https://github.com/Mauler125/r5sdk.git synced 2025-02-09 19:15:03 +01:00

Sort IConsole autocomplete list lexicographically

QoL update for the console.
This commit is contained in:
Kawe Mazidjatari 2022-04-18 05:34:21 +02:00
parent 8ebdf6fa65
commit ecfc380f84
3 changed files with 9 additions and 0 deletions
r5dev

@ -458,6 +458,7 @@ void CConsole::FindFromPartial(void)
}
else { break; }
}
std::sort(m_vsvSuggest.begin(), m_vsvSuggest.end(), CheckStringLexicographically);
}
//-----------------------------------------------------------------------------

@ -25,5 +25,6 @@ string StringEscape(const string& svInput);
string StringUnescape(const string& svInput);
vector<int> StringToBytes(const string& svInput, bool bNullTerminator);
vector<int> PatternToBytes(const string& svInput);
bool CheckStringLexicographically(const string& svA, const string& svB);
/////////////////////////////////////////////////////////////////////////////

@ -441,3 +441,10 @@ vector<int> PatternToBytes(const string& svInput)
}
return vBytes;
};
///////////////////////////////////////////////////////////////////////////////
// For comparing input strings lexicographically
bool CheckStringLexicographically(const string& svA, const string& svB)
{
return svA < svB;
}