summaryrefslogtreecommitdiff
path: root/ecs/src
AgeCommit message (Collapse)Author
8 daysfeat(ecs): add support for custom inner ComponentIter iterHampusM
8 daysrefactor(ecs): add struct for querying using component metadataHampusM
13 daysfeat(ecs): allow control over component mutability in queryHampusM
2025-01-04refactor(ecs): add query component iter lifetime paramsHampusM
2025-01-04chore(ecs): implement component::Sequence for max 16 elem tuplesHampusM
This greatly improves compilation speed
2025-01-02refactor(ecs): make component::Sequence return metadata as arrayHampusM
2025-01-02fix(ecs): always populate archetype lookup entriesHampusM
2025-01-02refactor(ecs): rename find_entities to iter_archetypes_with_compsHampusM
2025-01-01perf(ecs): use swap removal to remove entities from archetypesHampusM
2024-12-22perf(ecs): make archetype index by ID lookup fasterHampusM
2024-12-22perf(ecs): create string in Storage::push_entity log with capHampusM
2024-12-21refactor(ecs): reduce amount of code in Storage::find_entitiesHampusM
2024-12-21feat(ecs): add support for entities without componentsHampusM
2024-12-20perf(ecs): use component index map when creating component sequencesHampusM
2024-12-20perf(ecs): use hashbrown's HashMap & HashSetHampusM
Hashbrown's HashMap & HashSet is faster than std's. I guess this is because std (which uses hashbrown) does not enable hashbrown's default-hasher flag and instead uses a slower hasher.
2024-12-16fix(ecs): make World::default fn behave same as World::new fnHampusM
2024-12-13refactor(ecs): remove system::Param associated type FlagsHampusM
2024-12-11refactor(ecs): make system::Param trait not unsafeHampusM
2024-12-13refactor(ecs): improve system init param retrievalHampusM
2024-12-10refactor(ecs): merge a couple of tuple traits togetherHampusM
2024-12-09feat(ecs): add action to despawn entityHampusM
2024-12-09refactor(ecs): use phases for system orderingHampusM
2024-12-09feat(ecs): add Relationship function returning target UID iterHampusM
2024-12-08refactor(ecs): make query options entity_filter fn take sliceHampusM
2024-11-29refactor(ecs): set & get UID parts using bit masksHampusM
2024-11-16feat(ecs): add Query iter_with_extra_comps functionHampusM
2024-11-16feat(ecs): add component::Metadata of functionHampusM
2024-11-16refactor(ecs): rename component::Metadata of function to getHampusM
2024-11-16feat(ecs): check comp metadata list before creating archetype IDHampusM
2024-11-16refactor(ecs): remove system param compatability checkingHampusM
2024-11-11refactor(ecs): make Relationship use Component derive macroHampusM
2024-11-11refactor(ecs): fix clippy lintsHampusM
2024-11-11refactor(ecs): use same ID for entities & componentsHampusM
2024-11-11refactor(ecs): remove unnecessary imports of crate as ecsHampusM
2024-11-03feat(ecs): add read-only query iteratingHampusM
2024-11-02refactor(ecs): make ComponentIter not know entity iter detailsHampusM
2024-11-02feat(ecs): add creating static entitiesHampusM
2024-11-02fix(ecs): add check if entity already exists before creating itHampusM
2024-10-16feat(ecs): add stats sole containing current tickHampusM
2024-08-21refactor(ecs): fix clippy lintsHampusM
2024-08-21fix(ecs): make Query::entity_uid use entity filter from query optionsHampusM
2024-08-18feat(ecs): make relationships able to have multiple targetsHampusM
2024-08-18perf(ecs): make Relation get method use entity archetype lookupHampusM
2024-08-16feat(ecs): make relationships creatable without reference to worldHampusM
2024-08-16fix(ecs): prevent nested queries causing panicHampusM
2024-08-15feat(ecs): add function to set related-to relationship entityHampusM
2024-08-15feat(ecs): add component removed eventHampusM
2024-08-14feat(ecs): add component added eventHampusM
2024-08-14fix(ecs): prevent duplicate archetype indices in lookup entriesHampusM
2024-08-13fix(ecs): check if entity components contains component before addHampusM