3#include "detail/AnyComponentUtility.h"
24 template<PooledComponent T>
26 : m_storage{instance, handler} {}
29 explicit operator bool() const noexcept
31 return m_storage.HasValue();
37 return m_storage == other.m_storage;
43 return !(*
this == other);
50 auto Id() const ->
size_t
53 return m_storage.AsImpl()->Id();
60 auto Name() const -> std::string_view
63 return m_storage.AsImpl()->Name();
73 return m_storage.AsImpl()->HasDrawUI();
82 m_storage.AsImpl()->DrawUI(ctx);
89 void EnsureIsEngaged()
const
91 NC_ASSERT(m_storage.HasValue(),
"Invalid use of null AnyComponent.");
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