thallium_ecs 0.1.2

A basic ECS
Documentation

thallium_ecs

Latest Version Rust Documentation GitHub license

A basic ECS that ive been working on

Example code

use thallium_ecs::{
    app::App,
    entities::Entities,
    query::{Component, Query, Ref, RefMut},
};

struct Person {
    name: String,
    age: i32,
}
impl Component for Person {}

let mut app = App::new();

let person1 = app.create_entity();
app.add_component(person1, Person {
    name: "Alice".into(),
    age: 23,
});

let person1 = app.create_entity();
app.add_component(person1, Person {
    name: "Bob".into(),
    age: 25,
});

// register a system that prints out all the people
app.register_system(|entities: Entities<'_>, q: Query<'_, Ref<Person>>| {
    for entity in entities.iter() {
        if let Some(person) = q.get(entity) {
            println!("'{}' is {} years old", person.name, person.age);
        }
    }
});

// print out all the people
// should print:
//
// 'Alice' is 23 years old
// 'Bob' is 25 years old
app.run_registered();

// increment the ages of all people, this only happens once
app.run_once(|entities: Entities<'_>, mut q: Query<'_, RefMut<Person>>| {
    for entity in entities.iter() {
        if let Some(person) = q.get_mut(entity) {
            person.age += 1;
        }
    }
});

// print out all the people again
// should print:
//
// 'Alice' is 24 years old
// 'Bob' is 26 years old
app.run_registered();