Batch Operations
Batch operations can be used to improved performance and minimize archetype fragmentation when creating or modifying entities. For example the creation of an entity can be executed in multiple steps. Each step moves the entity to a different archetype.
A Batch operation like CreateEntity<>()
combine these steps in a single call and put the entity directly in the final archetype.
Terminology
A Batch combines multiple component changes in a single operation on the same entity.
A Bulk operation performance the same operation on multiple entities.
Create entities
🔥 Update - New example to use simpler / more performant approach to create entities.
Optimization Minimize structural changes when creating entities.
Entities can be created with multiple components and tags in a single step. This can be done by one of the EntityStoreExtensions CreateEntity<T1, ... , Tn> overloads.
Bulk - Create entities
🔥 Update - New example for bulk creation of entities.
Optimization Create multiple entities with the same set of components / tags in a single step.
Entities can be created one by one with store.CreateEntity()
.
To create multiple entities with the same set of components and tags use
archetype.CreateEntities(int count).
Add/Remove components
🔥 Update - Add example to batch add, remove and get components and tags.
Optimization Minimize structural changes when adding / removing multiple components or tags.
Components can be added / removed one by one to / from an entity with
entity.AddComponent()
/ entity.RemoveComponent()
.
Every operation may cause a structural change which is an expensive operation.
To execute these operations in a single step use the EntityExtensions overloads. This approach also reduces the amount of code to perform these operations.
In case accessing multiple components of the same entity use entity.Data instead of multiple entity.GetComponent<>()
calls.
Add/Remove components with EntityBatch
EntityBatch
Optimization Minimize structural changes when adding and removing components or tags to / from a single entity.
Note
An EntityBatch
should only be used when adding AND removing components / tags to an entity at the same entity.
If only adding OR removing components / tags use the Add() / Remove() overloads shown above.
When adding/removing components or tags to/from a single entity it will be moved to a new archetype. This is also called a structural change and in comparison to other methods a more costly operation. Every component / tag change will cause a structural change.
In case of multiple changes on a single entity use an EntityBatch to apply all changes at once. Using this approach only a single or no structural change will be executed.
EntityBatch
- Bulk execution
EntityBatch
- Bulk executionOptimization: Minimize structural changes when adding / removing components or tags to / from multiple entities.
In cases you need to add/remove components or tags to entities returned by a query use a bulk operation.
Executing these type of changes are most efficient using a bulk operation.
This can be done by either using ApplyBatch()
or a common foreach ()
loop as shown below.
To prevent unnecessary allocations the application should cache and reuse the list instance for future batches.
Apply EntityBatch
to an EntityList
EntityBatch
to an EntityList
An EntityList is a container of entities added to the list.
Single entities are added using Add()
. AddTree()
adds an entity and all its children including their children etc.
A bulk operation can be applied to all entities in the lists as shown in the example below.
Last updated