apecs

Asyncronous Parallel Entity Component System

apecs is an entity-component system written in Rust that supports traditional syncronous systems as well as asyncronous systems that can evolve over time. This makes it great for general applications, quick game prototypes, DIY engines and any simulation that has discrete steps.

Why

Most ECS libraries (and game main-loops in general) are polling based. This is great for certain tasks, but things get complicated when programming in the time domain. Async / await is great for programming in the time domain without explicitly spawning new threads or blocking, but it isn't supported by ECS libraries. apecs was designed to allow async / await programming within ECS systems.

What and How

At its core apecs is a library for sharing resources across disparate polling and async loops. It uses derivable traits and channels to orchestrate systems' access to resources and uses rayon (where available) for concurrency.

Asyncronous systems

Async systems are system functions that are async. Specifically async systems have this type signature: ```rust use apecs::{Facade, anyhow};

async fn my_system(mut facade: Facade) -> anyhow::Result<()> { //... Ok(()) } `` TheFacade` type is like a window into the world. It can visit bundles of resources in the world asyncronously. This allows your async system to affect different parts of the world at different times.

Syncronous systems are great for tight loops that are always iterating over the same data. In other words sync systems are highly optimized algorithms that run in the hot path. But they don't quite fit in situations where the system's focus changes over time, or when the system needs to wait for some condition before doing something different. Async systems are a good fit for these situations. Async systems are therefore a good fit for high-level orchestration.

For example you might use an async system to setup your title screen, wait for user input and then start the main game simulation by injecting your game entities.

Another example might be an app that has a dependency graph of work to complete. An Async system can hold the dependencies as a series of async operations that it is awaiting, while syncronous systems do the hot-path work that completes those async operations as fast as possible.

Goals

Features

Roadmap

Tests

bash cargo test wasm-pack test --firefox crates/apecs

I like firefox, but you can use different browsers for the wasm tests. The tests make sure apecs works on wasm.

Benchmarks

The apecs benchmarks measure itself against my favorite ECS libs: specs, bevy, hecs, legion, shipyard and planck_ecs.

bash cargo bench -p benchmarks

Minimum supported Rust version 1.65

apecs uses generic associated types for its component iteration traits.