mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
2cc13c6499
* Make serialize actually virtual * fix serialize and make update virutal * Update VendorComponent.h * Remove flag var * Update SoundTriggerComponent.h --------- Co-authored-by: Aaron Kimbrell <aronwk.aaron@gmail.com>
56 lines
2.0 KiB
C++
56 lines
2.0 KiB
C++
#include "PossessableComponent.h"
|
|
#include "PossessorComponent.h"
|
|
#include "EntityManager.h"
|
|
#include "Inventory.h"
|
|
#include "Item.h"
|
|
|
|
PossessableComponent::PossessableComponent(Entity* parent, uint32_t componentId) : Component(parent) {
|
|
m_Possessor = LWOOBJID_EMPTY;
|
|
CDItemComponent item = Inventory::FindItemComponent(m_Parent->GetLOT());
|
|
m_AnimationFlag = static_cast<eAnimationFlags>(item.animationFlag);
|
|
|
|
// Get the possession Type from the CDClient
|
|
auto query = CDClientDatabase::CreatePreppedStmt("SELECT possessionType, depossessOnHit FROM PossessableComponent WHERE id = ?;");
|
|
|
|
query.bind(1, static_cast<int>(componentId));
|
|
|
|
auto result = query.execQuery();
|
|
|
|
// Should a result not exist for this default to attached visible
|
|
if (!result.eof()) {
|
|
m_PossessionType = static_cast<ePossessionType>(result.getIntField(0, 1)); // Default to Attached Visible
|
|
m_DepossessOnHit = static_cast<bool>(result.getIntField(1, 0));
|
|
} else {
|
|
m_PossessionType = ePossessionType::ATTACHED_VISIBLE;
|
|
m_DepossessOnHit = false;
|
|
}
|
|
result.finalize();
|
|
}
|
|
|
|
void PossessableComponent::Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate) {
|
|
outBitStream->Write(m_DirtyPossessable || bIsInitialUpdate);
|
|
if (m_DirtyPossessable || bIsInitialUpdate) {
|
|
m_DirtyPossessable = false; // reset flag
|
|
outBitStream->Write(m_Possessor != LWOOBJID_EMPTY);
|
|
if (m_Possessor != LWOOBJID_EMPTY) outBitStream->Write(m_Possessor);
|
|
|
|
outBitStream->Write(m_AnimationFlag != eAnimationFlags::IDLE_NONE);
|
|
if (m_AnimationFlag != eAnimationFlags::IDLE_NONE) outBitStream->Write(m_AnimationFlag);
|
|
|
|
outBitStream->Write(m_ImmediatelyDepossess);
|
|
m_ImmediatelyDepossess = false; // reset flag
|
|
}
|
|
}
|
|
|
|
void PossessableComponent::Dismount() {
|
|
SetPossessor(LWOOBJID_EMPTY);
|
|
if (m_ItemSpawned) m_Parent->ScheduleKillAfterUpdate();
|
|
}
|
|
|
|
void PossessableComponent::OnUse(Entity* originator) {
|
|
auto* possessor = originator->GetComponent<PossessorComponent>();
|
|
if (possessor) {
|
|
possessor->Mount(m_Parent);
|
|
}
|
|
}
|