NcEngine
AnyComponent.h
1#pragma once
2
3#include "detail/AnyComponentUtility.h"
4
5#include "ncutility/NcError.h"
6
7namespace nc
8{
11{
12 public:
14 constexpr explicit AnyComponent() noexcept
15 : m_storage{} {}
16
24 template<PooledComponent T>
25 explicit AnyComponent(T* instance, ComponentHandler<T>* handler)
26 : m_storage{instance, handler} {}
27
29 explicit operator bool() const noexcept
30 {
31 return m_storage.HasValue();
32 }
33
35 auto operator==(const AnyComponent& other) const noexcept -> bool
36 {
37 return m_storage == other.m_storage;
38 }
39
41 auto operator!=(const AnyComponent& other) const noexcept -> bool
42 {
43 return !(*this == other);
44 }
45
50 auto Id() const -> size_t
51 {
52 EnsureIsEngaged();
53 return m_storage.AsImpl()->Id();
54 }
55
60 auto Name() const -> std::string_view
61 {
62 EnsureIsEngaged();
63 return m_storage.AsImpl()->Name();
64 }
65
70 auto HasDrawUI() const -> bool
71 {
72 EnsureIsEngaged();
73 return m_storage.AsImpl()->HasDrawUI();
74 }
75
78 {
79 EnsureIsEngaged();
80 if (HasDrawUI())
81 {
82 m_storage.AsImpl()->DrawUI(ctx);
83 }
84 }
85
86 private:
87 detail::AnyImplStorage m_storage;
88
89 void EnsureIsEngaged() const
90 {
91 NC_ASSERT(m_storage.HasValue(), "Invalid use of null AnyComponent.");
92 }
93};
94} // namespace nc
Generic interface around component types.
Definition: AnyComponent.h:11
void DrawUI(ui::editor::EditorContext &ctx)
Invoke ComponentHandler::drawUI with the component instance, if it is set.
Definition: AnyComponent.h:77
auto operator!=(const AnyComponent &other) const noexcept -> bool
Check if two AnyComponents refer to different components.
Definition: AnyComponent.h:41
auto HasDrawUI() const -> bool
Check if ComponentHandler::drawUI is set for the concrete component type.
Definition: AnyComponent.h:70
auto Name() const -> std::string_view
Get the value of ComponentHandler::name for the concrete component type.
Definition: AnyComponent.h:60
AnyComponent(T *instance, ComponentHandler< T > *handler)
Construct an AnyComponent wrapper around a component.
Definition: AnyComponent.h:25
constexpr AnyComponent() noexcept
Construct a null AnyComponent.
Definition: AnyComponent.h:14
auto Id() const -> size_t
Get the value of Componenthandler::id for the concrete component type.
Definition: AnyComponent.h:50
auto operator==(const AnyComponent &other) const noexcept -> bool
Check if two AnyComponents refer to the same component.
Definition: AnyComponent.h:35
Definition: AnyComponentUtility.h:50
Optional data and callbacks for generic component operations.
Definition: Component.h:101
State for the editor.
Definition: EditorContext.h:39