2021-12-05 17:54:36 +00:00
|
|
|
#include "ModelComponent.h"
|
|
|
|
#include "Entity.h"
|
|
|
|
|
2022-07-19 21:51:35 +00:00
|
|
|
ModelComponent::ModelComponent(Entity* parent) : Component(parent)
|
2021-12-05 17:54:36 +00:00
|
|
|
{
|
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
|
|
|
|
|
|
|
m_userModelID = m_Parent->GetVarAs<LWOOBJID>(u"userModelID");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ModelComponent::Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags) {
|
2022-07-19 21:51:35 +00:00
|
|
|
// ItemComponent Serialization. Pets do not get this serialization.
|
|
|
|
if (!m_Parent->HasComponent(COMPONENT_TYPE_PET)) {
|
|
|
|
outBitStream->Write1();
|
|
|
|
outBitStream->Write<LWOOBJID>(m_userModelID != LWOOBJID_EMPTY ? m_userModelID : m_Parent->GetObjectID());
|
|
|
|
outBitStream->Write<int>(0);
|
|
|
|
outBitStream->Write0();
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
//actual model component:
|
2022-07-19 21:51:35 +00:00
|
|
|
outBitStream->Write1(); // Yes we are writing model info
|
|
|
|
outBitStream->Write0(); // Is pickable
|
|
|
|
outBitStream->Write<uint32_t>(2); // Physics type
|
|
|
|
outBitStream->Write(m_OriginalPosition); // Original position
|
|
|
|
outBitStream->Write(m_OriginalRotation); // Original rotation
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-19 21:51:35 +00:00
|
|
|
outBitStream->Write1(); // We are writing behavior info
|
|
|
|
outBitStream->Write<uint32_t>(0); // Number of behaviors
|
|
|
|
outBitStream->Write1(); // Is this model paused
|
|
|
|
if (bIsInitialUpdate) outBitStream->Write0(); // We are not writing model editing info
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|