mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
112c2367cc
* fix laggy property models (and probably more) global fix correcting the initial physics motion state from 0 to 5 (confirm in client). packet captures from a few worlds (didnt scan more than 5 files) show that the value for simple physics was either 5, or 4 for property models, or 1 for property models with behaviors. properties with pre-built models no longer lag and values of physics types should be correct across the board * will test this briefly
67 lines
2.0 KiB
C++
67 lines
2.0 KiB
C++
/*
|
|
* Darkflame Universe
|
|
* Copyright 2018
|
|
*/
|
|
|
|
#include "SimplePhysicsComponent.h"
|
|
#include "BitStream.h"
|
|
#include "Game.h"
|
|
#include "Logger.h"
|
|
#include "dpWorld.h"
|
|
#include "CDClientManager.h"
|
|
#include "CDPhysicsComponentTable.h"
|
|
|
|
#include "Entity.h"
|
|
|
|
SimplePhysicsComponent::SimplePhysicsComponent(Entity* parent, uint32_t componentID) : PhysicsComponent(parent) {
|
|
m_Position = m_Parent->GetDefaultPosition();
|
|
m_Rotation = m_Parent->GetDefaultRotation();
|
|
|
|
const auto& climbable_type = m_Parent->GetVar<std::u16string>(u"climbable");
|
|
if (climbable_type == u"wall") {
|
|
SetClimbableType(eClimbableType::CLIMBABLE_TYPE_WALL);
|
|
} else if (climbable_type == u"ladder") {
|
|
SetClimbableType(eClimbableType::CLIMBABLE_TYPE_LADDER);
|
|
} else if (climbable_type == u"wallstick") {
|
|
SetClimbableType(eClimbableType::CLIMBABLE_TYPE_WALL_STICK);
|
|
} else {
|
|
SetClimbableType(eClimbableType::CLIMBABLE_TYPE_NOT);
|
|
}
|
|
m_PhysicsMotionState = m_Parent->GetVarAs<uint32_t>(u"motionType");
|
|
}
|
|
|
|
SimplePhysicsComponent::~SimplePhysicsComponent() {
|
|
}
|
|
|
|
void SimplePhysicsComponent::Serialize(RakNet::BitStream& outBitStream, bool bIsInitialUpdate) {
|
|
if (bIsInitialUpdate) {
|
|
outBitStream.Write(m_ClimbableType != eClimbableType::CLIMBABLE_TYPE_NOT);
|
|
outBitStream.Write(m_ClimbableType);
|
|
}
|
|
|
|
outBitStream.Write(m_DirtyVelocity || bIsInitialUpdate);
|
|
if (m_DirtyVelocity || bIsInitialUpdate) {
|
|
outBitStream.Write(m_Velocity);
|
|
outBitStream.Write(m_AngularVelocity);
|
|
|
|
m_DirtyVelocity = false;
|
|
}
|
|
|
|
// Physics motion state
|
|
outBitStream.Write(m_DirtyPhysicsMotionState || bIsInitialUpdate);
|
|
if (m_DirtyPhysicsMotionState || bIsInitialUpdate) {
|
|
outBitStream.Write<uint32_t>(m_PhysicsMotionState);
|
|
m_DirtyPhysicsMotionState = false;
|
|
}
|
|
PhysicsComponent::Serialize(outBitStream, bIsInitialUpdate);
|
|
}
|
|
|
|
uint32_t SimplePhysicsComponent::GetPhysicsMotionState() const {
|
|
return m_PhysicsMotionState;
|
|
}
|
|
|
|
void SimplePhysicsComponent::SetPhysicsMotionState(uint32_t value) {
|
|
m_DirtyPhysicsMotionState = m_PhysicsMotionState != value;
|
|
m_PhysicsMotionState = value;
|
|
}
|