Changed: Some improvements (only try to fix wrong filenames if right files don't exist)

This commit is contained in:
kervala 2015-12-20 19:06:38 +01:00
parent 25110257d4
commit 8f36a2c1e8
2 changed files with 54 additions and 30 deletions

View file

@ -458,8 +458,15 @@ void SCharacter3DSetup::setupFromCS_ModelCol (SLOTTYPE::EVisualSlot s, sint32 mo
tmpName.replace(posBottes+7, 0, "_" + orgType); tmpName.replace(posBottes+7, 0, "_" + orgType);
tmpName.replace(7, orgType.length(), "caster01"); tmpName.replace(7, orgType.length(), "caster01");
// temporary hack because Fyros boots don't respect conventions if (CPath::exists(tmpName))
if (tmpName[0] == 'f') {
// use fixed shape name only if file is present
Parts[part].Name = tmpName;
}
else
{
// temporary hack because Fyros light boots don't respect conventions
if (tmpName[0] == 'f' && (item->ItemType == ITEM_TYPE::LIGHT_BOOTS))
{ {
if (tmpName[5] == 'f') if (tmpName[5] == 'f')
{ {
@ -469,7 +476,6 @@ void SCharacter3DSetup::setupFromCS_ModelCol (SLOTTYPE::EVisualSlot s, sint32 mo
{ {
tmpName = "fy_hom_caster01_civil01_bottes.shape"; tmpName = "fy_hom_caster01_civil01_bottes.shape";
} }
}
// use fixed shape name only if file is present // use fixed shape name only if file is present
if (CPath::exists(tmpName)) if (CPath::exists(tmpName))
@ -481,6 +487,12 @@ void SCharacter3DSetup::setupFromCS_ModelCol (SLOTTYPE::EVisualSlot s, sint32 mo
nlwarning("File %s doesn't exist, use %s", tmpName.c_str(), Parts[part].Name.c_str()); nlwarning("File %s doesn't exist, use %s", tmpName.c_str(), Parts[part].Name.c_str());
} }
} }
else
{
nlwarning("File %s doesn't exist, use %s", tmpName.c_str(), Parts[part].Name.c_str());
}
}
}
} }
} }

View file

@ -569,8 +569,15 @@ void CPlayerCL::equip(SLOTTYPE::EVisualSlot slot, uint index, uint color)
tmpName.replace(posBottes+7, 0, "_" + orgType); tmpName.replace(posBottes+7, 0, "_" + orgType);
tmpName.replace(7, orgType.length(), "caster01"); tmpName.replace(7, orgType.length(), "caster01");
// temporary hack because Fyros boots don't respect conventions if (CPath::exists(tmpName))
if (tmpName[0] == 'f') {
// use fixed shape name only if file is present
shapeName = tmpName;
}
else
{
// temporary hack because Fyros light boots don't respect conventions
if (tmpName[0] == 'f' && (item->ItemType == ITEM_TYPE::LIGHT_BOOTS))
{ {
if (tmpName[5] == 'f') if (tmpName[5] == 'f')
{ {
@ -580,7 +587,6 @@ void CPlayerCL::equip(SLOTTYPE::EVisualSlot slot, uint index, uint color)
{ {
tmpName = "fy_hom_caster01_civil01_bottes.shape"; tmpName = "fy_hom_caster01_civil01_bottes.shape";
} }
}
// use fixed shape name only if file is present // use fixed shape name only if file is present
if (CPath::exists(tmpName)) if (CPath::exists(tmpName))
@ -592,6 +598,12 @@ void CPlayerCL::equip(SLOTTYPE::EVisualSlot slot, uint index, uint color)
nlwarning("File %s doesn't exist, use %s", tmpName.c_str(), shapeName.c_str()); nlwarning("File %s doesn't exist, use %s", tmpName.c_str(), shapeName.c_str());
} }
} }
else
{
nlwarning("File %s doesn't exist, use %s", tmpName.c_str(), shapeName.c_str());
}
}
}
} }
} }