NcEngine
nc::ecs::EcsInterface< Base, Includes > Class Template Reference

Interface for higher-level entity and component operations with optional type access restriction. More...

#include <Ecs.h>

Public Types

using PolicyType = AccessPolicy< Base, Includes... >
 
using FilterType = typename PolicyType::FilterType
 

Public Member Functions

 EcsInterface (AccessPolicy< Base, Includes... > policy) noexcept
 Construct an EcsInterface instance.
 
template<FilterBase TargetBase, class... TargetIncludes>
requires PolicyType
::template ConvertibleTo< TargetBase, TargetIncludes... > operator EcsInterface< TargetBase, TargetIncludes... > () const noexcept
 Implicit conversion operator to a more restricted interface.
 
template<std::same_as< Entity > T>
requires PolicyType
::template HasAccess< Entity, Transform, Tag, Hierarchy > auto Emplace (EntityInfo info={}) -> Entity
 Emplace an entity.
 
template<Component T, class... Args>
requires PolicyType
::template HasAccess< T > auto Emplace (Entity entity, Args &&... args) -> T &
 Emplace a component.
 
template<std::same_as< Entity > T>
requires PolicyType
::template HasAccess< Entity, Transform > auto Remove (Entity entity) -> bool
 Remove an entity.
 
template<Component T>
requires PolicyType
::template HasAccess< T > auto Remove (Entity entity) -> bool
 Remove a component.
 
template<Component T>
requires PolicyType
::template HasAccess< T > auto Get (Entity entity) -> T &
 Get a component.
 
template<Component T>
requires PolicyType
::template HasAccess< T > auto Get (Entity entity) const -> const T &
 Get a component.
 
auto GetEntityByTag (std::string_view tagValue) -> Entity
 Get the first Entity matching a Tag. More...
 
template<class T >
requires PolicyType
::template HasAccess< T > &&PooledComponent< T > std::same_as< Entity, T > auto GetPool () const -> decltype(auto)
 Get the pool for a given type.
 
template<bool IsRoot>
requires PolicyType
auto GetComponentPools() auto RemoveNode (Entity entity) -> bool
 Get a range of pointers to all ComponentPoolBase instances. More...
 

Detailed Description

template<FilterBase Base, class... Includes>
class nc::ecs::EcsInterface< Base, Includes >

Interface for higher-level entity and component operations with optional type access restriction.

Template Parameters
BaseA FilterBase describing the baseline set of types accessible through the interface.
IncludesA list of types accessible through the interface in addition to the Base.

Member Function Documentation

◆ GetEntityByTag()

template<FilterBase Base, class... Includes>
auto nc::ecs::EcsInterface< Base, Includes >::GetEntityByTag ( std::string_view  tagValue) -> Entity
inline

Get the first Entity matching a Tag.

Note
To minimize the search cost, staged Entities are not considered. If they need to be, first call ComponentRegistry::CommitPendingChanges(), but DO NOT do this from within the task graph (e.g. from game logic). It is safe to commit changes inside of Scene::Load().

Get a contiguous view of all instances of a type.

Get a contiguous view of all instances of a type.

Get the pool for a given type.

◆ RemoveNode()

template<FilterBase Base, class... Includes>
template<bool IsRoot>
requires PolicyType
auto GetComponentPools() auto nc::ecs::EcsInterface< Base, Includes >::RemoveNode ( Entity  entity) -> bool
inline

Get a range of pointers to all ComponentPoolBase instances.

Child an Entity to another, or pass Entity::Null() to detach from an existing parent.

Get the root Entity in a hierarchy.

Get the parent entity a component is attached to or Entity::Null().

Check if an entity or component exists.


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