Ledger

Overseer.LedgerType

A Ledger holds all the Entities, Components and Systems. It has interfaces to create new Entities and access the Components. Calling update(ledger) will call all the update functions of the systems in the Ledger.

Example

l = Ledger()
e1 = Entity(l, CompType1(1, 2))
e2 = Entity(l, CompType1(1, 2), CompType2("comptype2"))

this has created a new Ledger with two Entities, the first having 1 component of type CompType1, the second has 2 components.

l[e1]

Will return an EntityState, essentially a bag of Components e1 belongs to.

l[CompType1]

returns the AbstractComponent holding the data of type CompType1.

source
Overseer.ledgerFunction
ledger(l::AbstractLedger)

Returns the underlying standard Ledger. This is the preferred method to create new AbstractLedgers.

Example

struct MyLedger <: AbstractLedger
    base_ledger::Ledger
    # other fields
end

Overseer.ledger(m::MyLedger) = m.base_ledger
# Now you can use MyLedger identically to the standard Ledger
source
Base.delete!Method
delete!(ledger, entity)

Immediately removes the data of an Entity from all components, after which the entity itself is removed from the Ledger.

source