mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 05:57:20 +00:00
50 lines
1.2 KiB
C
50 lines
1.2 KiB
C
|
#pragma once
|
||
|
#include "dCommonVars.h"
|
||
|
#include "RakNetTypes.h"
|
||
|
#include "NiPoint3.h"
|
||
|
#include "NiQuaternion.h"
|
||
|
#include "Component.h"
|
||
|
|
||
|
class Entity;
|
||
|
enum class eUgcModerationStatus : uint32_t;
|
||
|
|
||
|
class ItemComponent : public Component {
|
||
|
public:
|
||
|
static const uint32_t ComponentType = COMPONENT_TYPE_ITEM;
|
||
|
|
||
|
ItemComponent(Entity* parent);
|
||
|
|
||
|
void Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags);
|
||
|
|
||
|
void SetUgId(LWOOBJID id) { m_UgId = id; m_DirtyItemInfo = true; };
|
||
|
LWOOBJID GetUgId() { return m_UgId; };
|
||
|
|
||
|
void SetUgModerationStatus(eUgcModerationStatus status) { m_UgModerationStatus = status; m_DirtyItemInfo = true; };
|
||
|
eUgcModerationStatus GetUgModerationStatus() { return m_UgModerationStatus; };
|
||
|
|
||
|
void SetUgDescription(std::u16string description) { m_UgDescription = description; m_DirtyItemInfo = true; };
|
||
|
std::u16string GetUgDescription() { return m_UgDescription;};
|
||
|
|
||
|
private:
|
||
|
|
||
|
/**
|
||
|
* If we have change the item info
|
||
|
*/
|
||
|
bool m_DirtyItemInfo;
|
||
|
|
||
|
/**
|
||
|
* The ID of the user that made the model
|
||
|
*/
|
||
|
LWOOBJID m_UgId;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
eUgcModerationStatus m_UgModerationStatus;
|
||
|
|
||
|
/**
|
||
|
* The user generated description
|
||
|
*/
|
||
|
std::u16string m_UgDescription;
|
||
|
};
|