NcEngine
nc::ecs::ComponentPoolBase Class Referenceabstract

Type-agnostic base class for component pools. More...

#include <ComponentPool.h>

Inheritance diagram for nc::ecs::ComponentPoolBase:
nc::StableAddress nc::ecs::ComponentPool< T >

Public Types

using entity_iterator = std::span< const Entity >::iterator
 

Public Member Functions

virtual auto Id () const noexcept -> size_t=0
 Get the component's unique id. More...
 
virtual auto Contains (Entity entity) const -> bool=0
 Check if the pool has a component attached to an entity. More...
 
virtual auto GetAsAnyComponent (Entity entity) -> AnyComponent=0
 Get the component attached to an entity as an AnyComponent. More...
 
virtual auto Remove (Entity entity) -> bool=0
 Remove the component attached to an entity. More...
 
virtual auto Size () const noexcept -> size_t=0
 Get the number of components in the pool, excluding those still staged. More...
 
virtual auto StagedSize () const noexcept -> size_t=0
 Get the number of staged components waiting to be merged into the pool. More...
 
virtual auto TotalSize () const noexcept -> size_t=0
 Get the combined number of components in the pool and staged. More...
 
virtual void Reserve (size_t capacity)=0
 Pre-allocate space for some number of components. More...
 
virtual auto GetEntityPool () const noexcept -> std::span< const Entity >=0
 Get a span containing the entities with components in the pool. More...
 
virtual auto GetComponentName () const noexcept -> std::string_view=0
 Get the name from the component's ComponentHandler. More...
 
virtual auto HasFactory () const noexcept -> bool=0
 Check if the factory callback is set in the component's ComponentHandler. More...
 
virtual auto HasUserData () const noexcept -> bool=0
 Check if userData is set in the component's ComponentHandler. More...
 
virtual auto HasSerialize () const noexcept -> bool=0
 Check if the serialize and deserialize callbacks are set in the component's ComponentHandler. More...
 
virtual auto HasDrawUI () const noexcept -> bool=0
 Check if the drawUI callback set in the the component's ComponentHandler. More...
 
virtual auto AddDefault (Entity entity) -> AnyComponent=0
 Factory-construct a component attached to an entity. More...
 
virtual void Serialize (std::ostream &stream, Entity entity, const SerializationContext &ctx)=0
 Serialize the component attached to an entity to a binary stream. More...
 
virtual void Deserialize (std::istream &stream, Entity entity, const DeserializationContext &ctx)=0
 Deserialize a component from a binary stream and attach it to an entity. More...
 
virtual void ClearNonPersistent ()=0
 Remove all components not attached to a persistent entity. More...
 
virtual void Clear ()=0
 Remove all components. More...
 
virtual void CommitStagedComponents (const std::vector< Entity > &deleted)=0
 Finalize pending changes by merging staged components and removing data for any entities deleted from the ComponentRegistry. More...
 
- Public Member Functions inherited from nc::StableAddress
 StableAddress (const StableAddress &)=delete
 
 StableAddress (StableAddress &&)=delete
 
StableAddressoperator= (const StableAddress &)=delete
 
StableAddressoperator= (StableAddress &&)=delete
 

Detailed Description

Type-agnostic base class for component pools.

Member Function Documentation

◆ AddDefault()

virtual auto nc::ecs::ComponentPoolBase::AddDefault ( Entity  entity) -> AnyComponent
pure virtual

Factory-construct a component attached to an entity.

Note
Returns a null AnyComponent if there is no registered factory handler.

Implemented in nc::ecs::ComponentPool< T >.

◆ Clear()

virtual void nc::ecs::ComponentPoolBase::Clear ( )
pure virtual

Remove all components.

Note
This operation is handled automatically for pools owned by the ComponentRegistry.

Implemented in nc::ecs::ComponentPool< T >.

◆ ClearNonPersistent()

virtual void nc::ecs::ComponentPoolBase::ClearNonPersistent ( )
pure virtual

Remove all components not attached to a persistent entity.

Note
This operation is handled automatically for pools owned by the ComponentRegistry.

Implemented in nc::ecs::ComponentPool< T >.

◆ CommitStagedComponents()

virtual void nc::ecs::ComponentPoolBase::CommitStagedComponents ( const std::vector< Entity > &  deleted)
pure virtual

Finalize pending changes by merging staged components and removing data for any entities deleted from the ComponentRegistry.

Note
This operation is handled automatically for pools owned by the ComponentRegistry.

Implemented in nc::ecs::ComponentPool< T >.

◆ Contains()

virtual auto nc::ecs::ComponentPoolBase::Contains ( Entity  entity) const -> bool
pure virtual

Check if the pool has a component attached to an entity.

Implemented in nc::ecs::ComponentPool< T >.

◆ Deserialize()

virtual void nc::ecs::ComponentPoolBase::Deserialize ( std::istream &  stream,
Entity  entity,
const DeserializationContext ctx 
)
pure virtual

Deserialize a component from a binary stream and attach it to an entity.

Implemented in nc::ecs::ComponentPool< T >.

◆ GetAsAnyComponent()

virtual auto nc::ecs::ComponentPoolBase::GetAsAnyComponent ( Entity  entity) -> AnyComponent
pure virtual

Get the component attached to an entity as an AnyComponent.

Note
Returns a null object if no component exists.

Implemented in nc::ecs::ComponentPool< T >.

◆ GetComponentName()

virtual auto nc::ecs::ComponentPoolBase::GetComponentName ( ) const -> std::string_view
pure virtualnoexcept

Get the name from the component's ComponentHandler.

Implemented in nc::ecs::ComponentPool< T >.

◆ GetEntityPool()

virtual auto nc::ecs::ComponentPoolBase::GetEntityPool ( ) const -> std::span< const Entity >
pure virtualnoexcept

Get a span containing the entities with components in the pool.

Implemented in nc::ecs::ComponentPool< T >.

◆ HasDrawUI()

virtual auto nc::ecs::ComponentPoolBase::HasDrawUI ( ) const -> bool
pure virtualnoexcept

Check if the drawUI callback set in the the component's ComponentHandler.

Implemented in nc::ecs::ComponentPool< T >.

◆ HasFactory()

virtual auto nc::ecs::ComponentPoolBase::HasFactory ( ) const -> bool
pure virtualnoexcept

Check if the factory callback is set in the component's ComponentHandler.

Implemented in nc::ecs::ComponentPool< T >.

◆ HasSerialize()

virtual auto nc::ecs::ComponentPoolBase::HasSerialize ( ) const -> bool
pure virtualnoexcept

Check if the serialize and deserialize callbacks are set in the component's ComponentHandler.

Implemented in nc::ecs::ComponentPool< T >.

◆ HasUserData()

virtual auto nc::ecs::ComponentPoolBase::HasUserData ( ) const -> bool
pure virtualnoexcept

Check if userData is set in the component's ComponentHandler.

Implemented in nc::ecs::ComponentPool< T >.

◆ Id()

virtual auto nc::ecs::ComponentPoolBase::Id ( ) const -> size_t
pure virtualnoexcept

Get the component's unique id.

Implemented in nc::ecs::ComponentPool< T >.

◆ Remove()

virtual auto nc::ecs::ComponentPoolBase::Remove ( Entity  entity) -> bool
pure virtual

Remove the component attached to an entity.

Implemented in nc::ecs::ComponentPool< T >.

◆ Reserve()

virtual void nc::ecs::ComponentPoolBase::Reserve ( size_t  capacity)
pure virtual

Pre-allocate space for some number of components.

Implemented in nc::ecs::ComponentPool< T >.

◆ Serialize()

virtual void nc::ecs::ComponentPoolBase::Serialize ( std::ostream &  stream,
Entity  entity,
const SerializationContext ctx 
)
pure virtual

Serialize the component attached to an entity to a binary stream.

Implemented in nc::ecs::ComponentPool< T >.

◆ Size()

virtual auto nc::ecs::ComponentPoolBase::Size ( ) const -> size_t
pure virtualnoexcept

Get the number of components in the pool, excluding those still staged.

Implemented in nc::ecs::ComponentPool< T >.

◆ StagedSize()

virtual auto nc::ecs::ComponentPoolBase::StagedSize ( ) const -> size_t
pure virtualnoexcept

Get the number of staged components waiting to be merged into the pool.

Implemented in nc::ecs::ComponentPool< T >.

◆ TotalSize()

virtual auto nc::ecs::ComponentPoolBase::TotalSize ( ) const -> size_t
pure virtualnoexcept

Get the combined number of components in the pool and staged.

Implemented in nc::ecs::ComponentPool< T >.


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