258 lines
6.2 KiB
C#
258 lines
6.2 KiB
C#
namespace MoonTools.ECS;
|
|
|
|
internal class ComponentDepot
|
|
{
|
|
private Dictionary<Type, ComponentStorage> storages = new Dictionary<Type, ComponentStorage>();
|
|
|
|
private Dictionary<FilterSignature, IndexableSet<int>> filterSignatureToEntityIDs = new Dictionary<FilterSignature, IndexableSet<int>>();
|
|
|
|
private Dictionary<Type, HashSet<FilterSignature>> typeToFilterSignatures = new Dictionary<Type, HashSet<FilterSignature>>();
|
|
|
|
private Dictionary<int, HashSet<Type>> entityComponentMap = new Dictionary<int, HashSet<Type>>();
|
|
|
|
internal void Register<TComponent>() where TComponent : struct
|
|
{
|
|
if (!storages.ContainsKey(typeof(TComponent)))
|
|
{
|
|
storages.Add(typeof(TComponent), new ComponentStorage<TComponent>());
|
|
}
|
|
}
|
|
|
|
private ComponentStorage Lookup(Type type)
|
|
{
|
|
return storages[type];
|
|
}
|
|
|
|
private ComponentStorage<TComponent> Lookup<TComponent>() where TComponent : struct
|
|
{
|
|
// TODO: is it possible to optimize this?
|
|
Register<TComponent>();
|
|
return storages[typeof(TComponent)] as ComponentStorage<TComponent>;
|
|
}
|
|
|
|
public bool Some<TComponent>() where TComponent : struct
|
|
{
|
|
return Lookup<TComponent>().Any();
|
|
}
|
|
|
|
public bool Has<TComponent>(int entityID) where TComponent : struct
|
|
{
|
|
return Lookup<TComponent>().Has(entityID);
|
|
}
|
|
|
|
private bool Has(Type type, int entityID)
|
|
{
|
|
return Lookup(type).Has(entityID);
|
|
}
|
|
|
|
public ref readonly TComponent Get<TComponent>(int entityID) where TComponent : struct
|
|
{
|
|
return ref Lookup<TComponent>().Get(entityID);
|
|
}
|
|
|
|
public ref readonly TComponent Get<TComponent>() where TComponent : struct
|
|
{
|
|
return ref Lookup<TComponent>().Get();
|
|
}
|
|
|
|
public void Set<TComponent>(int entityID, in TComponent component) where TComponent : struct
|
|
{
|
|
Lookup<TComponent>().Set(entityID, component);
|
|
|
|
if (!entityComponentMap.ContainsKey(entityID))
|
|
{
|
|
entityComponentMap.Add(entityID, new HashSet<Type>());
|
|
}
|
|
|
|
var notFound = entityComponentMap[entityID].Add(typeof(TComponent));
|
|
|
|
// update filters
|
|
if (notFound)
|
|
{
|
|
if (typeToFilterSignatures.TryGetValue(typeof(TComponent), out var filterSignatures))
|
|
{
|
|
foreach (var filterSignature in filterSignatures)
|
|
{
|
|
CheckFilter(filterSignature, entityID);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public ref readonly Entity GetEntity<TComponent>() where TComponent : struct
|
|
{
|
|
return ref Lookup<TComponent>().FirstEntity();
|
|
}
|
|
|
|
public ReadOnlySpan<Entity> ReadEntities<TComponent>() where TComponent : struct
|
|
{
|
|
return Lookup<TComponent>().AllEntities();
|
|
}
|
|
|
|
public ReadOnlySpan<TComponent> ReadComponents<TComponent>() where TComponent : struct
|
|
{
|
|
return Lookup<TComponent>().AllComponents();
|
|
}
|
|
|
|
private void Remove(Type type, int entityID)
|
|
{
|
|
Lookup(type).Remove(entityID);
|
|
|
|
var found = entityComponentMap[entityID].Remove(type);
|
|
|
|
// update filters
|
|
if (found)
|
|
{
|
|
if (typeToFilterSignatures.TryGetValue(type, out var filterSignatures))
|
|
{
|
|
foreach (var filterSignature in filterSignatures)
|
|
{
|
|
CheckFilter(filterSignature, entityID);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public void Remove<TComponent>(int entityID) where TComponent : struct
|
|
{
|
|
Lookup<TComponent>().Remove(entityID);
|
|
|
|
var found = entityComponentMap[entityID].Remove(typeof(TComponent));
|
|
|
|
// update filters
|
|
if (found)
|
|
{
|
|
if (typeToFilterSignatures.TryGetValue(typeof(TComponent), out var filterSignatures))
|
|
{
|
|
foreach (var filterSignature in filterSignatures)
|
|
{
|
|
CheckFilter(filterSignature, entityID);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public void OnEntityDestroy(int entityID)
|
|
{
|
|
if (entityComponentMap.ContainsKey(entityID))
|
|
{
|
|
foreach (var type in entityComponentMap[entityID])
|
|
{
|
|
Remove(type, entityID);
|
|
}
|
|
|
|
entityComponentMap.Remove(entityID);
|
|
}
|
|
}
|
|
|
|
public Filter CreateFilter(HashSet<Type> included, HashSet<Type> excluded)
|
|
{
|
|
var filterSignature = new FilterSignature(included, excluded);
|
|
if (!filterSignatureToEntityIDs.ContainsKey(filterSignature))
|
|
{
|
|
filterSignatureToEntityIDs.Add(filterSignature, new IndexableSet<int>());
|
|
|
|
foreach (var type in included)
|
|
{
|
|
if (!typeToFilterSignatures.ContainsKey(type))
|
|
{
|
|
typeToFilterSignatures.Add(type, new HashSet<FilterSignature>());
|
|
}
|
|
|
|
typeToFilterSignatures[type].Add(filterSignature);
|
|
}
|
|
|
|
foreach (var type in excluded)
|
|
{
|
|
if (!typeToFilterSignatures.ContainsKey(type))
|
|
{
|
|
typeToFilterSignatures.Add(type, new HashSet<FilterSignature>());
|
|
}
|
|
|
|
typeToFilterSignatures[type].Add(filterSignature);
|
|
}
|
|
}
|
|
return new Filter(this, included, excluded);
|
|
}
|
|
|
|
// FIXME: this dictionary should probably just store entities
|
|
public IEnumerable<Entity> FilterEntities(Filter filter)
|
|
{
|
|
foreach (var id in filterSignatureToEntityIDs[filter.Signature])
|
|
{
|
|
yield return new Entity(id);
|
|
}
|
|
}
|
|
|
|
public IEnumerable<Entity> FilterEntitiesRandom(Filter filter)
|
|
{
|
|
foreach (var index in RandomGenerator.LinearCongruentialGenerator(FilterCount(filter)))
|
|
{
|
|
yield return new Entity(filterSignatureToEntityIDs[filter.Signature][index]);
|
|
}
|
|
}
|
|
|
|
public Entity FilterRandomEntity(Filter filter)
|
|
{
|
|
var randomIndex = RandomGenerator.Next(FilterCount(filter));
|
|
return new Entity(filterSignatureToEntityIDs[filter.Signature][randomIndex]);
|
|
}
|
|
|
|
public int FilterCount(Filter filter)
|
|
{
|
|
return filterSignatureToEntityIDs[filter.Signature].Count;
|
|
}
|
|
|
|
private void CheckFilter(FilterSignature filterSignature, int entityID)
|
|
{
|
|
foreach (var type in filterSignature.Included)
|
|
{
|
|
if (!Has(type, entityID))
|
|
{
|
|
filterSignatureToEntityIDs[filterSignature].Remove(entityID);
|
|
return;
|
|
}
|
|
}
|
|
|
|
foreach (var type in filterSignature.Excluded)
|
|
{
|
|
if (Has(type, entityID))
|
|
{
|
|
filterSignatureToEntityIDs[filterSignature].Remove(entityID);
|
|
return;
|
|
}
|
|
}
|
|
|
|
filterSignatureToEntityIDs[filterSignature].Add(entityID);
|
|
}
|
|
|
|
// debug use only!
|
|
|
|
public IEnumerable<object> Debug_GetAllComponents(int entityID)
|
|
{
|
|
foreach (var (type, storage) in storages)
|
|
{
|
|
if (storage.Has(entityID))
|
|
{
|
|
yield return storage.Debug_Get(entityID);
|
|
}
|
|
}
|
|
}
|
|
|
|
public ReadOnlySpan<Entity> Debug_GetEntities(Type componentType)
|
|
{
|
|
return Lookup(componentType).AllEntities();
|
|
}
|
|
|
|
public IEnumerable<Type> Debug_SearchComponentType(string typeString)
|
|
{
|
|
foreach (var type in storages.Keys)
|
|
{
|
|
if (type.ToString().ToLower().Contains(typeString.ToLower()))
|
|
{
|
|
yield return type;
|
|
}
|
|
}
|
|
}
|
|
}
|