An example in Stride using Arch ECS.
Systems can be added through the GameSettings class in the Stride editor for easy management.
all that you need to do is inherit from the SystemBase class and add it to the list.
each component attached will create an Entity in the Arch world, with the correct components to be able to be queried later in any systems. Example:
- System:
namespace ArchECSStride.Code.Systems;
[DataContract(nameof(TestSystem))]
public class TestSystem : SystemBase
{
private DebugTextSystem _debugText;
private QueryDescription _queryDescription;
public override void Start()
{
_debugText = Services.GetService<DebugTextSystem>();
_queryDescription = new QueryDescription().
WithAny<Vector3>();
}
public override void Update(in GameTime state)
{
var result = World.CountEntities(in _queryDescription);
_debugText.Print($"TestSystem: {result}", new Int2(50, 50));
}
}
- Components:
[DataContract(nameof(ArchPosition))]
[ComponentCategory("Arch Components")]
public class ArchPosition : ArchComponent
{
public bool UseStridePosition { get; set; } = true;
public Vector3 StartPosition { get; set; }
[DataMemberIgnore]
public override object ComponentValue { get; set; } = new Vector3();
public override void SetData()
{
if (UseStridePosition)
{
ComponentValue = Entity.Transform.Position;
}
else
{
ComponentValue = StartPosition;
}
}
}
[DataContract(nameof(ArchTest))]
[ComponentCategory("Arch Components")]
public class ArchTest : ArchComponent
{
[DataMemberIgnore]
public override object ComponentValue { get; set; } = new TestComponent();
}
public struct TestComponent
{
public int Number;
public string Text;
}
When inheriting from SystemBase and registered in settings each System has access to both the Arch World and Strides Service registry.
Allow EntityComponents to create Arch Entities with Arch Components (Partially done. I would like to have editable values in editor as well)Done!- Have an easy way to modify Stride entities with a quick access array reference.(Mostly done. I need a way to verify removing entities wont cause issues.)
- Multithreading
- create a basic game/demo example
Below is an example of 50,000 entities randomly changing positions at a capped 144FPS.
The only Stride performance improvement used are instanced meshes since meshes are my current big limitation.