NcEngine
nc::AnyComponent Class Reference

Generic interface around component types. More...

#include <AnyComponent.h>

Public Member Functions

constexpr AnyComponent () noexcept
 Construct a null AnyComponent.
 
template<PooledComponent T>
 AnyComponent (T *instance, ComponentHandler< T > *handler)
 Construct an AnyComponent wrapper around a component. More...
 
 operator bool () const noexcept
 Check if this refers to a valid component.
 
auto operator== (const AnyComponent &other) const noexcept -> bool
 Check if two AnyComponents refer to the same component.
 
auto operator!= (const AnyComponent &other) const noexcept -> bool
 Check if two AnyComponents refer to different components.
 
auto Id () const -> size_t
 Get the value of Componenthandler::id for the concrete component type. More...
 
auto Name () const -> std::string_view
 Get the value of ComponentHandler::name for the concrete component type. More...
 
auto HasDrawUI () const -> bool
 Check if ComponentHandler::drawUI is set for the concrete component type. More...
 
void DrawUI (ui::editor::EditorContext &ctx)
 Invoke ComponentHandler::drawUI with the component instance, if it is set.
 

Detailed Description

Generic interface around component types.

Constructor & Destructor Documentation

◆ AnyComponent()

template<PooledComponent T>
nc::AnyComponent::AnyComponent ( T *  instance,
ComponentHandler< T > *  handler 
)
inlineexplicit

Construct an AnyComponent wrapper around a component.

Template Parameters
TThe underlying component type.
Parameters
instanceA valid pointer to the component instance.
handlerA valid pointer to the handler for T.
Exceptions
NcErrorif either the instance or handler are null.

Member Function Documentation

◆ HasDrawUI()

auto nc::AnyComponent::HasDrawUI ( ) const -> bool
inline

Check if ComponentHandler::drawUI is set for the concrete component type.

Exceptions
NcErrorif invoked on a null AnyComponent.

◆ Id()

auto nc::AnyComponent::Id ( ) const -> size_t
inline

Get the value of Componenthandler::id for the concrete component type.

Exceptions
NcErrorif invoked on a null AnyComponent.

◆ Name()

auto nc::AnyComponent::Name ( ) const -> std::string_view
inline

Get the value of ComponentHandler::name for the concrete component type.

Exceptions
NcErrorif invoked on a null AnyComponent.

The documentation for this class was generated from the following file: