#scene-graph #hierarchy #specs #entity-component #resources

specs-hierarchy

Scene graph type hierarchy abstraction for use with specs

16 unstable releases (5 breaking)

Uses old Rust 2015

0.6.0 Feb 12, 2020
0.5.1 Jul 23, 2019
0.4.0 Jul 9, 2019
0.3.0 Nov 6, 2018
0.2.0 Jul 11, 2018

#657 in Data structures

Download history 872/week @ 2023-12-11 1006/week @ 2023-12-18 632/week @ 2023-12-25 401/week @ 2024-01-01 927/week @ 2024-01-08 850/week @ 2024-01-15 741/week @ 2024-01-22 472/week @ 2024-01-29 817/week @ 2024-02-05 966/week @ 2024-02-12 1001/week @ 2024-02-19 1028/week @ 2024-02-26 1185/week @ 2024-03-04 986/week @ 2024-03-11 1233/week @ 2024-03-18 1012/week @ 2024-03-25

4,520 downloads per month
Used in 67 crates (6 directly)

MIT/Apache

29KB
509 lines

specs-hierarchy

Build Status Crates.io Gitter MIT/Apache Docs.rs LoC

Scene graph type hierarchy abstraction for use with specs.

Builds up a Hierarchy resource, by querying a user supplied Parent component. Requires the component to be Tracked.

Will send modification events on an internal EventChannel. Note that Removed events does not mean the Parent component was removed from the component storage, just that the Entity will no longer be considered to be a part of the Hierarchy. This is because the user may wish to either remove only the component, the complete Entity, or something completely different. When an Entity that is a parent gets removed from the hierarchy, the full tree of children below it will also be removed from the hierarchy.

Usage

# Cargo.toml
[dependencies]
specs-hierarchy = "0.5.1"

Example

use specs::prelude::{Component, DenseVecStorage, Entity, FlaggedStorage};
use specs_hierarchy::{Hierarchy, Parent as HParent};

/// Component for defining a parent entity.
///
/// The entity with this component *has* a parent, rather than *is* a parent.
#[derive(Debug, Clone, Eq, Ord, PartialEq, PartialOrd)]
pub struct Parent {
    /// The parent entity
    pub entity: Entity,
}

impl Component for Parent {
    type Storage = FlaggedStorage<Self, DenseVecStorage<Self>>;
}

impl HParent for Parent {
    fn parent_entity(&self) -> Entity {
        self.entity
    }
}

License

Licensed under either of

at your option.

Contribution

We are a community project that welcomes contribution from anyone. If you're interested in helping out, you can contact us either through GitHub, or via gitter.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~4.5MB
~88K SLoC