2021-12-05 17:54:36 +00:00
|
|
|
/*
|
|
|
|
* Darkflame Universe
|
|
|
|
* Copyright 2018
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SimplePhysicsComponent.h"
|
|
|
|
#include "BitStream.h"
|
|
|
|
#include "Game.h"
|
|
|
|
#include "dLogger.h"
|
|
|
|
#include "dpWorld.h"
|
|
|
|
#include "CDClientManager.h"
|
|
|
|
#include "CDPhysicsComponentTable.h"
|
|
|
|
|
|
|
|
#include "Entity.h"
|
|
|
|
|
|
|
|
SimplePhysicsComponent::SimplePhysicsComponent(uint32_t componentID, Entity* parent) : Component(parent) {
|
|
|
|
m_Position = m_Parent->GetDefaultPosition();
|
|
|
|
m_Rotation = m_Parent->GetDefaultRotation();
|
|
|
|
m_IsDirty = true;
|
2022-05-18 02:27:08 +00:00
|
|
|
|
2022-05-18 11:36:21 +00:00
|
|
|
const auto& climbable_type = m_Parent->GetVar<std::u16string>(u"climbable");
|
2022-05-18 02:27:08 +00:00
|
|
|
if (climbable_type == u"wall") {
|
2022-05-18 11:36:21 +00:00
|
|
|
SetClimbableType(eClimbableType::CLIMBABLE_TYPE_WALL);
|
2022-05-18 02:27:08 +00:00
|
|
|
} else if (climbable_type == u"ladder") {
|
2022-05-18 11:36:21 +00:00
|
|
|
SetClimbableType(eClimbableType::CLIMBABLE_TYPE_LADDER);
|
2022-05-18 02:27:08 +00:00
|
|
|
} else if (climbable_type == u"wallstick") {
|
2022-05-18 11:36:21 +00:00
|
|
|
SetClimbableType(eClimbableType::CLIMBABLE_TYPE_WALL_STICK);
|
2022-05-18 02:27:08 +00:00
|
|
|
} else {
|
2022-05-18 11:36:21 +00:00
|
|
|
SetClimbableType(eClimbableType::CLIMBABLE_TYPE_NOT);
|
2022-05-18 02:27:08 +00:00
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SimplePhysicsComponent::~SimplePhysicsComponent() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void SimplePhysicsComponent::Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags) {
|
|
|
|
if (bIsInitialUpdate) {
|
2022-05-19 13:40:50 +00:00
|
|
|
outBitStream->Write(m_ClimbableType != eClimbableType::CLIMBABLE_TYPE_NOT);
|
|
|
|
outBitStream->Write(m_ClimbableType);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
2022-05-18 02:27:08 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
outBitStream->Write(m_DirtyVelocity || bIsInitialUpdate);
|
|
|
|
if (m_DirtyVelocity || bIsInitialUpdate) {
|
|
|
|
outBitStream->Write(m_Velocity);
|
|
|
|
outBitStream->Write(m_AngularVelocity);
|
|
|
|
|
|
|
|
m_DirtyVelocity = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Physics motion state
|
|
|
|
if (m_PhysicsMotionState != 0) {
|
|
|
|
outBitStream->Write1();
|
|
|
|
outBitStream->Write<uint32_t>(m_PhysicsMotionState);
|
|
|
|
} else {
|
|
|
|
outBitStream->Write0();
|
|
|
|
}
|
2022-05-18 02:27:08 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
outBitStream->Write(m_IsDirty || bIsInitialUpdate);
|
|
|
|
if (m_IsDirty || bIsInitialUpdate) {
|
|
|
|
outBitStream->Write(m_Position.x);
|
|
|
|
outBitStream->Write(m_Position.y);
|
|
|
|
outBitStream->Write(m_Position.z);
|
|
|
|
outBitStream->Write(m_Rotation.x);
|
|
|
|
outBitStream->Write(m_Rotation.y);
|
|
|
|
outBitStream->Write(m_Rotation.z);
|
|
|
|
outBitStream->Write(m_Rotation.w);
|
|
|
|
|
|
|
|
m_IsDirty = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SimplePhysicsComponent::GetPhysicsMotionState() const {
|
|
|
|
return m_PhysicsMotionState;
|
|
|
|
}
|
|
|
|
|
2022-05-18 02:27:08 +00:00
|
|
|
void SimplePhysicsComponent::SetPhysicsMotionState(uint32_t value) {
|
2021-12-05 17:54:36 +00:00
|
|
|
m_PhysicsMotionState = value;
|
|
|
|
}
|