NcEngine
Component.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "Entity.h"
8#include "ncengine/type/Type.h"
10
11#include <any>
12#include <concepts>
13#include <iosfwd>
14#include <type_traits>
15
16namespace nc
17{
27{
28 public:
29 explicit ComponentBase(Entity entity) noexcept
30 : m_parentEntity{entity} {}
31
32 ComponentBase(const ComponentBase&) = delete;
33 ComponentBase(ComponentBase&&) = default;
34 ComponentBase& operator=(const ComponentBase&) = delete;
35 ComponentBase& operator=(ComponentBase&&) = default;
36
37 Entity ParentEntity() const noexcept { return m_parentEntity; }
38
39 private:
40 Entity m_parentEntity;
41};
42
51{
52 public:
53 explicit FreeComponent(Entity entity) noexcept
54 : ComponentBase{entity} {}
55
56 virtual ~FreeComponent() = default;
57};
58
60template<class T>
61concept PooledComponent = std::movable<std::remove_const_t<T>> &&
62 !std::derived_from<T, FreeComponent> &&
63 !std::same_as<T, Entity>;
64
65template<class T>
66concept Component = PooledComponent<T> || std::derived_from<T, FreeComponent>;
67
70{
72 static constexpr bool EnableOnAddCallbacks = false;
73
75 static constexpr bool EnableOnCommitCallbacks = false;
76
78 static constexpr bool EnableOnRemoveCallbacks = false;
79};
80
87template<PooledComponent T>
89
92
93namespace ui::editor
94{
95struct EditorContext;
96} // namespace ui::editor
97
99template<PooledComponent T>
101{
103 using Factory_t = std::move_only_function<T(Entity entity,
104 const std::any& userData)>;
105
107 using Serialize_t = std::move_only_function<void(std::ostream& binaryStream,
108 const T& component,
109 const SerializationContext& ctx,
110 const std::any& userData)>;
111
113 using Deserialize_t = std::move_only_function<T(std::istream& binaryStream,
114 const DeserializationContext& ctx,
115 const std::any& userData)>;
116
118 using DrawUI_t = std::move_only_function<void(T& component,
120 const std::any& userData)>;
121
128 size_t id = 0ull;
129
131 std::string name = "User Component";
132
134 std::any userData = std::any{};
135
139
143
147
149 DrawUI_t drawUI = nullptr;
150};
151} // namespace nc
Optional base class for components.
Definition: Component.h:27
Identifies an object in the registry.
Definition: Entity.h:18
Base class for free components.
Definition: Component.h:51
Requirements for the Registry to recognize a pooled component.
Definition: Component.h:61
Optional data and callbacks for generic component operations.
Definition: Component.h:101
std::string name
A name for the component with no uniqueness constraints.
Definition: Component.h:131
std::move_only_function< void(std::ostream &binaryStream, const T &component, const SerializationContext &ctx, const std::any &userData)> Serialize_t
Function type for the serialize handler.
Definition: Component.h:110
Serialize_t serialize
Callback for serializing an instance of T.
Definition: Component.h:142
std::move_only_function< void(T &component, ui::editor::EditorContext &ctx, const std::any &userData)> DrawUI_t
Function type for the DrawUI handler.
Definition: Component.h:120
Factory_t factory
Callback for creating an instance of T.
Definition: Component.h:138
std::any userData
Optional user data, which is passed to the factory, serialize, and deserialize handlers.
Definition: Component.h:134
DrawUI_t drawUI
Callback for drawing T's UI widget.
Definition: Component.h:149
Deserialize_t deserialize
Callback for deserializing an instance of T.
Definition: Component.h:146
std::move_only_function< T(Entity entity, const std::any &userData)> Factory_t
Function type for the Factory handler.
Definition: Component.h:104
std::move_only_function< T(std::istream &binaryStream, const DeserializationContext &ctx, const std::any &userData)> Deserialize_t
Function type for the deserialize handler.
Definition: Component.h:115
Default storage behavior for pooled components.
Definition: Component.h:70
static constexpr bool EnableOnAddCallbacks
Enable the OnAdd Signal in the component's pool.
Definition: Component.h:72
static constexpr bool EnableOnCommitCallbacks
Enable the OnCommit Signal in the component's pool.
Definition: Component.h:75
static constexpr bool EnableOnRemoveCallbacks
Enable the OnRemove Signal in the component's pool.
Definition: Component.h:78
Context object passed to deserialization functions.
Definition: SceneSerialization.h:43
Context object passed to serialization functions.
Definition: SceneSerialization.h:36
Provide a specialization to customize storage options and behavior for a user-defined type.
Definition: Component.h:88
State for the editor.
Definition: EditorContext.h:39