8#include "ncengine/type/Type.h"
30 : m_parentEntity{entity} {}
37 Entity ParentEntity()
const noexcept {
return m_parentEntity; }
62 !std::derived_from<T, FreeComponent> &&
63 !std::same_as<T, Entity>;
87template<PooledComponent T>
99template<PooledComponent T>
107 using Serialize_t = std::move_only_function<void(std::ostream& binaryStream,
118 using DrawUI_t = std::move_only_function<void(T& component,
131 std::string
name =
"User Component";
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