DragonECS/src/EcsWorld.cs

580 lines
21 KiB
C#
Raw Normal View History

using DCFApixels.DragonECS.Internal;
using DCFApixels.DragonECS.Utils;
using System;
2023-03-02 14:42:44 +08:00
using System.Collections.Generic;
using System.Runtime.CompilerServices;
namespace DCFApixels.DragonECS
{
2023-04-24 00:31:03 +08:00
public abstract class EcsWorld
2023-03-02 14:42:44 +08:00
{
2023-04-23 17:19:52 +08:00
private const short GEN_BITS = 0x7fff;
private const short DEATH_GEN_BIT = short.MinValue;
2023-04-24 16:48:18 +08:00
private const int DEL_ENT_BUFFER_SIZE_OFFSET = 2;
2023-04-23 17:19:52 +08:00
public static EcsWorld[] Worlds = new EcsWorld[8];
2023-04-07 15:11:48 +08:00
private static IntDispenser _worldIdDispenser = new IntDispenser(0);
2023-05-26 03:45:35 +08:00
2023-04-18 19:35:42 +08:00
public readonly short uniqueID;
private int _worldTypeID;
2023-04-18 19:35:42 +08:00
private IntDispenser _entityDispenser;
private int _entitiesCount;
2023-04-18 19:35:42 +08:00
private int _entitesCapacity;
2023-05-26 00:24:38 +08:00
private short[] _gens; //старший бит указывает на то жива ли сущность
private short[] _componentCounts;
2023-04-20 11:37:27 +08:00
private EcsGroup _allEntites;
2023-04-20 18:23:23 +08:00
private int[] _delEntBuffer;
2023-04-20 11:37:27 +08:00
private int _delEntBufferCount;
2023-04-18 19:35:42 +08:00
2023-05-26 00:24:38 +08:00
internal IEcsPoolImplementation[] _pools;
2023-03-13 04:32:24 +08:00
private EcsNullPool _nullPool;
2023-05-23 01:47:28 +08:00
private int _poolsCount = 0;
2023-03-02 14:42:44 +08:00
private EcsSubject[] _subjects;
private EcsQueryExecutor[] _executors;
2023-03-02 14:42:44 +08:00
2023-04-17 22:58:52 +08:00
private List<WeakReference<EcsGroup>> _groups;
2023-04-18 19:35:42 +08:00
private Stack<EcsGroup> _groupsPool = new Stack<EcsGroup>(64);
2023-04-01 20:45:37 +08:00
private List<IEcsWorldEventListener> _listeners;
2023-04-01 20:45:37 +08:00
2023-03-02 14:42:44 +08:00
#region Properties
public abstract Type Archetype { get; }
2023-04-18 19:35:42 +08:00
public int UniqueID => uniqueID;
public int Count => _entitiesCount;
public int Capacity => _entitesCapacity; //_denseEntities.Length;
2023-04-09 02:52:39 +08:00
public EcsReadonlyGroup Entities => _allEntites.Readonly;
2023-05-26 00:24:38 +08:00
public ReadOnlySpan<IEcsPoolImplementation> AllPools => _pools;// new ReadOnlySpan<IEcsPoolImplementation>(pools, 0, _poolsCount);
2023-05-23 01:47:28 +08:00
public int PoolsCount => _poolsCount;
2023-04-23 22:55:13 +08:00
#endregion
2023-04-20 20:10:16 +08:00
#region Constructors/Destroy
static EcsWorld()
{
EcsNullWorld nullWorld = new EcsNullWorld();
Worlds[0] = nullWorld;
}
public EcsWorld() : this(true) { }
internal EcsWorld(bool isIndexable)
{
2023-04-23 17:19:52 +08:00
_entitesCapacity = 512;
_listeners = new List<IEcsWorldEventListener>();
if (isIndexable)
{
uniqueID = (short)_worldIdDispenser.GetFree();
if (uniqueID >= Worlds.Length)
Array.Resize(ref Worlds, Worlds.Length << 1);
Worlds[uniqueID] = this;
}
2023-05-27 22:15:25 +08:00
_worldTypeID = WorldMetaStorage.GetWorldID(Archetype);
2023-04-07 15:11:48 +08:00
_entityDispenser = new IntDispenser(0);
2023-04-06 23:40:47 +08:00
_nullPool = EcsNullPool.instance;
2023-05-26 00:24:38 +08:00
_pools = new IEcsPoolImplementation[512];
ArrayUtility.Fill(_pools, _nullPool);
2023-04-01 20:45:37 +08:00
2023-04-23 17:19:52 +08:00
_gens = new short[_entitesCapacity];
_componentCounts = new short[_entitesCapacity];
2023-04-23 17:19:52 +08:00
ArrayUtility.Fill(_gens, DEATH_GEN_BIT);
2023-04-20 11:37:27 +08:00
_delEntBufferCount = 0;
2023-04-23 17:19:52 +08:00
_delEntBuffer = new int[_entitesCapacity >> DEL_ENT_BUFFER_SIZE_OFFSET];
2023-04-18 19:35:42 +08:00
2023-04-17 22:58:52 +08:00
_groups = new List<WeakReference<EcsGroup>>();
2023-04-20 10:59:55 +08:00
_allEntites = GetGroupFromPool();
_subjects = new EcsSubject[128];
_executors = new EcsQueryExecutor[128];
2023-03-02 14:42:44 +08:00
}
2023-04-20 20:10:16 +08:00
public void Destroy()
{
2023-04-20 20:10:16 +08:00
_entityDispenser = null;
//_denseEntities = null;
_gens = null;
2023-05-26 00:24:38 +08:00
_pools = null;
2023-04-20 20:10:16 +08:00
_nullPool = null;
_subjects = null;
_executors = null;
2023-04-20 20:10:16 +08:00
Worlds[uniqueID] = null;
_worldIdDispenser.Release(uniqueID);
}
2023-03-02 14:42:44 +08:00
#endregion
2023-04-24 16:48:18 +08:00
#region GetComponentID
2023-05-29 23:03:02 +08:00
public int GetComponentID<T>() => WorldMetaStorage.GetComponentId<T>(_worldTypeID);
public bool IsComponentTypeDeclared<T>() => WorldMetaStorage.IsComponentTypeDeclared<T>(_worldTypeID);
2023-04-24 16:48:18 +08:00
#endregion
2023-03-02 14:42:44 +08:00
#region GetPool
2023-05-28 05:53:08 +08:00
#if UNITY_2020_3_OR_NEWER
[UnityEngine.Scripting.Preserve]
#endif
2023-05-27 09:06:10 +08:00
public TPool GetPool<TComponent, TPool>() where TPool : IEcsPoolImplementation<TComponent>, new()
2023-03-02 14:42:44 +08:00
{
int uniqueID = WorldMetaStorage.GetComponentId<TComponent>(_worldTypeID);
2023-05-26 00:24:38 +08:00
if (uniqueID >= _pools.Length)
2023-03-02 14:42:44 +08:00
{
2023-05-26 00:24:38 +08:00
int oldCapacity = _pools.Length;
Array.Resize(ref _pools, _pools.Length << 1);
ArrayUtility.Fill(_pools, _nullPool, oldCapacity, oldCapacity - _pools.Length);
2023-03-02 14:42:44 +08:00
}
2023-05-26 00:24:38 +08:00
if (_pools[uniqueID] == _nullPool)
2023-04-21 03:16:05 +08:00
{
var pool = new TPool();
2023-05-26 00:24:38 +08:00
_pools[uniqueID] = pool;
pool.OnInit(this, uniqueID);
2023-05-23 01:47:28 +08:00
_poolsCount++;
2023-04-21 03:16:05 +08:00
}
2023-05-26 00:24:38 +08:00
return (TPool)_pools[uniqueID];
2023-03-02 14:42:44 +08:00
}
#endregion
#region Subjects
public TSubject GetSubject<TSubject>() where TSubject : EcsSubject
{
int uniqueID = WorldMetaStorage.GetSubjectId<TSubject>(_worldTypeID);
if (uniqueID >= _subjects.Length)
Array.Resize(ref _subjects, _subjects.Length << 1);
if (_subjects[uniqueID] == null)
_subjects[uniqueID] = EcsSubject.Builder.Build<TSubject>(this);
return (TSubject)_subjects[uniqueID];
}
#endregion
2023-04-24 16:48:18 +08:00
#region Queries
2023-05-27 15:59:46 +08:00
public TExecutor GetExecutor<TExecutor>() where TExecutor : EcsQueryExecutor, new()
{
int id = WorldMetaStorage.GetExecutorId<TExecutor>(_worldTypeID);
if (id >= _executors.Length)
Array.Resize(ref _executors, _executors.Length << 1);
if (_executors[id] == null)
2023-05-27 15:59:46 +08:00
{
var executor = new TExecutor();
executor.Initialize(this);
_executors[id] = executor;
}
return (TExecutor)_executors[id];
}
public EcsWhereResult<TSubject> WhereFor<TSubject>(EcsReadonlyGroup sourceGroup, out TSubject subject) where TSubject : EcsSubject
{
2023-05-27 15:59:46 +08:00
var executor = GetExecutor<EcsWhereExecutor<TSubject>>();
subject = executor.Subject;
return executor.ExecuteFor(sourceGroup);
}
public EcsWhereResult<TSubject> WhereFor<TSubject>(EcsReadonlyGroup sourceGroup) where TSubject : EcsSubject
{
2023-05-27 15:59:46 +08:00
return GetExecutor<EcsWhereExecutor<TSubject>>().ExecuteFor(sourceGroup);
}
public EcsWhereResult<TSubject> Where<TSubject>(out TSubject subject) where TSubject : EcsSubject
{
2023-05-27 15:59:46 +08:00
var executor = GetExecutor<EcsWhereExecutor<TSubject>>();
subject = executor.Subject;
return executor.Execute();
}
public EcsWhereResult<TSubject> Where<TSubject>() where TSubject : EcsSubject
{
2023-05-27 15:59:46 +08:00
return GetExecutor<EcsWhereExecutor<TSubject>>().Execute();
}
#endregion
2023-05-26 00:24:38 +08:00
#region IsMatchesMask
public bool IsMatchesMask(EcsMask mask, int entityID)
2023-03-02 14:42:44 +08:00
{
#if (DEBUG && !DISABLE_DEBUG) || !DISABLE_DRAGONECS_ASSERT_CHEKS
2023-05-26 00:24:38 +08:00
if (mask._worldType != Archetype)
2023-04-08 00:47:35 +08:00
throw new EcsFrameworkException("mask.WorldArchetypeType != typeof(TTableArhetype)");
2023-03-13 01:39:04 +08:00
#endif
2023-05-26 00:24:38 +08:00
for (int i = 0, iMax = mask._inc.Length; i < iMax; i++)
2023-03-02 14:42:44 +08:00
{
2023-05-26 00:24:38 +08:00
if (!_pools[mask._inc[i]].Has(entityID))
2023-03-02 14:42:44 +08:00
return false;
}
2023-05-26 00:24:38 +08:00
for (int i = 0, iMax = mask._exc.Length; i < iMax; i++)
2023-03-02 14:42:44 +08:00
{
2023-05-26 00:24:38 +08:00
if (_pools[mask._exc[i]].Has(entityID))
2023-03-02 14:42:44 +08:00
return false;
}
return true;
}
#endregion
2023-03-26 11:19:03 +08:00
#region Entity
2023-05-23 01:47:28 +08:00
public int NewEmptyEntity()
2023-03-02 14:42:44 +08:00
{
2023-03-26 11:19:03 +08:00
int entityID = _entityDispenser.GetFree();
2023-04-18 19:35:42 +08:00
_entitiesCount++;
2023-04-01 20:45:37 +08:00
if (_gens.Length <= entityID)
{
2023-03-26 11:19:03 +08:00
Array.Resize(ref _gens, _gens.Length << 1);
Array.Resize(ref _componentCounts, _gens.Length);
2023-04-23 17:19:52 +08:00
ArrayUtility.Fill(_gens, DEATH_GEN_BIT, _entitesCapacity);
2023-04-18 19:35:42 +08:00
_entitesCapacity = _gens.Length;
2023-04-23 17:19:52 +08:00
2023-04-17 22:58:52 +08:00
for (int i = 0; i < _groups.Count; i++)
{
if (_groups[i].TryGetTarget(out EcsGroup group))
{
group.OnWorldResize(_gens.Length);
}
else
{
int last = _groups.Count - 1;
_groups[i--] = _groups[last];
_groups.RemoveAt(last);
}
}
2023-05-26 00:24:38 +08:00
foreach (var item in _pools)
item.OnWorldResize(_gens.Length);
2023-05-23 01:47:28 +08:00
_listeners.InvokeOnWorldResize(_gens.Length);
2023-04-01 20:45:37 +08:00
}
2023-04-23 17:19:52 +08:00
_gens[entityID] &= GEN_BITS;
2023-04-09 02:52:39 +08:00
_allEntites.Add(entityID);
_listeners.InvokeOnNewEntity(entityID);
return entityID;
}
2023-05-23 01:47:28 +08:00
public entlong NewEmptyEntityLong()
{
2023-05-23 01:47:28 +08:00
int e = NewEmptyEntity();
return GetEntityLong(e);
2023-03-26 11:19:03 +08:00
}
public void DelEntity(int entityID)
2023-03-26 11:19:03 +08:00
{
_allEntites.Remove(entityID);
_delEntBuffer[_delEntBufferCount++] = entityID;
_gens[entityID] |= DEATH_GEN_BIT;
_entitiesCount--;
_listeners.InvokeOnDelEntity(entityID);
2023-04-20 11:37:27 +08:00
if (_delEntBufferCount >= _delEntBuffer.Length)
2023-04-24 16:48:18 +08:00
ReleaseDelEntityBuffer();
2023-04-20 11:37:27 +08:00
}
2023-04-24 16:48:18 +08:00
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public entlong GetEntityLong(int entityID) => new entlong(entityID, _gens[entityID], uniqueID); //TODO придумать получше имя метода
2023-04-24 16:48:18 +08:00
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool IsAlive(int entityID, short gen) => _gens[entityID] == gen;
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool IsUsed(int entityID) => _gens[entityID] >= 0;
2023-04-24 16:48:18 +08:00
public void ReleaseDelEntityBuffer()
2023-04-20 11:37:27 +08:00
{
ReadOnlySpan<int> buffser = new ReadOnlySpan<int>(_delEntBuffer, 0, _delEntBufferCount);
2023-05-26 00:24:38 +08:00
foreach (var pool in _pools)
pool.OnReleaseDelEntityBuffer(buffser);
_listeners.InvokeOnReleaseDelEntityBuffer(buffser);
2023-04-20 11:37:27 +08:00
for (int i = 0; i < _delEntBufferCount; i++)
_entityDispenser.Release(_delEntBuffer[i]);
_delEntBufferCount = 0;
2023-03-02 14:42:44 +08:00
}
2023-05-26 00:24:38 +08:00
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public short GetGen(int entityID) => _gens[entityID];
2023-05-26 00:24:38 +08:00
[MethodImpl(MethodImplOptions.AggressiveInlining)]
2023-05-23 01:47:28 +08:00
public short GetComponentsCount(int entityID) => _componentCounts[entityID];
public void DeleteEmptyEntites()
{
foreach (var e in _allEntites)
{
2023-05-26 00:24:38 +08:00
if (_componentCounts[e] <= 0) DelEntity(e);
}
}
2023-05-23 01:47:28 +08:00
public void CopyEntity(int fromEntityID, int toEntityID)
{
2023-05-26 00:24:38 +08:00
foreach (var pool in _pools)
2023-05-23 01:47:28 +08:00
{
2023-05-26 00:24:38 +08:00
if(pool.Has(fromEntityID)) pool.Copy(fromEntityID, toEntityID);
2023-05-23 01:47:28 +08:00
}
}
public int CloneEntity(int fromEntityID)
{
int newEntity = NewEmptyEntity();
CopyEntity(fromEntityID, newEntity);
return newEntity;
}
public void CloneEntity(int fromEntityID, int toEntityID)
{
CopyEntity(fromEntityID, toEntityID);
2023-05-26 00:24:38 +08:00
foreach (var pool in _pools)
2023-05-23 01:47:28 +08:00
{
if (!pool.Has(fromEntityID)&& pool.Has(toEntityID))
pool.Del(toEntityID);
}
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
2023-05-26 00:24:38 +08:00
internal void IncrementEntityComponentCount(int entityID) => _componentCounts[entityID]++;
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal void DecrementEntityComponentCount(int entityID)
{
var count = --_componentCounts[entityID];
2023-05-26 00:24:38 +08:00
if(count == 0 && _allEntites.Has(entityID)) DelEntity(entityID);
#if (DEBUG && !DISABLE_DEBUG) || !DISABLE_DRAGONECS_ASSERT_CHEKS
2023-05-26 00:24:38 +08:00
if (count < 0) throw new EcsFrameworkException("нарушен баланс инкремента/декремента компонентов");
#endif
}
2023-03-02 14:42:44 +08:00
#endregion
2023-05-28 06:29:04 +08:00
#region Groups Pool
internal void RegisterGroup(EcsGroup group)
{
2023-04-17 22:58:52 +08:00
_groups.Add(new WeakReference<EcsGroup>(group));
}
2023-04-18 19:35:42 +08:00
internal EcsGroup GetGroupFromPool()
{
2023-05-28 06:29:04 +08:00
EcsGroup result = _groupsPool.Count <= 0 ? new EcsGroup(this) : _groupsPool.Pop();
result._isReleased = false;
return result;
2023-04-18 19:35:42 +08:00
}
internal void ReleaseGroup(EcsGroup group)
2023-04-18 19:35:42 +08:00
{
#if (DEBUG && !DISABLE_DEBUG) || !DISABLE_DRAGONECS_ASSERT_CHEKS
2023-04-18 19:35:42 +08:00
if (group.World != this)
2023-04-20 18:23:23 +08:00
throw new ArgumentException("groupFilter.WorldIndex != this");
2023-04-18 19:35:42 +08:00
#endif
2023-05-28 06:29:04 +08:00
group._isReleased = true;
2023-04-18 19:35:42 +08:00
group.Clear();
_groupsPool.Push(group);
}
#endregion
#region Debug
2023-05-23 01:47:28 +08:00
public void GetComponents(int entityID, List<object> list)
{
list.Clear();
var itemsCount = GetComponentsCount(entityID);
if (itemsCount == 0)
return;
2023-05-26 00:24:38 +08:00
for (var i = 0; i < _pools.Length; i++)
2023-05-23 01:47:28 +08:00
{
2023-05-26 00:24:38 +08:00
if (_pools[i].Has(entityID))
list.Add(_pools[i].GetRaw(entityID));
2023-05-23 01:47:28 +08:00
if (list.Count >= itemsCount)
break;
}
}
#endregion
2023-05-28 05:53:08 +08:00
#region NullWorld
private sealed class EcsNullWorld : EcsWorld<EcsNullWorld>
{
public EcsNullWorld() : base(false) { }
}
#endregion
2023-04-01 20:45:37 +08:00
}
2023-04-08 21:29:18 +08:00
public abstract class EcsWorld<TWorldArchetype> : EcsWorld
where TWorldArchetype : EcsWorld<TWorldArchetype>
{
public override Type Archetype => typeof(TWorldArchetype);
public EcsWorld() : base() { }
internal EcsWorld(bool isIndexable) : base(isIndexable) { }
}
2023-05-27 22:15:25 +08:00
#region WorldMetaStorage
2023-05-29 23:03:02 +08:00
internal static class WorldMetaStorage
2023-04-10 22:22:17 +08:00
{
2023-05-26 00:24:38 +08:00
private static List<Resizer> _resizer = new List<Resizer>();
private static int _tokenCount = 0;
2023-05-27 22:15:25 +08:00
2023-05-28 05:53:08 +08:00
private static WorldTypeMeta[] _metas = new WorldTypeMeta[0];
2023-04-20 19:23:58 +08:00
private static Dictionary<Type, int> _worldIds = new Dictionary<Type, int>();
2023-04-20 18:23:23 +08:00
private static class WorldIndex<TWorldArchetype>
2023-04-10 22:22:17 +08:00
{
2023-05-27 22:15:25 +08:00
public static int id = GetWorldID(typeof(TWorldArchetype));
2023-04-10 22:22:17 +08:00
}
private static int GetToken()
{
2023-05-28 05:53:08 +08:00
WorldTypeMeta meta = new WorldTypeMeta();
2023-05-27 22:15:25 +08:00
meta.id = _tokenCount;
Array.Resize(ref _metas, ++_tokenCount);
_metas[_tokenCount - 1] = meta;
2023-05-26 00:24:38 +08:00
foreach (var item in _resizer)
item.Resize(_tokenCount);
return _tokenCount - 1;
2023-04-10 22:22:17 +08:00
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
2023-05-27 22:15:25 +08:00
public static int GetWorldID(Type archetype)
2023-04-20 19:23:58 +08:00
{
2023-05-27 22:15:25 +08:00
if(!_worldIds.TryGetValue(archetype, out int id))
2023-04-20 19:23:58 +08:00
{
id = GetToken();
_worldIds.Add(archetype, id);
}
return id;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
2023-04-20 18:23:23 +08:00
public static int GetWorldId<TWorldArchetype>() => WorldIndex<TWorldArchetype>.id;
2023-04-10 22:22:17 +08:00
[MethodImpl(MethodImplOptions.AggressiveInlining)]
2023-04-20 18:23:23 +08:00
public static int GetComponentId<T>(int worldID) => Component<T>.Get(worldID);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static int GetSubjectId<T>(int worldID) => Subject<T>.Get(worldID);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static int GetExecutorId<T>(int worldID) => Executor<T>.Get(worldID);
2023-05-27 22:15:25 +08:00
2023-05-29 23:03:02 +08:00
public static bool IsComponentTypeDeclared<TComponent>(int worldID) => IsComponentTypeDeclared(worldID, typeof(TComponent));
2023-05-27 22:15:25 +08:00
public static bool IsComponentTypeDeclared(int worldID, Type type) => _metas[worldID].IsDeclaredType(type);
public static Type GetComponentType(int worldID, int componentID) => _metas[worldID].GetComponentType(componentID);
#region Resizer
2023-04-10 22:22:17 +08:00
private abstract class Resizer
{
public abstract void Resize(int size);
}
private sealed class Resizer<T> : Resizer
{
2023-04-20 18:23:23 +08:00
public override void Resize(int size)
{
Array.Resize(ref Component<T>.ids, size);
Array.Resize(ref Subject<T>.ids, size);
Array.Resize(ref Executor<T>.ids, size);
2023-04-20 18:23:23 +08:00
}
2023-04-10 22:22:17 +08:00
}
2023-05-27 22:15:25 +08:00
#endregion
2023-04-20 18:23:23 +08:00
private static class Component<T>
2023-04-10 22:22:17 +08:00
{
public static int[] ids;
static Component()
{
2023-05-26 00:24:38 +08:00
ids = new int[_tokenCount];
2023-04-10 22:22:17 +08:00
for (int i = 0; i < ids.Length; i++)
ids[i] = -1;
2023-05-26 00:24:38 +08:00
_resizer.Add(new Resizer<T>());
2023-04-10 22:22:17 +08:00
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static int Get(int token)
{
ref int id = ref ids[token];
if (id < 0)
2023-05-27 22:15:25 +08:00
{
var meta = _metas[token];
id = meta.componentCount++;
meta.AddType(id, typeof(T));
}
2023-04-10 22:22:17 +08:00
return id;
}
}
private static class Subject<T>
{
public static int[] ids;
static Subject()
{
2023-05-26 00:24:38 +08:00
ids = new int[_tokenCount];
for (int i = 0; i < ids.Length; i++)
ids[i] = -1;
2023-05-26 00:24:38 +08:00
_resizer.Add(new Resizer<T>());
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static int Get(int token)
{
ref int id = ref ids[token];
if (id < 0)
2023-05-27 22:15:25 +08:00
id = _metas[token].subjectsCount++;
return id;
}
}
private static class Executor<T>
2023-04-20 18:23:23 +08:00
{
public static int[] ids;
static Executor()
2023-04-20 18:23:23 +08:00
{
2023-05-26 00:24:38 +08:00
ids = new int[_tokenCount];
2023-04-20 18:23:23 +08:00
for (int i = 0; i < ids.Length; i++)
ids[i] = -1;
2023-05-26 00:24:38 +08:00
_resizer.Add(new Resizer<T>());
2023-04-20 18:23:23 +08:00
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static int Get(int token)
{
ref int id = ref ids[token];
if (id < 0)
2023-05-27 22:15:25 +08:00
id = _metas[token].executorsCount++;
2023-04-20 18:23:23 +08:00
return id;
}
}
2023-05-27 22:15:25 +08:00
2023-05-28 05:53:08 +08:00
private class WorldTypeMeta
2023-05-27 22:15:25 +08:00
{
public int id;
public int componentCount;
public int subjectsCount;
public int executorsCount;
private Type[] types;
private HashSet<Type> declaredComponentTypes;
public void AddType(int id, Type type)
{
if(types.Length <= id)
Array.Resize(ref types, id + 10);
types[id] = type;
declaredComponentTypes.Add(type);
}
public Type GetComponentType(int componentID) => types[componentID];
public bool IsDeclaredType(Type type) => declaredComponentTypes.Contains(type);
2023-05-28 05:53:08 +08:00
public WorldTypeMeta()
2023-05-27 22:15:25 +08:00
{
types = new Type[10];
declaredComponentTypes = new HashSet<Type>();
}
}
2023-04-10 22:22:17 +08:00
}
2023-04-18 19:35:42 +08:00
#endregion
2023-05-23 01:47:28 +08:00
2023-05-26 00:24:38 +08:00
#region Callbacks Interface
public interface IEcsWorldEventListener
{
void OnWorldResize(int newSize);
void OnReleaseDelEntityBuffer(ReadOnlySpan<int> buffer);
void OnWorldDestroy();
void OnNewEntity(int entityID);
void OnDelEntity(int entityID);
}
2023-05-26 00:24:38 +08:00
internal static class WorldEventListExtensions
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void InvokeOnWorldResize(this List<IEcsWorldEventListener> self, int newSize)
{
for (int i = 0, iMax = self.Count; i < iMax; i++) self[i].OnWorldResize(newSize);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void InvokeOnReleaseDelEntityBuffer(this List<IEcsWorldEventListener> self, ReadOnlySpan<int> buffer)
{
for (int i = 0, iMax = self.Count; i < iMax; i++) self[i].OnReleaseDelEntityBuffer(buffer);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void InvokeOnWorldDestroy(this List<IEcsWorldEventListener> self)
{
for (int i = 0, iMax = self.Count; i < iMax; i++) self[i].OnWorldDestroy();
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void InvokeOnNewEntity(this List<IEcsWorldEventListener> self, int entityID)
{
for (int i = 0, iMax = self.Count; i < iMax; i++) self[i].OnNewEntity(entityID);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void InvokeOnDelEntity(this List<IEcsWorldEventListener> self, int entityID)
{
for (int i = 0, iMax = self.Count; i < iMax; i++) self[i].OnDelEntity(entityID);
}
}
#endregion
2023-05-28 06:35:33 +08:00
#region Extensions
public static class IntExtensions
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static entlong ToEntityLong(this int self, EcsWorld world) => world.GetEntityLong(self);
}
#endregion
2023-03-02 14:42:44 +08:00
}