![]() |
Flecs v4.0
A fast entity component system (ECS) for C & C++
|
Term builder interface. More...
#include <builder_i.hpp>
Public Member Functions | |
term_builder_i (ecs_term_t *term_ptr) | |
Base & | term (id_t id) |
Base & | src () |
Base & | first () |
Base & | second () |
Base & | src (flecs::entity_t id) |
template<typename T > | |
Base & | src () |
Base & | src (const char *name) |
Base & | first (flecs::entity_t id) |
template<typename T > | |
Base & | first () |
Base & | first (const char *name) |
Base & | second (flecs::entity_t id) |
template<typename T > | |
Base & | second () |
Base & | second (const char *name) |
Base & | up (flecs::entity_t trav=0) |
template<typename Trav > | |
Base & | up () |
Base & | cascade (flecs::entity_t trav=0) |
template<typename Trav > | |
Base & | cascade () |
Base & | desc () |
Base & | parent () |
Base & | trav (flecs::entity_t trav, flecs::flags32_t flags=0) |
Base & | id_flags (id_t flags) |
Set id flags for term. | |
Base & | inout (flecs::inout_kind_t inout) |
Set read/write access of term. | |
Base & | inout_stage (flecs::inout_kind_t inout) |
Set read/write access for stage. | |
Base & | write () |
Short for inout_stage(flecs::Out). | |
Base & | read () |
Short for inout_stage(flecs::In). | |
Base & | read_write () |
Short for inout_stage(flecs::InOut). | |
Base & | in () |
Short for inout(flecs::In) | |
Base & | out () |
Short for inout(flecs::Out) | |
Base & | inout () |
Short for inout(flecs::InOut) | |
Base & | inout_none () |
Short for inout(flecs::In) | |
Base & | oper (flecs::oper_kind_t oper) |
Set operator of term. | |
Base & | and_ () |
Base & | or_ () |
Base & | not_ () |
Base & | optional () |
Base & | and_from () |
Base & | or_from () |
Base & | not_from () |
Base & | filter () |
![]() | |
Base & | self () |
Base & | id (flecs::entity_t id) |
Base & | entity (flecs::entity_t entity) |
Base & | name (const char *name) |
Base & | var (const char *var_name) |
Base & | flags (flecs::flags64_t flags) |
Public Attributes | |
ecs_term_t * | term_ |
![]() | |
ecs_term_ref_t * | term_ref_ |
Protected Member Functions | |
virtual flecs::world_t * | world_v () override=0 |
void | set_term (ecs_term_t *term) |
![]() | |
void | assert_term_ref () |
Term builder interface.
A term is a single element of a query expression.
Definition at line 100 of file builder_i.hpp.
|
inline |
Definition at line 101 of file builder_i.hpp.
|
inline |
Definition at line 103 of file builder_i.hpp.
|
inline |
Definition at line 355 of file builder_i.hpp.
|
inline |
Definition at line 375 of file builder_i.hpp.
|
inline |
Definition at line 251 of file builder_i.hpp.
|
inline |
Definition at line 240 of file builder_i.hpp.
|
inline |
Definition at line 256 of file builder_i.hpp.
|
inline |
Definition at line 390 of file builder_i.hpp.
|
inline |
Definition at line 121 of file builder_i.hpp.
|
inline |
Definition at line 171 of file builder_i.hpp.
|
inline |
Definition at line 178 of file builder_i.hpp.
|
inline |
Definition at line 163 of file builder_i.hpp.
|
inline |
Set id flags for term.
Definition at line 276 of file builder_i.hpp.
|
inline |
Short for inout(flecs::In)
Definition at line 328 of file builder_i.hpp.
|
inline |
Short for inout(flecs::InOut)
Definition at line 338 of file builder_i.hpp.
|
inline |
Set read/write access of term.
Definition at line 283 of file builder_i.hpp.
|
inline |
Short for inout(flecs::In)
Definition at line 343 of file builder_i.hpp.
|
inline |
Set read/write access for stage.
Use this when a system reads or writes components other than the ones provided by the query. This information can be used by schedulers to insert sync/merge points between systems where deferred operations are flushed.
Setting this is optional. If not set, the value of the accessed component may be out of sync for at most one frame.
Definition at line 297 of file builder_i.hpp.
|
inline |
Definition at line 365 of file builder_i.hpp.
|
inline |
Definition at line 385 of file builder_i.hpp.
|
inline |
Set operator of term.
Definition at line 348 of file builder_i.hpp.
|
inline |
Definition at line 370 of file builder_i.hpp.
|
inline |
Definition at line 360 of file builder_i.hpp.
|
inline |
Definition at line 380 of file builder_i.hpp.
|
inline |
Short for inout(flecs::Out)
Definition at line 333 of file builder_i.hpp.
|
inline |
Definition at line 263 of file builder_i.hpp.
|
inline |
Short for inout_stage(flecs::In).
Use when system uses get.
Definition at line 316 of file builder_i.hpp.
|
inline |
Short for inout_stage(flecs::InOut).
Use when system uses ensure.
Definition at line 323 of file builder_i.hpp.
|
inline |
Definition at line 129 of file builder_i.hpp.
|
inline |
Definition at line 198 of file builder_i.hpp.
|
inline |
Definition at line 205 of file builder_i.hpp.
|
inline |
Definition at line 190 of file builder_i.hpp.
|
inlineprotected |
Definition at line 400 of file builder_i.hpp.
|
inline |
Definition at line 112 of file builder_i.hpp.
Definition at line 144 of file builder_i.hpp.
|
inline |
Definition at line 151 of file builder_i.hpp.
|
inline |
Definition at line 136 of file builder_i.hpp.
|
inline |
Definition at line 107 of file builder_i.hpp.
|
inline |
Definition at line 268 of file builder_i.hpp.
|
inline |
Definition at line 234 of file builder_i.hpp.
|
inline |
Definition at line 219 of file builder_i.hpp.
|
overrideprotectedpure virtual |
Implements flecs::term_ref_builder_i< Base >.
|
inline |
Short for inout_stage(flecs::Out).
Use when system uses add, remove or set.
Definition at line 309 of file builder_i.hpp.
ecs_term_t* flecs::term_builder_i< Base >::term_ |
Definition at line 395 of file builder_i.hpp.