mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-17 17:34:36 +08:00
892 lines
31 KiB
C#
892 lines
31 KiB
C#
using DCFApixels.DragonECS.Internal;
|
||
using DCFApixels.DragonECS.PoolsCore;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Diagnostics;
|
||
using System.Runtime.CompilerServices;
|
||
using System.Runtime.InteropServices;
|
||
|
||
namespace DCFApixels.DragonECS
|
||
{
|
||
#if ENABLE_IL2CPP
|
||
using Unity.IL2CPP.CompilerServices;
|
||
[Il2CppSetOption(Option.NullChecks, false)]
|
||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||
#endif
|
||
public class EcsWorldConfig
|
||
{
|
||
public static readonly EcsWorldConfig Default = new EcsWorldConfig();
|
||
public readonly int EntitiesCapacity;
|
||
public readonly int GroupCapacity;
|
||
public readonly int PoolsCapacity;
|
||
public readonly int PoolComponentsCapacity;
|
||
public readonly int PoolRecycledComponentsCapacity;
|
||
public EcsWorldConfig(int entitiesCapacity = 512, int groupCapacity = 512, int poolsCapacity = 512, int poolComponentsCapacity = 512, int poolRecycledComponentsCapacity = 512 / 2)
|
||
{
|
||
EntitiesCapacity = entitiesCapacity;
|
||
GroupCapacity = groupCapacity;
|
||
PoolsCapacity = poolsCapacity;
|
||
PoolComponentsCapacity = poolComponentsCapacity;
|
||
PoolRecycledComponentsCapacity = poolRecycledComponentsCapacity;
|
||
}
|
||
}
|
||
|
||
#if ENABLE_IL2CPP
|
||
[Il2CppSetOption(Option.NullChecks, false)]
|
||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||
#endif
|
||
[MetaColor(MetaColor.DragonRose)]
|
||
[MetaGroup(EcsConsts.PACK_GROUP, EcsConsts.WORLDS_GROUP)]
|
||
[MetaDescription(EcsConsts.AUTHOR, "It is a container for entities and components.")]
|
||
[DebuggerTypeProxy(typeof(DebuggerProxy))]
|
||
public partial class EcsWorld : IEntityStorage, IEcsMember
|
||
{
|
||
public readonly short id;
|
||
private IConfigContainer _configs;
|
||
|
||
private bool _isDestroyed = false;
|
||
|
||
private IdDispenser _entityDispenser;
|
||
private int _entitiesCount = 0;
|
||
private int _entitiesCapacity = 0;
|
||
private EntitySlot[] _entities = Array.Empty<EntitySlot>();
|
||
|
||
private int[] _delEntBuffer = Array.Empty<int>();
|
||
private int _delEntBufferCount = 0;
|
||
private bool _isEnableAutoReleaseDelEntBuffer = true;
|
||
|
||
internal int _entityComponentMaskLength;
|
||
internal int _entityComponentMaskLengthBitShift;
|
||
internal int[] _entityComponentMasks = Array.Empty<int>();
|
||
private const int COMPONENT_MASK_CHUNK_SIZE = 32;
|
||
|
||
//"лениво" обновляется только для NewEntity
|
||
private long _deleteLeakedEntitesLastVersion = 0;
|
||
//обновляется в NewEntity и в DelEntity
|
||
private long _version = 0;
|
||
|
||
private List<WeakReference<EcsGroup>> _groups = new List<WeakReference<EcsGroup>>();
|
||
private Stack<EcsGroup> _groupsPool = new Stack<EcsGroup>(64);
|
||
|
||
private List<IEcsWorldEventListener> _listeners = new List<IEcsWorldEventListener>();
|
||
private List<IEcsEntityEventListener> _entityListeners = new List<IEcsEntityEventListener>();
|
||
|
||
#region Properties
|
||
public IConfigContainer Configs
|
||
{
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
get { return _configs; }
|
||
}
|
||
public long Version
|
||
{
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
get { return _version; }
|
||
}
|
||
public bool IsDestroyed
|
||
{
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
get { return _isDestroyed; }
|
||
}
|
||
public int Count
|
||
{
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
get { return _entitiesCount; }
|
||
}
|
||
public int Capacity
|
||
{
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
get { return _entitiesCapacity; }
|
||
}
|
||
public int DelEntBufferCount
|
||
{
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
get { return _delEntBufferCount; }
|
||
}
|
||
public bool IsEnableReleaseDelEntBuffer
|
||
{
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
get { return _isEnableAutoReleaseDelEntBuffer; }
|
||
}
|
||
|
||
public EcsSpan Entities
|
||
{
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
get
|
||
{
|
||
if (_isEnableAutoReleaseDelEntBuffer)
|
||
{
|
||
ReleaseDelEntityBufferAll();
|
||
}
|
||
return _entityDispenser.UsedToEcsSpan(id);
|
||
}
|
||
}
|
||
public int PoolsCount
|
||
{
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
get { return _poolsCount; }
|
||
}
|
||
public ReadOnlySpan<IEcsPool> AllPools
|
||
{
|
||
// new ReadOnlySpan<IEcsPoolImplementation>(pools, 0, _poolsCount);
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
get { return _pools; }
|
||
}
|
||
#endregion
|
||
|
||
#region Constructors/Destroy
|
||
public EcsWorld(EcsWorldConfig config, short worldID = -1) : this(config == null ? ConfigContainer.Empty : new ConfigContainer().Set(config), worldID) { }
|
||
public EcsWorld(IConfigContainer configs = null, short worldID = -1)
|
||
{
|
||
if (configs == null) { configs = ConfigContainer.Empty; }
|
||
bool nullWorld = this is NullWorld;
|
||
if (nullWorld == false && worldID == NULL_WORLD_ID)
|
||
{
|
||
EcsDebug.PrintWarning($"The world identifier cannot be {NULL_WORLD_ID}");
|
||
}
|
||
_configs = configs;
|
||
EcsWorldConfig config = configs.GetWorldConfigOrDefault();
|
||
|
||
if (worldID < 0 || (worldID == NULL_WORLD_ID && nullWorld == false))
|
||
{
|
||
worldID = (short)_worldIdDispenser.UseFree();
|
||
}
|
||
else
|
||
{
|
||
if (worldID != _worldIdDispenser.NullID)
|
||
{
|
||
_worldIdDispenser.Use(worldID);
|
||
}
|
||
if (_worlds[worldID] != null)
|
||
{
|
||
_worldIdDispenser.Release(worldID);
|
||
Throw.Exception("The world with the specified ID has already been created\r\n");
|
||
}
|
||
}
|
||
id = worldID;
|
||
_worlds[worldID] = this;
|
||
|
||
_poolsMediator = new PoolsMediator(this);
|
||
|
||
int poolsCapacity = ArrayUtility.NormalizeSizeToPowerOfTwo(config.PoolsCapacity);
|
||
_pools = new IEcsPoolImplementation[poolsCapacity];
|
||
_poolComponentCounts = new int[poolsCapacity];
|
||
ArrayUtility.Fill(_pools, _nullPool);
|
||
|
||
int entitiesCapacity = ArrayUtility.NormalizeSizeToPowerOfTwo(config.EntitiesCapacity);
|
||
_entityDispenser = new IdDispenser(entitiesCapacity, 0, OnEntityDispenserResized);
|
||
|
||
GetComponentTypeID<NullComponent>();
|
||
}
|
||
public void Destroy()
|
||
{
|
||
if (_isDestroyed)
|
||
{
|
||
EcsDebug.PrintWarning("The world is already destroyed");
|
||
return;
|
||
}
|
||
if (id == NULL_WORLD_ID)
|
||
{
|
||
#if (DEBUG && !DISABLE_DEBUG)
|
||
Throw.World_WorldCantBeDestroyed();
|
||
#endif
|
||
return;
|
||
}
|
||
_listeners.InvokeOnWorldDestroy();
|
||
_entityDispenser = null;
|
||
_pools = null;
|
||
_nullPool = null;
|
||
_worlds[id] = null;
|
||
ReleaseData(id);
|
||
_worldIdDispenser.Release(id);
|
||
_isDestroyed = true;
|
||
_poolTypeCode_2_CmpTypeIDs = null;
|
||
_cmpTypeCode_2_CmpTypeIDs = null;
|
||
//_entities - не обнуляется для работы entlong.IsAlive
|
||
}
|
||
//public void Clear() { }
|
||
#endregion
|
||
|
||
#region Getters
|
||
#if UNITY_2020_3_OR_NEWER
|
||
[UnityEngine.Scripting.Preserve]
|
||
#endif
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public TAspect GetAspect<TAspect>() where TAspect : EcsAspect, new()
|
||
{
|
||
return Get<AspectCache<TAspect>>().instance;
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public TExecutor GetExecutor<TExecutor>() where TExecutor : EcsQueryExecutor, new()
|
||
{
|
||
return Get<ExcecutorCache<TExecutor>>().instance;
|
||
}
|
||
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public ref T Get<T>() where T : struct
|
||
{
|
||
return ref WorldComponentPool<T>.GetForWorld(id);
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public ref T GetUnchecked<T>() where T : struct
|
||
{
|
||
return ref WorldComponentPool<T>.GetForWorldUnchecked(id);
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public static ref T Get<T>(int worldID) where T : struct
|
||
{
|
||
return ref WorldComponentPool<T>.GetForWorld(worldID);
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public static ref T GetUnchecked<T>(int worldID) where T : struct
|
||
{
|
||
return ref WorldComponentPool<T>.GetForWorldUnchecked(worldID);
|
||
}
|
||
#endregion
|
||
|
||
#region Entity
|
||
|
||
#region New/Del
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public int NewEntity()
|
||
{
|
||
int entityID = _entityDispenser.UseFree();
|
||
CreateConcreteEntity(entityID);
|
||
return entityID;
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public int NewEntity(int entityID)
|
||
{
|
||
#if (DEBUG && !DISABLE_DEBUG) || !DISABLE_DRAGONECS_ASSERT_CHEKS
|
||
if (IsUsed(entityID)) { Throw.World_EntityIsAlreadyСontained(entityID); }
|
||
#endif
|
||
_entityDispenser.Use(entityID);
|
||
CreateConcreteEntity(entityID);
|
||
return entityID;
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
private void CreateConcreteEntity(int entityID)
|
||
{
|
||
UpVersionLeaked();
|
||
_entitiesCount++;
|
||
ref var slot = ref _entities[entityID];
|
||
slot.isUsed = true;
|
||
if (slot.gen >= 0)
|
||
{ //если gen был пробужен у не мертвой сущности, то для отличия от мертвой, нужно инкрементировать и усыпить
|
||
slot.gen++;
|
||
slot.gen &= SLEEP_GEN_MASK;
|
||
}
|
||
_entityListeners.InvokeOnNewEntity(entityID);
|
||
}
|
||
|
||
public entlong NewEntityLong()
|
||
{
|
||
int entityID = NewEntity();
|
||
return GetEntityLong(entityID);
|
||
}
|
||
public entlong NewEntityLong(int entityID)
|
||
{
|
||
NewEntity(entityID);
|
||
return GetEntityLong(entityID);
|
||
}
|
||
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public void TryDelEntity(int entityID)
|
||
{
|
||
if (IsUsed(entityID))
|
||
{
|
||
DelEntity(entityID);
|
||
}
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public void DelEntity(entlong entity)
|
||
{
|
||
DelEntity(entity.ID);
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public void DelEntity(int entityID)
|
||
{
|
||
#if (DEBUG && !DISABLE_DEBUG) || !DISABLE_DRAGONECS_ASSERT_CHEKS
|
||
if (IsUsed(entityID) == false) { Throw.World_EntityIsNotContained(entityID); }
|
||
#endif
|
||
UpVersion();
|
||
_delEntBuffer[_delEntBufferCount++] = entityID;
|
||
_entities[entityID].isUsed = false;
|
||
_entitiesCount--;
|
||
_entityListeners.InvokeOnDelEntity(entityID);
|
||
}
|
||
#endregion
|
||
|
||
#region Other
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public EcsSpan ToSpan()
|
||
{
|
||
if (_isEnableAutoReleaseDelEntBuffer)
|
||
{
|
||
ReleaseDelEntityBufferAll();
|
||
}
|
||
return _entityDispenser.UsedToEcsSpan(id);
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public unsafe entlong GetEntityLong(int entityID)
|
||
{
|
||
long x = (long)id << 48 | (long)GetGen(entityID) << 32 | (long)entityID;
|
||
return *(entlong*)&x;
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public unsafe EntitySlotInfo GetEntitySlotInfoDebug(int entityID)
|
||
{
|
||
return new EntitySlotInfo(entityID, _entities[entityID].gen, id);
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public bool IsAlive(int entityID, short gen)
|
||
{
|
||
ref var slot = ref _entities[entityID];
|
||
return slot.gen == gen && slot.isUsed;
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public bool IsUsed(int entityID)
|
||
{
|
||
return _entities[entityID].isUsed;
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public short GetGen(int entityID)
|
||
{
|
||
unchecked
|
||
{
|
||
ref var slotGen = ref _entities[entityID].gen;
|
||
if (slotGen < 0)
|
||
{ //если gen меньше 0 значит он спящий, спящие нужно инкремировать
|
||
slotGen++;
|
||
slotGen &= WAKE_UP_GEN_MASK;
|
||
}
|
||
return slotGen;
|
||
}
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public short GetComponentsCount(int entityID)
|
||
{
|
||
return _entities[entityID].componentsCount;
|
||
}
|
||
|
||
public bool IsMatchesMask(EcsMask mask, int entityID)
|
||
{
|
||
#if (DEBUG && !DISABLE_DEBUG) || !DISABLE_DRAGONECS_ASSERT_CHEKS
|
||
if (mask._worldID != id) { Throw.World_MaskDoesntBelongWorld(); }
|
||
#endif
|
||
for (int i = 0, iMax = mask._incChunckMasks.Length; i < iMax; i++)
|
||
{
|
||
if (!_pools[mask._inc[i]].Has(entityID))
|
||
{
|
||
return false;
|
||
}
|
||
}
|
||
for (int i = 0, iMax = mask._excChunckMasks.Length; i < iMax; i++)
|
||
{
|
||
if (_pools[mask._exc[i]].Has(entityID))
|
||
{
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
#endregion
|
||
|
||
#region Leaked
|
||
public bool DeleteLeakedEntites()
|
||
{
|
||
if (_deleteLeakedEntitesLastVersion == _version)
|
||
{
|
||
return false;
|
||
}
|
||
int delCount = 0;
|
||
foreach (var e in Entities)
|
||
{
|
||
ref var ent = ref _entities[e];
|
||
if (ent.componentsCount <= 0 && ent.isUsed)
|
||
{
|
||
DelEntity(e);
|
||
delCount++;
|
||
}
|
||
}
|
||
if (delCount > 0)
|
||
{
|
||
EcsDebug.PrintWarning($"Detected and deleted {delCount} leaking entities.");
|
||
}
|
||
_deleteLeakedEntitesLastVersion = _version;
|
||
return delCount > 0;
|
||
}
|
||
public int CountLeakedEntitesDebug()
|
||
{
|
||
if (_deleteLeakedEntitesLastVersion == _version)
|
||
{
|
||
return 0;
|
||
}
|
||
int delCount = 0;
|
||
foreach (var e in Entities)
|
||
{
|
||
ref var ent = ref _entities[e];
|
||
if (ent.componentsCount <= 0 && ent.isUsed)
|
||
{
|
||
delCount++;
|
||
}
|
||
}
|
||
return delCount;
|
||
}
|
||
#endregion
|
||
|
||
#region Copy/Clone
|
||
public void CopyEntity(int fromEntityID, int toEntityID)
|
||
{
|
||
foreach (var pool in _pools)
|
||
{
|
||
if (pool.Has(fromEntityID))
|
||
{
|
||
pool.Copy(fromEntityID, toEntityID);
|
||
}
|
||
}
|
||
}
|
||
public void CopyEntity(int fromEntityID, EcsWorld toWorld, int toEntityID)
|
||
{
|
||
foreach (var pool in _pools)
|
||
{
|
||
if (pool.Has(fromEntityID))
|
||
{
|
||
pool.Copy(fromEntityID, toWorld, toEntityID);
|
||
}
|
||
}
|
||
}
|
||
public int CloneEntity(int fromEntityID)
|
||
{
|
||
int newEntity = NewEntity();
|
||
CopyEntity(fromEntityID, newEntity);
|
||
return newEntity;
|
||
}
|
||
public int CloneEntity(int fromEntityID, EcsWorld toWorld)
|
||
{
|
||
int newEntity = NewEntity();
|
||
CopyEntity(fromEntityID, toWorld, newEntity);
|
||
return newEntity;
|
||
}
|
||
public void CloneEntity(int fromEntityID, int toEntityID)
|
||
{
|
||
CopyEntity(fromEntityID, toEntityID);
|
||
foreach (var pool in _pools)
|
||
{
|
||
if (!pool.Has(fromEntityID) && pool.Has(toEntityID))
|
||
{
|
||
pool.Del(toEntityID);
|
||
}
|
||
}
|
||
}
|
||
//public void CloneEntity(int fromEntityID, EcsWorld toWorld, int toEntityID)
|
||
#endregion
|
||
|
||
#endregion
|
||
|
||
#region DelEntBuffer
|
||
public IsEnableAutoReleaseDelEntBufferScope DisableAutoReleaseDelEntBuffer()
|
||
{
|
||
return new IsEnableAutoReleaseDelEntBufferScope(this, false);
|
||
}
|
||
public IsEnableAutoReleaseDelEntBufferScope EnableAutoReleaseDelEntBuffer()
|
||
{
|
||
return new IsEnableAutoReleaseDelEntBufferScope(this, true);
|
||
}
|
||
private void SetEnableAutoReleaseDelEntBuffer(bool value)
|
||
{
|
||
_isEnableAutoReleaseDelEntBuffer = value;
|
||
}
|
||
public readonly struct IsEnableAutoReleaseDelEntBufferScope : IDisposable
|
||
{
|
||
private readonly EcsWorld _source;
|
||
private readonly bool _lastValue;
|
||
public IsEnableAutoReleaseDelEntBufferScope(EcsWorld source, bool value)
|
||
{
|
||
_lastValue = source._isEnableAutoReleaseDelEntBuffer;
|
||
source.SetEnableAutoReleaseDelEntBuffer(value);
|
||
_source = source;
|
||
}
|
||
public void End()
|
||
{
|
||
_source.SetEnableAutoReleaseDelEntBuffer(_lastValue);
|
||
}
|
||
void IDisposable.Dispose()
|
||
{
|
||
End();
|
||
}
|
||
}
|
||
public void ReleaseDelEntityBufferAll()
|
||
{
|
||
ReleaseDelEntityBuffer(_delEntBufferCount);
|
||
}
|
||
public unsafe void ReleaseDelEntityBuffer(int count)
|
||
{
|
||
if (_delEntBufferCount <= 0)
|
||
{
|
||
return;
|
||
}
|
||
unchecked { _version++; }
|
||
count = Math.Max(0, Math.Min(count, _delEntBufferCount));
|
||
_delEntBufferCount -= count;
|
||
int slisedCount = count;
|
||
|
||
for (int i = 0; i < slisedCount; i++)
|
||
{
|
||
int e = _delEntBuffer[i];
|
||
if (_entities[e].componentsCount <= 0)
|
||
{
|
||
int tmp = _delEntBuffer[i];
|
||
_delEntBuffer[i] = _delEntBuffer[--slisedCount];
|
||
_delEntBuffer[slisedCount] = tmp;
|
||
i--;
|
||
}
|
||
}
|
||
|
||
ReadOnlySpan<int> buffer = new ReadOnlySpan<int>(_delEntBuffer, _delEntBufferCount, count);
|
||
if (slisedCount > 0)
|
||
{
|
||
ReadOnlySpan<int> bufferSlised = new ReadOnlySpan<int>(_delEntBuffer, _delEntBufferCount, slisedCount);
|
||
for (int i = 0; i < _poolsCount; i++)
|
||
{
|
||
_pools[i].OnReleaseDelEntityBuffer(bufferSlised);
|
||
}
|
||
}
|
||
for (int i = 0; i < _groups.Count; i++)
|
||
{
|
||
if (_groups[i].TryGetTarget(out EcsGroup group))
|
||
{
|
||
if(group.IsReleased)
|
||
{
|
||
group.OnReleaseDelEntityBuffer_Internal(buffer);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
RemoveGroupAt(i--);
|
||
}
|
||
}
|
||
|
||
_listeners.InvokeOnReleaseDelEntityBuffer(buffer);
|
||
for (int i = 0; i < buffer.Length; i++)
|
||
{
|
||
int e = buffer[i];
|
||
_entityDispenser.Release(e);
|
||
_entities[e].gen |= SLEEPING_GEN_FLAG;
|
||
}
|
||
Densify();
|
||
}
|
||
private void Densify() //уплотнение свободных айдишников
|
||
{
|
||
_entityDispenser.Sort();
|
||
}
|
||
#endregion
|
||
|
||
#region Upsize
|
||
public void Upsize(int minSize)
|
||
{
|
||
_entityDispenser.Upsize(minSize);
|
||
}
|
||
[MethodImpl(MethodImplOptions.NoInlining)]
|
||
private int CalcEntityComponentMaskLength()
|
||
{
|
||
int result = _pools.Length / COMPONENT_MASK_CHUNK_SIZE;
|
||
return (result < 2 ? 2 : result);
|
||
}
|
||
private void SetEntityComponentMaskLength(int value)
|
||
{
|
||
_entityComponentMaskLength = value;
|
||
_entityComponentMaskLengthBitShift = BitsUtility.GetHighBitNumber(value);
|
||
}
|
||
[MethodImpl(MethodImplOptions.NoInlining)]
|
||
private void OnEntityDispenserResized(int newSize)
|
||
{
|
||
SetEntityComponentMaskLength(CalcEntityComponentMaskLength()); //_pools.Length / COMPONENT_MASK_CHUNK_SIZE + 1;
|
||
Array.Resize(ref _entities, newSize);
|
||
Array.Resize(ref _delEntBuffer, newSize);
|
||
Array.Resize(ref _entityComponentMasks, newSize * _entityComponentMaskLength);
|
||
|
||
ArrayUtility.Fill(_entities, EntitySlot.Empty, _entitiesCapacity);
|
||
|
||
_entitiesCapacity = newSize;
|
||
|
||
for (int i = 0; i < _groups.Count; i++)
|
||
{
|
||
if (_groups[i].TryGetTarget(out EcsGroup group))
|
||
{
|
||
group.OnWorldResize_Internal(newSize);
|
||
}
|
||
else
|
||
{
|
||
RemoveGroupAt(i--);
|
||
}
|
||
}
|
||
foreach (var item in _pools)
|
||
{
|
||
item.OnWorldResize(newSize);
|
||
}
|
||
_listeners.InvokeOnWorldResize(newSize);
|
||
}
|
||
#endregion
|
||
|
||
#region Groups Pool
|
||
private void RemoveGroupAt(int index)
|
||
{
|
||
int last = _groups.Count - 1;
|
||
_groups[index] = _groups[last];
|
||
_groups.RemoveAt(last);
|
||
}
|
||
internal void RegisterGroup(EcsGroup group)
|
||
{
|
||
_groups.Add(new WeakReference<EcsGroup>(group));
|
||
}
|
||
internal EcsGroup GetFreeGroup()
|
||
{
|
||
EcsGroup result = _groupsPool.Count <= 0 ? new EcsGroup(this, _configs.GetWorldConfigOrDefault().GroupCapacity) : _groupsPool.Pop();
|
||
result._isReleased = false;
|
||
return result;
|
||
}
|
||
internal void ReleaseGroup(EcsGroup group)
|
||
{
|
||
#if (DEBUG && !DISABLE_DEBUG) || !DISABLE_DRAGONECS_ASSERT_CHEKS
|
||
if (group.World != this) { Throw.World_GroupDoesNotBelongWorld(); }
|
||
#endif
|
||
group._isReleased = true;
|
||
group.Clear();
|
||
_groupsPool.Push(group);
|
||
}
|
||
#endregion
|
||
|
||
#region Listeners
|
||
public void AddListener(IEcsWorldEventListener worldEventListener)
|
||
{
|
||
_listeners.Add(worldEventListener);
|
||
}
|
||
public void RemoveListener(IEcsWorldEventListener worldEventListener)
|
||
{
|
||
_listeners.Remove(worldEventListener);
|
||
}
|
||
public void AddListener(IEcsEntityEventListener entityEventListener)
|
||
{
|
||
_entityListeners.Add(entityEventListener);
|
||
}
|
||
public void RemoveListener(IEcsEntityEventListener entityEventListener)
|
||
{
|
||
_entityListeners.Remove(entityEventListener);
|
||
}
|
||
#endregion
|
||
|
||
#region Other
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public void AggressiveUpVersion() { UpVersion(); }
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
private void UpVersion()
|
||
{
|
||
unchecked
|
||
{
|
||
_version++;
|
||
_deleteLeakedEntitesLastVersion++;
|
||
}
|
||
}
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
private void UpVersionLeaked()
|
||
{
|
||
unchecked
|
||
{
|
||
_version++;
|
||
}
|
||
}
|
||
#endregion
|
||
|
||
#region Debug Components
|
||
private static int[] _componentIDsBuffer = new int[64];
|
||
public ReadOnlySpan<int> GetComponentTypeIDsFor(int entityID)
|
||
{
|
||
int count = GetComponentTypeIDsFor(entityID, ref _componentIDsBuffer);
|
||
return new ReadOnlySpan<int>(_componentIDsBuffer, 0, count);
|
||
}
|
||
public void GetComponentsFor(int entityID, List<object> list)
|
||
{
|
||
list.Clear();
|
||
int count = GetComponentTypeIDsFor(entityID, ref _componentIDsBuffer);
|
||
for (int i = 0; i < count; i++)
|
||
{
|
||
list.Add(_pools[_componentIDsBuffer[i]].GetRaw(entityID));
|
||
}
|
||
}
|
||
public void GetComponentTypesFor(int entityID, HashSet<Type> typeSet)
|
||
{
|
||
typeSet.Clear();
|
||
int count = GetComponentTypeIDsFor(entityID, ref _componentIDsBuffer);
|
||
for (int i = 0; i < count; i++)
|
||
{
|
||
typeSet.Add(_pools[_componentIDsBuffer[i]].ComponentType);
|
||
}
|
||
}
|
||
private int GetComponentTypeIDsFor(int entityID, ref int[] componentIDs)
|
||
{
|
||
int count = 0;
|
||
var itemsCount = GetComponentsCount(entityID);
|
||
if (itemsCount <= 0) { return count; }
|
||
int poolIndex = 0;
|
||
uint bit;
|
||
for (int chunkIndex = entityID * _entityComponentMaskLength, chunkIndexMax = chunkIndex + _entityComponentMaskLength; chunkIndex < chunkIndexMax; chunkIndex++)
|
||
{
|
||
bit = 0x0000_0001;
|
||
int chunk = _entityComponentMasks[chunkIndex];
|
||
if (chunk == 0)
|
||
{
|
||
poolIndex += COMPONENT_MASK_CHUNK_SIZE;
|
||
}
|
||
else
|
||
{
|
||
while (bit != 0)
|
||
{
|
||
if ((chunk & bit) != 0)
|
||
{
|
||
itemsCount--;
|
||
if (count > componentIDs.Length)
|
||
{
|
||
Array.Resize(ref componentIDs, count << 1);
|
||
}
|
||
componentIDs[count++] = _pools[poolIndex].ComponentTypeID;
|
||
if (itemsCount <= 0) { goto exit; }
|
||
}
|
||
bit <<= 1;
|
||
poolIndex++;
|
||
}
|
||
}
|
||
}
|
||
exit:;
|
||
return count;
|
||
}
|
||
#endregion
|
||
|
||
#region EntitySlot
|
||
[StructLayout(LayoutKind.Explicit, Pack = 4, Size = 4 * 3)]
|
||
private struct EntitySlot
|
||
{
|
||
public static readonly EntitySlot Empty = new EntitySlot(SLEEPING_GEN_FLAG, 0, false);
|
||
[FieldOffset(0)]
|
||
public short gen;
|
||
[FieldOffset(2)]
|
||
public short componentsCount;
|
||
[FieldOffset(4)]
|
||
public bool isUsed;
|
||
//[FieldOffset(5)]
|
||
//public bool isLocked;
|
||
public EntitySlot(short gen, short componentsCount, bool isUsed)
|
||
{
|
||
this.gen = gen;
|
||
this.componentsCount = componentsCount;
|
||
this.isUsed = isUsed;
|
||
}
|
||
}
|
||
#endregion
|
||
|
||
#region DebuggerProxy
|
||
private EcsSpan GetSpan_Debug()
|
||
{
|
||
return _entityDispenser.UsedToEcsSpan(id);
|
||
}
|
||
protected class DebuggerProxy
|
||
{
|
||
private EcsWorld _world;
|
||
public EntitySlotInfo[] Entities
|
||
{
|
||
get
|
||
{
|
||
EntitySlotInfo[] result = new EntitySlotInfo[_world.Count];
|
||
int i = 0;
|
||
foreach (var e in _world.ToSpan())
|
||
{
|
||
result[i++] = _world.GetEntitySlotInfoDebug(e);
|
||
}
|
||
return result;
|
||
}
|
||
}
|
||
public long Version { get { return _world.Version; } }
|
||
public IEcsPool[] Pools { get { return _world._pools; } }
|
||
public DebuggerProxy(EcsWorld world)
|
||
{
|
||
_world = world;
|
||
}
|
||
}
|
||
#endregion
|
||
}
|
||
|
||
public static class EcsWorldExtenssions
|
||
{
|
||
public static bool IsNullOrDetroyed(this EcsWorld self)
|
||
{
|
||
return self == null || self.IsDestroyed;
|
||
}
|
||
}
|
||
|
||
#region Callbacks Interface
|
||
public interface IEcsWorldEventListener
|
||
{
|
||
void OnWorldResize(int newSize);
|
||
void OnReleaseDelEntityBuffer(ReadOnlySpan<int> buffer);
|
||
void OnWorldDestroy();
|
||
}
|
||
public interface IEcsEntityEventListener
|
||
{
|
||
void OnNewEntity(int entityID);
|
||
void OnDelEntity(int entityID);
|
||
}
|
||
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<IEcsEntityEventListener> 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<IEcsEntityEventListener> self, int entityID)
|
||
{
|
||
for (int i = 0, iMax = self.Count; i < iMax; i++)
|
||
{
|
||
self[i].OnDelEntity(entityID);
|
||
}
|
||
}
|
||
}
|
||
#endregion
|
||
|
||
#region Extensions
|
||
public static class IntExtensions
|
||
{
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public static entlong ToEntityLong(this int self, EcsWorld world)
|
||
{
|
||
return world.GetEntityLong(self);
|
||
}
|
||
}
|
||
#endregion
|
||
} |