EnTT  3.5.0
Classes | Public Types | Public Member Functions | Friends | List of all members
entt::basic_runtime_view< Entity > Class Template Reference

Runtime view. More...

#include <runtime_view.hpp>

Public Types

using entity_type = Entity
 Underlying entity identifier.
 
using size_type = std::size_t
 Unsigned integer type.
 
using iterator = view_iterator
 Bidirectional iterator type.
 

Public Member Functions

size_type size () const
 Estimates the number of entities that have the given components. More...
 
bool empty () const
 Checks if the view is definitely empty. More...
 
iterator begin () const
 Returns an iterator to the first entity that has the given components. More...
 
iterator end () const
 Returns an iterator that is past the last entity that has the given components. More...
 
bool contains (const entity_type entt) const
 Checks if a view contains an entity. More...
 
template<typename Func >
void each (Func func) const
 Iterates entities and applies the given function object to them. More...
 

Friends

class basic_registry< Entity >
 A registry is allowed to create views.
 

Detailed Description

template<typename Entity>
class entt::basic_runtime_view< Entity >

Runtime view.

Runtime views iterate over those entities that have at least all the given components in their bags. During initialization, a runtime view looks at the number of entities available for each component and picks up a reference to the smallest set of candidate entities in order to get a performance boost when iterate.
Order of elements during iterations are highly dependent on the order of the underlying data structures. See sparse_set and its specializations for more details.

Important

Iterators aren't invalidated if:

In all the other cases, modifying the pools of the given components in any way invalidates all the iterators and using them results in undefined behavior.

Note
Views share references to the underlying data structures of the registry that generated them. Therefore any change to the entities and to the components made by means of the registry are immediately reflected by the views, unless a pool was missing when the view was built (in this case, the view won't have a valid reference and won't be updated accordingly).
Warning
Lifetime of a view must not overcome that of the registry that generated it. In any other case, attempting to use a view results in undefined behavior.
Template Parameters
EntityA valid entity type (see entt_traits for more details).

Definition at line 20 of file fwd.hpp.

Member Function Documentation

◆ begin()

template<typename Entity >
iterator entt::basic_runtime_view< Entity >::begin ( ) const
inline

Returns an iterator to the first entity that has the given components.

The returned iterator points to the first entity that has the given components. If the view is empty, the returned iterator will be equal to end().

Note
Iterators stay true to the order imposed to the underlying data structures.
Returns
An iterator to the first entity that has the given components.

Definition at line 186 of file runtime_view.hpp.

◆ contains()

template<typename Entity >
bool entt::basic_runtime_view< Entity >::contains ( const entity_type  entt) const
inline

Checks if a view contains an entity.

Parameters
enttA valid entity identifier.
Returns
True if the view contains the given entity, false otherwise.

Definition at line 214 of file runtime_view.hpp.

◆ each()

template<typename Entity >
template<typename Func >
void entt::basic_runtime_view< Entity >::each ( Func  func) const
inline

Iterates entities and applies the given function object to them.

The function object is invoked for each entity. It is provided only with the entity itself. To get the components, users can use the registry with which the view was built.
The signature of the function should be equivalent to the following:

void(const entity_type);
Template Parameters
FuncType of the function object to invoke.
Parameters
funcA valid function object.

Definition at line 235 of file runtime_view.hpp.

◆ empty()

template<typename Entity >
bool entt::basic_runtime_view< Entity >::empty ( ) const
inline

Checks if the view is definitely empty.

Returns
True if the view is definitely empty, false otherwise.

Definition at line 168 of file runtime_view.hpp.

◆ end()

template<typename Entity >
iterator entt::basic_runtime_view< Entity >::end ( ) const
inline

Returns an iterator that is past the last entity that has the given components.

The returned iterator points to the entity following the last entity that has the given components. Attempting to dereference the returned iterator results in undefined behavior.

Note
Iterators stay true to the order imposed to the underlying data structures.
Returns
An iterator to the entity following the last entity that has the given components.

Definition at line 205 of file runtime_view.hpp.

◆ size()

template<typename Entity >
size_type entt::basic_runtime_view< Entity >::size ( ) const
inline

Estimates the number of entities that have the given components.

Returns
Estimated number of entities that have the given components.

Definition at line 160 of file runtime_view.hpp.


The documentation for this class was generated from the following files:
entt::basic_runtime_view::entity_type
Entity entity_type
Underlying entity identifier.
Definition: runtime_view.hpp:150