2021-12-05 17:54:36 +00:00
|
|
|
#include "ModelComponent.h"
|
|
|
|
#include "Entity.h"
|
2023-02-11 03:33:30 +00:00
|
|
|
#include "ePhysicsBehaviorType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
ModelComponent::ModelComponent(Entity* parent) : Component(parent) {
|
2023-02-11 03:33:30 +00:00
|
|
|
m_DirtyModelInfo = false;
|
|
|
|
m_IsPickable = false;
|
|
|
|
m_PhysicsType = ePhysicsBehaviorType::STANDARD;
|
2022-07-19 21:51:35 +00:00
|
|
|
m_OriginalPosition = m_Parent->GetDefaultPosition();
|
|
|
|
m_OriginalRotation = m_Parent->GetDefaultRotation();
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ModelComponent::Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags) {
|
2023-02-11 03:33:30 +00:00
|
|
|
outBitStream->Write(m_DirtyModelInfo || bIsInitialUpdate);
|
|
|
|
if (m_DirtyModelInfo || bIsInitialUpdate) {
|
|
|
|
outBitStream->Write(m_IsPickable);
|
|
|
|
outBitStream->Write(m_PhysicsType);
|
|
|
|
outBitStream->Write(m_OriginalPosition);
|
|
|
|
outBitStream->Write(m_OriginalRotation);
|
|
|
|
m_DirtyModelInfo = false;
|
2022-07-28 13:39:57 +00:00
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
2023-02-11 03:33:30 +00:00
|
|
|
|