ecu-rust
is a tiny toy ECS (Entity Component System) library written in Rust.
Rust code is compiled to WebAssembly with wasm-bindgen and it runs even in web browsers.
T.B.D.
```Rust // Import ecs-rust use ecsrust::world::World; use ecsrust::entitymanager::EntityManager; use ecsrust::component::Component; use ecs_rust::system::System;
// Define Components and Systems
struct Namable { name: &'static str }
struct Position { x: f32, y: f32 }
struct Velocity { x: f32, y: f32 }
struct Step { num: u32 }
struct PrintStepSystem; struct MoveSystem; struct PrintPositionSystem;
// Implement Components and Systems
impl Component for Namable {} impl Component for Position {} impl Component for Velocity {} impl Component for Step {}
impl System for PrintStepSystem {
fn update(&mut self, manager: &mut EntityManager) {
let steps = manager.borrowcomponentsmut::
impl System for MoveSystem {
fn update(&mut self, manager: &mut EntityManager) {
let entityids = manager.getentityidsforpair::
impl System for PrintPositionSystem {
fn update(&mut self, manager: &mut EntityManager) {
let entityids = manager.getentityidsforpair::
// Build an application and Run
fn main() { // Create world let mut world = World::new();
// Register Components to world
world
.registercomponent::
// Create Entities and add Components to them { let entityid = world.createentity(); world.addcomponenttoentity(entityid, Step {num: 0}); }
{ let entityid = world.createentity(); world .addcomponenttoentity(entityid, Namable {name: "Alice"}) .addcomponenttoentity(entityid, Position {x: 0.0, y: 0.0}) .addcomponenttoentity(entityid, Velocity {x: 1.0, y: 2.0}); }
{ let entityid = world.createentity(); world .addcomponenttoentity(entityid, Namable {name: "Bob"}) .addcomponenttoentity(entityid, Position {x: 0.0, y: 0.0}) .addcomponenttoentity(entityid, Velocity {x: -2.0, y: 1.0}); }
{ // Unmovable let entityid = world.createentity(); world .addcomponenttoentity(entityid, Namable {name: "Rock"}) .addcomponenttoentity(entityid, Position {x: 0.0, y: 0.0}); }
// Add Systems to world world .addsystem(PrintStepSystem {}) .addsystem(MoveSystem {}) .add_system(PrintPositionSystem {});
// Run for _i in 0..3 { world.update(); } }
/* * Result: * Step 1 * Alice is at (1, 2) * Bob is at (-2, 1) * Rock is at (0, 0) * Step 2 * Alice is at (2, 4) * Bob is at (-4, 2) * Rock is at (0, 0) * Step 3 * Alice is at (3, 6) * Bob is at (-6, 3) * Rock is at (0, 0) */ ```
The library is released at crates.io. Add the following line into Cargo.toml of your Rust project.
[dependencies]
ecs_rust = "0.0.2"
And add the following lines in your Rust code to import the library.
Rust
use ecs_rust::world::World;
use ecs_rust::entity_manager::EntityManager;
use ecs_rust::component::Component;
use ecs_rust::system::System;
sh
$ git clone https://github.com/takahirox/ecs-rust.git
$ cd ecs-rust
$ cargo build
sh
$ cd ecs-rust
$ cargo run --example example_name
Prerequirements
- Install wasm-bindgen client
- Install Rust wasm32-unknown-unknown target with $ rustup target add wasm32-unknown-unknown
- Install http-server
with $ npm install -g http-server
, or other local servers
```sh $ cd ecs-rust/web $ bash build_examples.sh $ http-server . -p 8080 -c-1
```
T.B.D.