mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
5049f215ba
* use string to access field name * Update DEVGMCommands.cpp * corrected column name * constexpr array include <array> Revert "constexpr array" This reverts commit 1492e8b1773ed5fbbe767c74466ca263178ecdd4. Revert "include <array>" This reverts commit 2b7a67e89ad673d420f496be97f9bc51fd2d5e59. include <array> constexpr array --------- Co-authored-by: jadebenn <jonahbenn@yahoo.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("possessionType", 1)); // Default to Attached Visible
|
|
m_DepossessOnHit = static_cast<bool>(result.getIntField("depossessOnHit", 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);
|
|
}
|
|
}
|