stecs

Experimental static compiler-checked ECS library

2 releases

0.1.1 Sep 22, 2024
0.1.0 Sep 22, 2024
Download history 250/week @ 2024-09-20 73/week @ 2024-09-27 20/week @ 2024-10-04 8/week @ 2024-10-11

110 downloads per month

MIT license

31KB
407 lines

stecs - static compiler-checked ECS*

This is an experimental ECS library intended to be more compiler-friendly. Archetypes are static, and queries are checked at compile-time. For an introduction into the idea, see this blogpost.

This library attempts to bridge the gap between

  • compile-time guarantees, that are one of the important points of Rust;
  • performance benefits of SoA (Struct of Array);
  • and ease of use of ECS libraries

*Note: technically this library likely does not qualify as a proper ECS. What this library actually is, is a generalized SoA derive (For an example of a non-general one, see soa_derive or soa-rs).

This library contains and also generates snippets of unsafe code to support mutable querying. It could be avoided by using lending iterators, but they are much less convenient to use in for-loops. However, if possible, the goal is for the library to contain no unsafe code.

See crate documentation for more information. And see Horns of Combustion for an example of a game using this library.

Example

See more examples here.

use stecs::prelude::*;

#[derive(SplitFields)]
struct Player {
    position: f64,
    health: Option<i64>,
}

struct World {
    players: StructOf<Vec<Player>>,
}

fn main() {
    let mut world = World { players: Default::default() };
    world.insert(Player {
        position: 1,
        health: Some(5),
    });

    for (pos, health) in query!(world.players, (&position, &mut health.Get.Some)) {
        println!("player at {}; health: {}", position, health);
        *health -= 1;
    }
}

Similar projects

gecs

gecs provides similar functionality with static archetypes and checked queries. It has a more conventional to ECS layout, where all archetypes get queried at the same time.

Similar to some parts of this library:

Dependencies

~0.6–1.2MB
~25K SLoC