MoonTools.ECS/src/ComponentStorage.cs

111 lines
2.6 KiB
C#
Raw Normal View History

2022-04-08 05:52:03 +00:00
using System;
using System.Collections.Generic;
2022-03-05 02:01:44 +00:00
2022-04-08 05:52:03 +00:00
namespace MoonTools.ECS
2022-03-05 02:01:44 +00:00
{
2022-04-08 05:52:03 +00:00
internal abstract class ComponentStorage
2022-03-05 02:01:44 +00:00
{
2022-04-08 05:52:03 +00:00
public abstract bool Has(int entityID);
public abstract void Remove(int entityID);
public abstract object Debug_Get(int entityID);
2022-03-05 02:01:44 +00:00
}
2022-04-08 05:52:03 +00:00
// FIXME: we can probably get rid of this weird entity storage system by using filters
internal class ComponentStorage<TComponent> : ComponentStorage where TComponent : struct
2022-03-05 02:01:44 +00:00
{
2022-04-08 05:52:03 +00:00
private int nextID;
private readonly Dictionary<int, int> entityIDToStorageIndex = new Dictionary<int, int>(16);
private int[] entityIDs = new int[16];
private TComponent[] components = new TComponent[16];
2022-03-05 02:01:44 +00:00
2022-04-08 05:52:03 +00:00
public bool Any()
{
return nextID > 0;
}
2022-03-05 02:01:44 +00:00
2022-04-08 05:52:03 +00:00
public override bool Has(int entityID)
{
return entityIDToStorageIndex.ContainsKey(entityID);
}
2022-03-25 19:32:35 +00:00
2022-04-08 05:52:03 +00:00
public ref readonly TComponent Get(int entityID)
2022-03-21 23:21:42 +00:00
{
2022-04-08 05:52:03 +00:00
return ref components[entityIDToStorageIndex[entityID]];
2022-03-21 23:21:42 +00:00
}
2022-04-08 05:52:03 +00:00
public override object Debug_Get(int entityID)
2022-03-05 02:01:44 +00:00
{
2022-04-08 05:52:03 +00:00
return components[entityIDToStorageIndex[entityID]];
}
2022-03-05 02:01:44 +00:00
2022-04-08 05:52:03 +00:00
public ref readonly TComponent Get()
{
#if DEBUG
if (nextID == 0)
2022-03-05 02:01:44 +00:00
{
2022-04-08 05:52:03 +00:00
throw new ArgumentOutOfRangeException("Component storage is empty!");
2022-03-05 02:01:44 +00:00
}
2022-04-08 05:52:03 +00:00
#endif
return ref components[0];
2022-03-05 02:01:44 +00:00
}
2022-04-08 05:52:03 +00:00
public void Set(int entityID, in TComponent component)
2022-03-05 02:01:44 +00:00
{
2022-04-08 05:52:03 +00:00
if (!entityIDToStorageIndex.ContainsKey(entityID))
{
var index = nextID;
nextID += 1;
2022-03-05 02:01:44 +00:00
2022-04-08 05:52:03 +00:00
if (index >= components.Length)
{
Array.Resize(ref components, components.Length * 2);
Array.Resize(ref entityIDs, entityIDs.Length * 2);
}
2022-03-05 02:01:44 +00:00
2022-04-08 05:52:03 +00:00
entityIDToStorageIndex[entityID] = index;
entityIDs[index] = entityID;
2022-03-05 02:01:44 +00:00
}
2022-04-08 05:52:03 +00:00
components[entityIDToStorageIndex[entityID]] = component;
2022-03-05 02:01:44 +00:00
}
2022-04-08 05:52:03 +00:00
public override void Remove(int entityID)
{
if (entityIDToStorageIndex.ContainsKey(entityID))
{
var storageIndex = entityIDToStorageIndex[entityID];
entityIDToStorageIndex.Remove(entityID);
2022-03-05 02:01:44 +00:00
2022-04-08 05:52:03 +00:00
var lastElementIndex = nextID - 1;
2022-03-21 23:21:42 +00:00
2022-04-08 05:52:03 +00:00
// move a component into the hole to maintain contiguous memory
if (lastElementIndex != storageIndex)
{
var lastEntityID = entityIDs[lastElementIndex];
entityIDToStorageIndex[lastEntityID] = storageIndex;
components[storageIndex] = components[lastElementIndex];
entityIDs[storageIndex] = lastEntityID;
}
nextID -= 1;
}
}
public void Clear()
{
nextID = 0;
entityIDToStorageIndex.Clear();
}
public ReadOnlySpan<TComponent> AllComponents()
{
return new ReadOnlySpan<TComponent>(components, 0, nextID);
}
public Entity FirstEntity()
{
return new Entity(entityIDs[0]);
}
2022-03-21 23:21:42 +00:00
}
2022-03-05 02:01:44 +00:00
}