Flecs v4.1
A fast entity component system (ECS) for C & C++
Loading...
Searching...
No Matches
system.h
Go to the documentation of this file.
1
10#ifdef FLECS_SYSTEM
11
20#ifndef FLECS_MODULE
21#define FLECS_MODULE
22#endif
23
24#ifndef FLECS_SYSTEM_H
25#define FLECS_SYSTEM_H
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
36
103
110FLECS_API
112 ecs_world_t *world,
113 const ecs_system_desc_t *desc);
114
176
185FLECS_API
187 const ecs_world_t *world,
188 ecs_entity_t system);
189
199FLECS_API
201 ecs_world_t *world,
202 ecs_entity_t system,
203 uint64_t group_id);
204
205#ifndef FLECS_LEGACY
206
208#define ECS_SYSTEM_DECLARE(id) ecs_entity_t ecs_id(id)
209
218#define ECS_SYSTEM_DEFINE(world, id_, phase_, ...) \
219 { \
220 ecs_system_desc_t desc = {0}; \
221 ecs_entity_desc_t edesc = {0}; \
222 edesc.id = ecs_id(id_);\
223 edesc.name = #id_;\
224 desc.entity = ecs_entity_init(world, &edesc);\
225 desc.query.expr = #__VA_ARGS__; \
226 desc.phase = phase_; \
227 desc.callback = id_; \
228 ecs_id(id_) = ecs_system_init(world, &desc); \
229 } \
230 ecs_assert(ecs_id(id_) != 0, ECS_INVALID_PARAMETER, "failed to create system %s", #id_)
231
240#define ECS_SYSTEM(world, id, phase, ...) \
241 ecs_entity_t ecs_id(id) = 0; ECS_SYSTEM_DEFINE(world, id, phase, __VA_ARGS__);\
242 ecs_entity_t id = ecs_id(id);\
243 (void)ecs_id(id);\
244 (void)id
245
264#define ecs_system(world, ...)\
265 ecs_system_init(world, &(ecs_system_desc_t) __VA_ARGS__ )
266
267#endif
268
296FLECS_API
298 ecs_world_t *world,
299 ecs_entity_t system,
300 ecs_ftime_t delta_time,
301 void *param);
302
313FLECS_API
315 ecs_world_t *world,
316 ecs_entity_t system,
317 int32_t stage_current,
318 int32_t stage_count,
319 ecs_ftime_t delta_time,
320 void *param);
321
330FLECS_API
332 ecs_world_t *world);
333
334#ifdef __cplusplus
335}
336#endif
337
338#endif
339
342#endif
struct EcsTickSource EcsTickSource
Component used to provide a tick source to systems.
FLECS_API const ecs_system_t * ecs_system_get(const ecs_world_t *world, ecs_entity_t system)
Get a system object.
FLECS_API void FlecsSystemImport(ecs_world_t *world)
System module import function.
struct ecs_system_desc_t ecs_system_desc_t
Use with ecs_system_init() to create or update a system.
FLECS_API ecs_entity_t ecs_run(ecs_world_t *world, ecs_entity_t system, ecs_ftime_t delta_time, void *param)
Run a specific system manually.
FLECS_API ecs_entity_t ecs_system_init(ecs_world_t *world, const ecs_system_desc_t *desc)
Create a system.
FLECS_API void ecs_system_set_group(ecs_world_t *world, ecs_entity_t system, uint64_t group_id)
Set query group for system.
struct ecs_system_t ecs_system_t
System type, get with ecs_system_get().
FLECS_API ecs_entity_t ecs_run_worker(ecs_world_t *world, ecs_entity_t system, int32_t stage_current, int32_t stage_count, ecs_ftime_t delta_time, void *param)
Same as ecs_run(), but subdivides entities across a number of provided stages.
ecs_id_t ecs_entity_t
An entity identifier.
Definition flecs.h:381
struct ecs_world_t ecs_world_t
A world is the container for all ECS data and supporting features.
Definition flecs.h:425
void(* ecs_iter_action_t)(ecs_iter_t *it)
Function prototype for iterables.
Definition flecs.h:577
void(* flecs_poly_dtor_t)(ecs_poly_t *poly)
Destructor function for poly objects.
Definition flecs.h:691
void(* ecs_run_action_t)(ecs_iter_t *it)
Function prototype for runnables (systems, observers).
Definition flecs.h:568
void(* ecs_ctx_free_t)(void *ctx)
Function to clean up context data.
Definition flecs.h:646
#define ecs_ftime_t
Customizable precision for scalar time values.
Definition flecs.h:59
Component used to provide a tick source to systems.
Definition system.h:32
ecs_ftime_t time_elapsed
Time elapsed since the last tick.
Definition system.h:34
bool tick
True if providing a tick.
Definition system.h:33
Header for ecs_poly_t objects.
Definition flecs.h:520
Used with ecs_query_init().
Definition flecs.h:1275
Queries are lists of constraints (terms) that match entities.
Definition flecs.h:834
Use with ecs_system_init() to create or update a system.
Definition system.h:38
int32_t rate
Rate at which the system should run.
Definition system.h:91
void * ctx
Context to be passed to callback (as ecs_iter_t::param).
Definition system.h:70
ecs_ctx_free_t run_ctx_free
Callback to free run ctx.
Definition system.h:85
ecs_ctx_free_t ctx_free
Callback to free ctx.
Definition system.h:73
ecs_entity_t phase
Optional pipeline phase for the system to run in.
Definition system.h:49
bool multi_threaded
If true, the system will be run on multiple threads.
Definition system.h:97
bool immediate
If true, the system will have access to the actual world.
Definition system.h:101
void * callback_ctx
Context associated with callback (for language bindings).
Definition system.h:76
void * run_ctx
Context associated with run (for language bindings).
Definition system.h:82
ecs_ftime_t interval
Interval in seconds at which the system should run.
Definition system.h:88
int32_t _canary
Used for validity testing.
Definition system.h:39
ecs_iter_action_t callback
Callback that is run for each result returned by the system's query.
Definition system.h:54
ecs_entity_t entity
Existing entity to associate with the system (optional).
Definition system.h:42
ecs_query_desc_t query
System query parameters.
Definition system.h:45
ecs_ctx_free_t callback_ctx_free
Callback to free callback ctx.
Definition system.h:79
ecs_run_action_t run
Callback that is invoked when a system is run.
Definition system.h:67
ecs_entity_t tick_source
External tick source that determines when the system ticks.
Definition system.h:94
System type, get with ecs_system_get().
Definition system.h:116
ecs_iter_action_t action
See ecs_system_desc_t.
Definition system.h:123
ecs_query_t * query
System query.
Definition system.h:126
bool group_id_set
True if a query group is configured.
Definition system.h:132
ecs_header_t hdr
Object header.
Definition system.h:117
ecs_ctx_free_t ctx_free
Callback to free ctx.
Definition system.h:156
void * run_ctx
Run language binding context.
Definition system.h:153
ecs_run_action_t run
See ecs_system_desc_t.
Definition system.h:120
ecs_ftime_t time_passed
Time passed since the last invocation.
Definition system.h:168
int64_t last_frame
Last frame for which the system was considered.
Definition system.h:171
ecs_ftime_t time_spent
Time spent on running the system.
Definition system.h:165
const char * name
Cached system name (for perf tracing).
Definition system.h:144
ecs_ctx_free_t run_ctx_free
Callback to free run ctx.
Definition system.h:162
bool immediate
Whether the system is run in immediate mode.
Definition system.h:141
bool multi_threaded
Whether the system is multithreaded.
Definition system.h:138
void * ctx
Userdata for the system.
Definition system.h:147
ecs_ctx_free_t callback_ctx_free
Callback to free callback ctx.
Definition system.h:159
uint64_t group_id
Query group to iterate.
Definition system.h:129
ecs_entity_t tick_source
Tick source associated with the system.
Definition system.h:135
flecs_poly_dtor_t dtor
Mixin destructor.
Definition system.h:174
void * callback_ctx
Callback language binding context.
Definition system.h:150