Components

Overseer.AbstractComponentType

Abstract type for all Components. For now the only two AbstractComponents are Component and PooledComponent. Most functionality that is defined for the AbstractComponent type assumes that there is a .indices member field that is of type Indices.

If this is not the case look at those functions in the src/component.jl file.

Overseer.test_abstractcomponent_interface is an interface test function that you can call to test a new AbstractComponent implementation. See that function for more details.

source
Overseer.ComponentType

The most basic Component type.

Indexing into a component with an Entity will return the data linked to that entity, indexing with a regular Int will return directly the data that is stored in the data vector at that index, i.e. generally not the storage linked to the Entity with that Int as id.

To register a struct to be stored in a Component see @component.

source
Overseer.PooledComponentType

A PooledComponent allows for sharing data between many Entities. Essentially, the indices into the data pool are stored for each Entity, rather than the data itself.

To make a struct to be stored inside PooledComponent see @pooled_component.

make_unique! can be used to check whether duplicate data exists and if so point all Entities to only a single copy and remove the duplicates.

To interact with the data pools see pool, pools and entity_pool.

Example

@pooled_component struct Comp1
    comp1
end

e1 = Entity(ledger, Comp1(1))
e2 = Entity(ledger)

ledger[Comp1][e2] = e1 # The Comp1 data for e2 is set to point to the same as e1 
source
Base.inMethod
in(entity, component)

Checks whether entity has a data entry in component.

source
Base.pop!Method
pop!(component, entity)

pops the data for entity out of component.

source
Overseer.poolFunction
pool(pooled_compnent, entity)
pool(pooled_compnent, i)

Returns which pool entity or the ith entity belongs to.

source