2022-05-03 04:51:11 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Runtime.InteropServices;
|
2022-04-08 05:52:03 +00:00
|
|
|
|
|
2022-04-06 19:53:50 +00:00
|
|
|
|
namespace MoonTools.ECS
|
|
|
|
|
{
|
2022-04-19 19:35:21 +00:00
|
|
|
|
internal abstract class RelationStorage
|
2022-04-06 19:53:50 +00:00
|
|
|
|
{
|
2022-05-03 04:51:11 +00:00
|
|
|
|
public abstract RelationStorageState CreateState();
|
|
|
|
|
public abstract void Save(RelationStorageState state);
|
|
|
|
|
public abstract void Load(RelationStorageState state);
|
2022-04-19 19:35:21 +00:00
|
|
|
|
public abstract void OnEntityDestroy(int entityID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Relation is the two entities, A related to B.
|
|
|
|
|
// TRelation is the data attached to the relation.
|
2022-05-03 04:51:11 +00:00
|
|
|
|
internal class RelationStorage<TRelation> : RelationStorage where TRelation : unmanaged
|
2022-04-19 19:35:21 +00:00
|
|
|
|
{
|
2022-05-03 04:51:11 +00:00
|
|
|
|
private int count = 0;
|
|
|
|
|
private Dictionary<Relation, int> indices = new Dictionary<Relation, int>(16);
|
|
|
|
|
private Relation[] relations = new Relation[16];
|
|
|
|
|
private TRelation[] relationDatas = new TRelation[16];
|
2022-04-06 19:53:50 +00:00
|
|
|
|
private Dictionary<int, HashSet<int>> entitiesRelatedToA = new Dictionary<int, HashSet<int>>(16);
|
|
|
|
|
private Dictionary<int, HashSet<int>> entitiesRelatedToB = new Dictionary<int, HashSet<int>>(16);
|
|
|
|
|
private Stack<HashSet<int>> listPool = new Stack<HashSet<int>>();
|
|
|
|
|
|
2022-04-19 19:35:21 +00:00
|
|
|
|
public IEnumerable<(Entity, Entity, TRelation)> All()
|
2022-04-06 19:53:50 +00:00
|
|
|
|
{
|
2022-05-03 04:51:11 +00:00
|
|
|
|
for (var i = 0; i < count; i += 1)
|
2022-04-06 19:53:50 +00:00
|
|
|
|
{
|
2022-05-03 04:51:11 +00:00
|
|
|
|
var relation = relations[i];
|
|
|
|
|
yield return (relation.A, relation.B, relationDatas[i]);
|
2022-04-06 19:53:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-03 04:51:11 +00:00
|
|
|
|
public void Set(Relation relation, TRelation relationData)
|
2022-04-06 19:53:50 +00:00
|
|
|
|
{
|
2022-05-03 04:51:11 +00:00
|
|
|
|
if (indices.ContainsKey(relation))
|
|
|
|
|
{
|
|
|
|
|
var index = indices[relation];
|
|
|
|
|
relationDatas[index] = relationData;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-04-07 03:08:28 +00:00
|
|
|
|
|
2022-04-06 19:53:50 +00:00
|
|
|
|
var idA = relation.A.ID;
|
|
|
|
|
var idB = relation.B.ID;
|
|
|
|
|
|
|
|
|
|
if (!entitiesRelatedToA.ContainsKey(idA))
|
|
|
|
|
{
|
|
|
|
|
entitiesRelatedToA[idA] = AcquireHashSetFromPool();
|
|
|
|
|
}
|
|
|
|
|
entitiesRelatedToA[idA].Add(idB);
|
|
|
|
|
|
|
|
|
|
if (!entitiesRelatedToB.ContainsKey(idB))
|
|
|
|
|
{
|
|
|
|
|
entitiesRelatedToB[idB] = AcquireHashSetFromPool();
|
|
|
|
|
}
|
|
|
|
|
entitiesRelatedToB[idB].Add(idA);
|
|
|
|
|
|
2022-05-03 04:51:11 +00:00
|
|
|
|
if (count >= relationDatas.Length)
|
|
|
|
|
{
|
|
|
|
|
Array.Resize(ref relationDatas, relationDatas.Length * 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
relations[count] = relation;
|
|
|
|
|
relationDatas[count] = relationData;
|
|
|
|
|
indices.Add(relation, count);
|
|
|
|
|
count += 1;
|
2022-04-06 19:53:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-07 03:08:28 +00:00
|
|
|
|
public bool Has(Relation relation)
|
|
|
|
|
{
|
2022-05-03 04:51:11 +00:00
|
|
|
|
return indices.ContainsKey(relation);
|
2022-04-07 03:08:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 19:35:21 +00:00
|
|
|
|
// FIXME: is there a more descriptive name for these?
|
|
|
|
|
public IEnumerable<(Entity, TRelation)> RelatedToA(int entityID)
|
2022-04-06 19:53:50 +00:00
|
|
|
|
{
|
|
|
|
|
if (entitiesRelatedToA.ContainsKey(entityID))
|
|
|
|
|
{
|
|
|
|
|
foreach (var id in entitiesRelatedToA[entityID])
|
|
|
|
|
{
|
2022-04-19 19:35:21 +00:00
|
|
|
|
var relation = new Relation(entityID, id);
|
2022-05-03 04:51:11 +00:00
|
|
|
|
yield return (relation.B, relationDatas[indices[relation]]);
|
2022-04-06 19:53:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 19:35:21 +00:00
|
|
|
|
public IEnumerable<(Entity, TRelation)> RelatedToB(int entityID)
|
2022-04-06 19:53:50 +00:00
|
|
|
|
{
|
|
|
|
|
if (entitiesRelatedToB.ContainsKey(entityID))
|
|
|
|
|
{
|
|
|
|
|
foreach (var id in entitiesRelatedToB[entityID])
|
|
|
|
|
{
|
2022-04-19 19:35:21 +00:00
|
|
|
|
var relation = new Relation(id, entityID);
|
2022-05-03 04:51:11 +00:00
|
|
|
|
yield return (relation.A, relationDatas[indices[relation]]);
|
2022-04-06 19:53:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Remove(Relation relation)
|
|
|
|
|
{
|
|
|
|
|
if (entitiesRelatedToA.ContainsKey(relation.A.ID))
|
|
|
|
|
{
|
|
|
|
|
entitiesRelatedToA[relation.A.ID].Remove(relation.B.ID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (entitiesRelatedToB.ContainsKey(relation.B.ID))
|
|
|
|
|
{
|
|
|
|
|
entitiesRelatedToB[relation.B.ID].Remove(relation.A.ID);
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-03 04:51:11 +00:00
|
|
|
|
if (indices.ContainsKey(relation))
|
|
|
|
|
{
|
|
|
|
|
var index = indices[relation];
|
|
|
|
|
var lastElementIndex = count - 1;
|
|
|
|
|
|
|
|
|
|
// move an element into the hole
|
|
|
|
|
if (index != lastElementIndex)
|
|
|
|
|
{
|
|
|
|
|
var lastRelation = relations[lastElementIndex];
|
|
|
|
|
indices[lastRelation] = index;
|
|
|
|
|
relationDatas[index] = relationDatas[lastElementIndex];
|
|
|
|
|
relations[index] = lastRelation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
count -= 1;
|
|
|
|
|
indices.Remove(relation);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
2022-04-06 19:53:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 19:35:21 +00:00
|
|
|
|
public override void OnEntityDestroy(int entityID)
|
2022-04-06 19:53:50 +00:00
|
|
|
|
{
|
|
|
|
|
if (entitiesRelatedToA.ContainsKey(entityID))
|
|
|
|
|
{
|
|
|
|
|
foreach (var entityB in entitiesRelatedToA[entityID])
|
|
|
|
|
{
|
2022-04-19 19:35:21 +00:00
|
|
|
|
Remove(new Relation(entityID, entityB));
|
2022-04-06 19:53:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ReturnHashSetToPool(entitiesRelatedToA[entityID]);
|
|
|
|
|
entitiesRelatedToA.Remove(entityID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (entitiesRelatedToB.ContainsKey(entityID))
|
|
|
|
|
{
|
|
|
|
|
foreach (var entityA in entitiesRelatedToB[entityID])
|
|
|
|
|
{
|
2022-04-19 19:35:21 +00:00
|
|
|
|
Remove(new Relation(entityA, entityID));
|
2022-04-06 19:53:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ReturnHashSetToPool(entitiesRelatedToB[entityID]);
|
|
|
|
|
entitiesRelatedToB.Remove(entityID);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private HashSet<int> AcquireHashSetFromPool()
|
|
|
|
|
{
|
|
|
|
|
if (listPool.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
listPool.Push(new HashSet<int>());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return listPool.Pop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ReturnHashSetToPool(HashSet<int> hashSet)
|
|
|
|
|
{
|
2022-04-19 19:35:21 +00:00
|
|
|
|
hashSet.Clear();
|
2022-04-06 19:53:50 +00:00
|
|
|
|
listPool.Push(hashSet);
|
|
|
|
|
}
|
2022-05-03 04:51:11 +00:00
|
|
|
|
|
|
|
|
|
public override RelationStorageState CreateState()
|
|
|
|
|
{
|
|
|
|
|
return RelationStorageState.Create<TRelation>(count);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Save(RelationStorageState state)
|
|
|
|
|
{
|
|
|
|
|
ReadOnlySpan<byte> relationBytes = MemoryMarshal.Cast<Relation, byte>(relations);
|
|
|
|
|
|
|
|
|
|
if (relationBytes.Length > state.Relations.Length)
|
|
|
|
|
{
|
|
|
|
|
Array.Resize(ref state.Relations, relationBytes.Length);
|
|
|
|
|
}
|
|
|
|
|
relationBytes.CopyTo(state.Relations);
|
|
|
|
|
|
|
|
|
|
ReadOnlySpan<byte> relationDataBytes = MemoryMarshal.Cast<TRelation, byte>(relationDatas);
|
|
|
|
|
|
|
|
|
|
if (relationDataBytes.Length > state.RelationDatas.Length)
|
|
|
|
|
{
|
|
|
|
|
Array.Resize(ref state.RelationDatas, relationDataBytes.Length);
|
|
|
|
|
}
|
|
|
|
|
relationDataBytes.CopyTo(state.RelationDatas);
|
|
|
|
|
|
|
|
|
|
state.Count = count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Load(RelationStorageState state)
|
|
|
|
|
{
|
|
|
|
|
state.Relations.CopyTo(MemoryMarshal.Cast<Relation, byte>(relations));
|
|
|
|
|
state.RelationDatas.CopyTo(MemoryMarshal.Cast<TRelation, byte>(relationDatas));
|
|
|
|
|
|
|
|
|
|
indices.Clear();
|
|
|
|
|
entitiesRelatedToA.Clear();
|
|
|
|
|
entitiesRelatedToB.Clear();
|
|
|
|
|
for (var i = 0; i < state.Count; i += 1)
|
|
|
|
|
{
|
|
|
|
|
var relation = relations[i];
|
|
|
|
|
indices[relation] = i;
|
|
|
|
|
|
|
|
|
|
if (!entitiesRelatedToA.ContainsKey(relation.A.ID))
|
|
|
|
|
{
|
|
|
|
|
entitiesRelatedToA[relation.A.ID] = AcquireHashSetFromPool();
|
|
|
|
|
}
|
|
|
|
|
entitiesRelatedToA[relation.A.ID].Add(relation.B.ID);
|
|
|
|
|
|
|
|
|
|
if (!entitiesRelatedToB.ContainsKey(relation.B.ID))
|
|
|
|
|
{
|
|
|
|
|
entitiesRelatedToB[relation.B.ID] = AcquireHashSetFromPool();
|
|
|
|
|
}
|
|
|
|
|
entitiesRelatedToB[relation.B.ID].Add(relation.A.ID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
count = state.Count;
|
|
|
|
|
}
|
2022-04-06 19:53:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|