DarkflameServer/dGame/dComponents/ModuleAssemblyComponent.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
2.1 KiB
C
Raw Normal View History

2023-07-08 08:31:26 +00:00
#ifndef __MODULEASSEMBLYCOMPONENT__H__
#define __MODULEASSEMBLYCOMPONENT__H__
#pragma once
#include "Component.h"
#include "eReplicaComponentType.h"
2023-07-08 08:31:26 +00:00
namespace RakNet {
class BitStream;
};
/**
* Component that belongs to an object that may be modularly built, like cars and rockets. Note that this is not the
* same as having said items in your inventory (the subkey for this component) this component is the one that
* renders the entity into the world.
*/
class ModuleAssemblyComponent : public Component {
public:
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::MODULE_ASSEMBLY;
2022-07-28 13:39:57 +00:00
ModuleAssemblyComponent(Entity* parent);
void Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags);
/**
* Sets the subkey of this entity
* @param value the subkey to set
*/
2023-07-08 08:31:26 +00:00
void SetSubKey(const LWOOBJID& value) { m_SubKey = value; };
/**
* Returns the subkey for this entity
* @return the subkey for this entity
*/
2023-07-08 08:31:26 +00:00
LWOOBJID GetSubKey() const { return m_SubKey; };
/**
* Sets the optional parts value
* @param value the value to set
*/
2023-07-08 08:31:26 +00:00
void SetUseOptionalParts(bool value) { m_UseOptionalParts = value; };
/**
* Returns the optional parts value
* @return the value to set
*/
2023-07-08 08:31:26 +00:00
bool GetUseOptionalParts() const { return m_UseOptionalParts; };
/**
* Sets the assembly part lots (the subsections of this modular build)
* @param value the assembly part lots to set
*/
void SetAssemblyPartsLOTs(const std::u16string& value);
/**
* Returns the assembly part lots (the subsections of this modular build)
* @return
*/
2023-07-08 08:31:26 +00:00
const std::u16string& GetAssemblyPartsLOTs() const { return m_AssemblyPartsLOTs; };
private:
/**
* The sub key is the entity that this entity is an instance of. E.g. the item in the inventory. If a car for
* example is to be rendered, this sub key refers to the car item that was used to build this entity.
*/
LWOOBJID m_SubKey;
/**
* Whether to use optional parts, currently unused
*/
bool m_UseOptionalParts;
/**
* The sub items that this entity is made of
*/
std::u16string m_AssemblyPartsLOTs;
};
2023-07-08 08:31:26 +00:00
#endif //!__MODULEASSEMBLYCOMPONENT__H__