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
8#ifndef FLECS_H
9#define FLECS_H
10
33/* Flecs version macros */
34#define FLECS_VERSION_MAJOR 4
35#define FLECS_VERSION_MINOR 0
36#define FLECS_VERSION_PATCH 2
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
184// #define FLECS_CPP_NO_AUTO_REGISTRATION
185
186#ifndef FLECS_CUSTOM_BUILD
187// #define FLECS_C /**< C API convenience macros, always enabled */
188#define FLECS_CPP
189#define FLECS_MODULE
190#define FLECS_SCRIPT
191#define FLECS_STATS
192#define FLECS_METRICS
193#define FLECS_ALERTS
194#define FLECS_SYSTEM
195#define FLECS_PIPELINE
196#define FLECS_TIMER
197#define FLECS_META
198#define FLECS_UNITS
199#define FLECS_JSON
200#define FLECS_DOC
201#define FLECS_LOG
202#define FLECS_APP
203#define FLECS_OS_API_IMPL
204#define FLECS_HTTP
205#define FLECS_REST
206// #define FLECS_JOURNAL /**< Journaling addon (disabled by default) */
207// #define FLECS_PERF_TRACE /**< Enable performance tracing (disabled by default) */
208#endif // ifndef FLECS_CUSTOM_BUILD
209
213// #define FLECS_LOW_FOOTPRINT
214#ifdef FLECS_LOW_FOOTPRINT
215#define FLECS_HI_COMPONENT_ID (16)
216#define FLECS_HI_ID_RECORD_ID (16)
217#define FLECS_SPARSE_PAGE_BITS (6)
218#define FLECS_ENTITY_PAGE_BITS (6)
219#define FLECS_USE_OS_ALLOC
220#endif
221
232#ifndef FLECS_HI_COMPONENT_ID
233#define FLECS_HI_COMPONENT_ID (256)
234#endif
235
242#ifndef FLECS_HI_ID_RECORD_ID
243#define FLECS_HI_ID_RECORD_ID (1024)
244#endif
245
251#ifndef FLECS_SPARSE_PAGE_BITS
252#define FLECS_SPARSE_PAGE_BITS (12)
253#endif
254
257#ifndef FLECS_ENTITY_PAGE_BITS
258#define FLECS_ENTITY_PAGE_BITS (12)
259#endif
260
265// #define FLECS_USE_OS_ALLOC
266
269#ifndef FLECS_ID_DESC_MAX
270#define FLECS_ID_DESC_MAX (32)
271#endif
272
275#ifndef FLECS_EVENT_DESC_MAX
276#define FLECS_EVENT_DESC_MAX (8)
277#endif
278
281#define FLECS_VARIABLE_COUNT_MAX (64)
282
285#ifndef FLECS_TERM_COUNT_MAX
286#define FLECS_TERM_COUNT_MAX 32
287#endif
288
291#ifndef FLECS_TERM_ARG_COUNT_MAX
292#define FLECS_TERM_ARG_COUNT_MAX (16)
293#endif
294
297#ifndef FLECS_QUERY_VARIABLE_COUNT_MAX
298#define FLECS_QUERY_VARIABLE_COUNT_MAX (64)
299#endif
300
303#ifndef FLECS_QUERY_SCOPE_NESTING_MAX
304#define FLECS_QUERY_SCOPE_NESTING_MAX (8)
305#endif
306
309#include "flecs/private/api_defines.h"
310#include "flecs/datastructures/vec.h" /* Vector datatype */
311#include "flecs/datastructures/sparse.h" /* Sparse set */
312#include "flecs/datastructures/block_allocator.h" /* Block allocator */
313#include "flecs/datastructures/stack_allocator.h" /* Stack allocator */
314#include "flecs/datastructures/map.h" /* Map */
315#include "flecs/datastructures/switch_list.h" /* Switch list */
316#include "flecs/datastructures/allocator.h" /* Allocator */
317#include "flecs/datastructures/strbuf.h" /* String builder */
318#include "flecs/os_api.h" /* Abstraction for operating system functions */
319
320#ifdef __cplusplus
321extern "C" {
322#endif
323
340typedef uint64_t ecs_id_t;
341
348
364typedef struct {
366 int32_t count;
367} ecs_type_t;
368
392
395
398
400typedef struct ecs_term_t ecs_term_t;
401
404
423
428
433typedef struct ecs_iter_t ecs_iter_t;
434
443typedef struct ecs_ref_t ecs_ref_t;
444
449
454
457
460
480typedef void ecs_poly_t;
481
484
492
500
502typedef struct ecs_table_cache_hdr_t {
503 struct ecs_table_cache_t *cache;
506 bool empty;
508
519
538typedef void (*ecs_run_action_t)(
539 ecs_iter_t *it);
540
547typedef void (*ecs_iter_action_t)(
548 ecs_iter_t *it);
549
558 ecs_iter_t *it);
559
566 ecs_iter_t *it);
567
570 ecs_entity_t e1,
571 const void *ptr1,
572 ecs_entity_t e2,
573 const void *ptr2);
574
577 ecs_world_t* world,
578 ecs_table_t* table,
579 ecs_entity_t* entities,
580 void* ptr,
581 int32_t size,
582 int32_t lo,
583 int32_t hi,
584 ecs_order_by_action_t order_by);
585
587typedef uint64_t (*ecs_group_by_action_t)(
588 ecs_world_t *world,
589 ecs_table_t *table,
590 ecs_id_t group_id,
591 void *ctx);
592
594typedef void* (*ecs_group_create_action_t)(
595 ecs_world_t *world,
596 uint64_t group_id,
597 void *group_by_ctx); /* from ecs_query_desc_t */
598
601 ecs_world_t *world,
602 uint64_t group_id,
603 void *group_ctx, /* return value from ecs_group_create_action_t */
604 void *group_by_ctx); /* from ecs_query_desc_t */
605
607typedef void (*ecs_module_action_t)(
608 ecs_world_t *world);
609
611typedef void (*ecs_fini_action_t)(
612 ecs_world_t *world,
613 void *ctx);
614
616typedef void (*ecs_ctx_free_t)(
617 void *ctx);
618
620typedef int (*ecs_compare_action_t)(
621 const void *ptr1,
622 const void *ptr2);
623
625typedef uint64_t (*ecs_hash_value_action_t)(
626 const void *ptr);
627
629typedef void (*ecs_xtor_t)(
630 void *ptr,
631 int32_t count,
632 const ecs_type_info_t *type_info);
633
635typedef void (*ecs_copy_t)(
636 void *dst_ptr,
637 const void *src_ptr,
638 int32_t count,
639 const ecs_type_info_t *type_info);
640
642typedef void (*ecs_move_t)(
643 void *dst_ptr,
644 void *src_ptr,
645 int32_t count,
646 const ecs_type_info_t *type_info);
647
649typedef void (*flecs_poly_dtor_t)(
650 ecs_poly_t *poly);
651
670
681
689
690/* Term id flags */
691
696#define EcsSelf (1llu << 63)
697
702#define EcsUp (1llu << 62)
703
708#define EcsTrav (1llu << 61)
709
714#define EcsCascade (1llu << 60)
715
720#define EcsDesc (1llu << 59)
721
726#define EcsIsVariable (1llu << 58)
727
732#define EcsIsEntity (1llu << 57)
733
738#define EcsIsName (1llu << 56)
739
744#define EcsTraverseFlags (EcsSelf|EcsUp|EcsTrav|EcsCascade|EcsDesc)
745
750#define EcsTermRefFlags (EcsTraverseFlags|EcsIsVariable|EcsIsEntity|EcsIsName)
751
766
788
799 ecs_flags32_t flags;
800 int8_t var_count;
801 int8_t term_count;
802 int8_t field_count;
804 /* Bitmasks for quick field information lookups */
805 ecs_termset_t fixed_fields;
806 ecs_termset_t var_fields;
807 ecs_termset_t static_id_fields;
808 ecs_termset_t data_fields;
809 ecs_termset_t write_fields;
810 ecs_termset_t read_fields;
811 ecs_termset_t row_fields;
813 ecs_termset_t set_fields;
817 char **vars;
819 void *ctx;
826 int32_t eval_count;
827};
828
857
911
923
924#include "flecs/private/api_types.h" /* Supporting API types */
925#include "flecs/private/api_support.h" /* Supporting API functions */
926#include "flecs/datastructures/hashmap.h" /* Hashmap */
927
933
938typedef struct ecs_entity_desc_t {
939 int32_t _canary;
945 const char *name;
950 const char *sep;
954 const char *root_sep;
956 const char *symbol;
971 const ecs_id_t *add;
972
975
977 const char *add_expr;
979
1009
1023
1063 /* World */
1067 /* Matched data */
1069 const ecs_size_t *sizes;
1073 ecs_var_t *variables;
1076 ecs_flags64_t constrained_vars;
1077 uint64_t group_id;
1078 ecs_termset_t set_fields;
1079 ecs_termset_t ref_fields;
1080 ecs_termset_t row_fields;
1081 ecs_termset_t up_fields;
1083 /* Input information */
1087 int32_t event_cur;
1089 /* Query information */
1091 int8_t term_index;
1098 /* Context */
1099 void *param;
1100 void *ctx;
1103 void *run_ctx;
1105 /* Time */
1109 /* Iterator counters */
1111 int32_t offset;
1112 int32_t count;
1114 /* Misc */
1115 ecs_flags32_t flags;
1117 ecs_iter_private_t priv_;
1119 /* Chained iterators */
1124};
1125
1126
1131#define EcsQueryMatchPrefab (1u << 1u)
1132
1137#define EcsQueryMatchDisabled (1u << 2u)
1138
1143#define EcsQueryMatchEmptyTables (1u << 3u)
1144
1149#define EcsQueryAllowUnresolvedByName (1u << 6u)
1150
1155#define EcsQueryTableOnly (1u << 7u)
1156
1157
1231
1293
1298typedef struct ecs_event_desc_t {
1301
1306
1309
1313
1315 int32_t offset;
1316
1320 int32_t count;
1321
1324
1329 void *param;
1330
1334 const void *const_param;
1335
1338
1340 ecs_flags32_t flags;
1342
1343
1352typedef struct ecs_build_info_t {
1353 const char *compiler;
1354 const char **addons;
1355 const char *version;
1359 bool debug;
1363
1423
1430
1441typedef struct EcsIdentifier {
1442 char *value;
1443 ecs_size_t length;
1444 uint64_t hash;
1445 uint64_t index_hash;
1446 ecs_hashmap_t *index;
1448
1450typedef struct EcsComponent {
1451 ecs_size_t size;
1452 ecs_size_t alignment;
1454
1459
1468
1472/* Only include deprecated definitions if deprecated addon is required */
1473#ifdef FLECS_DEPRECATED
1475#endif
1476
1492FLECS_API extern const ecs_id_t ECS_PAIR;
1493
1495FLECS_API extern const ecs_id_t ECS_AUTO_OVERRIDE;
1496
1498FLECS_API extern const ecs_id_t ECS_TOGGLE;
1499
1507/* Builtin component ids */
1508
1510FLECS_API extern const ecs_entity_t ecs_id(EcsComponent);
1511
1513FLECS_API extern const ecs_entity_t ecs_id(EcsIdentifier);
1514
1516FLECS_API extern const ecs_entity_t ecs_id(EcsPoly);
1517
1519FLECS_API extern const ecs_entity_t ecs_id(EcsDefaultChildComponent);
1520
1522FLECS_API extern const ecs_entity_t EcsQuery;
1523
1525FLECS_API extern const ecs_entity_t EcsObserver;
1526
1528FLECS_API extern const ecs_entity_t EcsSystem;
1529
1531FLECS_API extern const ecs_entity_t ecs_id(EcsTickSource);
1532
1534FLECS_API extern const ecs_entity_t ecs_id(EcsPipelineQuery);
1535
1537FLECS_API extern const ecs_entity_t ecs_id(EcsTimer);
1538
1540FLECS_API extern const ecs_entity_t ecs_id(EcsRateFilter);
1541
1543FLECS_API extern const ecs_entity_t EcsFlecs;
1544
1546FLECS_API extern const ecs_entity_t EcsFlecsCore;
1547
1549FLECS_API extern const ecs_entity_t EcsWorld;
1550
1552FLECS_API extern const ecs_entity_t EcsWildcard;
1553
1555FLECS_API extern const ecs_entity_t EcsAny;
1556
1558FLECS_API extern const ecs_entity_t EcsThis;
1559
1561FLECS_API extern const ecs_entity_t EcsVariable;
1562
1564#define EcsSingleton EcsVariable
1565
1573FLECS_API extern const ecs_entity_t EcsTransitive;
1574
1582FLECS_API extern const ecs_entity_t EcsReflexive;
1583
1594FLECS_API extern const ecs_entity_t EcsFinal;
1595
1597FLECS_API extern const ecs_entity_t EcsOnInstantiate;
1598
1602FLECS_API extern const ecs_entity_t EcsOverride;
1603
1607FLECS_API extern const ecs_entity_t EcsInherit;
1608
1613FLECS_API extern const ecs_entity_t EcsDontInherit;
1614
1622FLECS_API extern const ecs_entity_t EcsSymmetric;
1623
1633FLECS_API extern const ecs_entity_t EcsExclusive;
1634
1636FLECS_API extern const ecs_entity_t EcsAcyclic;
1637
1640FLECS_API extern const ecs_entity_t EcsTraversable;
1641
1651FLECS_API extern const ecs_entity_t EcsWith;
1652
1662FLECS_API extern const ecs_entity_t EcsOneOf;
1663
1665FLECS_API extern const ecs_entity_t EcsCanToggle;
1666
1670FLECS_API extern const ecs_entity_t EcsTrait;
1671
1681FLECS_API extern const ecs_entity_t EcsRelationship;
1682
1692FLECS_API extern const ecs_entity_t EcsTarget;
1693
1696FLECS_API extern const ecs_entity_t EcsPairIsTag;
1697
1699FLECS_API extern const ecs_entity_t EcsName;
1700
1702FLECS_API extern const ecs_entity_t EcsSymbol;
1703
1705FLECS_API extern const ecs_entity_t EcsAlias;
1706
1708FLECS_API extern const ecs_entity_t EcsChildOf;
1709
1711FLECS_API extern const ecs_entity_t EcsIsA;
1712
1714FLECS_API extern const ecs_entity_t EcsDependsOn;
1715
1717FLECS_API extern const ecs_entity_t EcsSlotOf;
1718
1720FLECS_API extern const ecs_entity_t EcsModule;
1721
1723FLECS_API extern const ecs_entity_t EcsPrivate;
1724
1727FLECS_API extern const ecs_entity_t EcsPrefab;
1728
1731FLECS_API extern const ecs_entity_t EcsDisabled;
1732
1736FLECS_API extern const ecs_entity_t EcsNotQueryable;
1737
1739FLECS_API extern const ecs_entity_t EcsOnAdd;
1740
1742FLECS_API extern const ecs_entity_t EcsOnRemove;
1743
1745FLECS_API extern const ecs_entity_t EcsOnSet;
1746
1748FLECS_API extern const ecs_entity_t EcsMonitor;
1749
1751FLECS_API extern const ecs_entity_t EcsOnTableCreate;
1752
1754FLECS_API extern const ecs_entity_t EcsOnTableDelete;
1755
1757FLECS_API extern const ecs_entity_t EcsOnTableEmpty;
1758
1760FLECS_API extern const ecs_entity_t EcsOnTableFill;
1761
1763FLECS_API extern const ecs_entity_t EcsOnDelete;
1764
1767FLECS_API extern const ecs_entity_t EcsOnDeleteTarget;
1768
1771FLECS_API extern const ecs_entity_t EcsRemove;
1772
1775FLECS_API extern const ecs_entity_t EcsDelete;
1776
1779FLECS_API extern const ecs_entity_t EcsPanic;
1780
1782FLECS_API extern const ecs_entity_t EcsSparse;
1783
1785FLECS_API extern const ecs_entity_t EcsUnion;
1786
1788FLECS_API extern const ecs_entity_t EcsPredEq;
1789
1791FLECS_API extern const ecs_entity_t EcsPredMatch;
1792
1794FLECS_API extern const ecs_entity_t EcsPredLookup;
1795
1797FLECS_API extern const ecs_entity_t EcsScopeOpen;
1798
1800FLECS_API extern const ecs_entity_t EcsScopeClose;
1801
1806FLECS_API extern const ecs_entity_t EcsEmpty;
1807
1808FLECS_API extern const ecs_entity_t ecs_id(EcsPipeline);
1809FLECS_API extern const ecs_entity_t EcsOnStart;
1810FLECS_API extern const ecs_entity_t EcsPreFrame;
1811FLECS_API extern const ecs_entity_t EcsOnLoad;
1812FLECS_API extern const ecs_entity_t EcsPostLoad;
1813FLECS_API extern const ecs_entity_t EcsPreUpdate;
1814FLECS_API extern const ecs_entity_t EcsOnUpdate;
1815FLECS_API extern const ecs_entity_t EcsOnValidate;
1816FLECS_API extern const ecs_entity_t EcsPostUpdate;
1817FLECS_API extern const ecs_entity_t EcsPreStore;
1818FLECS_API extern const ecs_entity_t EcsOnStore;
1819FLECS_API extern const ecs_entity_t EcsPostFrame;
1820FLECS_API extern const ecs_entity_t EcsPhase;
1824#define EcsLastInternalComponentId (ecs_id(EcsPoly))
1825
1828#define EcsFirstUserComponentId (8)
1829
1832#define EcsFirstUserEntityId (FLECS_HI_COMPONENT_ID + 128)
1833
1834/* When visualized the reserved id ranges look like this:
1835 * - [1..8]: Builtin components
1836 * - [9..FLECS_HI_COMPONENT_ID]: Low ids reserved for application components
1837 * - [FLECS_HI_COMPONENT_ID + 1..EcsFirstUserEntityId]: Builtin entities
1838 */
1839
1861FLECS_API
1863
1870FLECS_API
1872
1880FLECS_API
1882 int argc,
1883 char *argv[]);
1884
1891FLECS_API
1893 ecs_world_t *world);
1894
1902FLECS_API
1904 const ecs_world_t *world);
1905
1913FLECS_API
1915 ecs_world_t *world,
1916 ecs_fini_action_t action,
1917 void *ctx);
1918
1925
1952FLECS_API
1954 const ecs_world_t *world);
1955
1963FLECS_API
1965 const ecs_world_t *world);
1966
1992FLECS_API
1994 ecs_world_t *world,
1995 ecs_ftime_t delta_time);
1996
2003FLECS_API
2005 ecs_world_t *world);
2006
2014FLECS_API
2016 ecs_world_t *world,
2017 ecs_fini_action_t action,
2018 void *ctx);
2019
2026FLECS_API
2028 ecs_world_t *world);
2029
2036FLECS_API
2038 const ecs_world_t *world);
2039
2052 ecs_world_t *world,
2053 bool enable);
2054
2066 ecs_world_t *world,
2067 bool enable);
2068
2084FLECS_API
2086 ecs_world_t *world,
2087 ecs_ftime_t fps);
2088
2102FLECS_API
2104 ecs_world_t *world,
2105 ecs_flags32_t flags);
2106
2183FLECS_API
2185 ecs_world_t *world,
2186 bool multi_threaded);
2187
2195FLECS_API
2197 ecs_world_t *world);
2198
2209FLECS_API
2211 ecs_world_t *world);
2212
2228FLECS_API
2230 ecs_world_t *world);
2231
2242FLECS_API
2244 const ecs_world_t *world);
2245
2259FLECS_API
2261 ecs_world_t *world);
2262
2277FLECS_API
2279 ecs_world_t *world);
2280
2291FLECS_API
2293 ecs_world_t *world);
2294
2308FLECS_API
2310 ecs_world_t *world,
2311 int32_t stages);
2312
2319FLECS_API
2321 const ecs_world_t *world);
2322
2338FLECS_API
2340 const ecs_world_t *world,
2341 int32_t stage_id);
2342
2350FLECS_API
2352 const ecs_world_t *world);
2353
2361FLECS_API
2363 ecs_world_t *world);
2364
2369FLECS_API
2371 ecs_world_t *stage);
2372
2380FLECS_API
2382 const ecs_world_t *world);
2383
2399FLECS_API
2401 ecs_world_t *world,
2402 void *ctx,
2403 ecs_ctx_free_t ctx_free);
2404
2413FLECS_API
2415 ecs_world_t *world,
2416 void *ctx,
2417 ecs_ctx_free_t ctx_free);
2418
2426FLECS_API
2428 const ecs_world_t *world);
2429
2437FLECS_API
2439 const ecs_world_t *world);
2440
2446FLECS_API
2448
2454FLECS_API
2456 const ecs_world_t *world);
2457
2466FLECS_API
2468 ecs_world_t *world,
2469 int32_t entity_count);
2470
2486FLECS_API
2488 ecs_world_t *world,
2489 ecs_entity_t id_start,
2490 ecs_entity_t id_end);
2491
2502FLECS_API
2504 ecs_world_t *world,
2505 bool enable);
2506
2512FLECS_API
2514 const ecs_world_t *world);
2515
2529FLECS_API
2531 ecs_world_t *world,
2532 ecs_flags32_t flags);
2533
2567FLECS_API
2569 ecs_world_t *world,
2570 ecs_id_t id,
2571 uint16_t clear_generation,
2572 uint16_t delete_generation,
2573 int32_t min_id_count,
2574 double time_budget_seconds);
2575
2581FLECS_API
2583 const ecs_poly_t *poly);
2584
2590FLECS_API
2592 const ecs_poly_t *poly);
2593
2607FLECS_API
2609 const ecs_poly_t *object,
2610 int32_t type);
2611
2615#define flecs_poly_is(object, type)\
2616 flecs_poly_is_(object, type##_magic)
2617
2626FLECS_API
2628 ecs_entity_t first,
2629 ecs_entity_t second);
2630
2657FLECS_API
2659 ecs_world_t *world);
2660
2678FLECS_API
2680 ecs_world_t *world);
2681
2690FLECS_API
2692 ecs_world_t *world,
2693 ecs_id_t id);
2694
2702FLECS_API
2704 ecs_world_t *world,
2705 ecs_table_t *table);
2706
2725FLECS_API
2727 ecs_world_t *world,
2728 const ecs_entity_desc_t *desc);
2729
2756FLECS_API
2758 ecs_world_t *world,
2759 const ecs_bulk_desc_t *desc);
2760
2770FLECS_API
2772 ecs_world_t *world,
2773 ecs_id_t id,
2774 int32_t count);
2775
2791FLECS_API
2793 ecs_world_t *world,
2794 ecs_entity_t dst,
2795 ecs_entity_t src,
2796 bool copy_value);
2797
2806FLECS_API
2808 ecs_world_t *world,
2809 ecs_entity_t entity);
2810
2818FLECS_API
2820 ecs_world_t *world,
2821 ecs_id_t id);
2822
2840FLECS_API
2842 ecs_world_t *world,
2843 ecs_entity_t entity,
2844 ecs_id_t id);
2845
2854FLECS_API
2856 ecs_world_t *world,
2857 ecs_entity_t entity,
2858 ecs_id_t id);
2859
2911FLECS_API
2913 ecs_world_t *world,
2914 ecs_entity_t entity,
2915 ecs_id_t id);
2916
2923FLECS_API
2925 ecs_world_t *world,
2926 ecs_entity_t entity);
2927
2935FLECS_API
2937 ecs_world_t *world,
2938 ecs_id_t id);
2939
2947FLECS_API
2949 ecs_world_t *world,
2950 ecs_id_t id);
2951
2958FLECS_API
2960 const ecs_world_t *world);
2961
2980FLECS_API
2982 ecs_world_t *world,
2983 ecs_entity_t entity,
2984 bool enabled);
2985
2999FLECS_API
3001 ecs_world_t *world,
3002 ecs_entity_t entity,
3003 ecs_id_t id,
3004 bool enable);
3005
3016FLECS_API
3018 const ecs_world_t *world,
3019 ecs_entity_t entity,
3020 ecs_id_t id);
3021
3045FLECS_API
3046const void* ecs_get_id(
3047 const ecs_world_t *world,
3048 ecs_entity_t entity,
3049 ecs_id_t id);
3050
3062FLECS_API
3064 const ecs_world_t *world,
3065 ecs_entity_t entity,
3066 ecs_id_t id);
3067
3085FLECS_API
3087 ecs_world_t *world,
3088 ecs_entity_t entity,
3089 ecs_id_t id);
3090
3102FLECS_API
3104 ecs_world_t *world,
3105 ecs_entity_t entity,
3106 ecs_id_t id);
3107
3118FLECS_API
3120 const ecs_world_t *world,
3121 ecs_entity_t entity,
3122 ecs_id_t id);
3123
3132FLECS_API
3134 const ecs_world_t *world,
3135 ecs_ref_t *ref,
3136 ecs_id_t id);
3137
3145FLECS_API
3147 const ecs_world_t *world,
3148 ecs_ref_t *ref);
3149
3157FLECS_API
3159 const ecs_world_t *world,
3160 ecs_entity_t entity);
3161
3180FLECS_API
3182 ecs_world_t *world,
3183 ecs_entity_t entity);
3184
3191FLECS_API
3193 ecs_record_t *record);
3194
3214FLECS_API
3216 ecs_world_t *world,
3217 ecs_entity_t entity);
3218
3224FLECS_API
3226 const ecs_record_t *record);
3227
3234FLECS_API
3236 const ecs_record_t *record);
3237
3253FLECS_API
3255 const ecs_world_t *world,
3256 const ecs_record_t *record,
3257 ecs_id_t id);
3258
3267FLECS_API
3269 ecs_world_t *world,
3270 ecs_record_t *record,
3271 ecs_id_t id);
3272
3280FLECS_API
3282 ecs_world_t *world,
3283 const ecs_record_t *record,
3284 ecs_id_t id);
3285
3302FLECS_API
3304 const ecs_record_t *record,
3305 int32_t column,
3306 size_t size);
3307
3327FLECS_API
3329 ecs_world_t *world,
3330 ecs_entity_t entity,
3331 ecs_id_t id,
3332 bool *is_new);
3333
3343FLECS_API
3345 ecs_world_t *world,
3346 ecs_entity_t entity,
3347 ecs_id_t id);
3348
3364FLECS_API
3366 ecs_world_t *world,
3367 ecs_entity_t entity,
3368 ecs_id_t id,
3369 size_t size,
3370 const void *ptr);
3371
3399FLECS_API
3401 const ecs_world_t *world,
3402 ecs_entity_t e);
3403
3429FLECS_API
3431 const ecs_world_t *world,
3432 ecs_entity_t e);
3433
3439FLECS_API
3441 ecs_entity_t e);
3442
3459FLECS_API
3461 const ecs_world_t *world,
3462 ecs_entity_t e);
3463
3486FLECS_API
3488 ecs_world_t *world,
3489 ecs_entity_t entity);
3490
3509FLECS_API
3511 ecs_world_t *world,
3512 ecs_id_t id);
3513
3521FLECS_API
3523 const ecs_world_t *world,
3524 ecs_entity_t entity);
3525
3540FLECS_API
3542 ecs_world_t *world,
3543 ecs_entity_t entity);
3544
3560FLECS_API
3562 const ecs_world_t *world,
3563 ecs_entity_t entity);
3564
3571FLECS_API
3573 const ecs_world_t *world,
3574 ecs_entity_t entity);
3575
3583FLECS_API
3585 const ecs_world_t *world,
3586 const ecs_type_t* type);
3587
3599FLECS_API
3601 const ecs_world_t *world,
3602 const ecs_table_t *table);
3603
3618FLECS_API
3620 const ecs_world_t *world,
3621 ecs_entity_t entity);
3622
3633FLECS_API
3635 const ecs_world_t *world,
3636 ecs_entity_t entity,
3637 ecs_id_t id);
3638
3649FLECS_API
3651 const ecs_world_t *world,
3652 ecs_entity_t entity,
3653 ecs_id_t id);
3654
3669FLECS_API
3671 const ecs_world_t *world,
3672 ecs_entity_t entity,
3673 ecs_entity_t rel,
3674 int32_t index);
3675
3689FLECS_API
3691 const ecs_world_t *world,
3692 ecs_entity_t entity);
3693
3714FLECS_API
3716 const ecs_world_t *world,
3717 ecs_entity_t entity,
3718 ecs_entity_t rel,
3719 ecs_id_t id);
3720
3731FLECS_API
3733 const ecs_world_t *world,
3734 ecs_entity_t entity,
3735 ecs_entity_t rel);
3736
3744FLECS_API
3746 const ecs_world_t *world,
3747 ecs_id_t entity);
3748
3768FLECS_API
3769const char* ecs_get_name(
3770 const ecs_world_t *world,
3771 ecs_entity_t entity);
3772
3782FLECS_API
3783const char* ecs_get_symbol(
3784 const ecs_world_t *world,
3785 ecs_entity_t entity);
3786
3800FLECS_API
3802 ecs_world_t *world,
3803 ecs_entity_t entity,
3804 const char *name);
3805
3819FLECS_API
3821 ecs_world_t *world,
3822 ecs_entity_t entity,
3823 const char *symbol);
3824
3836FLECS_API
3838 ecs_world_t *world,
3839 ecs_entity_t entity,
3840 const char *alias);
3841
3857FLECS_API
3859 const ecs_world_t *world,
3860 const char *path);
3861
3876FLECS_API
3878 const ecs_world_t *world,
3879 ecs_entity_t parent,
3880 const char *name);
3881
3904FLECS_API
3906 const ecs_world_t *world,
3907 ecs_entity_t parent,
3908 const char *path,
3909 const char *sep,
3910 const char *prefix,
3911 bool recursive);
3912
3930FLECS_API
3932 const ecs_world_t *world,
3933 const char *symbol,
3934 bool lookup_as_path,
3935 bool recursive);
3936
3958FLECS_API
3960 const ecs_world_t *world,
3961 ecs_entity_t parent,
3962 ecs_entity_t child,
3963 const char *sep,
3964 const char *prefix);
3965
3979 const ecs_world_t *world,
3980 ecs_entity_t parent,
3981 ecs_entity_t child,
3982 const char *sep,
3983 const char *prefix,
3984 ecs_strbuf_t *buf);
3985
4001FLECS_API
4003 ecs_world_t *world,
4004 ecs_entity_t parent,
4005 const char *path,
4006 const char *sep,
4007 const char *prefix);
4008
4023FLECS_API
4025 ecs_world_t *world,
4026 ecs_entity_t entity,
4027 ecs_entity_t parent,
4028 const char *path,
4029 const char *sep,
4030 const char *prefix);
4031
4045FLECS_API
4047 ecs_world_t *world,
4048 ecs_entity_t scope);
4049
4057FLECS_API
4059 const ecs_world_t *world);
4060
4070FLECS_API
4072 ecs_world_t *world,
4073 const char *prefix);
4074
4101FLECS_API
4103 ecs_world_t *world,
4104 const ecs_entity_t *lookup_path);
4105
4112FLECS_API
4114 const ecs_world_t *world);
4115
4140FLECS_API
4142 ecs_world_t *world,
4143 const ecs_component_desc_t *desc);
4144
4154FLECS_API
4156 const ecs_world_t *world,
4157 ecs_id_t id);
4158
4170FLECS_API
4172 ecs_world_t *world,
4173 ecs_entity_t id,
4174 const ecs_type_hooks_t *hooks);
4175
4182FLECS_API
4184 const ecs_world_t *world,
4185 ecs_entity_t id);
4186
4210FLECS_API
4212 const ecs_world_t *world,
4213 ecs_id_t id);
4214
4223FLECS_API
4225 const ecs_world_t *world,
4226 ecs_id_t id);
4227
4247FLECS_API
4249 const ecs_world_t *world,
4250 ecs_id_t id);
4251
4260FLECS_API
4262 ecs_id_t id,
4263 ecs_id_t pattern);
4264
4270FLECS_API
4272 ecs_id_t id);
4273
4279FLECS_API
4281 ecs_id_t id);
4282
4296FLECS_API
4298 const ecs_world_t *world,
4299 ecs_id_t id);
4300
4309FLECS_API
4310ecs_flags32_t ecs_id_get_flags(
4311 const ecs_world_t *world,
4312 ecs_id_t id);
4313
4320FLECS_API
4322 ecs_id_t id_flags);
4323
4331FLECS_API
4333 const ecs_world_t *world,
4334 ecs_id_t id);
4335
4343FLECS_API
4345 const ecs_world_t *world,
4346 ecs_id_t id,
4347 ecs_strbuf_t *buf);
4348
4356FLECS_API
4358 const ecs_world_t *world,
4359 const char *expr);
4360
4374FLECS_API
4376 const ecs_term_ref_t *id);
4377
4389FLECS_API
4391 const ecs_term_t *term);
4392
4407FLECS_API
4409 const ecs_term_t *term);
4410
4423FLECS_API
4425 const ecs_term_t *term);
4426
4435FLECS_API
4437 const ecs_world_t *world,
4438 const ecs_term_t *term);
4439
4447FLECS_API
4449 const ecs_query_t *query);
4450
4491FLECS_API
4493 const ecs_world_t *world,
4494 ecs_id_t id);
4495
4501FLECS_API
4503 ecs_iter_t *it);
4504
4517FLECS_API
4519 const ecs_world_t *world,
4520 ecs_entity_t parent);
4521
4527FLECS_API
4529 ecs_iter_t *it);
4530
4546FLECS_API
4548 ecs_world_t *world,
4549 const ecs_query_desc_t *desc);
4550
4555FLECS_API
4557 ecs_query_t *query);
4558
4567FLECS_API
4569 const ecs_query_t *query,
4570 const char *name);
4571
4579FLECS_API
4581 const ecs_query_t *query,
4582 int32_t var_id);
4583
4594FLECS_API
4596 const ecs_query_t *query,
4597 int32_t var_id);
4598
4667FLECS_API
4669 const ecs_world_t *world,
4670 const ecs_query_t *query);
4671
4679FLECS_API
4681 ecs_iter_t *it);
4682
4701FLECS_API
4703 ecs_query_t *query,
4704 ecs_entity_t entity,
4705 ecs_iter_t *it);
4706
4725FLECS_API
4727 ecs_query_t *query,
4728 ecs_table_t *table,
4729 ecs_iter_t *it);
4730
4757FLECS_API
4759 ecs_query_t *query,
4760 ecs_table_range_t *range,
4761 ecs_iter_t *it);
4762
4770FLECS_API
4772 const ecs_query_t *query);
4773
4783FLECS_API
4785 const ecs_query_t *query);
4786
4801FLECS_API
4803 const ecs_query_t *query,
4804 const ecs_iter_t *it);
4805
4823FLECS_API
4825 ecs_query_t *query,
4826 ecs_iter_t *it,
4827 const char *expr);
4828
4856FLECS_API
4858 ecs_query_t *query);
4859
4870FLECS_API
4872 ecs_iter_t *it);
4873
4896FLECS_API
4898 ecs_iter_t *it,
4899 uint64_t group_id);
4900
4909FLECS_API
4911 const ecs_query_t *query,
4912 uint64_t group_id);
4913
4922FLECS_API
4924 const ecs_query_t *query,
4925 uint64_t group_id);
4926
4934
4941FLECS_API
4943 const ecs_query_t *query);
4944
4950FLECS_API
4952 const ecs_query_t *query);
4953
4962FLECS_API
4964 const ecs_query_t *query);
4965
4994FLECS_API
4996 ecs_world_t *world,
4997 ecs_event_desc_t *desc);
4998
5009FLECS_API
5011 ecs_world_t *world,
5012 ecs_event_desc_t *desc);
5013
5024FLECS_API
5026 ecs_world_t *world,
5027 const ecs_observer_desc_t *desc);
5028
5037FLECS_API
5039 const ecs_world_t *world,
5040 ecs_entity_t observer);
5041
5064FLECS_API
5066 ecs_iter_t *it);
5067
5077FLECS_API
5079 ecs_iter_t *it);
5080
5092FLECS_API
5094 ecs_iter_t *it);
5095
5108FLECS_API
5110 ecs_iter_t *it);
5111
5119FLECS_API
5121 ecs_iter_t *it);
5122
5161FLECS_API
5163 ecs_iter_t *it,
5164 int32_t var_id,
5165 ecs_entity_t entity);
5166
5177FLECS_API
5179 ecs_iter_t *it,
5180 int32_t var_id,
5181 const ecs_table_t *table);
5182
5193FLECS_API
5195 ecs_iter_t *it,
5196 int32_t var_id,
5197 const ecs_table_range_t *range);
5198
5211FLECS_API
5213 ecs_iter_t *it,
5214 int32_t var_id);
5215
5229FLECS_API
5231 ecs_iter_t *it,
5232 int32_t var_id);
5233
5247FLECS_API
5249 ecs_iter_t *it,
5250 int32_t var_id);
5251
5263FLECS_API
5265 ecs_iter_t *it,
5266 int32_t var_id);
5267
5279FLECS_API
5281 ecs_iter_t *it);
5282
5294FLECS_API
5296 const ecs_iter_t *it);
5297
5313FLECS_API
5315 const ecs_iter_t *it,
5316 int32_t offset,
5317 int32_t limit);
5318
5325FLECS_API
5327 ecs_iter_t *it);
5328
5349FLECS_API
5351 const ecs_iter_t *it,
5352 int32_t index,
5353 int32_t count);
5354
5361FLECS_API
5363 ecs_iter_t *it);
5364
5406FLECS_API
5408 const ecs_iter_t *it,
5409 size_t size,
5410 int8_t index);
5411
5433FLECS_API
5435 const ecs_iter_t *it,
5436 size_t size,
5437 int8_t index,
5438 int32_t row);
5439
5448FLECS_API
5450 const ecs_iter_t *it,
5451 int8_t index);
5452
5463FLECS_API
5465 const ecs_iter_t *it,
5466 int8_t index);
5467
5474FLECS_API
5476 const ecs_iter_t *it,
5477 int8_t index);
5478
5485FLECS_API
5487 const ecs_iter_t *it,
5488 int8_t index);
5489
5498FLECS_API
5500 const ecs_iter_t *it,
5501 int8_t index);
5502
5510FLECS_API
5512 const ecs_iter_t *it,
5513 int8_t index);
5514
5522FLECS_API
5524 const ecs_iter_t *it,
5525 int8_t index);
5526
5540FLECS_API
5542 const ecs_iter_t *it,
5543 int8_t index);
5544
5560FLECS_API
5562 const ecs_table_t *table);
5563
5574FLECS_API
5576 const ecs_world_t *world,
5577 const ecs_table_t *table,
5578 ecs_id_t id);
5579
5589FLECS_API
5591 const ecs_world_t *world,
5592 const ecs_table_t *table,
5593 ecs_id_t id);
5594
5602FLECS_API
5604 const ecs_table_t *table);
5605
5619FLECS_API
5621 const ecs_table_t *table,
5622 int32_t index);
5623
5632FLECS_API
5634 const ecs_table_t *table,
5635 int32_t index);
5636
5645FLECS_API
5647 const ecs_table_t *table,
5648 int32_t index,
5649 int32_t offset);
5650
5660FLECS_API
5662 const ecs_world_t *world,
5663 const ecs_table_t *table,
5664 ecs_id_t id,
5665 int32_t offset);
5666
5674FLECS_API
5676 const ecs_table_t *table,
5677 int32_t index);
5678
5685FLECS_API
5687 const ecs_table_t *table);
5688
5696FLECS_API
5698 const ecs_table_t *table);
5699
5706FLECS_API
5708 const ecs_table_t *table);
5709
5720FLECS_API
5722 const ecs_world_t *world,
5723 const ecs_table_t *table,
5724 ecs_id_t id);
5725
5736FLECS_API
5738 const ecs_world_t *world,
5739 const ecs_table_t *table,
5740 ecs_entity_t rel);
5741
5751FLECS_API
5753 ecs_world_t *world,
5754 ecs_table_t *table,
5755 ecs_id_t id);
5756
5767FLECS_API
5769 ecs_world_t *world,
5770 const ecs_id_t *ids,
5771 int32_t id_count);
5772
5782FLECS_API
5784 ecs_world_t *world,
5785 ecs_table_t *table,
5786 ecs_id_t id);
5787
5803FLECS_API
5805 ecs_world_t *world,
5806 ecs_table_t *table);
5807
5814FLECS_API
5816 ecs_world_t *world,
5817 ecs_table_t *table);
5818
5828FLECS_API
5830 ecs_table_t *table,
5831 ecs_flags32_t flags);
5832
5840FLECS_API
5842 ecs_world_t* world,
5843 ecs_table_t* table,
5844 int32_t row_1,
5845 int32_t row_2);
5846
5869FLECS_API
5871 ecs_world_t *world,
5872 ecs_entity_t entity,
5873 ecs_record_t *record,
5874 ecs_table_t *table,
5875 const ecs_type_t *added,
5876 const ecs_type_t *removed);
5877
5878
5897FLECS_API
5899 const ecs_world_t *world,
5900 const ecs_table_t *table,
5901 ecs_id_t id,
5902 ecs_id_t *id_out);
5903
5939FLECS_API
5941 const ecs_world_t *world,
5942 const ecs_table_t *table,
5943 int32_t offset,
5944 ecs_id_t id,
5945 ecs_id_t *id_out);
5946
5988FLECS_API
5990 const ecs_world_t *world,
5991 const ecs_table_t *table,
5992 int32_t offset,
5993 ecs_id_t id,
5994 ecs_entity_t rel,
5995 ecs_flags64_t flags, /* EcsSelf and/or EcsUp */
5996 ecs_entity_t *subject_out,
5997 ecs_id_t *id_out,
5998 struct ecs_table_record_t **tr_out);
5999
6007FLECS_API
6009 ecs_world_t* world,
6010 ecs_table_t* table);
6011
6028FLECS_API
6030 const ecs_world_t *world,
6031 ecs_entity_t type,
6032 void *ptr);
6033
6041FLECS_API
6043 const ecs_world_t *world,
6044 const ecs_type_info_t *ti,
6045 void *ptr);
6046
6053FLECS_API
6055 ecs_world_t *world,
6056 ecs_entity_t type);
6057
6065 ecs_world_t *world,
6066 const ecs_type_info_t *ti);
6067
6076 const ecs_world_t *world,
6077 const ecs_type_info_t *ti,
6078 void *ptr);
6079
6087FLECS_API
6089 const ecs_world_t *world,
6090 ecs_entity_t type,
6091 void* ptr);
6092
6100FLECS_API
6102 ecs_world_t *world,
6103 ecs_entity_t type,
6104 void* ptr);
6105
6114FLECS_API
6116 const ecs_world_t *world,
6117 const ecs_type_info_t *ti,
6118 void* dst,
6119 const void *src);
6120
6129FLECS_API
6131 const ecs_world_t *world,
6132 ecs_entity_t type,
6133 void* dst,
6134 const void *src);
6135
6145 const ecs_world_t *world,
6146 const ecs_type_info_t *ti,
6147 void* dst,
6148 void *src);
6149
6159 const ecs_world_t *world,
6160 ecs_entity_t type,
6161 void* dst,
6162 void *src);
6163
6173 const ecs_world_t *world,
6174 const ecs_type_info_t *ti,
6175 void* dst,
6176 void *src);
6177
6187 const ecs_world_t *world,
6188 ecs_entity_t type,
6189 void* dst,
6190 void *src);
6191
6205#include "flecs/addons/flecs_c.h"
6206
6207#ifdef __cplusplus
6208}
6209#endif
6210
6211#include "flecs/private/addons.h"
6212
6213#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.
struct ecs_value_t ecs_value_t
Utility to hold a value of a dynamic type.
struct EcsIdentifier EcsIdentifier
A (string) identifier.
struct EcsPoly EcsPoly
Component for storing a poly object.
struct EcsDefaultChildComponent EcsDefaultChildComponent
When added to an entity this informs serialization formats which component to use when a value is ass...
struct EcsComponent EcsComponent
Component information.
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 EcsOnTableFill
Event that triggers when a table becomes non-empty.
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 EcsOnTableEmpty
Event that triggers when a table becomes empty (doesn't emit on creation).
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.
struct ecs_component_desc_t ecs_component_desc_t
Used with ecs_component_init().
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_header_t ecs_header_t
Header for ecs_poly_t objects.
struct ecs_stage_t ecs_stage_t
A stage enables modification while iterating and from multiple threads.
Definition flecs.h:394
struct ecs_ref_t ecs_ref_t
A ref is a fast way to fetch a component for a specific entity.
Definition flecs.h:443
ecs_id_t ecs_entity_t
An entity identifier.
Definition flecs.h:347
struct ecs_table_record_t ecs_table_record_t
Metadata describing where a component id is stored in a table.
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:459
struct ecs_world_t ecs_world_t
A world is the container for all ECS data and supporting features.
Definition flecs.h:391
struct ecs_mixins_t ecs_mixins_t
Type that stores poly mixins.
Definition flecs.h:483
uint64_t ecs_id_t
Ids are the things that can be added to an entity.
Definition flecs.h:340
struct ecs_observable_t ecs_observable_t
An observable produces events that can be listened for by an observer.
Definition flecs.h:427
struct ecs_table_t ecs_table_t
A table stores entities and components for a specific type.
Definition flecs.h:397
void ecs_poly_t
A poly object.
Definition flecs.h:480
struct ecs_table_cache_hdr_t ecs_table_cache_hdr_t
Header for table cache elements.
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.
struct ecs_bulk_desc_t ecs_bulk_desc_t
Used with ecs_bulk_init().
struct ecs_entity_desc_t ecs_entity_desc_t
Used with ecs_entity_init().
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:607
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:587
uint64_t(* ecs_hash_value_action_t)(const void *ptr)
Callback used for hashing values.
Definition flecs.h:625
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:600
void(* ecs_iter_fini_action_t)(ecs_iter_t *it)
Function prototype for freeing an iterator.
Definition flecs.h:565
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:594
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:576
bool(* ecs_iter_next_action_t)(ecs_iter_t *it)
Function prototype for iterating an iterator.
Definition flecs.h:557
void(* ecs_iter_action_t)(ecs_iter_t *it)
Function prototype for iterables.
Definition flecs.h:547
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:635
int(* ecs_compare_action_t)(const void *ptr1, const void *ptr2)
Callback used for sorting values.
Definition flecs.h:620
void(* ecs_fini_action_t)(ecs_world_t *world, void *ctx)
Action callback on world exit.
Definition flecs.h:611
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:642
void(* flecs_poly_dtor_t)(ecs_poly_t *poly)
Destructor function for poly objects.
Definition flecs.h:649
void(* ecs_run_action_t)(ecs_iter_t *it)
Function prototype for runnables (systems, observers).
Definition flecs.h:538
void(* ecs_ctx_free_t)(void *ctx)
Function to cleanup context data.
Definition flecs.h:616
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:569
void(* ecs_xtor_t)(void *ptr, int32_t count, const ecs_type_info_t *type_info)
Constructor/destructor callback.
Definition flecs.h:629
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.
struct ecs_world_info_t ecs_world_info_t
Type that contains information about the world.
struct ecs_query_group_info_t ecs_query_group_info_t
Type that contains information about a query group.
struct ecs_build_info_t ecs_build_info_t
Type with information about the current Flecs build.
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.
struct ecs_event_desc_t ecs_event_desc_t
Used with ecs_emit().
struct ecs_observer_desc_t ecs_observer_desc_t
Used with ecs_observer_init().
#define FLECS_EVENT_DESC_MAX
Maximum number of events in ecs_observer_desc_t.
Definition flecs.h:276
#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:270
#define FLECS_TERM_COUNT_MAX
Maximum number of terms in queries.
Definition flecs.h:286
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.
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)
Write path identifier to buffer.
ecs_entity_t ecs_get_scope(const ecs_world_t *world)
Get the current scope.
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.
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.
struct ecs_query_desc_t ecs_query_desc_t
Used with ecs_query_init().
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.
struct ecs_query_count_t ecs_query_count_t
Struct returned by ecs_query_count().
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.
struct ecs_term_ref_t ecs_term_ref_t
Type that describes a reference to an entity or variable in a term.
ecs_query_cache_kind_t
Specify cache policy for query.
Definition flecs.h:683
ecs_inout_kind_t
Specify read/write access for term.
Definition flecs.h:662
ecs_oper_kind_t
Specify operator for term.
Definition flecs.h:672
@ EcsQueryCacheAll
Require that all query terms can be cached.
Definition flecs.h:686
@ EcsQueryCacheDefault
Behavior determined by query creation context.
Definition flecs.h:684
@ EcsQueryCacheNone
No caching.
Definition flecs.h:687
@ EcsQueryCacheAuto
Cache query terms that are cacheable.
Definition flecs.h:685
@ EcsOut
Term is only written.
Definition flecs.h:668
@ EcsInOut
Term is both read and written.
Definition flecs.h:666
@ EcsInOutFilter
Same as InOutNone + prevents term from triggering observers.
Definition flecs.h:665
@ EcsInOutDefault
InOut for regular terms, In for shared terms.
Definition flecs.h:663
@ EcsInOutNone
Term is neither read nor written.
Definition flecs.h:664
@ EcsIn
Term is only read.
Definition flecs.h:667
@ EcsNot
The term must not match.
Definition flecs.h:675
@ EcsOptional
The term may match.
Definition flecs.h:676
@ EcsOr
One of the terms in an or chain must match.
Definition flecs.h:674
@ EcsOrFrom
Term must match at least one component from term id.
Definition flecs.h:678
@ EcsAnd
The term must match.
Definition flecs.h:673
@ EcsNotFrom
Term must match none of the components from term id.
Definition flecs.h:679
@ EcsAndFrom
Term must match all components from term id.
Definition flecs.h:677
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.
struct ecs_entities_t ecs_entities_t
Type returned by ecs_get_entities().
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, ecs_id_t id, uint16_t clear_generation, uint16_t delete_generation, int32_t min_id_count, double time_budget_seconds)
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:1450
ecs_size_t size
Component size.
Definition flecs.h:1451
ecs_size_t alignment
Component alignment.
Definition flecs.h:1452
When added to an entity this informs serialization formats which component to use when a value is ass...
Definition flecs.h:1465
ecs_id_t component
Default component id.
Definition flecs.h:1466
A (string) identifier.
Definition flecs.h:1441
ecs_size_t length
Length of identifier.
Definition flecs.h:1443
char * value
Identifier string.
Definition flecs.h:1442
ecs_hashmap_t * index
Current index.
Definition flecs.h:1446
uint64_t hash
Hash of current value.
Definition flecs.h:1444
uint64_t index_hash
Hash of existing record in current index.
Definition flecs.h:1445
Component for storing a poly object.
Definition flecs.h:1456
ecs_poly_t * poly
Pointer to poly object.
Definition flecs.h:1457
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:1352
int16_t version_major
Major flecs version.
Definition flecs.h:1356
const char ** addons
Addons included in build.
Definition flecs.h:1354
const char * version
Stringified version.
Definition flecs.h:1355
const char * compiler
Compiler used to compile flecs.
Definition flecs.h:1353
bool sanitize
Is this a sanitize build.
Definition flecs.h:1360
bool perf_trace
Is this a perf tracing build.
Definition flecs.h:1361
int16_t version_minor
Minor flecs version.
Definition flecs.h:1357
bool debug
Is this a debug build.
Definition flecs.h:1359
int16_t version_patch
Patch flecs version.
Definition flecs.h:1358
Used with ecs_bulk_init().
Definition flecs.h:984
void ** data
Array with component data to insert.
Definition flecs.h:996
ecs_id_t ids[(32)]
Ids to create the entities with.
Definition flecs.h:994
int32_t count
Number of entities to create/populate.
Definition flecs.h:992
int32_t _canary
Used for validity testing.
Definition flecs.h:985
ecs_entity_t * entities
Entities to bulk insert.
Definition flecs.h:987
ecs_table_t * table
Table to insert the entities into.
Definition flecs.h:1003
Used with ecs_component_init().
Definition flecs.h:1014
int32_t _canary
Used for validity testing.
Definition flecs.h:1015
ecs_type_info_t type
Parameters for type (size, hooks, ...)
Definition flecs.h:1021
ecs_entity_t entity
Existing entity to associate with observer (optional)
Definition flecs.h:1018
Type returned by ecs_get_entities().
Definition flecs.h:1920
int32_t alive_count
Number of alive entity ids.
Definition flecs.h:1923
int32_t count
Total number of entity ids.
Definition flecs.h:1922
const ecs_entity_t * ids
Array with all entity ids in the world.
Definition flecs.h:1921
Used with ecs_entity_init().
Definition flecs.h:938
const char * sep
Optional custom separator for hierarchical names.
Definition flecs.h:950
const char * root_sep
Optional, used for identifiers relative to root.
Definition flecs.h:954
const char * name
Name of the entity.
Definition flecs.h:945
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:966
const char * symbol
Optional entity symbol.
Definition flecs.h:956
int32_t _canary
Used for validity testing.
Definition flecs.h:939
const ecs_id_t * add
0-terminated array of ids to add to the entity.
Definition flecs.h:971
const char * add_expr
String expression with components to add.
Definition flecs.h:977
const ecs_value_t * set
0-terminated array of values to set on the entity.
Definition flecs.h:974
ecs_entity_t id
Set to modify existing entity (optional)
Definition flecs.h:941
ecs_entity_t parent
Parent entity.
Definition flecs.h:943
Used with ecs_emit().
Definition flecs.h:1298
ecs_entity_t entity
Single-entity alternative to setting table / offset / count.
Definition flecs.h:1323
const void * const_param
Same as param, but with the guarantee that the value won't be modified.
Definition flecs.h:1334
ecs_table_t * table
The table for which to notify.
Definition flecs.h:1308
int32_t count
Limit number of notified entities to count.
Definition flecs.h:1320
ecs_table_t * other_table
Optional 2nd table to notify.
Definition flecs.h:1312
int32_t offset
Limit notified entities to ones starting from offset (row) in table.
Definition flecs.h:1315
const ecs_type_t * ids
Component ids.
Definition flecs.h:1305
ecs_poly_t * observable
Observable (usually the world)
Definition flecs.h:1337
ecs_entity_t event
The event id.
Definition flecs.h:1300
ecs_flags32_t flags
Event flags.
Definition flecs.h:1340
void * param
Optional context.
Definition flecs.h:1329
Header for ecs_poly_t objects.
Definition flecs.h:486
int32_t magic
Magic number verifying it's a flecs object.
Definition flecs.h:487
int32_t type
Magic number indicating which type of flecs object.
Definition flecs.h:488
int32_t refcount
Refcount, to enable RAII handles.
Definition flecs.h:489
ecs_mixins_t * mixins
Table with offsets to (optional) mixins.
Definition flecs.h:490
Iterator.
Definition flecs.h:1062
ecs_world_t * real_world
Actual world.
Definition flecs.h:1065
void * param
Param passed to ecs_run.
Definition flecs.h:1099
ecs_entity_t event
The event (if applicable)
Definition flecs.h:1085
int32_t frame_offset
Offset relative to start of iteration.
Definition flecs.h:1110
char ** variable_names
Names of variables (if any)
Definition flecs.h:1096
ecs_flags32_t ref_fields
Bitset with fields that aren't component arrays.
Definition flecs.h:1079
int8_t variable_count
Number of variables for query.
Definition flecs.h:1094
ecs_entity_t interrupted_by
When set, system execution is interrupted.
Definition flecs.h:1116
ecs_flags32_t flags
Iterator flags.
Definition flecs.h:1115
ecs_iter_t * chain_it
Optional, allows for creating iterator chains.
Definition flecs.h:1123
void * ctx
System context.
Definition flecs.h:1100
void * run_ctx
Run language binding context.
Definition flecs.h:1103
ecs_table_t * table
Current table.
Definition flecs.h:1070
int32_t offset
Offset relative to current table.
Definition flecs.h:1111
ecs_id_t event_id
The (component) id for the event.
Definition flecs.h:1086
ecs_iter_fini_action_t fini
Function to cleanup iterator resources.
Definition flecs.h:1122
ecs_var_t * variables
Values of variables (if any)
Definition flecs.h:1073
ecs_iter_private_t priv_
Private data.
Definition flecs.h:1117
ecs_world_t * world
The world.
Definition flecs.h:1064
void * callback_ctx
Callback language binding context.
Definition flecs.h:1102
ecs_entity_t * sources
Entity on which the id was matched (0 if same as entities)
Definition flecs.h:1075
void * binding_ctx
System binding context.
Definition flecs.h:1101
ecs_flags32_t row_fields
Fields that must be obtained with field_at.
Definition flecs.h:1080
float delta_system_time
Time elapsed since last system invocation.
Definition flecs.h:1107
const ecs_query_t * query
Query being evaluated.
Definition flecs.h:1095
int8_t term_index
Index of term that emitted an event.
Definition flecs.h:1091
ecs_entity_t system
The system (if applicable)
Definition flecs.h:1084
ecs_flags32_t set_fields
Fields that are set.
Definition flecs.h:1078
const ecs_size_t * sizes
Component sizes.
Definition flecs.h:1069
float delta_time
Time elapsed since last frame.
Definition flecs.h:1106
ecs_flags32_t up_fields
Bitset with fields matched through up traversal.
Definition flecs.h:1081
ecs_iter_action_t callback
Callback of system or observer.
Definition flecs.h:1121
int8_t field_count
Number of fields in iterator.
Definition flecs.h:1090
ecs_table_t * other_table
Prev or next table when adding/removing.
Definition flecs.h:1071
int32_t event_cur
Unique event id.
Definition flecs.h:1087
const ecs_table_record_t ** trs
Info on where to find field in table.
Definition flecs.h:1074
int32_t count
Number of entities to iterate.
Definition flecs.h:1112
uint64_t group_id
Group id for table, if group_by is used.
Definition flecs.h:1077
ecs_iter_next_action_t next
Function to progress iterator.
Definition flecs.h:1120
const ecs_entity_t * entities
Entity identifiers.
Definition flecs.h:1068
ecs_id_t * ids
(Component) ids
Definition flecs.h:1072
ecs_flags64_t constrained_vars
Bitset that marks constrained variables.
Definition flecs.h:1076
Used with ecs_observer_init().
Definition flecs.h:1236
ecs_ctx_free_t run_ctx_free
Callback to free run ctx.
Definition flecs.h:1280
ecs_ctx_free_t ctx_free
Callback to free ctx.
Definition flecs.h:1268
void * run_ctx
Context associated with run (for language bindings).
Definition flecs.h:1277
ecs_entity_t entity
Existing entity to associate with observer (optional)
Definition flecs.h:1241
ecs_entity_t events[(8)]
Events to observe (OnAdd, OnRemove, OnSet)
Definition flecs.h:1247
int32_t * last_event_id
Optional shared last event id for multiple observers.
Definition flecs.h:1287
void * callback_ctx
Context associated with callback (for language bindings).
Definition flecs.h:1271
void * ctx
User context to pass to callback.
Definition flecs.h:1265
ecs_query_desc_t query
Query for observer.
Definition flecs.h:1244
ecs_poly_t * observable
Observable with which to register the observer.
Definition flecs.h:1283
ecs_ctx_free_t callback_ctx_free
Callback to free callback ctx.
Definition flecs.h:1274
int8_t term_index_
Used for internal purposes.
Definition flecs.h:1290
ecs_iter_action_t callback
Callback to invoke on an event, invoked when the observer matches.
Definition flecs.h:1254
bool yield_existing
When observer is created, generate events from existing data.
Definition flecs.h:1251
ecs_run_action_t run
Callback invoked on an event.
Definition flecs.h:1262
int32_t _canary
Used for validity testing.
Definition flecs.h:1238
An observer reacts to events matching a query.
Definition flecs.h:832
int32_t event_count
Number of events.
Definition flecs.h:839
ecs_iter_action_t callback
See ecs_observer_desc_t::callback.
Definition flecs.h:841
ecs_entity_t entity
Entity associated with observer.
Definition flecs.h:855
ecs_observable_t * observable
Observable for observer.
Definition flecs.h:852
ecs_run_action_t run
See ecs_observer_desc_t::run.
Definition flecs.h:842
ecs_header_t hdr
Object header.
Definition flecs.h:833
ecs_ctx_free_t ctx_free
Callback to free ctx.
Definition flecs.h:848
void * run_ctx
Run language binding context.
Definition flecs.h:846
ecs_world_t * world
The world.
Definition flecs.h:854
ecs_ctx_free_t run_ctx_free
Callback to free run_ctx.
Definition flecs.h:850
void * callback_ctx
Callback language binding context.
Definition flecs.h:845
void * ctx
Observer context.
Definition flecs.h:844
ecs_entity_t events[(8)]
Observer events.
Definition flecs.h:838
ecs_ctx_free_t callback_ctx_free
Callback to free callback_ctx.
Definition flecs.h:849
ecs_query_t * query
Observer query.
Definition flecs.h:835
Struct returned by ecs_query_count().
Definition flecs.h:4928
int32_t empty_tables
Number of empty tables returned by query.
Definition flecs.h:4932
int32_t entities
Number of entities returned by query.
Definition flecs.h:4930
int32_t results
Number of results returned by query.
Definition flecs.h:4929
int32_t tables
Number of tables returned by query.
Definition flecs.h:4931
Used with ecs_query_init().
Definition flecs.h:1162
ecs_ctx_free_t ctx_free
Callback to free ctx.
Definition flecs.h:1223
ecs_id_t group_by
Component id to be used for grouping.
Definition flecs.h:1193
ecs_term_t terms[32]
Query terms.
Definition flecs.h:1167
int32_t _canary
Used for validity testing.
Definition flecs.h:1164
void * ctx
User context to pass to callback.
Definition flecs.h:1217
ecs_ctx_free_t group_by_ctx_free
Function to free group_by_ctx.
Definition flecs.h:1214
void * group_by_ctx
Context to pass to group_by.
Definition flecs.h:1211
void * binding_ctx
Context to be used for language bindings.
Definition flecs.h:1220
ecs_entity_t order_by
Component to sort on, used together with order_by_callback or order_by_table_callback.
Definition flecs.h:1189
ecs_order_by_action_t order_by_callback
Callback used for ordering query results.
Definition flecs.h:1181
ecs_group_create_action_t on_group_create
Callback that is invoked when a new group is created.
Definition flecs.h:1204
ecs_entity_t entity
Entity associated with query (optional)
Definition flecs.h:1229
ecs_ctx_free_t binding_ctx_free
Callback to free binding_ctx.
Definition flecs.h:1226
ecs_group_by_action_t group_by_callback
Callback used for grouping results.
Definition flecs.h:1200
ecs_group_delete_action_t on_group_delete
Callback that is invoked when an existing group is deleted.
Definition flecs.h:1208
ecs_sort_table_action_t order_by_table_callback
Callback used for ordering query results.
Definition flecs.h:1185
ecs_flags32_t flags
Flags for enabling query features.
Definition flecs.h:1176
ecs_query_cache_kind_t cache_kind
Caching policy of query.
Definition flecs.h:1173
const char * expr
Query DSL expression (optional)
Definition flecs.h:1170
Type that contains information about a query group.
Definition flecs.h:1425
int32_t table_count
Number of tables in group.
Definition flecs.h:1427
void * ctx
Group context, returned by on_group_create.
Definition flecs.h:1428
int32_t match_count
How often tables have been matched/unmatched.
Definition flecs.h:1426
Queries are lists of constraints (terms) that match entities.
Definition flecs.h:792
ecs_flags32_t row_fields
Fields that must be acquired with field_at.
Definition flecs.h:811
ecs_flags32_t data_fields
Fields that have data.
Definition flecs.h:808
ecs_flags32_t read_fields
Fields that read data.
Definition flecs.h:810
ecs_header_t hdr
Object header.
Definition flecs.h:793
ecs_term_t terms[32]
Query terms.
Definition flecs.h:795
int8_t var_count
Number of query variables.
Definition flecs.h:800
ecs_flags32_t fixed_fields
Fields with a fixed source.
Definition flecs.h:805
ecs_flags32_t var_fields
Fields with non-$this variable source.
Definition flecs.h:806
ecs_flags32_t write_fields
Fields that write data.
Definition flecs.h:809
int32_t sizes[32]
Component sizes.
Definition flecs.h:796
int32_t eval_count
Number of times query is evaluated.
Definition flecs.h:826
ecs_world_t * world
World or stage query was created with.
Definition flecs.h:824
ecs_flags32_t static_id_fields
Fields with a static (component) id.
Definition flecs.h:807
ecs_world_t * real_world
Actual world.
Definition flecs.h:823
ecs_flags32_t set_fields
Fields that will be set.
Definition flecs.h:813
ecs_entity_t entity
Entity associated with query (optional)
Definition flecs.h:822
void * ctx
User context to pass to callback.
Definition flecs.h:819
ecs_flags32_t shared_readonly_fields
Fields that don't write shared data.
Definition flecs.h:812
ecs_id_t ids[32]
Component ids.
Definition flecs.h:797
ecs_query_cache_kind_t cache_kind
Caching policy of query.
Definition flecs.h:815
int8_t term_count
Number of query terms.
Definition flecs.h:801
char ** vars
Array with variable names for iterator.
Definition flecs.h:817
int8_t field_count
Number of fields returned by query.
Definition flecs.h:802
ecs_flags32_t flags
Query flags.
Definition flecs.h:799
void * binding_ctx
Context to be used for language bindings.
Definition flecs.h:820
Record for entity index.
Definition flecs.h:494
ecs_table_t * table
Identifies a type (and table) in world.
Definition flecs.h:496
uint32_t row
Table row of the entity.
Definition flecs.h:497
ecs_id_record_t * idr
Id record to (*, entity) for target entities.
Definition flecs.h:495
int32_t dense
Index in dense array of entity index.
Definition flecs.h:498
Header for table cache elements.
Definition flecs.h:502
bool empty
Whether element is in empty list.
Definition flecs.h:506
struct ecs_table_cache_hdr_t * next
Next/previous elements for id in table cache.
Definition flecs.h:505
struct ecs_table_cache_t * cache
Table cache of element.
Definition flecs.h:503
ecs_table_t * table
Table associated with element.
Definition flecs.h:504
Metadata describing where a component id is stored in a table.
Definition flecs.h:513
ecs_table_cache_hdr_t hdr
Table cache header.
Definition flecs.h:514
int16_t index
First type index where id occurs in table.
Definition flecs.h:515
int16_t column
First column index where id occurs.
Definition flecs.h:517
int16_t count
Number of times id occurs in table.
Definition flecs.h:516
Type that describes a reference to an entity or variable in a term.
Definition flecs.h:753
const char * name
Name.
Definition flecs.h:760
ecs_entity_t id
Entity id.
Definition flecs.h:754
Type that describes a term (single element in a query).
Definition flecs.h:768
ecs_term_ref_t src
Source of term.
Definition flecs.h:774
int8_t field_index
Index of field for term in iterator.
Definition flecs.h:785
ecs_id_t id
Component id to be matched by term.
Definition flecs.h:769
int16_t oper
Operator of term.
Definition flecs.h:783
ecs_term_ref_t second
Second element of pair.
Definition flecs.h:776
ecs_flags16_t flags_
Flags that help eval, set by ecs_query_init()
Definition flecs.h:786
ecs_entity_t trav
Relationship to traverse when looking for the component.
Definition flecs.h:778
int16_t inout
Access to contents matched by term.
Definition flecs.h:782
ecs_term_ref_t first
Component or first element of pair.
Definition flecs.h:775
Type that contains component lifecycle callbacks.
Definition flecs.h:864
ecs_copy_t copy_ctor
Ctor + copy.
Definition flecs.h:871
void * lifecycle_ctx
Component lifecycle context (see meta add-on)
Definition flecs.h:904
void * ctx
User defined context.
Definition flecs.h:902
ecs_iter_action_t on_remove
Callback that is invoked when an instance of the component is removed.
Definition flecs.h:900
void * binding_ctx
Language binding context.
Definition flecs.h:903
ecs_move_t move_dtor
Move + dtor.
Definition flecs.h:886
ecs_copy_t copy
copy assignment
Definition flecs.h:867
ecs_ctx_free_t lifecycle_ctx_free
Callback to free lifecycle_ctx.
Definition flecs.h:908
ecs_iter_action_t on_set
Callback that is invoked when an instance of the component is set.
Definition flecs.h:895
ecs_move_t move
move assignment
Definition flecs.h:868
ecs_xtor_t ctor
ctor
Definition flecs.h:865
ecs_ctx_free_t ctx_free
Callback to free ctx.
Definition flecs.h:906
ecs_iter_action_t on_add
Callback that is invoked when an instance of a component is added.
Definition flecs.h:890
ecs_ctx_free_t binding_ctx_free
Callback to free binding_ctx.
Definition flecs.h:907
ecs_move_t move_ctor
Ctor + move.
Definition flecs.h:874
ecs_move_t ctor_move_dtor
Ctor + move + dtor (or move_ctor + dtor).
Definition flecs.h:880
ecs_xtor_t dtor
dtor
Definition flecs.h:866
Type that contains component information (passed to ctors/dtors/...)
Definition flecs.h:916
ecs_size_t alignment
Alignment of type.
Definition flecs.h:918
ecs_size_t size
Size of type.
Definition flecs.h:917
const char * name
Type name.
Definition flecs.h:921
ecs_entity_t component
Handle to component (do not set)
Definition flecs.h:920
ecs_type_hooks_t hooks
Type hooks.
Definition flecs.h:919
A type is a list of (component) ids.
Definition flecs.h:364
ecs_id_t * array
Array with ids.
Definition flecs.h:365
int32_t count
Number of elements in array.
Definition flecs.h:366
Utility to hold a value of a dynamic type.
Definition flecs.h:929
void * ptr
Pointer to value.
Definition flecs.h:931
ecs_entity_t type
Type of value.
Definition flecs.h:930
Type that contains information about the world.
Definition flecs.h:1365
float delta_time
Time passed to or computed by ecs_progress()
Definition flecs.h:1371
ecs_entity_t min_id
First allowed entity id.
Definition flecs.h:1367
int64_t set_count
Set commands processed.
Definition flecs.h:1408
double world_time_total
Time elapsed in simulation.
Definition flecs.h:1379
int32_t tag_id_count
Number of tag (no data) ids in the world.
Definition flecs.h:1395
int32_t component_id_count
Number of component (data) ids in the world.
Definition flecs.h:1396
int64_t pipeline_build_count_total
Total number of pipeline builds.
Definition flecs.h:1391
int64_t eval_comp_monitors_total
Total number of monitor evaluations.
Definition flecs.h:1384
int32_t table_count
Number of tables.
Definition flecs.h:1399
float delta_time_raw
Raw delta time (no time scaling)
Definition flecs.h:1370
float frame_time_total
Total time spent processing a frame.
Definition flecs.h:1374
int64_t table_create_total
Total number of times a table was created.
Definition flecs.h:1389
int64_t observers_ran_frame
Total number of times observer was invoked.
Definition flecs.h:1393
float system_time_total
Total time spent in systems.
Definition flecs.h:1375
int64_t id_delete_total
Total number of times an id was deleted.
Definition flecs.h:1388
int64_t systems_ran_frame
Total number of systems ran in last frame.
Definition flecs.h:1392
float merge_time_total
Total time spent in merges.
Definition flecs.h:1377
struct ecs_world_info_t::@0 cmd
Command statistics.
int64_t discard_count
Commands discarded, happens when entity is no longer alive when running the command.
Definition flecs.h:1411
int64_t clear_count
Clear commands processed.
Definition flecs.h:1407
ecs_entity_t last_component_id
Last issued component entity id.
Definition flecs.h:1366
int32_t empty_table_count
Number of tables without entities.
Definition flecs.h:1400
int64_t frame_count_total
Total number of frames.
Definition flecs.h:1382
ecs_entity_t max_id
Last allowed entity id.
Definition flecs.h:1368
int64_t merge_count_total
Total number of merges.
Definition flecs.h:1383
int64_t other_count
Other commands processed.
Definition flecs.h:1413
int64_t batched_command_count
Commands batched.
Definition flecs.h:1415
int64_t table_delete_total
Total number of times a table was deleted.
Definition flecs.h:1390
int64_t delete_count
Selete commands processed.
Definition flecs.h:1406
int64_t rematch_count_total
Total number of rematches.
Definition flecs.h:1385
int64_t id_create_total
Total number of times a new id was created.
Definition flecs.h:1387
int64_t batched_entity_count
Entities for which commands were batched.
Definition flecs.h:1414
float time_scale
Time scale applied to delta_time.
Definition flecs.h:1372
int32_t pair_id_count
Number of pair ids in the world.
Definition flecs.h:1397
float rematch_time_total
Time spent on query rematching.
Definition flecs.h:1378
int64_t ensure_count
Ensure/emplace commands processed.
Definition flecs.h:1409
float target_fps
Target fps.
Definition flecs.h:1373
double world_time_total_raw
Time elapsed in simulation (no scaling)
Definition flecs.h:1380
float emit_time_total
Total time spent notifying observers.
Definition flecs.h:1376
int64_t modified_count
Modified commands processed.
Definition flecs.h:1410
const char * name_prefix
Value set by ecs_set_name_prefix().
Definition flecs.h:1418
int64_t event_count
Enqueued custom events.
Definition flecs.h:1412
int64_t add_count
Add commands processed.
Definition flecs.h:1404
int64_t remove_count
Remove commands processed.
Definition flecs.h:1405