Skip to content

A bare-bones macro-based Entity-Component-System

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

advancedresearch/nano_ecs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nano-ECS

A bare-bones macro-based Entity-Component-System

  • Maximum 64 components per entity
  • Stores components sequentially in same array
  • Masks for enabled/disabled components
use nano_ecs::*;

#[derive(Clone)]
pub struct Position(pub f32);
#[derive(Clone)]
pub struct Velocity(pub f32);

ecs!{4: Position, Velocity}

fn main() {
    let mut world = World::new();
    world.push(Position(0.0));
    world.push((Position(0.0), Velocity(0.0)));
    let dt = 1.0;
    system!(world, |pos: &mut Position, vel: &Velocity| {
        pos.0 = pos.0 + vel.0 * dt;
    });
}

Design

The ecs! macro generates a World and Component object.

Can be used with any Rust data structure that implements Clone.

The order of declared components is used to assign every component an index. This index is used in the mask per entity and to handle slice memory correctly.

  • All components are stored in one array inside World.
  • All entities have a slice refering to components
  • All entities have a mask that enable/disable components

About

A bare-bones macro-based Entity-Component-System

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages