Flecs v4.0
A fast entity component system (ECS) for C & C++
Loading...
Searching...
No Matches
flecs.h
Go to the documentation of this file.
1
7
8#ifndef FLECS_H
9#define FLECS_H
10
17
25
32
33/* Flecs version macros */
34#define FLECS_VERSION_MAJOR 4
35#define FLECS_VERSION_MINOR 0
36#define FLECS_VERSION_PATCH 4
37
39#define FLECS_VERSION FLECS_VERSION_IMPL(\
40 FLECS_VERSION_MAJOR, FLECS_VERSION_MINOR, FLECS_VERSION_PATCH)
41
45#ifdef FLECS_CONFIG_HEADER
46#include "flecs_config.h"
47#endif
48
51#ifndef ecs_float_t
52#define ecs_float_t float
53#endif
54
58#ifndef ecs_ftime_t
59#define ecs_ftime_t ecs_float_t
60#endif
61
65// #define FLECS_LEGACY
66
72// #define FLECS_ACCURATE_COUNTERS
73
79// #define FLECS_DISABLE_COUNTERS
80
81/* Make sure provided configuration is valid */
82#if defined(FLECS_DEBUG) && defined(FLECS_NDEBUG)
83#error "invalid configuration: cannot both define FLECS_DEBUG and FLECS_NDEBUG"
84#endif
85#if defined(FLECS_DEBUG) && defined(NDEBUG)
86#error "invalid configuration: cannot both define FLECS_DEBUG and NDEBUG"
87#endif
88
93#if !defined(FLECS_DEBUG) && !defined(FLECS_NDEBUG)
94#if defined(NDEBUG)
95#define FLECS_NDEBUG
96#else
97#define FLECS_DEBUG
98#endif
99#endif
100
105#ifdef FLECS_SANITIZE
106#ifndef FLECS_DEBUG
107#define FLECS_DEBUG /* If sanitized mode is enabled, so is debug mode */
108#endif
109#endif
110
111/* Tip: if you see weird behavior that you think might be a bug, make sure to
112 * test with the FLECS_DEBUG or FLECS_SANITIZE flags enabled. There's a good
113 * chance that this gives you more information about the issue! */
114
128// #define FLECS_SOFT_ASSERT
129
135// #define FLECS_KEEP_ASSERT
136
145// #define FLECS_CPP_NO_AUTO_REGISTRATION
146
174// #define FLECS_CUSTOM_BUILD
175
176#ifndef FLECS_CUSTOM_BUILD
177#define FLECS_ALERTS
178#define FLECS_APP
179// #define FLECS_C /**< C API convenience macros, always enabled */
180#define FLECS_CPP
181#define FLECS_DOC
182// #define FLECS_JOURNAL /**< Journaling addon (disabled by default) */
183#define FLECS_JSON
184#define FLECS_HTTP
185#define FLECS_LOG
186#define FLECS_META
187#define FLECS_METRICS
188#define FLECS_MODULE
189#define FLECS_OS_API_IMPL
190// #define FLECS_PERF_TRACE /**< Enable performance tracing (disabled by default) */
191#define FLECS_PIPELINE
192#define FLECS_REST
193#define FLECS_SCRIPT
194// #define FLECS_SCRIPT_MATH /**< Math functions for flecs script (may require linking with libm) */
195#define FLECS_SYSTEM
196#define FLECS_STATS
197#define FLECS_TIMER
198#define FLECS_UNITS
199#endif // ifndef FLECS_CUSTOM_BUILD
200
204// #define FLECS_LOW_FOOTPRINT
205#ifdef FLECS_LOW_FOOTPRINT
206#define FLECS_HI_COMPONENT_ID (16)
207#define FLECS_HI_ID_RECORD_ID (16)
208#define FLECS_SPARSE_PAGE_BITS (4)
209#define FLECS_ENTITY_PAGE_BITS (6)
210#define FLECS_USE_OS_ALLOC
211#endif
212
223#ifndef FLECS_HI_COMPONENT_ID
224#define FLECS_HI_COMPONENT_ID (256)
225#endif
226
233#ifndef FLECS_HI_ID_RECORD_ID
234#define FLECS_HI_ID_RECORD_ID (1024)
235#endif
236
242#ifndef FLECS_SPARSE_PAGE_BITS
243#define FLECS_SPARSE_PAGE_BITS (6)
244#endif
245
248#ifndef FLECS_ENTITY_PAGE_BITS
249#define FLECS_ENTITY_PAGE_BITS (12)
250#endif
251
256// #define FLECS_USE_OS_ALLOC
257
260#ifndef FLECS_ID_DESC_MAX
261#define FLECS_ID_DESC_MAX (32)
262#endif
263
266#ifndef FLECS_EVENT_DESC_MAX
267#define FLECS_EVENT_DESC_MAX (8)
268#endif
269
272#define FLECS_VARIABLE_COUNT_MAX (64)
273
276#ifndef FLECS_TERM_COUNT_MAX
277#define FLECS_TERM_COUNT_MAX 32
278#endif
279
282#ifndef FLECS_TERM_ARG_COUNT_MAX
283#define FLECS_TERM_ARG_COUNT_MAX (16)
284#endif
285
288#ifndef FLECS_QUERY_VARIABLE_COUNT_MAX
289#define FLECS_QUERY_VARIABLE_COUNT_MAX (64)
290#endif
291
294#ifndef FLECS_QUERY_SCOPE_NESTING_MAX
295#define FLECS_QUERY_SCOPE_NESTING_MAX (8)
296#endif
297
302#ifndef FLECS_DAG_DEPTH_MAX
303#define FLECS_DAG_DEPTH_MAX (128)
304#endif
305
307
308#include "flecs/private/api_defines.h"
309#include "flecs/datastructures/vec.h" /* Vector datatype */
310#include "flecs/datastructures/sparse.h" /* Sparse set */
311#include "flecs/datastructures/block_allocator.h" /* Block allocator */
312#include "flecs/datastructures/stack_allocator.h" /* Stack allocator */
313#include "flecs/datastructures/map.h" /* Map */
314#include "flecs/datastructures/switch_list.h" /* Switch list */
315#include "flecs/datastructures/allocator.h" /* Allocator */
316#include "flecs/datastructures/strbuf.h" /* String builder */
317#include "flecs/os_api.h" /* Abstraction for operating system functions */
318
319#ifdef __cplusplus
320extern "C" {
321#endif
322
329
336
339typedef uint64_t ecs_id_t;
340
347
363typedef struct {
365 int32_t count;
366} ecs_type_t;
367
391
394
397
399typedef struct ecs_term_t ecs_term_t;
400
403
422
427
432typedef struct ecs_iter_t ecs_iter_t;
433
442typedef struct ecs_ref_t ecs_ref_t;
443
448
453
456
459
479typedef void ecs_poly_t;
480
483
491
499
506
517
519
526
536typedef void (*ecs_run_action_t)(
537 ecs_iter_t *it);
538
545typedef void (*ecs_iter_action_t)(
546 ecs_iter_t *it);
547
556 ecs_iter_t *it);
557
564 ecs_iter_t *it);
565
568 ecs_entity_t e1,
569 const void *ptr1,
570 ecs_entity_t e2,
571 const void *ptr2);
572
575 ecs_world_t* world,
576 ecs_table_t* table,
577 ecs_entity_t* entities,
578 void* ptr,
579 int32_t size,
580 int32_t lo,
581 int32_t hi,
582 ecs_order_by_action_t order_by);
583
585typedef uint64_t (*ecs_group_by_action_t)(
586 ecs_world_t *world,
587 ecs_table_t *table,
588 ecs_id_t group_id,
589 void *ctx);
590
592typedef void* (*ecs_group_create_action_t)(
593 ecs_world_t *world,
594 uint64_t group_id,
595 void *group_by_ctx); /* from ecs_query_desc_t */
596
599 ecs_world_t *world,
600 uint64_t group_id,
601 void *group_ctx, /* return value from ecs_group_create_action_t */
602 void *group_by_ctx); /* from ecs_query_desc_t */
603
605typedef void (*ecs_module_action_t)(
606 ecs_world_t *world);
607
609typedef void (*ecs_fini_action_t)(
610 ecs_world_t *world,
611 void *ctx);
612
614typedef void (*ecs_ctx_free_t)(
615 void *ctx);
616
618typedef int (*ecs_compare_action_t)(
619 const void *ptr1,
620 const void *ptr2);
621
623typedef uint64_t (*ecs_hash_value_action_t)(
624 const void *ptr);
625
627typedef void (*ecs_xtor_t)(
628 void *ptr,
629 int32_t count,
630 const ecs_type_info_t *type_info);
631
633typedef void (*ecs_copy_t)(
634 void *dst_ptr,
635 const void *src_ptr,
636 int32_t count,
637 const ecs_type_info_t *type_info);
638
640typedef void (*ecs_move_t)(
641 void *dst_ptr,
642 void *src_ptr,
643 int32_t count,
644 const ecs_type_info_t *type_info);
645
647typedef void (*flecs_poly_dtor_t)(
648 ecs_poly_t *poly);
649
651
658
668
679
687
688/* Term id flags */
689
694#define EcsSelf (1llu << 63)
695
700#define EcsUp (1llu << 62)
701
706#define EcsTrav (1llu << 61)
707
712#define EcsCascade (1llu << 60)
713
718#define EcsDesc (1llu << 59)
719
724#define EcsIsVariable (1llu << 58)
725
730#define EcsIsEntity (1llu << 57)
731
736#define EcsIsName (1llu << 56)
737
742#define EcsTraverseFlags (EcsSelf|EcsUp|EcsTrav|EcsCascade|EcsDesc)
743
748#define EcsTermRefFlags (EcsTraverseFlags|EcsIsVariable|EcsIsEntity|EcsIsName)
749
751typedef struct ecs_term_ref_t {
757
758 const char *name;
764
786
792
796
797 ecs_flags32_t flags;
798 int8_t var_count;
799 int8_t term_count;
800 int8_t field_count;
801
802 /* Bitmasks for quick field information lookups */
803 ecs_termset_t fixed_fields;
804 ecs_termset_t var_fields;
805 ecs_termset_t static_id_fields;
806 ecs_termset_t data_fields;
807 ecs_termset_t write_fields;
808 ecs_termset_t read_fields;
809 ecs_termset_t row_fields;
811 ecs_termset_t set_fields;
812
814
815 char **vars;
816
817 void *ctx;
819
823
824 int32_t eval_count;
825};
826
855
857
862
863/* Flags that can be used to check which hooks a type has set */
864#define ECS_TYPE_HOOK_CTOR (1 << 0)
865#define ECS_TYPE_HOOK_DTOR (1 << 1)
866#define ECS_TYPE_HOOK_COPY (1 << 2)
867#define ECS_TYPE_HOOK_MOVE (1 << 3)
868#define ECS_TYPE_HOOK_COPY_CTOR (1 << 4)
869#define ECS_TYPE_HOOK_MOVE_CTOR (1 << 5)
870#define ECS_TYPE_HOOK_CTOR_MOVE_DTOR (1 << 6)
871#define ECS_TYPE_HOOK_MOVE_DTOR (1 << 7)
872
873/* Flags that can be used to set/check which hooks of a type are invalid */
874#define ECS_TYPE_HOOK_CTOR_ILLEGAL (1 << 8)
875#define ECS_TYPE_HOOK_DTOR_ILLEGAL (1 << 9)
876#define ECS_TYPE_HOOK_COPY_ILLEGAL (1 << 10)
877#define ECS_TYPE_HOOK_MOVE_ILLEGAL (1 << 11)
878#define ECS_TYPE_HOOK_COPY_CTOR_ILLEGAL (1 << 12)
879#define ECS_TYPE_HOOK_MOVE_CTOR_ILLEGAL (1 << 13)
880#define ECS_TYPE_HOOK_CTOR_MOVE_DTOR_ILLEGAL (1 << 14)
881#define ECS_TYPE_HOOK_MOVE_DTOR_ILLEGAL (1 << 15)
882
883/* All valid hook flags */
884#define ECS_TYPE_HOOKS (ECS_TYPE_HOOK_CTOR|ECS_TYPE_HOOK_DTOR|\
885 ECS_TYPE_HOOK_COPY|ECS_TYPE_HOOK_MOVE|ECS_TYPE_HOOK_COPY_CTOR|\
886 ECS_TYPE_HOOK_MOVE_CTOR|ECS_TYPE_HOOK_CTOR_MOVE_DTOR|\
887 ECS_TYPE_HOOK_MOVE_DTOR)
888
889/* All invalid hook flags */
890#define ECS_TYPE_HOOKS_ILLEGAL (ECS_TYPE_HOOK_CTOR_ILLEGAL|\
891 ECS_TYPE_HOOK_DTOR_ILLEGAL|ECS_TYPE_HOOK_COPY_ILLEGAL|\
892 ECS_TYPE_HOOK_MOVE_ILLEGAL|ECS_TYPE_HOOK_COPY_CTOR_ILLEGAL|\
893 ECS_TYPE_HOOK_MOVE_CTOR_ILLEGAL|ECS_TYPE_HOOK_CTOR_MOVE_DTOR_ILLEGAL|\
894 ECS_TYPE_HOOK_MOVE_DTOR_ILLEGAL)
895
948
960
961#include "flecs/private/api_types.h" /* Supporting API types */
962#include "flecs/private/api_support.h" /* Supporting API functions */
963#include "flecs/datastructures/hashmap.h" /* Hashmap */
964
970
975typedef struct ecs_entity_desc_t {
976 int32_t _canary;
977
979
981
982 const char *name;
986
987 const char *sep;
990
991 const char *root_sep;
992
993 const char *symbol;
1002
1006
1009
1012
1014 const char *add_expr;
1016
1046
1060
1100 /* World */
1103
1104 /* Matched data */
1106 const ecs_size_t *sizes;
1110 ecs_var_t *variables;
1113 ecs_flags64_t constrained_vars;
1114 uint64_t group_id;
1115 ecs_termset_t set_fields;
1116 ecs_termset_t ref_fields;
1117 ecs_termset_t row_fields;
1118 ecs_termset_t up_fields;
1119
1120 /* Input information */
1124 int32_t event_cur;
1125
1126 /* Query information */
1128 int8_t term_index;
1134
1135 /* Context */
1136 void *param;
1137 void *ctx;
1140 void *run_ctx;
1141
1142 /* Time */
1145
1146 /* Iterator counters */
1148 int32_t offset;
1149 int32_t count;
1150
1151 /* Misc */
1152 ecs_flags32_t flags;
1154 ecs_iter_private_t priv_;
1155
1156 /* Chained iterators */
1161};
1162
1163
1168#define EcsQueryMatchPrefab (1u << 1u)
1169
1174#define EcsQueryMatchDisabled (1u << 2u)
1175
1180#define EcsQueryMatchEmptyTables (1u << 3u)
1181
1186#define EcsQueryAllowUnresolvedByName (1u << 6u)
1187
1192#define EcsQueryTableOnly (1u << 7u)
1193
1194
1268
1330
1335typedef struct ecs_event_desc_t {
1338
1343
1346
1350
1352 int32_t offset;
1353
1357 int32_t count;
1358
1361
1366 void *param;
1367
1371 const void *const_param;
1372
1375
1377 ecs_flags32_t flags;
1379
1380
1387
1389typedef struct ecs_build_info_t {
1390 const char *compiler;
1391 const char **addons;
1392 const char *version;
1396 bool debug;
1400
1459
1466
1468
1475
1477typedef struct EcsIdentifier {
1478 char *value;
1479 ecs_size_t length;
1480 uint64_t hash;
1481 uint64_t index_hash;
1482 ecs_hashmap_t *index;
1484
1486typedef struct EcsComponent {
1487 ecs_size_t size;
1488 ecs_size_t alignment;
1490
1495
1504
1507
1508/* Only include deprecated definitions if deprecated addon is required */
1509#ifdef FLECS_DEPRECATED
1511#endif
1512
1519
1526
1528FLECS_API extern const ecs_id_t ECS_PAIR;
1529
1531FLECS_API extern const ecs_id_t ECS_AUTO_OVERRIDE;
1532
1534FLECS_API extern const ecs_id_t ECS_TOGGLE;
1535
1537
1542
1543/* Builtin component ids */
1544
1546FLECS_API extern const ecs_entity_t ecs_id(EcsComponent);
1547
1549FLECS_API extern const ecs_entity_t ecs_id(EcsIdentifier);
1550
1552FLECS_API extern const ecs_entity_t ecs_id(EcsPoly);
1553
1555FLECS_API extern const ecs_entity_t ecs_id(EcsDefaultChildComponent);
1556
1558FLECS_API extern const ecs_entity_t EcsQuery;
1559
1561FLECS_API extern const ecs_entity_t EcsObserver;
1562
1564FLECS_API extern const ecs_entity_t EcsSystem;
1565
1567FLECS_API extern const ecs_entity_t ecs_id(EcsTickSource);
1568
1570FLECS_API extern const ecs_entity_t ecs_id(EcsPipelineQuery);
1571
1573FLECS_API extern const ecs_entity_t ecs_id(EcsTimer);
1574
1576FLECS_API extern const ecs_entity_t ecs_id(EcsRateFilter);
1577
1579FLECS_API extern const ecs_entity_t EcsFlecs;
1580
1582FLECS_API extern const ecs_entity_t EcsFlecsCore;
1583
1585FLECS_API extern const ecs_entity_t EcsWorld;
1586
1588FLECS_API extern const ecs_entity_t EcsWildcard;
1589
1591FLECS_API extern const ecs_entity_t EcsAny;
1592
1594FLECS_API extern const ecs_entity_t EcsThis;
1595
1597FLECS_API extern const ecs_entity_t EcsVariable;
1598
1600#define EcsSingleton EcsVariable
1601
1609FLECS_API extern const ecs_entity_t EcsTransitive;
1610
1618FLECS_API extern const ecs_entity_t EcsReflexive;
1619
1630FLECS_API extern const ecs_entity_t EcsFinal;
1631
1633FLECS_API extern const ecs_entity_t EcsOnInstantiate;
1634
1638FLECS_API extern const ecs_entity_t EcsOverride;
1639
1643FLECS_API extern const ecs_entity_t EcsInherit;
1644
1649FLECS_API extern const ecs_entity_t EcsDontInherit;
1650
1658FLECS_API extern const ecs_entity_t EcsSymmetric;
1659
1669FLECS_API extern const ecs_entity_t EcsExclusive;
1670
1672FLECS_API extern const ecs_entity_t EcsAcyclic;
1673
1676FLECS_API extern const ecs_entity_t EcsTraversable;
1677
1687FLECS_API extern const ecs_entity_t EcsWith;
1688
1698FLECS_API extern const ecs_entity_t EcsOneOf;
1699
1701FLECS_API extern const ecs_entity_t EcsCanToggle;
1702
1706FLECS_API extern const ecs_entity_t EcsTrait;
1707
1717FLECS_API extern const ecs_entity_t EcsRelationship;
1718
1728FLECS_API extern const ecs_entity_t EcsTarget;
1729
1732FLECS_API extern const ecs_entity_t EcsPairIsTag;
1733
1735FLECS_API extern const ecs_entity_t EcsName;
1736
1738FLECS_API extern const ecs_entity_t EcsSymbol;
1739
1741FLECS_API extern const ecs_entity_t EcsAlias;
1742
1744FLECS_API extern const ecs_entity_t EcsChildOf;
1745
1747FLECS_API extern const ecs_entity_t EcsIsA;
1748
1750FLECS_API extern const ecs_entity_t EcsDependsOn;
1751
1753FLECS_API extern const ecs_entity_t EcsSlotOf;
1754
1756FLECS_API extern const ecs_entity_t EcsModule;
1757
1759FLECS_API extern const ecs_entity_t EcsPrivate;
1760
1763FLECS_API extern const ecs_entity_t EcsPrefab;
1764
1767FLECS_API extern const ecs_entity_t EcsDisabled;
1768
1772FLECS_API extern const ecs_entity_t EcsNotQueryable;
1773
1775FLECS_API extern const ecs_entity_t EcsOnAdd;
1776
1778FLECS_API extern const ecs_entity_t EcsOnRemove;
1779
1781FLECS_API extern const ecs_entity_t EcsOnSet;
1782
1784FLECS_API extern const ecs_entity_t EcsMonitor;
1785
1787FLECS_API extern const ecs_entity_t EcsOnTableCreate;
1788
1790FLECS_API extern const ecs_entity_t EcsOnTableDelete;
1791
1793FLECS_API extern const ecs_entity_t EcsOnDelete;
1794
1797FLECS_API extern const ecs_entity_t EcsOnDeleteTarget;
1798
1801FLECS_API extern const ecs_entity_t EcsRemove;
1802
1805FLECS_API extern const ecs_entity_t EcsDelete;
1806
1809FLECS_API extern const ecs_entity_t EcsPanic;
1810
1812FLECS_API extern const ecs_entity_t EcsSparse;
1813
1815FLECS_API extern const ecs_entity_t EcsUnion;
1816
1818FLECS_API extern const ecs_entity_t EcsPredEq;
1819
1821FLECS_API extern const ecs_entity_t EcsPredMatch;
1822
1824FLECS_API extern const ecs_entity_t EcsPredLookup;
1825
1827FLECS_API extern const ecs_entity_t EcsScopeOpen;
1828
1830FLECS_API extern const ecs_entity_t EcsScopeClose;
1831
1836FLECS_API extern const ecs_entity_t EcsEmpty;
1837
1838FLECS_API extern const ecs_entity_t ecs_id(EcsPipeline);
1839FLECS_API extern const ecs_entity_t EcsOnStart;
1840FLECS_API extern const ecs_entity_t EcsPreFrame;
1841FLECS_API extern const ecs_entity_t EcsOnLoad;
1842FLECS_API extern const ecs_entity_t EcsPostLoad;
1843FLECS_API extern const ecs_entity_t EcsPreUpdate;
1844FLECS_API extern const ecs_entity_t EcsOnUpdate;
1845FLECS_API extern const ecs_entity_t EcsOnValidate;
1846FLECS_API extern const ecs_entity_t EcsPostUpdate;
1847FLECS_API extern const ecs_entity_t EcsPreStore;
1848FLECS_API extern const ecs_entity_t EcsOnStore;
1849FLECS_API extern const ecs_entity_t EcsPostFrame;
1850FLECS_API extern const ecs_entity_t EcsPhase;
1851
1854#define EcsLastInternalComponentId (ecs_id(EcsPoly))
1855
1858#define EcsFirstUserComponentId (8)
1859
1862#define EcsFirstUserEntityId (FLECS_HI_COMPONENT_ID + 128)
1863
1864/* When visualized the reserved id ranges look like this:
1865 * - [1..8]: Builtin components
1866 * - [9..FLECS_HI_COMPONENT_ID]: Low ids reserved for application components
1867 * - [FLECS_HI_COMPONENT_ID + 1..EcsFirstUserEntityId]: Builtin entities
1868 */
1869
1872
1879
1884
1891FLECS_API
1893
1900FLECS_API
1902
1910FLECS_API
1912 int argc,
1913 char *argv[]);
1914
1921FLECS_API
1923 ecs_world_t *world);
1924
1932FLECS_API
1934 const ecs_world_t *world);
1935
1943FLECS_API
1945 ecs_world_t *world,
1946 ecs_fini_action_t action,
1947 void *ctx);
1948
1955
1982FLECS_API
1984 const ecs_world_t *world);
1985
1993FLECS_API
1995 const ecs_world_t *world);
1996
1998
2003
2022FLECS_API
2024 ecs_world_t *world,
2025 ecs_ftime_t delta_time);
2026
2033FLECS_API
2035 ecs_world_t *world);
2036
2044FLECS_API
2046 ecs_world_t *world,
2047 ecs_fini_action_t action,
2048 void *ctx);
2049
2056FLECS_API
2058 ecs_world_t *world);
2059
2066FLECS_API
2068 const ecs_world_t *world);
2069
2082 ecs_world_t *world,
2083 bool enable);
2084
2096 ecs_world_t *world,
2097 bool enable);
2098
2114FLECS_API
2116 ecs_world_t *world,
2117 ecs_ftime_t fps);
2118
2132FLECS_API
2134 ecs_world_t *world,
2135 ecs_flags32_t flags);
2136
2138
2143
2213FLECS_API
2215 ecs_world_t *world,
2216 bool multi_threaded);
2217
2225FLECS_API
2227 ecs_world_t *world);
2228
2239FLECS_API
2241 ecs_world_t *world);
2242
2258FLECS_API
2260 ecs_world_t *world);
2261
2272FLECS_API
2274 const ecs_world_t *world);
2275
2289FLECS_API
2291 ecs_world_t *world);
2292
2307FLECS_API
2309 ecs_world_t *world);
2310
2321FLECS_API
2323 ecs_world_t *world);
2324
2338FLECS_API
2340 ecs_world_t *world,
2341 int32_t stages);
2342
2349FLECS_API
2351 const ecs_world_t *world);
2352
2368FLECS_API
2370 const ecs_world_t *world,
2371 int32_t stage_id);
2372
2380FLECS_API
2382 const ecs_world_t *world);
2383
2391FLECS_API
2393 ecs_world_t *world);
2394
2399FLECS_API
2401 ecs_world_t *stage);
2402
2410FLECS_API
2412 const ecs_world_t *world);
2413
2415
2420
2429FLECS_API
2431 ecs_world_t *world,
2432 void *ctx,
2433 ecs_ctx_free_t ctx_free);
2434
2443FLECS_API
2445 ecs_world_t *world,
2446 void *ctx,
2447 ecs_ctx_free_t ctx_free);
2448
2456FLECS_API
2458 const ecs_world_t *world);
2459
2467FLECS_API
2469 const ecs_world_t *world);
2470
2476FLECS_API
2478
2484FLECS_API
2486 const ecs_world_t *world);
2487
2496FLECS_API
2498 ecs_world_t *world,
2499 int32_t entity_count);
2500
2516FLECS_API
2518 ecs_world_t *world,
2519 ecs_entity_t id_start,
2520 ecs_entity_t id_end);
2521
2532FLECS_API
2534 ecs_world_t *world,
2535 bool enable);
2536
2542FLECS_API
2544 const ecs_world_t *world);
2545
2559FLECS_API
2561 ecs_world_t *world,
2562 ecs_flags32_t flags);
2563
2581
2611FLECS_API
2613 ecs_world_t *world,
2614 const ecs_delete_empty_tables_desc_t *desc);
2615
2621FLECS_API
2623 const ecs_poly_t *poly);
2624
2630FLECS_API
2632 const ecs_poly_t *poly);
2633
2647FLECS_API
2649 const ecs_poly_t *object,
2650 int32_t type);
2651
2655#define flecs_poly_is(object, type)\
2656 flecs_poly_is_(object, type##_magic)
2657
2666FLECS_API
2668 ecs_entity_t first,
2669 ecs_entity_t second);
2670
2672
2674
2681
2688
2697FLECS_API
2699 ecs_world_t *world);
2700
2718FLECS_API
2720 ecs_world_t *world);
2721
2730FLECS_API
2732 ecs_world_t *world,
2733 ecs_id_t id);
2734
2742FLECS_API
2744 ecs_world_t *world,
2745 ecs_table_t *table);
2746
2765FLECS_API
2767 ecs_world_t *world,
2768 const ecs_entity_desc_t *desc);
2769
2796FLECS_API
2798 ecs_world_t *world,
2799 const ecs_bulk_desc_t *desc);
2800
2810FLECS_API
2812 ecs_world_t *world,
2813 ecs_id_t id,
2814 int32_t count);
2815
2831FLECS_API
2833 ecs_world_t *world,
2834 ecs_entity_t dst,
2835 ecs_entity_t src,
2836 bool copy_value);
2837
2846FLECS_API
2848 ecs_world_t *world,
2849 ecs_entity_t entity);
2850
2858FLECS_API
2860 ecs_world_t *world,
2861 ecs_id_t id);
2862
2864
2871
2880FLECS_API
2882 ecs_world_t *world,
2883 ecs_entity_t entity,
2884 ecs_id_t id);
2885
2894FLECS_API
2896 ecs_world_t *world,
2897 ecs_entity_t entity,
2898 ecs_id_t id);
2899
2951FLECS_API
2953 ecs_world_t *world,
2954 ecs_entity_t entity,
2955 ecs_id_t id);
2956
2963FLECS_API
2965 ecs_world_t *world,
2966 ecs_entity_t entity);
2967
2975FLECS_API
2977 ecs_world_t *world,
2978 ecs_id_t id);
2979
2987FLECS_API
2989 ecs_world_t *world,
2990 ecs_id_t id);
2991
2998FLECS_API
3000 const ecs_world_t *world);
3001
3003
3010
3020FLECS_API
3022 ecs_world_t *world,
3023 ecs_entity_t entity,
3024 bool enabled);
3025
3039FLECS_API
3041 ecs_world_t *world,
3042 ecs_entity_t entity,
3043 ecs_id_t id,
3044 bool enable);
3045
3056FLECS_API
3058 const ecs_world_t *world,
3059 ecs_entity_t entity,
3060 ecs_id_t id);
3061
3063
3070
3085FLECS_API
3086const void* ecs_get_id(
3087 const ecs_world_t *world,
3088 ecs_entity_t entity,
3089 ecs_id_t id);
3090
3102FLECS_API
3104 const ecs_world_t *world,
3105 ecs_entity_t entity,
3106 ecs_id_t id);
3107
3125FLECS_API
3127 ecs_world_t *world,
3128 ecs_entity_t entity,
3129 ecs_id_t id);
3130
3142FLECS_API
3144 ecs_world_t *world,
3145 ecs_entity_t entity,
3146 ecs_id_t id);
3147
3158FLECS_API
3160 const ecs_world_t *world,
3161 ecs_entity_t entity,
3162 ecs_id_t id);
3163
3172FLECS_API
3174 const ecs_world_t *world,
3175 ecs_ref_t *ref,
3176 ecs_id_t id);
3177
3185FLECS_API
3187 const ecs_world_t *world,
3188 ecs_ref_t *ref);
3189
3197FLECS_API
3199 const ecs_world_t *world,
3200 ecs_entity_t entity);
3201
3220FLECS_API
3222 ecs_world_t *world,
3223 ecs_entity_t entity);
3224
3231FLECS_API
3233 ecs_record_t *record);
3234
3254FLECS_API
3256 ecs_world_t *world,
3257 ecs_entity_t entity);
3258
3264FLECS_API
3266 const ecs_record_t *record);
3267
3274FLECS_API
3276 const ecs_record_t *record);
3277
3293FLECS_API
3295 const ecs_world_t *world,
3296 const ecs_record_t *record,
3297 ecs_id_t id);
3298
3307FLECS_API
3309 ecs_world_t *world,
3310 ecs_record_t *record,
3311 ecs_id_t id);
3312
3320FLECS_API
3322 ecs_world_t *world,
3323 const ecs_record_t *record,
3324 ecs_id_t id);
3325
3342FLECS_API
3344 const ecs_record_t *record,
3345 int32_t column,
3346 size_t size);
3347
3367FLECS_API
3369 ecs_world_t *world,
3370 ecs_entity_t entity,
3371 ecs_id_t id,
3372 bool *is_new);
3373
3383FLECS_API
3385 ecs_world_t *world,
3386 ecs_entity_t entity,
3387 ecs_id_t id);
3388
3404FLECS_API
3406 ecs_world_t *world,
3407 ecs_entity_t entity,
3408 ecs_id_t id,
3409 size_t size,
3410 const void *ptr);
3411
3413
3420
3439FLECS_API
3441 const ecs_world_t *world,
3442 ecs_entity_t e);
3443
3469FLECS_API
3471 const ecs_world_t *world,
3472 ecs_entity_t e);
3473
3479FLECS_API
3481 ecs_entity_t e);
3482
3499FLECS_API
3501 const ecs_world_t *world,
3502 ecs_entity_t e);
3503
3526FLECS_API
3528 ecs_world_t *world,
3529 ecs_entity_t entity);
3530
3549FLECS_API
3551 ecs_world_t *world,
3552 ecs_id_t id);
3553
3561FLECS_API
3563 const ecs_world_t *world,
3564 ecs_entity_t entity);
3565
3580FLECS_API
3582 ecs_world_t *world,
3583 ecs_entity_t entity);
3584
3586
3593
3600FLECS_API
3602 const ecs_world_t *world,
3603 ecs_entity_t entity);
3604
3611FLECS_API
3613 const ecs_world_t *world,
3614 ecs_entity_t entity);
3615
3623FLECS_API
3625 const ecs_world_t *world,
3626 const ecs_type_t* type);
3627
3639FLECS_API
3641 const ecs_world_t *world,
3642 const ecs_table_t *table);
3643
3658FLECS_API
3660 const ecs_world_t *world,
3661 ecs_entity_t entity);
3662
3673FLECS_API
3675 const ecs_world_t *world,
3676 ecs_entity_t entity,
3677 ecs_id_t id);
3678
3689FLECS_API
3691 const ecs_world_t *world,
3692 ecs_entity_t entity,
3693 ecs_id_t id);
3694
3709FLECS_API
3711 const ecs_world_t *world,
3712 ecs_entity_t entity,
3713 ecs_entity_t rel,
3714 int32_t index);
3715
3729FLECS_API
3731 const ecs_world_t *world,
3732 ecs_entity_t entity);
3733
3754FLECS_API
3756 const ecs_world_t *world,
3757 ecs_entity_t entity,
3758 ecs_entity_t rel,
3759 ecs_id_t id);
3760
3771FLECS_API
3773 const ecs_world_t *world,
3774 ecs_entity_t entity,
3775 ecs_entity_t rel);
3776
3784FLECS_API
3786 const ecs_world_t *world,
3787 ecs_id_t entity);
3788
3790
3791
3798
3808FLECS_API
3809const char* ecs_get_name(
3810 const ecs_world_t *world,
3811 ecs_entity_t entity);
3812
3822FLECS_API
3823const char* ecs_get_symbol(
3824 const ecs_world_t *world,
3825 ecs_entity_t entity);
3826
3840FLECS_API
3842 ecs_world_t *world,
3843 ecs_entity_t entity,
3844 const char *name);
3845
3859FLECS_API
3861 ecs_world_t *world,
3862 ecs_entity_t entity,
3863 const char *symbol);
3864
3876FLECS_API
3878 ecs_world_t *world,
3879 ecs_entity_t entity,
3880 const char *alias);
3881
3897FLECS_API
3899 const ecs_world_t *world,
3900 const char *path);
3901
3916FLECS_API
3918 const ecs_world_t *world,
3919 ecs_entity_t parent,
3920 const char *name);
3921
3944FLECS_API
3946 const ecs_world_t *world,
3947 ecs_entity_t parent,
3948 const char *path,
3949 const char *sep,
3950 const char *prefix,
3951 bool recursive);
3952
3970FLECS_API
3972 const ecs_world_t *world,
3973 const char *symbol,
3974 bool lookup_as_path,
3975 bool recursive);
3976
3998FLECS_API
4000 const ecs_world_t *world,
4001 ecs_entity_t parent,
4002 ecs_entity_t child,
4003 const char *sep,
4004 const char *prefix);
4005
4019 const ecs_world_t *world,
4020 ecs_entity_t parent,
4021 ecs_entity_t child,
4022 const char *sep,
4023 const char *prefix,
4024 ecs_strbuf_t *buf,
4025 bool escape);
4026
4042FLECS_API
4044 ecs_world_t *world,
4045 ecs_entity_t parent,
4046 const char *path,
4047 const char *sep,
4048 const char *prefix);
4049
4064FLECS_API
4066 ecs_world_t *world,
4067 ecs_entity_t entity,
4068 ecs_entity_t parent,
4069 const char *path,
4070 const char *sep,
4071 const char *prefix);
4072
4086FLECS_API
4088 ecs_world_t *world,
4089 ecs_entity_t scope);
4090
4098FLECS_API
4100 const ecs_world_t *world);
4101
4111FLECS_API
4113 ecs_world_t *world,
4114 const char *prefix);
4115
4142FLECS_API
4144 ecs_world_t *world,
4145 const ecs_entity_t *lookup_path);
4146
4153FLECS_API
4155 const ecs_world_t *world);
4156
4158
4160
4167
4181FLECS_API
4183 ecs_world_t *world,
4184 const ecs_component_desc_t *desc);
4185
4195FLECS_API
4197 const ecs_world_t *world,
4198 ecs_id_t id);
4199
4211FLECS_API
4213 ecs_world_t *world,
4214 ecs_entity_t id,
4215 const ecs_type_hooks_t *hooks);
4216
4223FLECS_API
4225 const ecs_world_t *world,
4226 ecs_entity_t id);
4227
4229
4236
4251FLECS_API
4253 const ecs_world_t *world,
4254 ecs_id_t id);
4255
4264FLECS_API
4266 const ecs_world_t *world,
4267 ecs_id_t id);
4268
4288FLECS_API
4290 const ecs_world_t *world,
4291 ecs_id_t id);
4292
4301FLECS_API
4303 ecs_id_t id,
4304 ecs_id_t pattern);
4305
4311FLECS_API
4313 ecs_id_t id);
4314
4320FLECS_API
4322 ecs_id_t id);
4323
4337FLECS_API
4339 const ecs_world_t *world,
4340 ecs_id_t id);
4341
4350FLECS_API
4351ecs_flags32_t ecs_id_get_flags(
4352 const ecs_world_t *world,
4353 ecs_id_t id);
4354
4361FLECS_API
4363 ecs_id_t id_flags);
4364
4372FLECS_API
4374 const ecs_world_t *world,
4375 ecs_id_t id);
4376
4384FLECS_API
4386 const ecs_world_t *world,
4387 ecs_id_t id,
4388 ecs_strbuf_t *buf);
4389
4397FLECS_API
4399 const ecs_world_t *world,
4400 const char *expr);
4401
4403
4409
4415FLECS_API
4417 const ecs_term_ref_t *id);
4418
4430FLECS_API
4432 const ecs_term_t *term);
4433
4448FLECS_API
4450 const ecs_term_t *term);
4451
4464FLECS_API
4466 const ecs_term_t *term);
4467
4476FLECS_API
4478 const ecs_world_t *world,
4479 const ecs_term_t *term);
4480
4488FLECS_API
4490 const ecs_query_t *query);
4491
4493
4499
4532FLECS_API
4534 const ecs_world_t *world,
4535 ecs_id_t id);
4536
4542FLECS_API
4544 ecs_iter_t *it);
4545
4558FLECS_API
4560 const ecs_world_t *world,
4561 ecs_entity_t parent);
4562
4568FLECS_API
4570 ecs_iter_t *it);
4571
4573
4580
4587FLECS_API
4589 ecs_world_t *world,
4590 const ecs_query_desc_t *desc);
4591
4596FLECS_API
4598 ecs_query_t *query);
4599
4608FLECS_API
4610 const ecs_query_t *query,
4611 const char *name);
4612
4620FLECS_API
4622 const ecs_query_t *query,
4623 int32_t var_id);
4624
4635FLECS_API
4637 const ecs_query_t *query,
4638 int32_t var_id);
4639
4708FLECS_API
4710 const ecs_world_t *world,
4711 const ecs_query_t *query);
4712
4720FLECS_API
4722 ecs_iter_t *it);
4723
4742FLECS_API
4744 ecs_query_t *query,
4745 ecs_entity_t entity,
4746 ecs_iter_t *it);
4747
4766FLECS_API
4768 ecs_query_t *query,
4769 ecs_table_t *table,
4770 ecs_iter_t *it);
4771
4798FLECS_API
4800 ecs_query_t *query,
4801 ecs_table_range_t *range,
4802 ecs_iter_t *it);
4803
4811FLECS_API
4813 const ecs_query_t *query);
4814
4824FLECS_API
4826 const ecs_query_t *query);
4827
4842FLECS_API
4844 const ecs_query_t *query,
4845 const ecs_iter_t *it);
4846
4864FLECS_API
4866 ecs_query_t *query,
4867 ecs_iter_t *it,
4868 const char *expr);
4869
4897FLECS_API
4899 ecs_query_t *query);
4900
4909FLECS_API
4911 const ecs_world_t *world,
4912 ecs_entity_t query);
4913
4924FLECS_API
4926 ecs_iter_t *it);
4927
4950FLECS_API
4952 ecs_iter_t *it,
4953 uint64_t group_id);
4954
4963FLECS_API
4965 const ecs_query_t *query,
4966 uint64_t group_id);
4967
4976FLECS_API
4978 const ecs_query_t *query,
4979 uint64_t group_id);
4980
4988
4995FLECS_API
4997 const ecs_query_t *query);
4998
5004FLECS_API
5006 const ecs_query_t *query);
5007
5016FLECS_API
5018 const ecs_query_t *query);
5019
5021
5028
5048FLECS_API
5050 ecs_world_t *world,
5051 ecs_event_desc_t *desc);
5052
5063FLECS_API
5065 ecs_world_t *world,
5066 ecs_event_desc_t *desc);
5067
5078FLECS_API
5080 ecs_world_t *world,
5081 const ecs_observer_desc_t *desc);
5082
5091FLECS_API
5093 const ecs_world_t *world,
5094 ecs_entity_t observer);
5095
5097
5104
5118FLECS_API
5120 ecs_iter_t *it);
5121
5131FLECS_API
5133 ecs_iter_t *it);
5134
5146FLECS_API
5148 ecs_iter_t *it);
5149
5162FLECS_API
5164 ecs_iter_t *it);
5165
5173FLECS_API
5175 ecs_iter_t *it);
5176
5215FLECS_API
5217 ecs_iter_t *it,
5218 int32_t var_id,
5219 ecs_entity_t entity);
5220
5231FLECS_API
5233 ecs_iter_t *it,
5234 int32_t var_id,
5235 const ecs_table_t *table);
5236
5247FLECS_API
5249 ecs_iter_t *it,
5250 int32_t var_id,
5251 const ecs_table_range_t *range);
5252
5265FLECS_API
5267 ecs_iter_t *it,
5268 int32_t var_id);
5269
5283FLECS_API
5285 ecs_iter_t *it,
5286 int32_t var_id);
5287
5301FLECS_API
5303 ecs_iter_t *it,
5304 int32_t var_id);
5305
5317FLECS_API
5319 ecs_iter_t *it,
5320 int32_t var_id);
5321
5333FLECS_API
5335 ecs_iter_t *it);
5336
5348FLECS_API
5350 const ecs_iter_t *it);
5351
5367FLECS_API
5369 const ecs_iter_t *it,
5370 int32_t offset,
5371 int32_t limit);
5372
5379FLECS_API
5381 ecs_iter_t *it);
5382
5403FLECS_API
5405 const ecs_iter_t *it,
5406 int32_t index,
5407 int32_t count);
5408
5415FLECS_API
5417 ecs_iter_t *it);
5418
5460FLECS_API
5462 const ecs_iter_t *it,
5463 size_t size,
5464 int8_t index);
5465
5487FLECS_API
5489 const ecs_iter_t *it,
5490 size_t size,
5491 int8_t index,
5492 int32_t row);
5493
5502FLECS_API
5504 const ecs_iter_t *it,
5505 int8_t index);
5506
5517FLECS_API
5519 const ecs_iter_t *it,
5520 int8_t index);
5521
5528FLECS_API
5530 const ecs_iter_t *it,
5531 int8_t index);
5532
5539FLECS_API
5541 const ecs_iter_t *it,
5542 int8_t index);
5543
5552FLECS_API
5554 const ecs_iter_t *it,
5555 int8_t index);
5556
5564FLECS_API
5566 const ecs_iter_t *it,
5567 int8_t index);
5568
5576FLECS_API
5578 const ecs_iter_t *it,
5579 int8_t index);
5580
5594FLECS_API
5596 const ecs_iter_t *it,
5597 int8_t index);
5598
5600
5607
5614FLECS_API
5616 const ecs_table_t *table);
5617
5628FLECS_API
5630 const ecs_world_t *world,
5631 const ecs_table_t *table,
5632 ecs_id_t id);
5633
5643FLECS_API
5645 const ecs_world_t *world,
5646 const ecs_table_t *table,
5647 ecs_id_t id);
5648
5656FLECS_API
5658 const ecs_table_t *table);
5659
5673FLECS_API
5675 const ecs_table_t *table,
5676 int32_t index);
5677
5686FLECS_API
5688 const ecs_table_t *table,
5689 int32_t index);
5690
5699FLECS_API
5701 const ecs_table_t *table,
5702 int32_t index,
5703 int32_t offset);
5704
5714FLECS_API
5716 const ecs_world_t *world,
5717 const ecs_table_t *table,
5718 ecs_id_t id,
5719 int32_t offset);
5720
5728FLECS_API
5730 const ecs_table_t *table,
5731 int32_t index);
5732
5739FLECS_API
5741 const ecs_table_t *table);
5742
5750FLECS_API
5752 const ecs_table_t *table);
5753
5760FLECS_API
5762 const ecs_table_t *table);
5763
5774FLECS_API
5776 const ecs_world_t *world,
5777 const ecs_table_t *table,
5778 ecs_id_t id);
5779
5790FLECS_API
5792 const ecs_world_t *world,
5793 const ecs_table_t *table,
5794 ecs_entity_t rel);
5795
5805FLECS_API
5807 ecs_world_t *world,
5808 ecs_table_t *table,
5809 ecs_id_t id);
5810
5821FLECS_API
5823 ecs_world_t *world,
5824 const ecs_id_t *ids,
5825 int32_t id_count);
5826
5836FLECS_API
5838 ecs_world_t *world,
5839 ecs_table_t *table,
5840 ecs_id_t id);
5841
5857FLECS_API
5859 ecs_world_t *world,
5860 ecs_table_t *table);
5861
5868FLECS_API
5870 ecs_world_t *world,
5871 ecs_table_t *table);
5872
5882FLECS_API
5884 ecs_table_t *table,
5885 ecs_flags32_t flags);
5886
5894FLECS_API
5896 ecs_world_t* world,
5897 ecs_table_t* table,
5898 int32_t row_1,
5899 int32_t row_2);
5900
5923FLECS_API
5925 ecs_world_t *world,
5926 ecs_entity_t entity,
5927 ecs_record_t *record,
5928 ecs_table_t *table,
5929 const ecs_type_t *added,
5930 const ecs_type_t *removed);
5931
5932
5951FLECS_API
5953 const ecs_world_t *world,
5954 const ecs_table_t *table,
5955 ecs_id_t id,
5956 ecs_id_t *id_out);
5957
5993FLECS_API
5995 const ecs_world_t *world,
5996 const ecs_table_t *table,
5997 int32_t offset,
5998 ecs_id_t id,
5999 ecs_id_t *id_out);
6000
6042FLECS_API
6044 const ecs_world_t *world,
6045 const ecs_table_t *table,
6046 int32_t offset,
6047 ecs_id_t id,
6048 ecs_entity_t rel,
6049 ecs_flags64_t flags, /* EcsSelf and/or EcsUp */
6050 ecs_entity_t *subject_out,
6051 ecs_id_t *id_out,
6052 struct ecs_table_record_t **tr_out);
6053
6061FLECS_API
6063 ecs_world_t* world,
6064 ecs_table_t* table);
6065
6067
6074
6082FLECS_API
6084 const ecs_world_t *world,
6085 ecs_entity_t type,
6086 void *ptr);
6087
6095FLECS_API
6097 const ecs_world_t *world,
6098 const ecs_type_info_t *ti,
6099 void *ptr);
6100
6107FLECS_API
6109 ecs_world_t *world,
6110 ecs_entity_t type);
6111
6119 ecs_world_t *world,
6120 const ecs_type_info_t *ti);
6121
6130 const ecs_world_t *world,
6131 const ecs_type_info_t *ti,
6132 void *ptr);
6133
6141FLECS_API
6143 const ecs_world_t *world,
6144 ecs_entity_t type,
6145 void* ptr);
6146
6154FLECS_API
6156 ecs_world_t *world,
6157 ecs_entity_t type,
6158 void* ptr);
6159
6168FLECS_API
6170 const ecs_world_t *world,
6171 const ecs_type_info_t *ti,
6172 void* dst,
6173 const void *src);
6174
6183FLECS_API
6185 const ecs_world_t *world,
6186 ecs_entity_t type,
6187 void* dst,
6188 const void *src);
6189
6199 const ecs_world_t *world,
6200 const ecs_type_info_t *ti,
6201 void* dst,
6202 void *src);
6203
6213 const ecs_world_t *world,
6214 ecs_entity_t type,
6215 void* dst,
6216 void *src);
6217
6227 const ecs_world_t *world,
6228 const ecs_type_info_t *ti,
6229 void* dst,
6230 void *src);
6231
6241 const ecs_world_t *world,
6242 ecs_entity_t type,
6243 void* dst,
6244 void *src);
6245
6247
6249
6258
6259#include "flecs/addons/flecs_c.h"
6260
6261#ifdef __cplusplus
6262}
6263#endif
6264
6265#include "flecs/private/addons.h"
6266
6267#endif
The deprecated addon contains deprecated operations.
Extends the core API with convenience macros for C applications.
ecs_entity_t ecs_set_with(ecs_world_t *world, ecs_id_t id)
Set current with id.
void ecs_add_id(ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Add a (component) id to an entity.
void ecs_remove_id(ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Remove a (component) id from an entity.
void ecs_clear(ecs_world_t *world, ecs_entity_t entity)
Clear all components.
ecs_id_t ecs_get_with(const ecs_world_t *world)
Get current with id.
void ecs_remove_all(ecs_world_t *world, ecs_id_t id)
Remove all instances of the specified (component) id.
void ecs_auto_override_id(ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Add auto override for (component) id.
const ecs_entity_t EcsScopeClose
Marker used to indicate the end of a scope (}) in queries.
const ecs_entity_t EcsOnRemove
Event that triggers when an id is removed from an entity.
const ecs_entity_t EcsThis
This entity.
const ecs_entity_t EcsWildcard
Wildcard entity ("*").
const ecs_entity_t EcsName
Tag to indicate name identifier.
const ecs_entity_t EcsAcyclic
Marks a relationship as acyclic.
const ecs_entity_t EcsSymmetric
Marks relationship as commutative.
const ecs_entity_t EcsAlias
Tag to indicate alias identifier.
const ecs_entity_t EcsOnSet
Event that triggers when a component is set for an entity.
const ecs_entity_t EcsReflexive
Marks a relationship as reflexive.
const ecs_entity_t EcsTrait
Can be added to components to indicate it is a trait.
const ecs_entity_t EcsEmpty
Tag used to indicate query is empty.
const ecs_entity_t EcsOneOf
Ensure that relationship target is child of specified entity.
const ecs_entity_t EcsOnTableDelete
Event that triggers when a table is deleted.
const ecs_entity_t EcsOnTableCreate
Event that triggers when a table is created.
const ecs_entity_t EcsObserver
Tag added to observers.
const ecs_entity_t EcsQuery
Tag added to queries.
const ecs_entity_t EcsRelationship
Ensure that an entity is always used in pair as relationship.
const ecs_entity_t EcsOnStart
OnStart pipeline phase.
const ecs_entity_t EcsNotQueryable
Trait added to entities that should never be returned by queries.
const ecs_entity_t EcsOnStore
OnStore pipeline phase.
const ecs_entity_t EcsTraversable
Marks a relationship as traversable.
const ecs_entity_t EcsPredLookup
Marker used to indicate $var ~= "pattern" matching in queries.
const ecs_entity_t EcsPreStore
PreStore pipeline phase.
const ecs_entity_t EcsOnLoad
OnLoad pipeline phase.
const ecs_entity_t EcsIsA
Used to express inheritance relationships.
const ecs_entity_t EcsExclusive
Can be added to relationship to indicate that the relationship can only occur once on an entity.
const ecs_entity_t EcsSymbol
Tag to indicate symbol identifier.
const ecs_entity_t EcsDependsOn
Used to express dependency relationships.
const ecs_entity_t EcsTransitive
Marks a relationship as transitive.
const ecs_entity_t EcsDelete
Delete cleanup policy.
const ecs_entity_t EcsChildOf
Used to express parent-child relationships.
const ecs_entity_t EcsFlecsCore
Core module scope.
const ecs_entity_t EcsMonitor
Event that triggers observer when an entity starts/stops matching a query.
const ecs_entity_t EcsCanToggle
Mark a component as toggleable with ecs_enable_id().
const ecs_entity_t EcsPredEq
Marker used to indicate $var == ... matching in queries.
const ecs_entity_t EcsPhase
Phase pipeline phase.
const ecs_entity_t EcsWorld
Entity associated with world (used for "attaching" components to world)
const ecs_entity_t EcsPrivate
Tag to indicate an entity/component/system is private to a module.
const ecs_entity_t EcsScopeOpen
Marker used to indicate the start of a scope ({) in queries.
const ecs_entity_t EcsPostUpdate
PostUpdate pipeline phase.
const ecs_entity_t EcsOnValidate
OnValidate pipeline phase.
const ecs_entity_t EcsRemove
Remove cleanup policy.
const ecs_entity_t EcsOverride
Override component on instantiate.
const ecs_entity_t EcsPredMatch
Marker used to indicate $var == "name" matching in queries.
const ecs_entity_t EcsInherit
Inherit component on instantiate.
const ecs_entity_t EcsSlotOf
Used to express a slot (used with prefab inheritance)
const ecs_entity_t EcsModule
Tag added to module entities.
const ecs_entity_t EcsSparse
Mark component as sparse.
const ecs_entity_t EcsPreUpdate
PreUpdate pipeline phase.
const ecs_entity_t EcsOnAdd
Event that triggers when an id is added to an entity.
const ecs_entity_t EcsPrefab
Tag added to prefab entities.
const ecs_entity_t EcsOnInstantiate
Relationship that specifies component inheritance behavior.
const ecs_entity_t EcsUnion
Mark relationship as union.
const ecs_entity_t EcsPostFrame
PostFrame pipeline phase.
const ecs_entity_t EcsAny
Any entity ("_").
const ecs_entity_t EcsTarget
Ensure that an entity is always used in pair as target.
const ecs_entity_t EcsWith
Ensure that a component always is added together with another component.
const ecs_entity_t EcsPostLoad
PostLoad pipeline phase.
const ecs_entity_t EcsOnDelete
Relationship used for specifying cleanup behavior.
const ecs_entity_t EcsOnDeleteTarget
Relationship used to define what should happen when a target entity (second element of a pair) is del...
const ecs_entity_t EcsPreFrame
PreFrame pipeline phase.
const ecs_entity_t EcsFlecs
Root scope for builtin flecs entities.
const ecs_entity_t EcsSystem
Tag added to systems.
const ecs_entity_t EcsOnUpdate
OnUpdate pipeline phase.
const ecs_entity_t EcsDisabled
When this tag is added to an entity it is skipped by queries, unless EcsDisabled is explicitly querie...
const ecs_entity_t EcsDontInherit
Never inherit component on instantiate.
const ecs_entity_t EcsPairIsTag
Can be added to relationship to indicate that it should never hold data, even when it or the relation...
const ecs_entity_t EcsPanic
Panic cleanup policy.
const ecs_entity_t EcsFinal
Ensures that entity/component cannot be used as target in IsA relationship.
const ecs_entity_t EcsVariable
Variable entity ("$").
FLECS_API const ecs_entity_t ecs_id(EcsDocDescription)
Component id for EcsDocDescription.
ecs_world_t * ecs_stage_new(ecs_world_t *world)
Create unmanaged stage.
bool ecs_defer_end(ecs_world_t *world)
End block of operations to defer.
bool ecs_readonly_begin(ecs_world_t *world, bool multi_threaded)
Begin readonly mode.
void ecs_defer_resume(ecs_world_t *world)
Resume deferring.
bool ecs_defer_begin(ecs_world_t *world)
Defer operations until end of frame.
void ecs_defer_suspend(ecs_world_t *world)
Suspend deferring but do not flush queue.
bool ecs_is_deferred(const ecs_world_t *world)
Test if deferring is enabled for current stage.
void ecs_stage_free(ecs_world_t *stage)
Free unmanaged stage.
void ecs_merge(ecs_world_t *world)
Merge world or stage.
int32_t ecs_stage_get_id(const ecs_world_t *world)
Get stage id.
bool ecs_stage_is_readonly(const ecs_world_t *world)
Test whether the current world is readonly.
int32_t ecs_get_stage_count(const ecs_world_t *world)
Get number of configured stages.
ecs_world_t * ecs_get_stage(const ecs_world_t *world, int32_t stage_id)
Get stage-specific world pointer.
void ecs_set_stage_count(ecs_world_t *world, int32_t stages)
Configure world to have N stages.
void ecs_readonly_end(ecs_world_t *world)
End readonly mode.
ecs_entity_t ecs_component_init(ecs_world_t *world, const ecs_component_desc_t *desc)
Find or create a component.
void ecs_set_hooks_id(ecs_world_t *world, ecs_entity_t id, const ecs_type_hooks_t *hooks)
Register hooks for component.
const ecs_type_info_t * ecs_get_type_info(const ecs_world_t *world, ecs_id_t id)
Get the type for an id.
const ecs_type_hooks_t * ecs_get_hooks_id(const ecs_world_t *world, ecs_entity_t id)
Get hooks for component.
struct ecs_stage_t ecs_stage_t
A stage enables modification while iterating and from multiple threads.
Definition flecs.h:393
struct ecs_ref_t ecs_ref_t
A ref is a fast way to fetch a component for a specific entity.
Definition flecs.h:442
ecs_id_t ecs_entity_t
An entity identifier.
Definition flecs.h:346
struct ecs_id_record_t ecs_id_record_t
Information about a (component) id, such as type info and tables with the id.
Definition flecs.h:458
struct ecs_world_t ecs_world_t
A world is the container for all ECS data and supporting features.
Definition flecs.h:390
struct ecs_mixins_t ecs_mixins_t
Type that stores poly mixins.
Definition flecs.h:482
uint64_t ecs_id_t
Ids are the things that can be added to an entity.
Definition flecs.h:339
struct ecs_observable_t ecs_observable_t
An observable produces events that can be listened for by an observer.
Definition flecs.h:426
struct ecs_table_t ecs_table_t
A table stores entities and components for a specific type.
Definition flecs.h:396
void ecs_poly_t
A poly object.
Definition flecs.h:479
ecs_entity_t ecs_new_low_id(ecs_world_t *world)
Create new low id.
ecs_entity_t ecs_new_w_id(ecs_world_t *world, ecs_id_t id)
Create new entity with (component) id.
const ecs_entity_t * ecs_bulk_init(ecs_world_t *world, const ecs_bulk_desc_t *desc)
Bulk create/populate new entities.
ecs_entity_t ecs_clone(ecs_world_t *world, ecs_entity_t dst, ecs_entity_t src, bool copy_value)
Clone an entity This operation clones the components of one entity into another entity.
const ecs_entity_t * ecs_bulk_new_w_id(ecs_world_t *world, ecs_id_t id, int32_t count)
Create N new entities.
ecs_entity_t ecs_new(ecs_world_t *world)
Create new entity id.
ecs_entity_t ecs_entity_init(ecs_world_t *world, const ecs_entity_desc_t *desc)
Find or create an entity.
void ecs_delete_with(ecs_world_t *world, ecs_id_t id)
Delete all entities with the specified id.
void ecs_delete(ecs_world_t *world, ecs_entity_t entity)
Delete an entity.
ecs_entity_t ecs_new_w_table(ecs_world_t *world, ecs_table_t *table)
Create new entity in table.
bool ecs_children_next(ecs_iter_t *it)
Progress an iterator created with ecs_children().
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.
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.
void ecs_enable_id(ecs_world_t *world, ecs_entity_t entity, ecs_id_t id, bool enable)
Enable or disable component.
void ecs_enable(ecs_world_t *world, ecs_entity_t entity, bool enabled)
Enable or disable entity.
char * ecs_entity_str(const ecs_world_t *world, ecs_entity_t entity)
Convert entity to string.
ecs_entity_t ecs_get_target(const ecs_world_t *world, ecs_entity_t entity, ecs_entity_t rel, int32_t index)
Get the target of a relationship.
ecs_entity_t ecs_get_parent(const ecs_world_t *world, ecs_entity_t entity)
Get parent (target of ChildOf relationship) for entity.
const ecs_type_t * ecs_get_type(const ecs_world_t *world, ecs_entity_t entity)
Get the type of an entity.
bool ecs_has_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Test if an entity has an id.
char * ecs_type_str(const ecs_world_t *world, const ecs_type_t *type)
Convert type to string.
char * ecs_table_str(const ecs_world_t *world, const ecs_table_t *table)
Convert table to string.
int32_t ecs_count_id(const ecs_world_t *world, ecs_id_t entity)
Count entities that have the specified 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.
ecs_entity_t ecs_get_target_for_id(const ecs_world_t *world, ecs_entity_t entity, ecs_entity_t rel, ecs_id_t id)
Get the target of a relationship for a given id.
ecs_table_t * ecs_get_table(const ecs_world_t *world, ecs_entity_t entity)
Get the table of an entity.
void(* ecs_module_action_t)(ecs_world_t *world)
Initialization action for modules.
Definition flecs.h:605
uint64_t(* ecs_group_by_action_t)(ecs_world_t *world, ecs_table_t *table, ecs_id_t group_id, void *ctx)
Callback used for grouping tables in a query.
Definition flecs.h:585
uint64_t(* ecs_hash_value_action_t)(const void *ptr)
Callback used for hashing values.
Definition flecs.h:623
void(* ecs_group_delete_action_t)(ecs_world_t *world, uint64_t group_id, void *group_ctx, void *group_by_ctx)
Callback invoked when a query deletes an existing group.
Definition flecs.h:598
void(* ecs_iter_fini_action_t)(ecs_iter_t *it)
Function prototype for freeing an iterator.
Definition flecs.h:563
void *(* ecs_group_create_action_t)(ecs_world_t *world, uint64_t group_id, void *group_by_ctx)
Callback invoked when a query creates a new group.
Definition flecs.h:592
void(* ecs_sort_table_action_t)(ecs_world_t *world, ecs_table_t *table, ecs_entity_t *entities, void *ptr, int32_t size, int32_t lo, int32_t hi, ecs_order_by_action_t order_by)
Callback used for sorting the entire table of components.
Definition flecs.h:574
bool(* ecs_iter_next_action_t)(ecs_iter_t *it)
Function prototype for iterating an iterator.
Definition flecs.h:555
void(* ecs_iter_action_t)(ecs_iter_t *it)
Function prototype for iterables.
Definition flecs.h:545
void(* ecs_copy_t)(void *dst_ptr, const void *src_ptr, int32_t count, const ecs_type_info_t *type_info)
Copy is invoked when a component is copied into another component.
Definition flecs.h:633
int(* ecs_compare_action_t)(const void *ptr1, const void *ptr2)
Callback used for sorting values.
Definition flecs.h:618
void(* ecs_fini_action_t)(ecs_world_t *world, void *ctx)
Action callback on world exit.
Definition flecs.h:609
void(* ecs_move_t)(void *dst_ptr, void *src_ptr, int32_t count, const ecs_type_info_t *type_info)
Move is invoked when a component is moved to another component.
Definition flecs.h:640
void(* flecs_poly_dtor_t)(ecs_poly_t *poly)
Destructor function for poly objects.
Definition flecs.h:647
void(* ecs_run_action_t)(ecs_iter_t *it)
Function prototype for runnables (systems, observers).
Definition flecs.h:536
void(* ecs_ctx_free_t)(void *ctx)
Function to cleanup context data.
Definition flecs.h:614
int(* ecs_order_by_action_t)(ecs_entity_t e1, const void *ptr1, ecs_entity_t e2, const void *ptr2)
Callback used for comparing components.
Definition flecs.h:567
void(* ecs_xtor_t)(void *ptr, int32_t count, const ecs_type_info_t *type_info)
Constructor/destructor callback.
Definition flecs.h:627
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.
ecs_ref_t ecs_ref_init_id(const ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Create a component ref.
ecs_entity_t ecs_record_get_entity(const ecs_record_t *record)
Get entity corresponding with record.
void ecs_ref_update(const ecs_world_t *world, ecs_ref_t *ref)
Update ref.
const void * ecs_record_get_id(const ecs_world_t *world, const ecs_record_t *record, ecs_id_t id)
Get component from entity record.
void * ecs_record_get_by_column(const ecs_record_t *record, int32_t column, size_t size)
Get component pointer from column/record.
void ecs_read_end(const ecs_record_t *record)
End read access to entity.
void * ecs_emplace_id(ecs_world_t *world, ecs_entity_t entity, ecs_id_t id, bool *is_new)
Emplace a component.
void * ecs_ensure_id(ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Get a mutable pointer to a component.
void ecs_write_end(ecs_record_t *record)
End exclusive write access to entity.
void ecs_set_id(ecs_world_t *world, ecs_entity_t entity, ecs_id_t id, size_t size, const void *ptr)
Set the value of a component.
void * ecs_ensure_modified_id(ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Combines ensure + modified in single operation.
void * ecs_ref_get_id(const ecs_world_t *world, ecs_ref_t *ref, ecs_id_t id)
Get component from ref.
bool ecs_record_has_id(ecs_world_t *world, const ecs_record_t *record, ecs_id_t id)
Test if entity for record has a (component) id.
void * ecs_record_ensure_id(ecs_world_t *world, ecs_record_t *record, ecs_id_t id)
Same as ecs_record_get_id(), but returns a mutable pointer.
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.
ecs_record_t * ecs_write_begin(ecs_world_t *world, ecs_entity_t entity)
Begin exclusive write access to entity.
void ecs_modified_id(ecs_world_t *world, ecs_entity_t entity, ecs_id_t id)
Signal that a component has been modified.
ecs_record_t * ecs_record_find(const ecs_world_t *world, ecs_entity_t entity)
Find record for entity.
const ecs_record_t * ecs_read_begin(ecs_world_t *world, ecs_entity_t entity)
Begin read access to entity.
const ecs_id_t ECS_PAIR
Indicates that the id is a pair.
const ecs_id_t ECS_AUTO_OVERRIDE
Automatically override component when it is inherited.
const ecs_id_t ECS_TOGGLE
Adds bitset to storage which allows component to be enabled/disabled.
bool ecs_id_is_valid(const ecs_world_t *world, ecs_id_t id)
Utility to check if id is valid.
bool ecs_id_is_pair(ecs_id_t id)
Utility to check if id is a pair.
ecs_entity_t ecs_get_typeid(const ecs_world_t *world, ecs_id_t id)
Get the type for an id.
bool ecs_id_match(ecs_id_t id, ecs_id_t pattern)
Utility to match an id with a pattern.
const char * ecs_id_flag_str(ecs_id_t id_flags)
Convert id flag to string.
bool ecs_id_in_use(const ecs_world_t *world, ecs_id_t id)
Returns whether specified id is in use.
bool ecs_id_is_tag(const ecs_world_t *world, ecs_id_t id)
Returns whether specified id a tag.
void ecs_id_str_buf(const ecs_world_t *world, ecs_id_t id, ecs_strbuf_t *buf)
Write (component) id string to buffer.
char * ecs_id_str(const ecs_world_t *world, ecs_id_t id)
Convert (component) id to string.
bool ecs_id_is_wildcard(ecs_id_t id)
Utility to check if id is a wildcard.
ecs_id_t ecs_id_from_str(const ecs_world_t *world, const char *expr)
Convert string to a (component) id.
ecs_flags32_t ecs_id_get_flags(const ecs_world_t *world, ecs_id_t id)
Get flags associated with id.
ecs_entity_t ecs_field_src(const ecs_iter_t *it, int8_t index)
Return field source.
bool ecs_iter_changed(ecs_iter_t *it)
Returns whether current iterator result has changed.
bool ecs_field_is_writeonly(const ecs_iter_t *it, int8_t index)
Test whether the field is writeonly.
bool ecs_field_is_readonly(const ecs_iter_t *it, int8_t index)
Test whether the field is readonly.
ecs_iter_t ecs_worker_iter(const ecs_iter_t *it, int32_t index, int32_t count)
Create a worker iterator.
bool ecs_iter_is_true(ecs_iter_t *it)
Test if iterator is true.
void ecs_iter_fini(ecs_iter_t *it)
Cleanup iterator resources.
char * ecs_iter_str(const ecs_iter_t *it)
Convert iterator to string.
bool ecs_iter_var_is_constrained(ecs_iter_t *it, int32_t var_id)
Returns whether variable is constrained.
ecs_iter_t ecs_page_iter(const ecs_iter_t *it, int32_t offset, int32_t limit)
Create a paged iterator.
void * ecs_field_at_w_size(const ecs_iter_t *it, size_t size, int8_t index, int32_t row)
Get data for field at specified row.
ecs_id_t ecs_field_id(const ecs_iter_t *it, int8_t index)
Return id matched for field.
bool ecs_field_is_set(const ecs_iter_t *it, int8_t index)
Test whether field is set.
void ecs_iter_set_var(ecs_iter_t *it, int32_t var_id, ecs_entity_t entity)
Set value for iterator variable.
bool ecs_field_is_self(const ecs_iter_t *it, int8_t index)
Test whether the field is matched on self.
bool ecs_iter_next(ecs_iter_t *it)
Progress any iterator.
ecs_entity_t ecs_iter_get_var(ecs_iter_t *it, int32_t var_id)
Get value of iterator variable as entity.
bool ecs_worker_next(ecs_iter_t *it)
Progress a worker iterator.
ecs_entity_t ecs_iter_first(ecs_iter_t *it)
Get first matching entity from iterator.
int32_t ecs_field_column(const ecs_iter_t *it, int8_t index)
Return index of matched table column.
void ecs_iter_set_var_as_table(ecs_iter_t *it, int32_t var_id, const ecs_table_t *table)
Same as ecs_iter_set_var(), but for a table.
ecs_table_t * ecs_iter_get_var_as_table(ecs_iter_t *it, int32_t var_id)
Get value of iterator variable as table.
void * ecs_field_w_size(const ecs_iter_t *it, size_t size, int8_t index)
Get data for field.
int32_t ecs_iter_count(ecs_iter_t *it)
Count number of matched entities in query.
bool ecs_page_next(ecs_iter_t *it)
Progress a paged iterator.
void ecs_iter_set_var_as_range(ecs_iter_t *it, int32_t var_id, const ecs_table_range_t *range)
Same as ecs_iter_set_var(), but for a range of entities This constrains the variable to a range of en...
size_t ecs_field_size(const ecs_iter_t *it, int8_t index)
Return field type size.
ecs_table_range_t ecs_iter_get_var_as_range(ecs_iter_t *it, int32_t var_id)
Get value of iterator variable as table range.
ecs_id_t ecs_strip_generation(ecs_entity_t e)
Remove generation from entity id.
bool ecs_is_valid(const ecs_world_t *world, ecs_entity_t e)
Test whether an entity is valid.
void ecs_make_alive(ecs_world_t *world, ecs_entity_t entity)
Ensure id is alive.
void ecs_make_alive_id(ecs_world_t *world, ecs_id_t id)
Same as ecs_make_alive(), but for (component) ids.
ecs_entity_t ecs_get_alive(const ecs_world_t *world, ecs_entity_t e)
Get alive identifier.
bool ecs_exists(const ecs_world_t *world, ecs_entity_t entity)
Test whether an entity exists.
bool ecs_is_alive(const ecs_world_t *world, ecs_entity_t e)
Test whether an entity is alive.
void ecs_set_version(ecs_world_t *world, ecs_entity_t entity)
Override the generation of an entity.
void ecs_emit(ecs_world_t *world, ecs_event_desc_t *desc)
Send event.
void ecs_enqueue(ecs_world_t *world, ecs_event_desc_t *desc)
Enqueue event.
ecs_entity_t ecs_observer_init(ecs_world_t *world, const ecs_observer_desc_t *desc)
Create observer.
const ecs_observer_t * ecs_observer_get(const ecs_world_t *world, ecs_entity_t observer)
Get observer object.
#define FLECS_EVENT_DESC_MAX
Maximum number of events in ecs_observer_desc_t.
Definition flecs.h:267
#define ecs_ftime_t
Customizable precision for scalar time values.
Definition flecs.h:59
#define FLECS_ID_DESC_MAX
Maximum number of ids to add ecs_entity_desc_t / ecs_bulk_desc_t.
Definition flecs.h:261
#define FLECS_TERM_COUNT_MAX
Maximum number of terms in queries.
Definition flecs.h:277
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.
ecs_entity_t ecs_new_from_path_w_sep(ecs_world_t *world, ecs_entity_t parent, const char *path, const char *sep, const char *prefix)
Find or create entity from path.
ecs_entity_t ecs_lookup_symbol(const ecs_world_t *world, const char *symbol, bool lookup_as_path, bool recursive)
Lookup an entity by its symbol name.
void ecs_set_alias(ecs_world_t *world, ecs_entity_t entity, const char *alias)
Set alias for entity.
ecs_entity_t ecs_lookup(const ecs_world_t *world, const char *path)
Lookup an entity by it's path.
ecs_entity_t ecs_get_scope(const ecs_world_t *world)
Get the current scope.
void ecs_get_path_w_sep_buf(const ecs_world_t *world, ecs_entity_t parent, ecs_entity_t child, const char *sep, const char *prefix, ecs_strbuf_t *buf, bool escape)
Write path identifier to buffer.
ecs_entity_t * ecs_set_lookup_path(ecs_world_t *world, const ecs_entity_t *lookup_path)
Set search path for lookup operations.
ecs_entity_t ecs_set_name(ecs_world_t *world, ecs_entity_t entity, const char *name)
Set the name of an entity.
const char * ecs_get_symbol(const ecs_world_t *world, ecs_entity_t entity)
Get the symbol of an entity.
ecs_entity_t ecs_lookup_path_w_sep(const ecs_world_t *world, ecs_entity_t parent, const char *path, const char *sep, const char *prefix, bool recursive)
Lookup an entity from a path.
ecs_entity_t ecs_set_symbol(ecs_world_t *world, ecs_entity_t entity, const char *symbol)
Set the symbol of an entity.
ecs_entity_t ecs_lookup_child(const ecs_world_t *world, ecs_entity_t parent, const char *name)
Lookup a child entity by name.
const char * ecs_get_name(const ecs_world_t *world, ecs_entity_t entity)
Get the name of an entity.
ecs_entity_t ecs_add_path_w_sep(ecs_world_t *world, ecs_entity_t entity, ecs_entity_t parent, const char *path, const char *sep, const char *prefix)
Add specified path to entity.
ecs_entity_t * ecs_get_lookup_path(const ecs_world_t *world)
Get current lookup path.
ecs_entity_t ecs_set_scope(ecs_world_t *world, ecs_entity_t scope)
Set the current scope.
const char * ecs_set_name_prefix(ecs_world_t *world, const char *prefix)
Set a name prefix for newly created entities.
void ecs_iter_skip(ecs_iter_t *it)
Skip a table while iterating.
void ecs_iter_set_group(ecs_iter_t *it, uint64_t group_id)
Set group to iterate for query iterator.
const ecs_query_t * ecs_query_get(const ecs_world_t *world, ecs_entity_t query)
Get query object.
bool ecs_query_next(ecs_iter_t *it)
Progress query iterator.
const ecs_query_group_info_t * ecs_query_get_group_info(const ecs_query_t *query, uint64_t group_id)
Get information about query group.
bool ecs_query_has(ecs_query_t *query, ecs_entity_t entity, ecs_iter_t *it)
Match entity with query.
bool ecs_query_is_true(const ecs_query_t *query)
Does query return one or more results.
char * ecs_term_str(const ecs_world_t *world, const ecs_term_t *term)
Convert term to string expression.
int32_t ecs_query_find_var(const ecs_query_t *query, const char *name)
Find variable index.
void ecs_query_fini(ecs_query_t *query)
Delete a query.
char * ecs_query_plan_w_profile(const ecs_query_t *query, const ecs_iter_t *it)
Convert query to string with profile.
const char * ecs_query_args_parse(ecs_query_t *query, ecs_iter_t *it, const char *expr)
Populate variables from key-value string.
int32_t ecs_query_match_count(const ecs_query_t *query)
Returns how often a match event happened for a cached query.
char * ecs_query_plan(const ecs_query_t *query)
Convert query to a string.
ecs_iter_t ecs_query_iter(const ecs_world_t *world, const ecs_query_t *query)
Create a query iterator.
char * ecs_query_str(const ecs_query_t *query)
Convert query to string expression.
bool ecs_query_var_is_entity(const ecs_query_t *query, int32_t var_id)
Test if variable is an entity.
ecs_query_t * ecs_query_init(ecs_world_t *world, const ecs_query_desc_t *desc)
Create a query.
bool ecs_query_changed(ecs_query_t *query)
Returns whether the query data changed since the last iteration.
bool ecs_query_has_range(ecs_query_t *query, ecs_table_range_t *range, ecs_iter_t *it)
Match range with query.
const char * ecs_query_var_name(const ecs_query_t *query, int32_t var_id)
Get variable name.
bool ecs_term_match_this(const ecs_term_t *term)
Is term matched on $this variable.
bool ecs_query_has_table(ecs_query_t *query, ecs_table_t *table, ecs_iter_t *it)
Match table with query.
void * ecs_query_get_group_ctx(const ecs_query_t *query, uint64_t group_id)
Get context of query group.
ecs_query_count_t ecs_query_count(const ecs_query_t *query)
Returns number of entities and results the query matches with.
bool ecs_term_ref_is_set(const ecs_term_ref_t *id)
Test whether term id is set.
bool ecs_term_is_initialized(const ecs_term_t *term)
Test whether a term is set.
bool ecs_term_match_0(const ecs_term_t *term)
Is term matched on 0 source.
const ecs_query_t * ecs_query_get_cache_query(const ecs_query_t *query)
Get query used to populate cache.
ecs_query_cache_kind_t
Specify cache policy for query.
Definition flecs.h:681
ecs_inout_kind_t
Specify read/write access for term.
Definition flecs.h:660
ecs_oper_kind_t
Specify operator for term.
Definition flecs.h:670
@ EcsQueryCacheAll
Require that all query terms can be cached.
Definition flecs.h:684
@ EcsQueryCacheDefault
Behavior determined by query creation context.
Definition flecs.h:682
@ EcsQueryCacheNone
No caching.
Definition flecs.h:685
@ EcsQueryCacheAuto
Cache query terms that are cacheable.
Definition flecs.h:683
@ EcsOut
Term is only written.
Definition flecs.h:666
@ EcsInOut
Term is both read and written.
Definition flecs.h:664
@ EcsInOutFilter
Same as InOutNone + prevents term from triggering observers.
Definition flecs.h:663
@ EcsInOutDefault
InOut for regular terms, In for shared terms.
Definition flecs.h:661
@ EcsInOutNone
Term is neither read nor written.
Definition flecs.h:662
@ EcsIn
Term is only read.
Definition flecs.h:665
@ EcsNot
The term must not match.
Definition flecs.h:673
@ EcsOptional
The term may match.
Definition flecs.h:674
@ EcsOr
One of the terms in an or chain must match.
Definition flecs.h:672
@ EcsOrFrom
Term must match at least one component from term id.
Definition flecs.h:676
@ EcsAnd
The term must match.
Definition flecs.h:671
@ EcsNotFrom
Term must match none of the components from term id.
Definition flecs.h:677
@ EcsAndFrom
Term must match all components from term id.
Definition flecs.h:675
ecs_table_t * ecs_table_add_id(ecs_world_t *world, ecs_table_t *table, ecs_id_t id)
Get table that has all components of current table plus the specified id.
int32_t ecs_search(const ecs_world_t *world, const ecs_table_t *table, ecs_id_t id, ecs_id_t *id_out)
Search for component id in table type.
const ecs_type_t * ecs_table_get_type(const ecs_table_t *table)
Get type for table.
int32_t ecs_search_offset(const ecs_world_t *world, const ecs_table_t *table, int32_t offset, ecs_id_t id, ecs_id_t *id_out)
Search for component id in table type starting from an offset.
int32_t ecs_table_size(const ecs_table_t *table)
Returns allocated size of table.
bool ecs_table_has_flags(ecs_table_t *table, ecs_flags32_t flags)
Test table for flags.
int32_t ecs_table_column_to_type_index(const ecs_table_t *table, int32_t index)
Convert column index to type index.
int32_t ecs_table_column_count(const ecs_table_t *table)
Return number of columns in table.
bool ecs_commit(ecs_world_t *world, ecs_entity_t entity, ecs_record_t *record, ecs_table_t *table, const ecs_type_t *added, const ecs_type_t *removed)
Commit (move) entity to a table.
void * ecs_table_get_column(const ecs_table_t *table, int32_t index, int32_t offset)
Get column from table by column index.
bool ecs_table_has_id(const ecs_world_t *world, const ecs_table_t *table, ecs_id_t id)
Test if table has id.
ecs_table_t * ecs_table_remove_id(ecs_world_t *world, ecs_table_t *table, ecs_id_t id)
Get table that has all components of current table minus the specified id.
int32_t ecs_table_count(const ecs_table_t *table)
Returns the number of entities in the table.
const ecs_entity_t * ecs_table_entities(const ecs_table_t *table)
Returns array with entity ids for table.
void ecs_table_unlock(ecs_world_t *world, ecs_table_t *table)
Unlock a table.
int32_t ecs_table_get_depth(const ecs_world_t *world, const ecs_table_t *table, ecs_entity_t rel)
Return depth for table in tree for relationship rel.
void * ecs_table_get_id(const ecs_world_t *world, const ecs_table_t *table, ecs_id_t id, int32_t offset)
Get column from table by component id.
void ecs_table_swap_rows(ecs_world_t *world, ecs_table_t *table, int32_t row_1, int32_t row_2)
Swaps two elements inside the table.
int32_t ecs_table_get_column_index(const ecs_world_t *world, const ecs_table_t *table, ecs_id_t id)
Get column index for id.
void ecs_table_lock(ecs_world_t *world, ecs_table_t *table)
Lock a table.
ecs_table_t * ecs_table_find(ecs_world_t *world, const ecs_id_t *ids, int32_t id_count)
Find table from id array.
int32_t ecs_table_get_type_index(const ecs_world_t *world, const ecs_table_t *table, ecs_id_t id)
Get type index for id.
size_t ecs_table_get_column_size(const ecs_table_t *table, int32_t index)
Get column size from table.
void ecs_table_clear_entities(ecs_world_t *world, ecs_table_t *table)
Remove all entities in a table.
int32_t ecs_search_relation(const ecs_world_t *world, const ecs_table_t *table, int32_t offset, ecs_id_t id, ecs_entity_t rel, ecs_flags64_t flags, ecs_entity_t *subject_out, ecs_id_t *id_out, struct ecs_table_record_t **tr_out)
Search for component/relationship id in table type starting from an offset.
int32_t ecs_table_type_to_column_index(const ecs_table_t *table, int32_t index)
Convert type index to column index.
int ecs_value_fini_w_type_info(const ecs_world_t *world, const ecs_type_info_t *ti, void *ptr)
Destruct a value.
int ecs_value_fini(const ecs_world_t *world, ecs_entity_t type, void *ptr)
Destruct a value.
int ecs_value_copy(const ecs_world_t *world, ecs_entity_t type, void *dst, const void *src)
Copy value.
int ecs_value_move(const ecs_world_t *world, ecs_entity_t type, void *dst, void *src)
Move value.
int ecs_value_move_w_type_info(const ecs_world_t *world, const ecs_type_info_t *ti, void *dst, void *src)
Move value.
void * ecs_value_new_w_type_info(ecs_world_t *world, const ecs_type_info_t *ti)
Construct a value in new storage.
int ecs_value_move_ctor_w_type_info(const ecs_world_t *world, const ecs_type_info_t *ti, void *dst, void *src)
Move construct value.
int ecs_value_copy_w_type_info(const ecs_world_t *world, const ecs_type_info_t *ti, void *dst, const void *src)
Copy value.
int ecs_value_init_w_type_info(const ecs_world_t *world, const ecs_type_info_t *ti, void *ptr)
Construct a value in existing storage.
void * ecs_value_new(ecs_world_t *world, ecs_entity_t type)
Construct a value in new storage.
int ecs_value_free(ecs_world_t *world, ecs_entity_t type, void *ptr)
Destruct a value, free storage.
int ecs_value_move_ctor(const ecs_world_t *world, ecs_entity_t type, void *dst, void *src)
Move construct value.
int ecs_value_init(const ecs_world_t *world, ecs_entity_t type, void *ptr)
Construct a value in existing storage.
void ecs_atfini(ecs_world_t *world, ecs_fini_action_t action, void *ctx)
Register action to be executed when world is destroyed.
bool ecs_is_fini(const ecs_world_t *world)
Returns whether the world is being deleted.
int ecs_fini(ecs_world_t *world)
Delete a world.
ecs_flags32_t ecs_world_get_flags(const ecs_world_t *world)
Get flags set on the world.
ecs_world_t * ecs_mini(void)
Create a new world with just the core module.
ecs_world_t * ecs_init(void)
Create a new world.
ecs_world_t * ecs_init_w_args(int argc, char *argv[])
Create a new world with arguments.
ecs_entities_t ecs_get_entities(const ecs_world_t *world)
Return entity identifiers in world.
void ecs_set_target_fps(ecs_world_t *world, float fps)
Set target frames per second (FPS) for application.
void ecs_measure_system_time(ecs_world_t *world, bool enable)
Measure system time.
float ecs_frame_begin(ecs_world_t *world, float delta_time)
Begin frame.
void ecs_run_post_frame(ecs_world_t *world, ecs_fini_action_t action, void *ctx)
Register action to be executed once after frame.
bool ecs_should_quit(const ecs_world_t *world)
Return whether a quit has been requested.
void ecs_set_default_query_flags(ecs_world_t *world, ecs_flags32_t flags)
Set default query flags.
void ecs_quit(ecs_world_t *world)
Signal exit This operation signals that the application should quit.
void ecs_measure_frame_time(ecs_world_t *world, bool enable)
Measure frame time.
void ecs_frame_end(ecs_world_t *world)
End frame.
ecs_entity_t ecs_get_entity(const ecs_poly_t *poly)
Get entity from poly.
ecs_id_t ecs_make_pair(ecs_entity_t first, ecs_entity_t second)
Make a pair id.
const ecs_build_info_t * ecs_get_build_info(void)
Get build info.
bool flecs_poly_is_(const ecs_poly_t *object, int32_t type)
Test if pointer is of specified type.
ecs_entity_t ecs_get_max_id(const ecs_world_t *world)
Get the largest issued entity id (not counting generation).
void ecs_run_aperiodic(ecs_world_t *world, ecs_flags32_t flags)
Force aperiodic actions.
void * ecs_get_binding_ctx(const ecs_world_t *world)
Get the world binding context.
void ecs_dim(ecs_world_t *world, int32_t entity_count)
Dimension the world for a specified number of entities.
void ecs_set_entity_range(ecs_world_t *world, ecs_entity_t id_start, ecs_entity_t id_end)
Set a range for issuing new entity ids.
const ecs_world_info_t * ecs_get_world_info(const ecs_world_t *world)
Get world info.
const ecs_world_t * ecs_get_world(const ecs_poly_t *poly)
Get world from poly.
void ecs_set_ctx(ecs_world_t *world, void *ctx, ecs_ctx_free_t ctx_free)
Set a world context.
int32_t ecs_delete_empty_tables(ecs_world_t *world, const ecs_delete_empty_tables_desc_t *desc)
Cleanup empty tables.
void ecs_set_binding_ctx(ecs_world_t *world, void *ctx, ecs_ctx_free_t ctx_free)
Set a world binding context.
bool ecs_enable_range_check(ecs_world_t *world, bool enable)
Enable/disable range limits.
void * ecs_get_ctx(const ecs_world_t *world)
Get the world context.
Operating system abstraction API.
Component information.
Definition flecs.h:1486
ecs_size_t size
Component size.
Definition flecs.h:1487
ecs_size_t alignment
Component alignment.
Definition flecs.h:1488
When added to an entity this informs serialization formats which component to use when a value is ass...
Definition flecs.h:1501
ecs_id_t component
Default component id.
Definition flecs.h:1502
A (string) identifier.
Definition flecs.h:1477
ecs_size_t length
Length of identifier.
Definition flecs.h:1479
char * value
Identifier string.
Definition flecs.h:1478
ecs_hashmap_t * index
Current index.
Definition flecs.h:1482
uint64_t hash
Hash of current value.
Definition flecs.h:1480
uint64_t index_hash
Hash of existing record in current index.
Definition flecs.h:1481
Component for storing a poly object.
Definition flecs.h:1492
ecs_poly_t * poly
Pointer to poly object.
Definition flecs.h:1493
Apply a rate filter to a tick source.
Definition timer.h:45
Component used to provide a tick source to systems.
Definition system.h:32
Component used for one shot/interval timer functionality.
Definition timer.h:35
Type with information about the current Flecs build.
Definition flecs.h:1389
int16_t version_major
Major flecs version.
Definition flecs.h:1393
const char ** addons
Addons included in build.
Definition flecs.h:1391
const char * version
Stringified version.
Definition flecs.h:1392
const char * compiler
Compiler used to compile flecs.
Definition flecs.h:1390
bool sanitize
Is this a sanitize build.
Definition flecs.h:1397
bool perf_trace
Is this a perf tracing build.
Definition flecs.h:1398
int16_t version_minor
Minor flecs version.
Definition flecs.h:1394
bool debug
Is this a debug build.
Definition flecs.h:1396
int16_t version_patch
Patch flecs version.
Definition flecs.h:1395
Used with ecs_bulk_init().
Definition flecs.h:1021
void ** data
Array with component data to insert.
Definition flecs.h:1033
ecs_id_t ids[(32)]
Ids to create the entities with.
Definition flecs.h:1031
int32_t count
Number of entities to create/populate.
Definition flecs.h:1029
int32_t _canary
Used for validity testing.
Definition flecs.h:1022
ecs_entity_t * entities
Entities to bulk insert.
Definition flecs.h:1024
ecs_table_t * table
Table to insert the entities into.
Definition flecs.h:1040
Used with ecs_component_init().
Definition flecs.h:1051
int32_t _canary
Used for validity testing.
Definition flecs.h:1052
ecs_type_info_t type
Parameters for type (size, hooks, ...)
Definition flecs.h:1058
ecs_entity_t entity
Existing entity to associate with observer (optional)
Definition flecs.h:1055
Used with ecs_delete_empty_tables().
Definition flecs.h:2565
uint16_t delete_generation
Delete table when generation > delete_generation.
Definition flecs.h:2573
double time_budget_seconds
Amount of time operation is allowed to spend.
Definition flecs.h:2579
uint16_t clear_generation
Free table data when generation > clear_generation.
Definition flecs.h:2570
ecs_id_t id
Optional component filter for the tables to evaluate.
Definition flecs.h:2567
int32_t min_id_count
Minimum number of component ids the table should have.
Definition flecs.h:2576
Type returned by ecs_get_entities().
Definition flecs.h:1950
int32_t alive_count
Number of alive entity ids.
Definition flecs.h:1953
int32_t count
Total number of entity ids.
Definition flecs.h:1952
const ecs_entity_t * ids
Array with all entity ids in the world.
Definition flecs.h:1951
Used with ecs_entity_init().
Definition flecs.h:975
const char * sep
Optional custom separator for hierarchical names.
Definition flecs.h:987
const char * root_sep
Optional, used for identifiers relative to root.
Definition flecs.h:991
const char * name
Name of the entity.
Definition flecs.h:982
bool use_low_id
When set to true, a low id (typically reserved for components) will be used to create the entity,...
Definition flecs.h:1003
const char * symbol
Optional entity symbol.
Definition flecs.h:993
int32_t _canary
Used for validity testing.
Definition flecs.h:976
const ecs_id_t * add
0-terminated array of ids to add to the entity.
Definition flecs.h:1008
const char * add_expr
String expression with components to add.
Definition flecs.h:1014
const ecs_value_t * set
0-terminated array of values to set on the entity.
Definition flecs.h:1011
ecs_entity_t id
Set to modify existing entity (optional)
Definition flecs.h:978
ecs_entity_t parent
Parent entity.
Definition flecs.h:980
Used with ecs_emit().
Definition flecs.h:1335
ecs_entity_t entity
Single-entity alternative to setting table / offset / count.
Definition flecs.h:1360
const void * const_param
Same as param, but with the guarantee that the value won't be modified.
Definition flecs.h:1371
ecs_table_t * table
The table for which to notify.
Definition flecs.h:1345
int32_t count
Limit number of notified entities to count.
Definition flecs.h:1357
ecs_table_t * other_table
Optional 2nd table to notify.
Definition flecs.h:1349
int32_t offset
Limit notified entities to ones starting from offset (row) in table.
Definition flecs.h:1352
const ecs_type_t * ids
Component ids.
Definition flecs.h:1342
ecs_poly_t * observable
Observable (usually the world)
Definition flecs.h:1374
ecs_entity_t event
The event id.
Definition flecs.h:1337
ecs_flags32_t flags
Event flags.
Definition flecs.h:1377
void * param
Optional context.
Definition flecs.h:1366
Header for ecs_poly_t objects.
Definition flecs.h:485
int32_t magic
Magic number verifying it's a flecs object.
Definition flecs.h:486
int32_t type
Magic number indicating which type of flecs object.
Definition flecs.h:487
int32_t refcount
Refcount, to enable RAII handles.
Definition flecs.h:488
ecs_mixins_t * mixins
Table with offsets to (optional) mixins.
Definition flecs.h:489
Iterator.
Definition flecs.h:1099
ecs_world_t * real_world
Actual world.
Definition flecs.h:1102
void * param
Param passed to ecs_run.
Definition flecs.h:1136
ecs_entity_t event
The event (if applicable)
Definition flecs.h:1122
int32_t frame_offset
Offset relative to start of iteration.
Definition flecs.h:1147
char ** variable_names
Names of variables (if any)
Definition flecs.h:1133
ecs_flags32_t ref_fields
Bitset with fields that aren't component arrays.
Definition flecs.h:1116
int8_t variable_count
Number of variables for query.
Definition flecs.h:1131
ecs_entity_t interrupted_by
When set, system execution is interrupted.
Definition flecs.h:1153
ecs_flags32_t flags
Iterator flags.
Definition flecs.h:1152
ecs_iter_t * chain_it
Optional, allows for creating iterator chains.
Definition flecs.h:1160
void * ctx
System context.
Definition flecs.h:1137
void * run_ctx
Run language binding context.
Definition flecs.h:1140
ecs_table_t * table
Current table.
Definition flecs.h:1107
int32_t offset
Offset relative to current table.
Definition flecs.h:1148
ecs_id_t event_id
The (component) id for the event.
Definition flecs.h:1123
ecs_iter_fini_action_t fini
Function to cleanup iterator resources.
Definition flecs.h:1159
ecs_var_t * variables
Values of variables (if any)
Definition flecs.h:1110
ecs_iter_private_t priv_
Private data.
Definition flecs.h:1154
ecs_world_t * world
The world.
Definition flecs.h:1101
void * callback_ctx
Callback language binding context.
Definition flecs.h:1139
ecs_entity_t * sources
Entity on which the id was matched (0 if same as entities)
Definition flecs.h:1112
void * binding_ctx
System binding context.
Definition flecs.h:1138
ecs_flags32_t row_fields
Fields that must be obtained with field_at.
Definition flecs.h:1117
float delta_system_time
Time elapsed since last system invocation.
Definition flecs.h:1144
const ecs_query_t * query
Query being evaluated.
Definition flecs.h:1132
int8_t term_index
Index of term that emitted an event.
Definition flecs.h:1128
ecs_entity_t system
The system (if applicable)
Definition flecs.h:1121
ecs_flags32_t set_fields
Fields that are set.
Definition flecs.h:1115
const ecs_size_t * sizes
Component sizes.
Definition flecs.h:1106
float delta_time
Time elapsed since last frame.
Definition flecs.h:1143
ecs_flags32_t up_fields
Bitset with fields matched through up traversal.
Definition flecs.h:1118
ecs_iter_action_t callback
Callback of system or observer.
Definition flecs.h:1158
int8_t field_count
Number of fields in iterator.
Definition flecs.h:1127
ecs_table_t * other_table
Prev or next table when adding/removing.
Definition flecs.h:1108
int32_t event_cur
Unique event id.
Definition flecs.h:1124
const ecs_table_record_t ** trs
Info on where to find field in table.
Definition flecs.h:1111
int32_t count
Number of entities to iterate.
Definition flecs.h:1149
uint64_t group_id
Group id for table, if group_by is used.
Definition flecs.h:1114
ecs_iter_next_action_t next
Function to progress iterator.
Definition flecs.h:1157
const ecs_entity_t * entities
Entity identifiers.
Definition flecs.h:1105
ecs_id_t * ids
(Component) ids
Definition flecs.h:1109
ecs_flags64_t constrained_vars
Bitset that marks constrained variables.
Definition flecs.h:1113
Used with ecs_observer_init().
Definition flecs.h:1273
ecs_ctx_free_t run_ctx_free
Callback to free run ctx.
Definition flecs.h:1317
ecs_ctx_free_t ctx_free
Callback to free ctx.
Definition flecs.h:1305
void * run_ctx
Context associated with run (for language bindings).
Definition flecs.h:1314
ecs_entity_t entity
Existing entity to associate with observer (optional)
Definition flecs.h:1278
ecs_entity_t events[(8)]
Events to observe (OnAdd, OnRemove, OnSet)
Definition flecs.h:1284
int32_t * last_event_id
Optional shared last event id for multiple observers.
Definition flecs.h:1324
void * callback_ctx
Context associated with callback (for language bindings).
Definition flecs.h:1308
void * ctx
User context to pass to callback.
Definition flecs.h:1302
ecs_query_desc_t query
Query for observer.
Definition flecs.h:1281
ecs_poly_t * observable
Observable with which to register the observer.
Definition flecs.h:1320
ecs_ctx_free_t callback_ctx_free
Callback to free callback ctx.
Definition flecs.h:1311
int8_t term_index_
Used for internal purposes.
Definition flecs.h:1327
ecs_iter_action_t callback
Callback to invoke on an event, invoked when the observer matches.
Definition flecs.h:1291
bool yield_existing
When observer is created, generate events from existing data.
Definition flecs.h:1288
ecs_run_action_t run
Callback invoked on an event.
Definition flecs.h:1299
int32_t _canary
Used for validity testing.
Definition flecs.h:1275
An observer reacts to events matching a query.
Definition flecs.h:830
int32_t event_count
Number of events.
Definition flecs.h:837
ecs_iter_action_t callback
See ecs_observer_desc_t::callback.
Definition flecs.h:839
ecs_entity_t entity
Entity associated with observer.
Definition flecs.h:853
ecs_observable_t * observable
Observable for observer.
Definition flecs.h:850
ecs_run_action_t run
See ecs_observer_desc_t::run.
Definition flecs.h:840
ecs_header_t hdr
Object header.
Definition flecs.h:831
ecs_ctx_free_t ctx_free
Callback to free ctx.
Definition flecs.h:846
void * run_ctx
Run language binding context.
Definition flecs.h:844
ecs_world_t * world
The world.
Definition flecs.h:852
ecs_ctx_free_t run_ctx_free
Callback to free run_ctx.
Definition flecs.h:848
void * callback_ctx
Callback language binding context.
Definition flecs.h:843
void * ctx
Observer context.
Definition flecs.h:842
ecs_entity_t events[(8)]
Observer events.
Definition flecs.h:836
ecs_ctx_free_t callback_ctx_free
Callback to free callback_ctx.
Definition flecs.h:847
ecs_query_t * query
Observer query.
Definition flecs.h:833
Struct returned by ecs_query_count().
Definition flecs.h:4982
int32_t empty_tables
Number of empty tables returned by query.
Definition flecs.h:4986
int32_t entities
Number of entities returned by query.
Definition flecs.h:4984
int32_t results
Number of results returned by query.
Definition flecs.h:4983
int32_t tables
Number of tables returned by query.
Definition flecs.h:4985
Used with ecs_query_init().
Definition flecs.h:1199
ecs_ctx_free_t ctx_free
Callback to free ctx.
Definition flecs.h:1260
ecs_id_t group_by
Component id to be used for grouping.
Definition flecs.h:1230
ecs_term_t terms[32]
Query terms.
Definition flecs.h:1204
int32_t _canary
Used for validity testing.
Definition flecs.h:1201
void * ctx
User context to pass to callback.
Definition flecs.h:1254
ecs_ctx_free_t group_by_ctx_free
Function to free group_by_ctx.
Definition flecs.h:1251
void * group_by_ctx
Context to pass to group_by.
Definition flecs.h:1248
void * binding_ctx
Context to be used for language bindings.
Definition flecs.h:1257
ecs_entity_t order_by
Component to sort on, used together with order_by_callback or order_by_table_callback.
Definition flecs.h:1226
ecs_order_by_action_t order_by_callback
Callback used for ordering query results.
Definition flecs.h:1218
ecs_group_create_action_t on_group_create
Callback that is invoked when a new group is created.
Definition flecs.h:1241
ecs_entity_t entity
Entity associated with query (optional)
Definition flecs.h:1266
ecs_ctx_free_t binding_ctx_free
Callback to free binding_ctx.
Definition flecs.h:1263
ecs_group_by_action_t group_by_callback
Callback used for grouping results.
Definition flecs.h:1237
ecs_group_delete_action_t on_group_delete
Callback that is invoked when an existing group is deleted.
Definition flecs.h:1245
ecs_sort_table_action_t order_by_table_callback
Callback used for ordering query results.
Definition flecs.h:1222
ecs_flags32_t flags
Flags for enabling query features.
Definition flecs.h:1213
ecs_query_cache_kind_t cache_kind
Caching policy of query.
Definition flecs.h:1210
const char * expr
Query DSL expression (optional)
Definition flecs.h:1207
Type that contains information about a query group.
Definition flecs.h:1461
int32_t table_count
Number of tables in group.
Definition flecs.h:1463
void * ctx
Group context, returned by on_group_create.
Definition flecs.h:1464
int32_t match_count
How often tables have been matched/unmatched.
Definition flecs.h:1462
Queries are lists of constraints (terms) that match entities.
Definition flecs.h:790
ecs_flags32_t row_fields
Fields that must be acquired with field_at.
Definition flecs.h:809
ecs_flags32_t data_fields
Fields that have data.
Definition flecs.h:806
ecs_flags32_t read_fields
Fields that read data.
Definition flecs.h:808
ecs_header_t hdr
Object header.
Definition flecs.h:791
ecs_term_t terms[32]
Query terms.
Definition flecs.h:793
int8_t var_count
Number of query variables.
Definition flecs.h:798
ecs_flags32_t fixed_fields
Fields with a fixed source.
Definition flecs.h:803
ecs_flags32_t var_fields
Fields with non-$this variable source.
Definition flecs.h:804
ecs_flags32_t write_fields
Fields that write data.
Definition flecs.h:807
int32_t sizes[32]
Component sizes.
Definition flecs.h:794
int32_t eval_count
Number of times query is evaluated.
Definition flecs.h:824
ecs_world_t * world
World or stage query was created with.
Definition flecs.h:822
ecs_flags32_t static_id_fields
Fields with a static (component) id.
Definition flecs.h:805
ecs_world_t * real_world
Actual world.
Definition flecs.h:821
ecs_flags32_t set_fields
Fields that will be set.
Definition flecs.h:811
ecs_entity_t entity
Entity associated with query (optional)
Definition flecs.h:820
void * ctx
User context to pass to callback.
Definition flecs.h:817
ecs_flags32_t shared_readonly_fields
Fields that don't write shared data.
Definition flecs.h:810
ecs_id_t ids[32]
Component ids.
Definition flecs.h:795
ecs_query_cache_kind_t cache_kind
Caching policy of query.
Definition flecs.h:813
int8_t term_count
Number of query terms.
Definition flecs.h:799
char ** vars
Array with variable names for iterator.
Definition flecs.h:815
int8_t field_count
Number of fields returned by query.
Definition flecs.h:800
ecs_flags32_t flags
Query flags.
Definition flecs.h:797
void * binding_ctx
Context to be used for language bindings.
Definition flecs.h:818
Record for entity index.
Definition flecs.h:493
ecs_table_t * table
Identifies a type (and table) in world.
Definition flecs.h:495
uint32_t row
Table row of the entity.
Definition flecs.h:496
ecs_id_record_t * idr
Id record to (*, entity) for target entities.
Definition flecs.h:494
int32_t dense
Index in dense array of entity index.
Definition flecs.h:497
Header for table cache elements.
Definition flecs.h:501
struct ecs_table_cache_hdr_t * next
Next/previous elements for id in table cache.
Definition flecs.h:504
struct ecs_table_cache_t * cache
Table cache of element.
Definition flecs.h:502
ecs_table_t * table
Table associated with element.
Definition flecs.h:503
Metadata describing where a component id is stored in a table.
Definition flecs.h:511
ecs_table_cache_hdr_t hdr
Table cache header.
Definition flecs.h:512
int16_t index
First type index where id occurs in table.
Definition flecs.h:513
int16_t column
First column index where id occurs.
Definition flecs.h:515
int16_t count
Number of times id occurs in table.
Definition flecs.h:514
Type that describes a reference to an entity or variable in a term.
Definition flecs.h:751
const char * name
Name.
Definition flecs.h:758
ecs_entity_t id
Entity id.
Definition flecs.h:752
Type that describes a term (single element in a query).
Definition flecs.h:766
ecs_term_ref_t src
Source of term.
Definition flecs.h:772
int8_t field_index
Index of field for term in iterator.
Definition flecs.h:783
ecs_id_t id
Component id to be matched by term.
Definition flecs.h:767
int16_t oper
Operator of term.
Definition flecs.h:781
ecs_term_ref_t second
Second element of pair.
Definition flecs.h:774
ecs_flags16_t flags_
Flags that help eval, set by ecs_query_init()
Definition flecs.h:784
ecs_entity_t trav
Relationship to traverse when looking for the component.
Definition flecs.h:776
int16_t inout
Access to contents matched by term.
Definition flecs.h:780
ecs_term_ref_t first
Component or first element of pair.
Definition flecs.h:773
ecs_copy_t copy_ctor
Ctor + copy.
Definition flecs.h:903
void * lifecycle_ctx
Component lifecycle context (see meta add-on)
Definition flecs.h:942
void * ctx
User defined context.
Definition flecs.h:940
ecs_iter_action_t on_remove
Callback that is invoked when an instance of the component is removed.
Definition flecs.h:938
void * binding_ctx
Language binding context.
Definition flecs.h:941
ecs_move_t move_dtor
Move + dtor.
Definition flecs.h:918
ecs_flags32_t flags
Hook flags.
Definition flecs.h:924
ecs_copy_t copy
copy assignment
Definition flecs.h:899
ecs_ctx_free_t lifecycle_ctx_free
Callback to free lifecycle_ctx.
Definition flecs.h:946
ecs_iter_action_t on_set
Callback that is invoked when an instance of the component is set.
Definition flecs.h:933
ecs_move_t move
move assignment
Definition flecs.h:900
ecs_xtor_t ctor
ctor
Definition flecs.h:897
ecs_ctx_free_t ctx_free
Callback to free ctx.
Definition flecs.h:944
ecs_iter_action_t on_add
Callback that is invoked when an instance of a component is added.
Definition flecs.h:928
ecs_ctx_free_t binding_ctx_free
Callback to free binding_ctx.
Definition flecs.h:945
ecs_move_t move_ctor
Ctor + move.
Definition flecs.h:906
ecs_move_t ctor_move_dtor
Ctor + move + dtor (or move_ctor + dtor).
Definition flecs.h:912
ecs_xtor_t dtor
dtor
Definition flecs.h:898
Type that contains component information (passed to ctors/dtors/...)
Definition flecs.h:953
ecs_size_t alignment
Alignment of type.
Definition flecs.h:955
ecs_size_t size
Size of type.
Definition flecs.h:954
const char * name
Type name.
Definition flecs.h:958
ecs_entity_t component
Handle to component (do not set)
Definition flecs.h:957
ecs_type_hooks_t hooks
Type hooks.
Definition flecs.h:956
A type is a list of (component) ids.
Definition flecs.h:363
ecs_id_t * array
Array with ids.
Definition flecs.h:364
int32_t count
Number of elements in array.
Definition flecs.h:365
Utility to hold a value of a dynamic type.
Definition flecs.h:966
void * ptr
Pointer to value.
Definition flecs.h:968
ecs_entity_t type
Type of value.
Definition flecs.h:967
Type that contains information about the world.
Definition flecs.h:1402
float delta_time
Time passed to or computed by ecs_progress()
Definition flecs.h:1408
ecs_entity_t min_id
First allowed entity id.
Definition flecs.h:1404
int64_t set_count
Set commands processed.
Definition flecs.h:1444
double world_time_total
Time elapsed in simulation.
Definition flecs.h:1416
int32_t tag_id_count
Number of tag (no data) ids in the world.
Definition flecs.h:1432
int32_t component_id_count
Number of component (data) ids in the world.
Definition flecs.h:1433
int64_t pipeline_build_count_total
Total number of pipeline builds.
Definition flecs.h:1428
int64_t eval_comp_monitors_total
Total number of monitor evaluations.
Definition flecs.h:1421
int32_t table_count
Number of tables.
Definition flecs.h:1436
float delta_time_raw
Raw delta time (no time scaling)
Definition flecs.h:1407
float frame_time_total
Total time spent processing a frame.
Definition flecs.h:1411
int64_t table_create_total
Total number of times a table was created.
Definition flecs.h:1426
int64_t observers_ran_frame
Total number of times observer was invoked.
Definition flecs.h:1430
float system_time_total
Total time spent in systems.
Definition flecs.h:1412
int64_t id_delete_total
Total number of times an id was deleted.
Definition flecs.h:1425
int64_t systems_ran_frame
Total number of systems ran in last frame.
Definition flecs.h:1429
struct ecs_world_info_t::@354013130002221015352342176135321160002353227336 cmd
Command statistics.
float merge_time_total
Total time spent in merges.
Definition flecs.h:1414
int64_t discard_count
Commands discarded, happens when entity is no longer alive when running the command.
Definition flecs.h:1447
int64_t clear_count
Clear commands processed.
Definition flecs.h:1443
ecs_entity_t last_component_id
Last issued component entity id.
Definition flecs.h:1403
int64_t frame_count_total
Total number of frames.
Definition flecs.h:1419
ecs_entity_t max_id
Last allowed entity id.
Definition flecs.h:1405
int64_t merge_count_total
Total number of merges.
Definition flecs.h:1420
int64_t other_count
Other commands processed.
Definition flecs.h:1449
int64_t batched_command_count
Commands batched.
Definition flecs.h:1451
int64_t table_delete_total
Total number of times a table was deleted.
Definition flecs.h:1427
int64_t delete_count
Selete commands processed.
Definition flecs.h:1442
int64_t rematch_count_total
Total number of rematches.
Definition flecs.h:1422
int64_t id_create_total
Total number of times a new id was created.
Definition flecs.h:1424
int64_t batched_entity_count
Entities for which commands were batched.
Definition flecs.h:1450
float time_scale
Time scale applied to delta_time.
Definition flecs.h:1409
int32_t pair_id_count
Number of pair ids in the world.
Definition flecs.h:1434
float rematch_time_total
Time spent on query rematching.
Definition flecs.h:1415
int64_t ensure_count
Ensure/emplace commands processed.
Definition flecs.h:1445
float target_fps
Target fps.
Definition flecs.h:1410
double world_time_total_raw
Time elapsed in simulation (no scaling)
Definition flecs.h:1417
float emit_time_total
Total time spent notifying observers.
Definition flecs.h:1413
int64_t modified_count
Modified commands processed.
Definition flecs.h:1446
const char * name_prefix
Value set by ecs_set_name_prefix().
Definition flecs.h:1454
int64_t event_count
Enqueued custom events.
Definition flecs.h:1448
int64_t add_count
Add commands processed.
Definition flecs.h:1440
int64_t remove_count
Remove commands processed.
Definition flecs.h:1441