feat(component): implement CCharacterComponent::UpdateItemTL

This commit is contained in:
fallenoak 2025-10-31 00:38:40 -05:00
parent 8064d19e14
commit 4ac15df24c
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -1514,7 +1514,23 @@ void CCharacterComponent::UpdateItemLU(ITEM_SLOT itemSlot, const ItemDisplayInfo
} }
void CCharacterComponent::UpdateItemTL(ITEM_SLOT itemSlot, const ItemDisplayInfoRec* displayRec, bool update) { void CCharacterComponent::UpdateItemTL(ITEM_SLOT itemSlot, const ItemDisplayInfoRec* displayRec, bool update) {
// TODO auto priority = s_itemPriority[itemSlot][SECTION_TORSO_LOWER];
if (update) {
if (!this->UpdateItemDisplay(SECTION_TORSO_LOWER, displayRec, priority)) {
return;
}
} else {
this->ClearItemDisplay(SECTION_TORSO_LOWER, priority);
}
if (priority != -1) {
this->m_sectionDirty |= (1 << SECTION_TORSO_LOWER);
// TODO component request logic
this->m_flags &= ~0x8;
}
} }
void CCharacterComponent::UpdateItemTU(ITEM_SLOT itemSlot, const ItemDisplayInfoRec* displayRec, bool update) { void CCharacterComponent::UpdateItemTU(ITEM_SLOT itemSlot, const ItemDisplayInfoRec* displayRec, bool update) {