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
113FLECS_API
115 ecs_world_t *world,
116 const ecs_system_desc_t *desc);
117
132FLECS_API
134 ecs_world_t *world,
135 ecs_entity_t system,
136 const ecs_system_desc_t *desc);
137
199
208FLECS_API
210 const ecs_world_t *world,
211 ecs_entity_t system);
212
222FLECS_API
224 ecs_world_t *world,
225 ecs_entity_t system,
226 uint64_t group_id);
227
228#ifndef FLECS_LEGACY
229
231#define ECS_SYSTEM_DECLARE(id) ecs_entity_t ecs_id(id)
232
241#define ECS_SYSTEM_DEFINE(world, id_, phase_, ...) \
242 { \
243 ecs_system_desc_t desc = {0}; \
244 ecs_entity_desc_t edesc = {0}; \
245 edesc.id = ecs_id(id_);\
246 edesc.name = #id_;\
247 desc.entity = ecs_entity_init(world, &edesc);\
248 desc.query.expr = #__VA_ARGS__; \
249 desc.phase = phase_; \
250 desc.callback = id_; \
251 ecs_id(id_) = ecs_system_init(world, &desc); \
252 } \
253 ecs_assert(ecs_id(id_) != 0, ECS_INVALID_PARAMETER, "failed to create system %s", #id_)
254
263#define ECS_SYSTEM(world, id, phase, ...) \
264 ecs_entity_t ecs_id(id) = 0; ECS_SYSTEM_DEFINE(world, id, phase, __VA_ARGS__);\
265 ecs_entity_t id = ecs_id(id);\
266 (void)ecs_id(id);\
267 (void)id
268
287#define ecs_system(world, ...)\
288 ecs_system_init(world, &(ecs_system_desc_t) __VA_ARGS__ )
289
290#endif
291
319FLECS_API
321 ecs_world_t *world,
322 ecs_entity_t system,
323 ecs_ftime_t delta_time,
324 void *param);
325
336FLECS_API
338 ecs_world_t *world,
339 ecs_entity_t system,
340 int32_t stage_current,
341 int32_t stage_count,
342 ecs_ftime_t delta_time,
343 void *param);
344
353FLECS_API
355 ecs_world_t *world);
356
357#ifdef __cplusplus
358}
359#endif
360
361#endif
362
365#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() and ecs_system_update().
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_system_update(ecs_world_t *world, ecs_entity_t system, const ecs_system_desc_t *desc)
Update an existing system.
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:385
struct ecs_world_t ecs_world_t
A world is the container for all ECS data and supporting features.
Definition flecs.h:429
void(* ecs_iter_action_t)(ecs_iter_t *it)
Function prototype for iterables.
Definition flecs.h:581
void(* flecs_poly_dtor_t)(ecs_poly_t *poly)
Destructor function for poly objects.
Definition flecs.h:695
void(* ecs_run_action_t)(ecs_iter_t *it)
Function prototype for runnables (systems, observers).
Definition flecs.h:572
void(* ecs_ctx_free_t)(void *ctx)
Function to clean up context data.
Definition flecs.h:650
#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:524
Used with ecs_query_init().
Definition flecs.h:1300
Queries are lists of constraints (terms) that match entities.
Definition flecs.h:838
Use with ecs_system_init() and ecs_system_update().
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:139
ecs_iter_action_t action
See ecs_system_desc_t.
Definition system.h:146
ecs_query_t * query
System query.
Definition system.h:149
bool group_id_set
True if a query group is configured.
Definition system.h:155
ecs_header_t hdr
Object header.
Definition system.h:140
ecs_ctx_free_t ctx_free
Callback to free ctx.
Definition system.h:179
void * run_ctx
Run language binding context.
Definition system.h:176
ecs_run_action_t run
See ecs_system_desc_t.
Definition system.h:143
ecs_ftime_t time_passed
Time passed since the last invocation.
Definition system.h:191
int64_t last_frame
Last frame for which the system was considered.
Definition system.h:194
ecs_ftime_t time_spent
Time spent on running the system.
Definition system.h:188
const char * name
Cached system name (for perf tracing).
Definition system.h:167
ecs_ctx_free_t run_ctx_free
Callback to free run ctx.
Definition system.h:185
bool immediate
Whether the system is run in immediate mode.
Definition system.h:164
bool multi_threaded
Whether the system is multithreaded.
Definition system.h:161
void * ctx
Userdata for the system.
Definition system.h:170
ecs_ctx_free_t callback_ctx_free
Callback to free callback ctx.
Definition system.h:182
uint64_t group_id
Query group to iterate.
Definition system.h:152
ecs_entity_t tick_source
Tick source associated with the system.
Definition system.h:158
flecs_poly_dtor_t dtor
Mixin destructor.
Definition system.h:197
void * callback_ctx
Callback language binding context.
Definition system.h:173