32 releases (8 breaking)
Uses old Rust 2015
0.23.1 | Mar 14, 2016 |
---|---|
0.22.1 | Dec 15, 2015 |
0.21.2 | Oct 8, 2015 |
0.20.0 | Jul 25, 2015 |
0.10.0 | Nov 21, 2014 |
#2007 in Game dev
133 downloads per month
47KB
1.5K
SLoC
ecs-rs
An Entity Component System (ECS) library written in Rust.
For info about why an ECS may be beneficial, see some of these articles:
- http://gameprogrammingpatterns.com/component.html
- http://t-machine.org/index.php/2007/09/03/entity-systems-are-the-future-of-mmog-development-part-1/
- http://www.gamedev.net/page/resources/_/technical/game-programming/understanding-component-entity-systems-r3013
- http://cowboyprogramming.com/2007/01/05/evolve-your-heirachy/
There is a large variety of ways an ECS may work. This particular one is similar to Artemis. Although this isn't a port to Rust, most functionality should be similar, and the tutorials/manual there should be able to make up for the current lack of documentation here.
Adding ecs-rs to your project
Add ecs
to your Cargo.toml
[dependencies]
ecs = "*"
(Of of course you can pick a specific version, but at least until version 1.0, that's probably not a good idea)
How to use ecs-rs
Tutorial
There are parts of a WIP tutorial in the doc/
directory. More work is being done but I'm a little bit busy on other projects and don't have that much time.
Ask a question
I've opened an issue for questions here. Alternatively, you may occasionally be able to catch me on the #rust-gamedev IRC channel. This is the fastest way to get help but if I'm not there then leave the question in the aforementioned issue thread.
Rustdocs
At the moment the documentation is rather lacking, but at least some information can be gathered by looking at the API docs. Run cargo doc
in your project and open up the ecs
docs in your browser.
Contributions are welcome
Dependencies
~52KB