Home

Awesome

stride-arch-ecs

An example in Stride using Arch ECS.

CircleCI

Features

Ease of use

Systems can be added through the GameSettings class in the Stride editor for easy management. image

all that you need to do is inherit from the SystemBase class and add it to the list.

Add Arch components in Strides Editor!

image

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:

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));
	}
}
[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;
}

Easy access

When inheriting from SystemBase and registered in settings each System has access to both the Arch World and Strides Service registry.

Future goals

Example

Below is an example of 50,000 entities randomly changing positions at a capped 144FPS. image

The only Stride performance improvement used are instanced meshes since meshes are my current big limitation.