DarkflameServer/dGame/dComponents/HavokVehiclePhysicsComponent.cpp

113 lines
2.6 KiB
C++
Raw Normal View History

#include "HavokVehiclePhysicsComponent.h"
#include "EntityManager.h"
HavokVehiclePhysicsComponent::HavokVehiclePhysicsComponent(Entity* parent) : Component(parent) {
m_Position = NiPoint3::ZERO;
m_Rotation = NiQuaternion::IDENTITY;
m_Velocity = NiPoint3::ZERO;
m_AngularVelocity = NiPoint3::ZERO;
m_IsOnGround = true;
m_IsOnRail = false;
m_DirtyPosition = true;
m_DirtyVelocity = true;
m_DirtyAngularVelocity = true;
m_EndBehavior = GeneralUtils::GenerateRandomNumber<uint32_t>(0, 7);
}
HavokVehiclePhysicsComponent::~HavokVehiclePhysicsComponent() {
2022-07-28 13:39:57 +00:00
}
void HavokVehiclePhysicsComponent::SetPosition(const NiPoint3& pos) {
2022-07-28 13:39:57 +00:00
m_Position = pos;
}
void HavokVehiclePhysicsComponent::SetRotation(const NiQuaternion& rot) {
m_DirtyPosition = true;
2022-07-28 13:39:57 +00:00
m_Rotation = rot;
}
void HavokVehiclePhysicsComponent::SetVelocity(const NiPoint3& vel) {
m_DirtyPosition = true;
2022-07-28 13:39:57 +00:00
m_Velocity = vel;
}
void HavokVehiclePhysicsComponent::SetAngularVelocity(const NiPoint3& vel) {
m_DirtyPosition = true;
2022-07-28 13:39:57 +00:00
m_AngularVelocity = vel;
}
void HavokVehiclePhysicsComponent::SetIsOnGround(bool val) {
m_DirtyPosition = true;
2022-07-28 13:39:57 +00:00
m_IsOnGround = val;
}
void HavokVehiclePhysicsComponent::SetIsOnRail(bool val) {
m_DirtyPosition = true;
2022-07-28 13:39:57 +00:00
m_IsOnRail = val;
}
void HavokVehiclePhysicsComponent::SetDirtyPosition(bool val) {
2022-07-28 13:39:57 +00:00
m_DirtyPosition = val;
}
void HavokVehiclePhysicsComponent::SetDirtyVelocity(bool val) {
2022-07-28 13:39:57 +00:00
m_DirtyVelocity = val;
}
void HavokVehiclePhysicsComponent::SetDirtyAngularVelocity(bool val) {
2022-07-28 13:39:57 +00:00
m_DirtyAngularVelocity = val;
}
void HavokVehiclePhysicsComponent::Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags) {
2022-07-28 13:39:57 +00:00
outBitStream->Write(bIsInitialUpdate || m_DirtyPosition);
if (bIsInitialUpdate || m_DirtyPosition) {
outBitStream->Write(m_Position);
2022-07-28 13:39:57 +00:00
outBitStream->Write(m_Rotation);
2022-07-28 13:39:57 +00:00
outBitStream->Write(m_IsOnGround);
outBitStream->Write(m_IsOnRail);
2022-07-28 13:39:57 +00:00
outBitStream->Write(bIsInitialUpdate || m_DirtyVelocity);
2022-07-28 13:39:57 +00:00
if (bIsInitialUpdate || m_DirtyVelocity) {
outBitStream->Write(m_Velocity);
}
2022-07-28 13:39:57 +00:00
outBitStream->Write(bIsInitialUpdate || m_DirtyAngularVelocity);
2022-07-28 13:39:57 +00:00
if (bIsInitialUpdate || m_DirtyAngularVelocity) {
outBitStream->Write(m_AngularVelocity);
}
2022-07-28 13:39:57 +00:00
outBitStream->Write0();
outBitStream->Write0();
outBitStream->Write(0.0f);
2022-07-28 13:39:57 +00:00
if (!bIsInitialUpdate) {
outBitStream->Write0();
}
}
2022-07-28 13:39:57 +00:00
if (bIsInitialUpdate) {
outBitStream->Write<uint8_t>(m_EndBehavior);
2022-07-28 13:39:57 +00:00
outBitStream->Write1();
}
2022-07-28 13:39:57 +00:00
outBitStream->Write0();
}
void HavokVehiclePhysicsComponent::Update(float deltaTime) {
2022-07-28 13:39:57 +00:00
if (m_SoftUpdate > 5) {
EntityManager::Instance()->SerializeEntity(m_ParentEntity);
2022-07-28 13:39:57 +00:00
m_SoftUpdate = 0;
} else {
m_SoftUpdate += deltaTime;
}
}