2021-12-05 17:54:36 +00:00
|
|
|
#include "PossessorComponent.h"
|
2022-09-02 18:49:19 +00:00
|
|
|
#include "PossessableComponent.h"
|
|
|
|
#include "CharacterComponent.h"
|
|
|
|
#include "EntityManager.h"
|
|
|
|
#include "GameMessages.h"
|
|
|
|
#include "eUnequippableActiveType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-06-29 23:50:24 +00:00
|
|
|
PossessorComponent::PossessorComponent(Entity* parent) : Component(parent) {
|
|
|
|
m_Possessable = LWOOBJID_EMPTY;
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
|
2022-09-02 18:49:19 +00:00
|
|
|
PossessorComponent::~PossessorComponent() {
|
|
|
|
if (m_Possessable != LWOOBJID_EMPTY) {
|
|
|
|
auto* mount = EntityManager::Instance()->GetEntity(m_Possessable);
|
|
|
|
if (mount) {
|
|
|
|
auto* possessable = mount->GetComponent<PossessableComponent>();
|
|
|
|
if (possessable) {
|
|
|
|
if (possessable->GetIsItemSpawned()) {
|
|
|
|
GameMessages::SendMarkInventoryItemAsActive(m_Parent->GetObjectID(), false, eUnequippableActiveType::MOUNT, GetMountItemID(), m_Parent->GetSystemAddress());
|
|
|
|
}
|
|
|
|
possessable->Dismount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-06-29 23:50:24 +00:00
|
|
|
void PossessorComponent::Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags) {
|
|
|
|
outBitStream->Write(m_DirtyPossesor || bIsInitialUpdate);
|
|
|
|
if (m_DirtyPossesor || bIsInitialUpdate) {
|
|
|
|
m_DirtyPossesor = false;
|
|
|
|
outBitStream->Write(m_Possessable != LWOOBJID_EMPTY);
|
|
|
|
if (m_Possessable != LWOOBJID_EMPTY) {
|
|
|
|
outBitStream->Write(m_Possessable);
|
|
|
|
}
|
|
|
|
outBitStream->Write(m_PossessableType);
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
2022-09-02 18:49:19 +00:00
|
|
|
|
|
|
|
void PossessorComponent::Mount(Entity* mount) {
|
|
|
|
// Don't do anything if we are busy dismounting
|
|
|
|
if (GetIsDismounting() || !mount) return;
|
|
|
|
|
|
|
|
GameMessages::SendSetMountInventoryID(m_Parent, mount->GetObjectID(), UNASSIGNED_SYSTEM_ADDRESS);
|
|
|
|
auto* possessableComponent = mount->GetComponent<PossessableComponent>();
|
|
|
|
if (possessableComponent) {
|
|
|
|
possessableComponent->SetPossessor(m_Parent->GetObjectID());
|
|
|
|
SetPossessable(mount->GetObjectID());
|
|
|
|
SetPossessableType(possessableComponent->GetPossessionType());
|
|
|
|
}
|
|
|
|
|
|
|
|
auto characterComponent = m_Parent->GetComponent<CharacterComponent>();
|
|
|
|
if (characterComponent) characterComponent->SetIsRacing(true);
|
|
|
|
|
|
|
|
// GM's to send
|
|
|
|
GameMessages::SendSetJetPackMode(m_Parent, false);
|
|
|
|
GameMessages::SendVehicleUnlockInput(mount->GetObjectID(), false, m_Parent->GetSystemAddress());
|
|
|
|
GameMessages::SendSetStunned(m_Parent->GetObjectID(), eStunState::PUSH, m_Parent->GetSystemAddress(), LWOOBJID_EMPTY, true, false, true, false, false, false, false, true, true, true, true, true, true, true, true, true);
|
|
|
|
|
|
|
|
EntityManager::Instance()->SerializeEntity(m_Parent);
|
|
|
|
EntityManager::Instance()->SerializeEntity(mount);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PossessorComponent::Dismount(Entity* mount, bool forceDismount) {
|
|
|
|
// Don't do anything if we are busy dismounting
|
|
|
|
if (GetIsDismounting() || !mount) return;
|
|
|
|
SetIsDismounting(true);
|
|
|
|
|
|
|
|
if (mount) {
|
|
|
|
auto* possessableComponent = mount->GetComponent<PossessableComponent>();
|
|
|
|
if (possessableComponent) {
|
|
|
|
possessableComponent->SetPossessor(LWOOBJID_EMPTY);
|
|
|
|
if (forceDismount) possessableComponent->ForceDepossess();
|
|
|
|
}
|
|
|
|
EntityManager::Instance()->SerializeEntity(m_Parent);
|
|
|
|
EntityManager::Instance()->SerializeEntity(mount);
|
|
|
|
|
|
|
|
auto characterComponent = m_Parent->GetComponent<CharacterComponent>();
|
|
|
|
if (characterComponent) characterComponent->SetIsRacing(false);
|
|
|
|
}
|
|
|
|
// Make sure we don't have wacky controls
|
|
|
|
GameMessages::SendSetPlayerControlScheme(m_Parent, eControlSceme::SCHEME_A);
|
|
|
|
}
|