45 : flecs::
id( nullptr,
id ) { }
62 explicit operator bool()
const {
111 template <
typename Parent>
116 bool enabled()
const {
117 return !
ecs_has_id(world_, id_, flecs::Disabled);
150 template <
typename Func>
151 void each(
const Func& func)
const;
162 template <
typename Func>
163 void each(flecs::id_t
first, flecs::id_t
second,
const Func& func)
const;
175 template <
typename Func>
188 template <
typename First,
typename Func>
189 void each(
const Func& func)
const {
203 template <
typename Func>
204 void children(flecs::entity_t rel, Func&& func)
const {
208 if (id_ == flecs::Wildcard || id_ == flecs::Any) {
231 template <
typename Rel,
typename Func>
247 template <
typename Func>
249 children(flecs::ChildOf, FLECS_MOV(func));
258 template <typename T, if_t< is_actual<T>::value > = 0>
262 "operation invalid for empty type");
263 return static_cast<const T*
>(
ecs_get_id(world_, id_, comp_id));
274 template <
typename T,
typename A = actual_type_t<T>,
275 if_t< flecs::is_pair<T>::value > = 0>
279 "operation invalid for empty type");
280 return static_cast<const A*
>(
ecs_get_id(world_, id_, comp_id));
289 template <
typename First,
typename Second,
typename P = pair<First, Second>,
290 typename A = actual_type_t<P>, if_not_t< flecs::is_pair<First>::value > = 0>
292 return this->get<P>();
301 template<typename First, typename Second, if_not_t< is_enum<Second>::value> = 0>
305 "operation invalid for empty type");
306 return static_cast<const First*
>(
316 template<typename First, typename Second, if_t<is_enum<Second>::value> = 0>
317 const First*
get(Second constant)
const {
318 const auto& et = enum_type<Second>(this->world_);
319 flecs::entity_t
target = et.entity(constant);
320 return get<First>(
target);
329 const void*
get(flecs::id_t comp)
const {
379 template <typename Func, if_t< is_callable<Func>::value > = 0>
380 bool get(
const Func& func)
const;
387 template <typename T, if_t< is_enum<T>::value > = 0>
397 template<
typename Second>
401 "operation invalid for empty type");
402 return static_cast<const Second*
>(
413 template<
typename First,
typename Second>
415 return get<pair_object<First, Second>>();
424 template <typename T, if_t< is_actual<T>::value > = 0>
428 "operation invalid for empty type");
440 template <
typename T,
typename A = actual_type_t<T>,
441 if_t< flecs::is_pair<T>::value > = 0>
445 "operation invalid for empty type");
455 template <
typename First,
typename Second,
typename P = pair<First, Second>,
456 typename A = actual_type_t<P>, if_not_t< flecs::is_pair<First>::value > = 0>
458 return this->get_mut<P>();
467 template<typename First, typename Second, if_not_t< is_enum<Second>::value> = 0>
471 "operation invalid for empty type");
472 return static_cast<First*
>(
482 template<typename First, typename Second, if_t<is_enum<Second>::value> = 0>
484 const auto& et = enum_type<Second>(this->world_);
485 flecs::entity_t
target = et.entity(constant);
486 return get_mut<First>(
target);
518 template<
typename Second>
522 "operation invalid for empty type");
523 return static_cast<Second*
>(
534 template<
typename First,
typename Second>
536 return get_mut<pair_object<First, Second>>();
547 template<
typename First>
580 template <
typename T>
583 template <
typename First,
typename Second>
591 int32_t
depth(flecs::entity_t rel)
const {
600 template<
typename Rel>
627 bool has(flecs::id_t e)
const {
636 template <
typename T>
644 if (is_enum<T>::value) {
645 return ecs_has_pair(world_, id_, cid, flecs::Wildcard);
657 template <typename E, if_t< is_enum<E>::value > = 0>
660 auto o = enum_type<E>(world_).entity(value);
662 "Constant was not found in Enum reflection data."
663 " Did you mean to use has<E>() instead of has(E)?");
664 return ecs_has_pair(world_, id_, r, o);
673 template <
typename First,
typename Second>
684 template<typename First, typename Second, if_not_t< is_enum<Second>::value > = 0>
696 template <
typename Second>
707 template<typename First, typename E, if_t< is_enum<E>::value > = 0>
709 const auto& et = enum_type<E>(this->world_);
710 flecs::entity_t
second = et.entity(value);
711 return has<First>(
second);
730 bool owns(flecs::id_t e)
const {
740 template <
typename First>
762 template <
typename T>
774 template <
typename First,
typename Second>
816 template <
typename First>
827 template <
typename First,
typename Second>
832 flecs::entity clone(
bool clone_value =
true, flecs::entity_t dst_id = 0)
const;
#define ecs_assert(condition, error_code,...)
Assert.
bool ecs_each_next(ecs_iter_t *it)
Progress an iterator created with ecs_each_id().
ecs_iter_t ecs_each_id(const ecs_world_t *world, ecs_id_t id)
Iterate all entities with specified (component id).
bool ecs_is_enabled_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Test if component is enabled.
bool ecs_has_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Test if an entity has an id.
bool ecs_owns_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Test if an entity owns an id.
int32_t ecs_get_depth(const ecs_world_t *world, ecs_entity_t entity, ecs_entity_t rel)
Return depth for entity in tree for the specified relationship.
void * ecs_get_mut_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Get a mutable pointer to a component.
const void * ecs_get_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Get an immutable pointer to a component.
bool ecs_is_valid(const ecs_world_t *world, ecs_entity_t e)
Test whether an entity is valid.
bool ecs_is_alive(const ecs_world_t *world, ecs_entity_t e)
Test whether an entity is alive.
char * ecs_get_path_w_sep(const ecs_world_t *world, ecs_entity_t parent, ecs_entity_t child, const char *sep, const char *prefix)
Get a path identifier for an entity.
const char * ecs_get_symbol(const ecs_world_t *world, ecs_entity_t entity)
Get the symbol of an entity.
const char * ecs_get_name(const ecs_world_t *world, ecs_entity_t entity)
Get the name of an entity.
const ecs_world_t * ecs_get_world(const ecs_poly_t *poly)
Get world from poly.
flecs::type type() const
Get the entity's type.
A * get_mut() const
Get mutable component value.
const T * get() const
Get component value.
entity_view(entity_t id)
Implicit conversion from flecs::entity_t to flecs::entity_view.
int32_t depth(flecs::entity_t rel) const
Get depth for given relationship.
bool enabled() const
Test if pair is enabled.
bool has(flecs::id_t first, flecs::id_t second) const
Check if entity has the provided pair.
const First * get(Second second) const
Get a pair.
flecs::string_view name() const
Return the entity name.
bool owns(flecs::id_t second) const
Check if entity owns the provided pair.
const Second * get_second(flecs::entity_t first) const
Get the second part for a pair.
const Second * get_second() const
Get the second part for a pair.
bool is_valid() const
Check if entity is valid.
flecs::string path(const char *sep="::", const char *init_sep="::") const
Return the entity path.
flecs::string_view symbol() const
Return the entity symbol.
void each(const Func &func) const
Iterate targets for a given relationship.
flecs::table_range range() const
Get table range for the entity.
void * get_mut(flecs::entity_t first, flecs::entity_t second) const
Get a mutable pair (untyped).
bool owns() const
Check if entity owns the provided pair.
bool has(E value) const
Check if entity has the provided pair.
int32_t depth() const
Get depth for given relationship.
entity_view(flecs::world_t *world, flecs::id_t id)
Wrap an existing entity id.
bool enabled(flecs::id_t id) const
Test if id is enabled.
flecs::entity target_for(flecs::entity_t relationship, flecs::id_t id) const
Get the target of a pair for a given relationship id.
bool has_second(flecs::entity_t first) const
Check if entity has the provided pair.
const A * get() const
Get component value.
flecs::entity lookup(const char *path, bool search_path=false) const
Lookup an entity by name.
void children(Func &&func) const
Iterate children for entity.
bool owns(flecs::id_t e) const
Check if entity owns the provided entity.
T * get_mut() const
Get mutable component value.
flecs::table table() const
Get the entity's table.
flecs::string path_from(flecs::entity_t parent, const char *sep="::", const char *init_sep="::") const
Return the entity path relative to a parent.
Second * get_mut_second() const
Get the second part for a pair.
bool enabled(flecs::id_t second) const
Test if pair is enabled.
bool has(Second second) const
Check if entity has the provided pair.
bool has(flecs::id_t e) const
Check if entity has the provided entity.
bool owns() const
Check if entity owns the provided component.
flecs::entity parent() const
Get parent of entity.
const First * get(Second constant) const
Get a pair.
void * get_mut(flecs::id_t comp) const
Get mutable component value (untyped).
const A * get() const
Get a pair.
void each(const Func &func) const
Iterate (component) ids of an entity.
const void * get(flecs::entity_t first, flecs::entity_t second) const
Get a pair (untyped).
bool is_alive() const
Check if entity is alive.
First * get_mut(Second constant) const
Get a mutable pair.
bool has() const
Check if entity has the provided component.
bool owns(flecs::id_t first, flecs::id_t second) const
Check if entity owns the provided pair.
First * get_mut(Second second) const
Get a mutable pair.
void children(Func &&func) const
Iterate children for entity.
Second * get_mut_second(flecs::entity_t first) const
Get the second part for a pair.
entity_t id() const
Get entity id.
flecs::entity target(int32_t index=0) const
Get target for a given pair.
const void * get(flecs::id_t comp) const
Get component value (untyped).
bool has() const
Check if entity has the provided pair.
flecs::string path_from(const char *sep="::", const char *init_sep="::") const
Return the entity path relative to a parent.
bool enabled() const
Test if component is enabled.
void children(flecs::entity_t rel, Func &&func) const
Iterate children for entity.
A * get_mut() const
Get a mutable pair.
flecs::entity mut(const flecs::world &stage) const
Return mutable entity handle for current stage When an entity handle created from the world is used w...
bool has(E value) const
Check if entity has the provided enum constant.
bool enabled(flecs::id_t first, flecs::id_t second) const
Test if pair is enabled.
Class that wraps around a flecs::id_t.
flecs::entity second() const
Get second element from a pair.
flecs::entity first() const
Get first element from a pair.
Class for iterating over query results.