Skip to content

kvark/froggy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Sep 28, 2020
0ab802f · Sep 28, 2020
Apr 2, 2019
Apr 2, 2019
Apr 2, 2019
Sep 28, 2020
Apr 2, 2019
Feb 6, 2017
Jun 7, 2017
Aug 28, 2017
Apr 2, 2019
May 17, 2017
May 17, 2017
Jun 7, 2017
Jun 7, 2017

Repository files navigation

froggy

Build Status Docs Crates.io Gitter

Froggy is a prototype for Component Graph System. Froggy is not an ECS (it could as well be named "finecs" but then it would have "ecs" in the name... yikes)! Give it a try if:

  • you are open to new paradigms and programming models
  • you are tired of being forced to think in terms of ECS
  • you like simple composable things

Check ecs_bench for performance comparisons with actual ECS systems.

Example

extern crate froggy;

fn main() {
    let mut positions = froggy::Storage::new();
    // create entities
    let entities = vec![
        positions.create(1u8), positions.create(4u8), positions.create(9u8)
    ];
    // update positions
    for e in &entities {
        positions[e] += 1;
    }
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Component Graph System experiment

Topics

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

Packages

No packages published

Languages