2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
#include "dCommonVars.h"
|
|
|
|
#include "RakNetTypes.h"
|
|
|
|
#include "NiPoint3.h"
|
|
|
|
#include "NiQuaternion.h"
|
|
|
|
#include "Component.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
class Entity;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component that represents entities that are a model, e.g. collectible models and BBB models.
|
|
|
|
*/
|
|
|
|
class ModelComponent : public Component {
|
|
|
|
public:
|
2023-10-28 00:09:03 +00:00
|
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::MODEL;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-19 21:51:35 +00:00
|
|
|
ModelComponent(Entity* parent);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-08-10 21:33:15 +00:00
|
|
|
void Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate) override;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-19 21:51:35 +00:00
|
|
|
/**
|
|
|
|
* Returns the original position of the model
|
|
|
|
* @return the original position of the model
|
|
|
|
*/
|
|
|
|
const NiPoint3& GetPosition() { return m_OriginalPosition; }
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-19 21:51:35 +00:00
|
|
|
/**
|
|
|
|
* Sets the original position of the model
|
|
|
|
* @param pos the original position to set
|
|
|
|
*/
|
|
|
|
void SetPosition(const NiPoint3& pos) { m_OriginalPosition = pos; }
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-19 21:51:35 +00:00
|
|
|
/**
|
|
|
|
* Returns the original rotation of the model
|
|
|
|
* @return the original rotation of the model
|
|
|
|
*/
|
|
|
|
const NiQuaternion& GetRotation() { return m_OriginalRotation; }
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-19 21:51:35 +00:00
|
|
|
/**
|
|
|
|
* Sets the original rotation of the model
|
|
|
|
* @param rot the original rotation to set
|
|
|
|
*/
|
|
|
|
void SetRotation(const NiQuaternion& rot) { m_OriginalRotation = rot; }
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2022-07-19 21:51:35 +00:00
|
|
|
/**
|
|
|
|
* The original position of the model
|
|
|
|
*/
|
|
|
|
NiPoint3 m_OriginalPosition;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The rotation original of the model
|
|
|
|
*/
|
|
|
|
NiQuaternion m_OriginalRotation;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The ID of the user that made the model
|
|
|
|
*/
|
|
|
|
LWOOBJID m_userModelID;
|
|
|
|
};
|