Flecs v4.0
A fast entity component system (ECS) for C & C++
Loading...
Searching...
No Matches
entity_view.hpp
Go to the documentation of this file.
1
13#pragma once
14
20namespace flecs
21{
22
28struct entity_view : public id {
29
30 entity_view() : flecs::id() { }
31
37 explicit entity_view(flecs::world_t *world, flecs::id_t id)
38 : flecs::id(world
39 ? const_cast<flecs::world_t*>(ecs_get_world(world))
40 : nullptr
41 , id ) { }
42
44 entity_view(entity_t id)
45 : flecs::id( nullptr, id ) { }
46
50 entity_t id() const {
51 return id_;
52 }
53
63 bool is_valid() const {
64 return world_ && ecs_is_valid(world_, id_);
65 }
66
67 explicit operator bool() const {
68 return is_valid();
69 }
70
76 bool is_alive() const {
77 return world_ && ecs_is_alive(world_, id_);
78 }
79
85 return flecs::string_view(ecs_get_name(world_, id_));
86 }
87
93 return flecs::string_view(ecs_get_symbol(world_, id_));
94 }
95
100 flecs::string path(const char *sep = "::", const char *init_sep = "::") const {
101 return path_from(0, sep, init_sep);
102 }
103
108 flecs::string path_from(flecs::entity_t parent, const char *sep = "::", const char *init_sep = "::") const {
109 char *path = ecs_get_path_w_sep(world_, parent, id_, sep, init_sep);
110 return flecs::string(path);
111 }
112
117 template <typename Parent>
118 flecs::string path_from(const char *sep = "::", const char *init_sep = "::") const {
119 return path_from(_::type<Parent>::id(world_), sep, init_sep);
120 }
121
122 bool enabled() const {
123 return !ecs_has_id(world_, id_, flecs::Disabled);
124 }
125
130 flecs::type type() const;
131
136 flecs::table table() const;
137
146
156 template <typename Func>
157 void each(const Func& func) const;
158
168 template <typename Func>
169 void each(flecs::id_t first, flecs::id_t second, const Func& func) const;
170
181 template <typename Func>
182 void each(const flecs::entity_view& rel, const Func& func) const;
183
194 template <typename First, typename Func>
195 void each(const Func& func) const {
196 return each(_::type<First>::id(world_), func);
197 }
198
209 template <typename Func>
210 void children(flecs::entity_t rel, Func&& func) const {
211 /* When the entity is a wildcard, this would attempt to query for all
212 * entities with (ChildOf, *) or (ChildOf, _) instead of querying for
213 * the children of the wildcard entity. */
214 if (id_ == flecs::Wildcard || id_ == flecs::Any) {
215 /* This is correct, wildcard entities don't have children */
216 return;
217 }
218
219 flecs::world world(world_);
220
221 if (rel == flecs::ChildOf) {
222 ecs_iter_t it = ecs_children(world_, id_);
223 while (ecs_children_next(&it)) {
224 _::each_delegate<Func>(FLECS_MOV(func)).invoke(&it);
225 }
226 } else {
227 ecs_iter_t it = ecs_each_id(world_, ecs_pair(rel, id_));
228 while (ecs_each_next(&it)) {
229 _::each_delegate<Func>(FLECS_MOV(func)).invoke(&it);
230 }
231 }
232 }
233
244 template <typename Rel, typename Func>
245 void children(Func&& func) const {
246 children(_::type<Rel>::id(world_), FLECS_MOV(func));
247 }
248
260 template <typename Func>
261 void children(Func&& func) const {
262 children(flecs::ChildOf, FLECS_MOV(func));
263 }
264
265
266 /* try_get */
267
274 template <typename T, if_t< is_actual<T>::value > = 0>
275 const T* try_get() const {
276 auto comp_id = _::type<T>::id(world_);
277 ecs_assert(_::type<T>::size() != 0, ECS_INVALID_PARAMETER,
278 "operation invalid for empty type");
279 return static_cast<const T*>(ecs_get_id(world_, id_, comp_id));
280 }
281
290 template <typename T, typename A = actual_type_t<T>,
291 if_t< flecs::is_pair<T>::value > = 0>
292 const A* try_get() const {
293 auto comp_id = _::type<T>::id(world_);
294 ecs_assert(_::type<A>::size() != 0, ECS_INVALID_PARAMETER,
295 "operation invalid for empty type");
296 return static_cast<const A*>(ecs_get_id(world_, id_, comp_id));
297 }
298
305 template <typename First, typename Second, typename P = pair<First, Second>,
306 typename A = actual_type_t<P>, if_not_t< flecs::is_pair<First>::value > = 0>
307 const A* try_get() const {
308 return this->try_get<P>();
309 }
310
317 template<typename First, typename Second, if_not_t< is_enum<Second>::value> = 0>
318 const First* try_get(Second second) const {
319 auto first = _::type<First>::id(world_);
320 ecs_assert(_::type<First>::size() != 0, ECS_INVALID_PARAMETER,
321 "operation invalid for empty type");
322 return static_cast<const First*>(
323 ecs_get_id(world_, id_, ecs_pair(first, second)));
324 }
325
332 template<typename First, typename Second, if_t< is_enum<Second>::value && !std::is_same<First, Second>::value > = 0>
333 const First* try_get(Second constant) const {
334 const auto& et = enum_type<Second>(this->world_);
335 flecs::entity_t target = et.entity(constant);
336 return try_get<First>(target);
337 }
338
345 const void* try_get(flecs::id_t comp) const {
346 return ecs_get_id(world_, id_, comp);
347 }
348
357 const void* try_get(flecs::entity_t first, flecs::entity_t second) const {
358 return ecs_get_id(world_, id_, ecs_pair(first, second));
359 }
360
368 template<typename Second>
369 const Second* try_get_second(flecs::entity_t first) const {
370 auto second = _::type<Second>::id(world_);
371 ecs_assert( ecs_get_type_info(world_, ecs_pair(first, second)) != NULL,
372 ECS_INVALID_PARAMETER, "pair is not a component");
373 ecs_assert( ecs_get_type_info(world_, ecs_pair(first, second))->component == second,
374 ECS_INVALID_PARAMETER, "type of pair is not Second");
375 ecs_assert(_::type<Second>::size() != 0, ECS_INVALID_PARAMETER,
376 "operation invalid for empty type");
377 return static_cast<const Second*>(
378 ecs_get_id(world_, id_, ecs_pair(first, second)));
379 }
380
388 template<typename First, typename Second>
389 const Second* try_get_second() const {
390 return try_get<pair_object<First, Second>>();
391 }
392
393
394 /* get */
395
402 template <typename T, if_t< is_actual<T>::value > = 0>
403 const T& get() const {
404 const T *r = try_get<T>();
405 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
406 "invalid get: entity does not have component (use try_get)");
407 return *r;
408 }
409
418 template <typename T, typename A = actual_type_t<T>,
419 if_t< flecs::is_pair<T>::value > = 0>
420 const A& get() const {
421 const A *r = try_get<T>();
422 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
423 "invalid get: entity does not have component (use try_get)");
424 return *r;
425 }
426
435 template <typename First, typename Second, typename P = pair<First, Second>,
436 typename A = actual_type_t<P>, if_not_t< flecs::is_pair<First>::value > = 0>
437 const A& get() const {
438 return this->get<P>();
439 }
440
449 template<typename First, typename Second, if_not_t< is_enum<Second>::value> = 0>
450 const First& get(Second second) const {
451 const First *r = try_get<First>(second);
452 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
453 "invalid get: entity does not have component (use try_get)");
454 return *r;
455 }
456
465 template<typename First, typename Second, if_t< is_enum<Second>::value && !std::is_same<First, Second>::value > = 0>
466 const First& get(Second constant) const {
467 const auto& et = enum_type<Second>(this->world_);
468 flecs::entity_t target = et.entity(constant);
469 return get<First>(target);
470 }
471
478 const void* get(flecs::id_t comp) const {
479 const void *r = ecs_get_id(world_, id_, comp);
480 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
481 "invalid get: entity does not have component (use try_get)");
482 return r;
483 }
484
495 const void* get(flecs::entity_t first, flecs::entity_t second) const {
496 const void *r = ecs_get_id(world_, id_, ecs_pair(first, second));
497 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
498 "invalid get: entity does not have component (use try_get)");
499 return r;
500 }
501
536 template <typename Func, if_t< is_callable<Func>::value > = 0>
537 bool get(const Func& func) const;
538
546 template<typename Second>
547 const Second& get_second(flecs::entity_t first) const {
548 const Second *r = try_get_second<Second>(first);
549 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
550 "invalid get: entity does not have component (use try_get)");
551 return *r;
552 }
553
561 template<typename First, typename Second>
562 const Second& get_second() const {
563 const Second *r = try_get<First, Second>();
564 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
565 "invalid get: entity does not have component (use try_get)");
566 return *r;
567 }
568
569
570 /* try_get_mut */
571
578 template <typename T, if_t< is_actual<T>::value > = 0>
579 T* try_get_mut() const {
580 auto comp_id = _::type<T>::id(world_);
581 ecs_assert(_::type<T>::size() != 0, ECS_INVALID_PARAMETER,
582 "operation invalid for empty type");
583 return static_cast<T*>(ecs_get_mut_id(world_, id_, comp_id));
584 }
585
594 template <typename T, typename A = actual_type_t<T>,
595 if_t< flecs::is_pair<T>::value > = 0>
596 A* try_get_mut() const {
597 auto comp_id = _::type<T>::id(world_);
598 ecs_assert(_::type<A>::size() != 0, ECS_INVALID_PARAMETER,
599 "operation invalid for empty type");
600 return static_cast<A*>(ecs_get_mut_id(world_, id_, comp_id));
601 }
602
609 template <typename First, typename Second, typename P = pair<First, Second>,
610 typename A = actual_type_t<P>, if_not_t< flecs::is_pair<First>::value > = 0>
611 A* try_get_mut() const {
612 return this->try_get_mut<P>();
613 }
614
621 template<typename First, typename Second, if_not_t< is_enum<Second>::value> = 0>
622 First* try_get_mut(Second second) const {
623 auto first = _::type<First>::id(world_);
624 ecs_assert(_::type<First>::size() != 0, ECS_INVALID_PARAMETER,
625 "operation invalid for empty type");
626 return static_cast<First*>(
627 ecs_get_mut_id(world_, id_, ecs_pair(first, second)));
628 }
629
636 template<typename First, typename Second, if_t< is_enum<Second>::value && !std::is_same<First, Second>::value > = 0>
637 First* try_get_mut(Second constant) const {
638 const auto& et = enum_type<Second>(this->world_);
639 flecs::entity_t target = et.entity(constant);
640 return get_mut<First>(target);
641 }
642
649 void* try_get_mut(flecs::id_t comp) const {
650 return ecs_get_mut_id(world_, id_, comp);
651 }
652
661 void* try_get_mut(flecs::entity_t first, flecs::entity_t second) const {
662 return ecs_get_mut_id(world_, id_, ecs_pair(first, second));
663 }
664
672 template<typename Second>
673 Second* try_get_mut_second(flecs::entity_t first) const {
674 auto second = _::type<Second>::id(world_);
675 ecs_assert( ecs_get_type_info(world_, ecs_pair(first, second)) != NULL,
676 ECS_INVALID_PARAMETER, "pair is not a component");
677 ecs_assert( ecs_get_type_info(world_, ecs_pair(first, second))->component == second,
678 ECS_INVALID_PARAMETER, "type of pair is not Second");
679 ecs_assert(_::type<Second>::size() != 0, ECS_INVALID_PARAMETER,
680 "operation invalid for empty type");
681 return static_cast<Second*>(
682 ecs_get_mut_id(world_, id_, ecs_pair(first, second)));
683 }
684
692 template<typename First, typename Second>
693 Second* try_get_mut_second() const {
694 return get_mut<pair_object<First, Second>>();
695 }
696
697
698 /* get_mut */
699
706 template <typename T, if_t< is_actual<T>::value > = 0>
707 T& get_mut() const {
708 T* r = try_get_mut<T>();
709 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
710 "invalid get_mut: entity does not have component (use try_get_mut)");
711 return *r;
712 }
713
722 template <typename T, typename A = actual_type_t<T>,
723 if_t< flecs::is_pair<T>::value > = 0>
724 A& get_mut() const {
725 A* r = try_get_mut<T>();
726 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
727 "invalid get_mut: entity does not have component (use try_get_mut)");
728 return *r;
729 }
730
737 template <typename First, typename Second, typename P = pair<First, Second>,
738 typename A = actual_type_t<P>, if_not_t< flecs::is_pair<First>::value > = 0>
739 A& get_mut() const {
740 A* r = try_get_mut<First, Second>();
741 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
742 "invalid get_mut: entity does not have component (use try_get_mut)");
743 return *r;
744 }
745
752 template<typename First, typename Second, if_not_t< is_enum<Second>::value> = 0>
753 First& get_mut(Second second) const {
754 First* r = try_get_mut<First>(second);
755 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
756 "invalid get_mut: entity does not have component (use try_get_mut)");
757 return *r;
758 }
759
766 template<typename First, typename Second, if_t< is_enum<Second>::value && !std::is_same<First, Second>::value > = 0>
767 First& get_mut(Second constant) const {
768 const auto& et = enum_type<Second>(this->world_);
769 flecs::entity_t target = et.entity(constant);
770 return get_mut<First>(target);
771 }
772
779 void* get_mut(flecs::id_t comp) const {
780 void *r = ecs_get_mut_id(world_, id_, comp);
781 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
782 "invalid get_mut: entity does not have component (use try_get_mut)");
783 return r;
784 }
785
794 void* get_mut(flecs::entity_t first, flecs::entity_t second) const {
795 void *r = ecs_get_mut_id(world_, id_, ecs_pair(first, second));
796 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
797 "invalid get_mut: entity does not have component (use try_get_mut)");
798 return r;
799 }
800
808 template<typename Second>
809 Second& get_mut_second(flecs::entity_t first) const {
810 Second *r = try_get_mut_second<Second>(first);
811 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
812 "invalid get_mut: entity does not have component (use try_get_mut)");
813 return *r;
814 }
815
823 template<typename First, typename Second>
824 Second* get_mut_second() const {
825 Second *r = try_get_mut_second<First, Second>();
826 ecs_assert(r != nullptr, ECS_INVALID_OPERATION,
827 "invalid get_mut: entity does not have component (use try_get_mut)");
828 return *r;
829 }
830
832 template<typename Enum>
833 Enum get_constant() const;
834
843 template<typename First>
844 flecs::entity target(int32_t index = 0) const;
845
854 flecs::entity target(flecs::entity_t first, int32_t index = 0) const;
855
874 flecs::entity target_for(flecs::entity_t relationship, flecs::id_t id) const;
875
876 template <typename T>
877 flecs::entity target_for(flecs::entity_t relationship) const;
878
879 template <typename First, typename Second>
880 flecs::entity target_for(flecs::entity_t relationship) const;
881
887 int32_t depth(flecs::entity_t rel) const {
888 return ecs_get_depth(world_, id_, rel);
889 }
890
896 template<typename Rel>
897 int32_t depth() const {
898 return this->depth(_::type<Rel>::id(world_));
899 }
900
906 flecs::entity parent() const;
907
916 flecs::entity lookup(const char *path, bool search_path = false) const;
917
923 bool has(flecs::id_t e) const {
924 return ecs_has_id(world_, id_, e);
925 }
926
932 template <typename T>
933 bool has() const {
934 flecs::id_t cid = _::type<T>::id(world_);
935 bool result = ecs_has_id(world_, id_, cid);
936 if (result) {
937 return result;
938 }
939
940 if (is_enum<T>::value) {
941 return ecs_has_pair(world_, id_, cid, flecs::Wildcard);
942 }
943
944 return false;
945 }
946
953 template <typename E, if_t< is_enum<E>::value > = 0>
954 bool has(E value) const {
955 auto r = _::type<E>::id(world_);
956 auto o = enum_type<E>(world_).entity(value);
957 ecs_assert(o, ECS_INVALID_PARAMETER,
958 "Constant was not found in Enum reflection data."
959 " Did you mean to use has<E>() instead of has(E)?");
960 return ecs_has_pair(world_, id_, r, o);
961 }
962
969 template <typename First, typename Second>
970 bool has() const {
971 return this->has<First>(_::type<Second>::id(world_));
972 }
973
980 template<typename First, typename Second, if_not_t< is_enum<Second>::value > = 0>
981 bool has(Second second) const {
982 auto comp_id = _::type<First>::id(world_);
983 return ecs_has_id(world_, id_, ecs_pair(comp_id, second));
984 }
985
992 template <typename Second>
993 bool has_second(flecs::entity_t first) const {
994 return this->has(first, _::type<Second>::id(world_));
995 }
996
1003 template<typename First, typename E, if_t< is_enum<E>::value && !std::is_same<First, E>::value > = 0>
1004 bool has(E value) const {
1005 const auto& et = enum_type<E>(this->world_);
1006 flecs::entity_t second = et.entity(value);
1007 return has<First>(second);
1008 }
1009
1016 bool has(flecs::id_t first, flecs::id_t second) const {
1017 return ecs_has_id(world_, id_, ecs_pair(first, second));
1018 }
1019
1026 bool owns(flecs::id_t e) const {
1027 return ecs_owns_id(world_, id_, e);
1028 }
1029
1036 template <typename First>
1037 bool owns(flecs::id_t second) const {
1038 auto comp_id = _::type<First>::id(world_);
1039 return owns(ecs_pair(comp_id, second));
1040 }
1041
1048 bool owns(flecs::id_t first, flecs::id_t second) const {
1049 return owns(ecs_pair(first, second));
1050 }
1051
1058 template <typename T>
1059 bool owns() const {
1060 return owns(_::type<T>::id(world_));
1061 }
1062
1070 template <typename First, typename Second>
1071 bool owns() const {
1072 return owns(
1073 _::type<First>::id(world_),
1074 _::type<Second>::id(world_));
1075 }
1076
1082 bool enabled(flecs::id_t id) const {
1083 return ecs_is_enabled_id(world_, id_, id);
1084 }
1085
1091 template<typename T>
1092 bool enabled() const {
1093 return this->enabled(_::type<T>::id(world_));
1094 }
1095
1102 bool enabled(flecs::id_t first, flecs::id_t second) const {
1103 return this->enabled(ecs_pair(first, second));
1104 }
1105
1112 template <typename First>
1113 bool enabled(flecs::id_t second) const {
1114 return this->enabled(_::type<First>::id(world_), second);
1115 }
1116
1123 template <typename First, typename Second>
1124 bool enabled() const {
1125 return this->enabled<First>(_::type<Second>::id(world_));
1126 }
1127
1128 flecs::entity clone(bool clone_value = true, flecs::entity_t dst_id = 0) const;
1129
1149 flecs::entity mut(const flecs::world& stage) const;
1150
1158 flecs::entity mut(const flecs::iter& it) const;
1159
1168 flecs::entity mut(const flecs::entity_view& e) const;
1169
1170# ifdef FLECS_JSON
1172# endif
1173# ifdef FLECS_DOC
1175# endif
1176# ifdef FLECS_ALERTS
1178# endif
1179
1182
1183private:
1184 flecs::entity set_stage(world_t *stage);
1185};
1186
1187}
1188
Alerts entity mixin.
component< T > & constant(const char *name, T value)
Add constant.
Definition component.inl:31
Doc entity view mixin.
Enum entity view mixin.
Event entity mixin.
#define ecs_assert(condition, error_code,...)
Assert.
Definition log.h:368
const ecs_type_info_t * ecs_get_type_info(const ecs_world_t *world, ecs_id_t component)
Get the type info for an component.
bool ecs_children_next(ecs_iter_t *it)
Progress an iterator created with ecs_children().
ecs_iter_t ecs_each_id(const ecs_world_t *world, ecs_id_t component)
Iterate all entities with specified (component id).
bool ecs_each_next(ecs_iter_t *it)
Progress an iterator created with ecs_each_id().
ecs_iter_t ecs_children(const ecs_world_t *world, ecs_entity_t parent)
Iterate children of parent.
bool ecs_is_enabled_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t component)
Test if component is enabled.
bool ecs_owns_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t component)
Test if an entity owns a component.
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.
bool ecs_has_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t component)
Test if an entity has a component.
const void * ecs_get_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t component)
Get an immutable pointer to a component.
void * ecs_get_mut_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t component)
Get a mutable 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.
JSON entity mixin.
Component added to enum type entities.
Definition meta.h:284
Iterator.
Definition flecs.h:1147
Component class.
flecs::type type() const
Get the entity's type.
Definition impl.hpp:94
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.
const Second * try_get_second(flecs::entity_t first) const
Get the second part for a pair.
bool has(flecs::id_t first, flecs::id_t second) const
Check if entity has the provided pair.
First & get_mut(Second constant) const
Get a mutable pair.
T & get_mut() const
Get mutable component value.
A & get_mut() const
Get mutable component value.
flecs::string_view name() const
Return the entity name.
bool owns(flecs::id_t second) const
Check if entity owns the provided pair.
const A * try_get() const
Get 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.
const void * try_get(flecs::entity_t first, flecs::entity_t second) const
Get a pair (untyped).
flecs::string_view symbol() const
Return the entity symbol.
void each(const Func &func) const
Iterate targets for a given relationship.
A & get_mut() const
Get a mutable pair.
flecs::table_range range() const
Get table range for the entity.
Definition impl.hpp:102
void * get_mut(flecs::entity_t first, flecs::entity_t second) const
Get a mutable pair (untyped).
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 owns() const
Check if entity owns the provided pair.
const T & get() const
Get component value.
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.
Definition impl.hpp:50
bool has_second(flecs::entity_t first) const
Check if entity has the provided pair.
const First * try_get(Second constant) const
Get a pair.
Second * try_get_mut_second(flecs::entity_t first) const
Get the second part for a pair.
flecs::entity lookup(const char *path, bool search_path=false) const
Lookup an entity by name.
Definition impl.hpp:172
const First & get(Second second) const
Get a pair.
void children(Func &&func) const
Iterate children for entity.
const void * try_get(flecs::id_t comp) const
Get component value (untyped).
bool owns(flecs::id_t e) const
Check if entity owns the provided entity.
Second & get_mut_second(flecs::entity_t first) const
Get the second part for a pair.
const First & get(Second constant) const
Get a pair.
flecs::table table() const
Get the entity's table.
Definition impl.hpp:98
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.
A * try_get_mut() const
Get mutable component value.
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.
Definition impl.hpp:68
const First * try_get(Second second) const
Get a pair.
void * get_mut(flecs::id_t comp) const
Get mutable component value (untyped).
A * try_get_mut() const
Get a mutable pair.
void each(const Func &func) const
Iterate (component) ids of an entity.
Definition impl.hpp:112
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.
const A & get() const
Get a pair.
bool has() const
Check if entity has the provided component.
T * try_get_mut() const
Get mutable component value.
bool owns(flecs::id_t first, flecs::id_t second) const
Check if entity owns the provided pair.
void * try_get_mut(flecs::id_t comp) const
Get mutable component value (untyped).
void children(Func &&func) const
Iterate children for entity.
const A & get() const
Get component value.
Enum get_constant() const
Get enum constant for enum relationship.
Definition impl.hpp:30
First & get_mut(Second second) const
Get a mutable pair.
Second * try_get_mut_second() const
Get the second part for a pair.
void * try_get_mut(flecs::entity_t first, flecs::entity_t second) const
Get a mutable pair (untyped).
First * try_get_mut(Second second) const
Get a mutable pair.
entity_t id() const
Get entity id.
flecs::entity target(int32_t index=0) const
Get target for a given pair.
Definition impl.hpp:36
const T * try_get() const
Get component value.
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.
First * try_get_mut(Second constant) const
Get a mutable pair.
bool enabled() const
Test if component is enabled.
const Second * try_get_second() const
Get the second part for a pair.
void children(flecs::entity_t rel, Func &&func) const
Iterate children for entity.
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...
Definition impl.hpp:72
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.
const A * try_get() const
Get component value.
Entity.
Definition entity.hpp:30
Class that wraps around a flecs::id_t.
Definition decl.hpp:27
flecs::entity second() const
Get second element from a pair.
Definition impl.hpp:31
flecs::entity first() const
Get first element from a pair.
Definition impl.hpp:20
Class for iterating over query results.
Definition iter.hpp:68
Type class.
Definition type.hpp:21
The world.
Definition world.hpp:150