[][src]Crate legion

Legion aims to be a feature rich high performance ECS library for Rust game projects with minimal boilerplate.

Benchmarks

Getting Started

use legion::prelude::*;

// Define our entity data types
#[derive(Clone, Copy, Debug, PartialEq)]
struct Position {
    x: f32,
    y: f32,
}

#[derive(Clone, Copy, Debug, PartialEq)]
struct Velocity {
    dx: f32,
    dy: f32,
}

#[derive(Clone, Copy, Debug, PartialEq)]
struct Model(usize);

#[derive(Clone, Copy, Debug, PartialEq)]
struct Static;

// Create a world to store our entities
let universe = Universe::new(None);
let mut world = universe.create_world();

// Create entities with `Position` and `Velocity` data
world.insert_from(
    (),
    (0..999).map(|_| (Position { x: 0.0, y: 0.0 }, Velocity { dx: 0.0, dy: 0.0 }))
);

// Create entities with `Position` data and a shared `Model` data, tagged as `Static`
// Shared data values are shared across many entities,
// and enable further batch processing and filtering use cases
world.insert_from(
    (Model(5), Static),
    (0..999).map(|_| (Position { x: 0.0, y: 0.0 },))
);

// Create a query which finds all `Position` and `Velocity` components
let query = <(Write<Position>, Read<Velocity>)>::query();

// Iterate through all entities that match the query in the world
for (pos, vel) in query.iter(&world) {
    pos.x += vel.dx;
    pos.y += vel.dy;
}

Features

Legion aims to be a more complete game-ready ECS than many of its predecessors.

Advanced Query Filters

The query API can do much more than pull entity data out of the world.

Additional data type filters:

// It is possible to specify that entities must contain data beyond that being fetched
let query = Read::<Position>::query()
    .filter(entity_data::<Velocity>());
for position in query.iter(&world) {
    // these entities also have `Velocity`
}

Filter boolean operations:

// Filters can be combined with boolean operators
let query = Read::<Position>::query()
    .filter(shared_data::<Static>() | !entity_data::<Velocity>());
for position in query.iter(&world) {
    // these entities are also either marked as `Static`, or do *not* have a `Velocity`
}

Filter by shared data value:

// Filters can filter by specific shared data values
let query = Read::<Position>::query()
    .filter(shared_data_value(&Model(3)));
for position in query.iter(&world) {
    // these entities all have shared data value `Model(3)`
}

Change detection:

// Queries can perform coarse-grained change detection, rejecting entities who's data
// has not changed since the last time the query was iterated.
let query = <(Read<Position>, Shared<Model>)>::query()
    .filter(changed::<Position>());
for (pos, model) in query.iter(&world) {
    // entities who have changed position
}

Content Streaming

Entities can be loaded and initialized in a background World on separate threads and then when ready, merged into the main World near instantaneously.

let universe = Universe::new(None);
let mut world_a = universe.create_world();
let mut world_b = universe.create_world();

// Merge all entities from `world_b` into `world_a`
// Entity IDs are guarenteed to be unique across worlds and will
// remain unchanged across the merge.
world_a.merge(world_b);

Chunk Iteration

Entity data is allocated in blocks called "chunks", each approximately containing 64KiB of data. The query API exposes each chunk via 'iter_chunk'. As all entities in a chunk are guarenteed to contain the same set of entity data and shared data values, it is possible to do batch processing via the chunk API.

fn render_instanced(model: &Model, transforms: &[Transform]) {
    // pass `transforms` pointer to graphics API to load into constant buffer
    // issue instanced draw call with model data and transforms
}

let query = Read::<Transform>::query()
    .filter(shared_data::<Model>());

for chunk in query.iter_chunks(&world) {
    // get the chunk's model
    let model: &Model = chunk.shared_data().unwrap();

    // get a (runtime borrow checked) slice of transforms
    let transforms = chunk.data::<Transform>().unwrap();

    // give the model and transform slice to our renderer
    render_instanced(model, &transforms);
}

Modules

borrows
prelude
query
storage

Structs

ArchetypeId

Unique Archetype ID.

ChunkId

Unique Chunk ID.

Entity

A handle to an entity.

EntityAllocator

Manages the allocation and deletion of Entity IDs within a world.

Universe

The Universe is a factory for creating Worlds.

World

Contains queryable collections of data associated with Entitys.

WorldId

Unique world ID.

Traits

EntityData

Components that are stored once per entity.

EntityDataSet

A set of entity data components.

EntitySource

Inserts entity data into a Chunk in a World.

SharedData

Components that are shared across multiple entities.

SharedDataSet

Inserts shared data into a Chunk in a World.