mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-12-28 23:03:01 +05:00
Sorted HierarchyTypoFix + added "transmision" typos from Dumper
This commit is contained in:
parent
3d5aab2f33
commit
5154c47ae2
1 changed files with 20 additions and 4 deletions
|
@ -1369,20 +1369,36 @@ TestFirelaAndFlags_UpdateMovingCollision:
|
||||||
namespace HierarchyTypoFix
|
namespace HierarchyTypoFix
|
||||||
{
|
{
|
||||||
// Allow wheel_lm vs wheel_lm_dummy and miscX vs misc_X typos
|
// Allow wheel_lm vs wheel_lm_dummy and miscX vs misc_X typos
|
||||||
|
// Must be sorted by second parameter
|
||||||
constexpr std::pair<const char*, const char*> typosAndFixes[] = {
|
constexpr std::pair<const char*, const char*> typosAndFixes[] = {
|
||||||
{ "wheel_lm_dummy", "wheel_lm" },
|
{ "boat_moving_hi", "boat_moving" },
|
||||||
{ "misc_a", "misca" },
|
{ "misc_a", "misca" },
|
||||||
{ "misc_b", "miscb" },
|
{ "misc_b", "miscb" },
|
||||||
{ "boat_moving_hi", "boat_moving" },
|
{ "transmission_f", "transmision_f" },
|
||||||
|
{ "transmission_r", "transmision_r" },
|
||||||
|
{ "wheel_lm_dummy", "wheel_lm" },
|
||||||
};
|
};
|
||||||
int strcasecmp( const char* dataName, const char* nodeName )
|
int strcasecmp( const char* dataName, const char* nodeName )
|
||||||
{
|
{
|
||||||
|
/*assert( std::is_sorted(std::begin(typosAndFixes), std::end(typosAndFixes), [] (const auto& a, const auto& b) {
|
||||||
|
return _stricmp( a.second, b.second ) < 0;
|
||||||
|
}) );*/
|
||||||
|
|
||||||
|
const int origComp = _stricmp( dataName, nodeName );
|
||||||
|
if ( origComp == 0 ) return 0;
|
||||||
|
|
||||||
for ( const auto& typo : typosAndFixes )
|
for ( const auto& typo : typosAndFixes )
|
||||||
{
|
{
|
||||||
if ( _stricmp( dataName, typo.first ) == 0 && _stricmp( nodeName, typo.second ) == 0 ) return 0;
|
const int nodeComp = _stricmp( typo.second, nodeName );
|
||||||
|
if ( nodeComp > 0 ) break;
|
||||||
|
|
||||||
|
if ( nodeComp == 0 && _stricmp( typo.first, dataName ) == 0 )
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return _stricmp( dataName, nodeName );
|
return origComp;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue