Hierarchy implementation for hecs ECS.
Include both hecs
and hecs-hierarchy
as dependencies in your Cargo.toml
.
hecs-hierarchy
does not re-export hecs
toml
[dependencies]
hecs = 0.5
hecs-hierarchy = 0.1
An ECS is a fantastic design principle for designing software which allows a
data oriented design. Most of the time, the ECS is flat with maybe a few
components referencing each other via Entity
ids. Sometimes however, the need
to create and manage proper, well behaved graphs, arises.
This is were hecs-hierarchy comes in and gives the ability to manage directed graphs that can connect entities. This is very useful when developing a UI library using the ECS design pattern, or purely for grouping entities together from the same model.
Import the Hierarchy trait which extends hecs::World
The trait Hierarchy extends hecs::World with functions for manipulating and iterating the hierarchy tree.
The hierarchy uses a marker type which makes it possible for a single entity to belong to several hierarchy trees.
See the documentation, more specifically the Hierarchy trait
Example usage: ```rust use hecs_hierarchy::Hierarchy;
// Marker type which allows several hierarchies. struct Tree;
let mut world = hecs::World::default();
// Create a root entity, there can be several. let root = world.spawn(("Root",));
// Create a loose entity let child = world.spawn(("Child 1",));
// Attaches the child to a parent, in this case root
world.attach::
// Iterate children
for child in world.children::
// Add a grandchild
world.attach_new::
// Iterate recursively
for child in world.descendantsdepthfirst::
// Detach child
and grandchild
world.detach::
let child2 = world.attach_new::
// Reattach as a child of child2
world.attach::
world.attach_new::
// Hierarchy now looks like this: // Root // |-------- Child 3 // |-------- Child 2 // |-------- Child 1 // |-------- Grandchild
```
This project is heavily inspired by Shipyard
's hierarchy implementation and
exposes a similar API.