2023-04-06 23:40:47 +08:00
|
|
|
|
using DCFApixels.DragonECS.Internal;
|
|
|
|
|
using System;
|
2023-03-02 14:42:44 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Runtime.CompilerServices;
|
2023-04-01 20:45:37 +08:00
|
|
|
|
using System.Runtime.InteropServices;
|
2023-03-02 14:42:44 +08:00
|
|
|
|
|
|
|
|
|
namespace DCFApixels.DragonECS
|
|
|
|
|
{
|
2023-04-06 23:40:47 +08:00
|
|
|
|
public interface IEcsWorld : IEcsReadonlyTable
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
|
|
|
|
#region Properties
|
2023-03-23 01:15:34 +08:00
|
|
|
|
//private float _timeScale;//TODO реализовать собсвенныйтайм склей для разных миров
|
2023-03-11 17:11:40 +08:00
|
|
|
|
public int ID { get; }
|
2023-04-01 20:45:37 +08:00
|
|
|
|
public EcsPipeline Pipeline { get; }
|
|
|
|
|
public int EntitesCount { get; }
|
|
|
|
|
public int EntitesCapacity { get; }
|
2023-04-09 02:52:39 +08:00
|
|
|
|
public EcsReadonlyGroup Entities => default;
|
2023-03-02 14:42:44 +08:00
|
|
|
|
#endregion
|
|
|
|
|
|
2023-04-06 23:40:47 +08:00
|
|
|
|
#region Entities
|
2023-04-08 05:50:44 +08:00
|
|
|
|
public EcsEntity NewEntity();
|
|
|
|
|
public void DelEntity(EcsEntity entity);
|
2023-03-26 11:19:03 +08:00
|
|
|
|
public bool EntityIsAlive(int entityID, short gen);
|
2023-04-08 05:50:44 +08:00
|
|
|
|
public EcsEntity GetEntity(int entityID);
|
2023-03-02 14:42:44 +08:00
|
|
|
|
public void Destroy();
|
2023-03-23 01:15:34 +08:00
|
|
|
|
#endregion
|
2023-04-08 21:29:18 +08:00
|
|
|
|
|
|
|
|
|
#region Group
|
|
|
|
|
internal EcsGroup GetGroupFromPool();
|
|
|
|
|
internal void ReleaseGroup(EcsGroup group);
|
|
|
|
|
#endregion
|
2023-03-02 14:42:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-11 17:11:40 +08:00
|
|
|
|
public abstract class EcsWorld
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
2023-03-11 17:11:40 +08:00
|
|
|
|
internal static IEcsWorld[] Worlds = new IEcsWorld[8];
|
2023-04-07 15:11:48 +08:00
|
|
|
|
private static IntDispenser _worldIdDispenser = new IntDispenser(0);
|
2023-03-11 17:11:40 +08:00
|
|
|
|
|
|
|
|
|
public readonly short id;
|
2023-03-02 14:42:44 +08:00
|
|
|
|
|
2023-04-06 23:40:47 +08:00
|
|
|
|
protected EcsWorld(bool isIndexed)
|
2023-03-11 17:11:40 +08:00
|
|
|
|
{
|
2023-04-06 23:40:47 +08:00
|
|
|
|
if(isIndexed == true)
|
|
|
|
|
{
|
|
|
|
|
id = (short)_worldIdDispenser.GetFree();
|
|
|
|
|
if (id >= Worlds.Length)
|
|
|
|
|
Array.Resize(ref Worlds, Worlds.Length << 1);
|
|
|
|
|
Worlds[id] = (IEcsWorld)this;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
id = -1;
|
|
|
|
|
}
|
2023-03-11 17:11:40 +08:00
|
|
|
|
}
|
2023-03-30 02:29:11 +08:00
|
|
|
|
|
|
|
|
|
protected void Realeze()
|
|
|
|
|
{
|
|
|
|
|
Worlds[id] = null;
|
|
|
|
|
_worldIdDispenser.Release(id);
|
|
|
|
|
}
|
2023-03-11 17:11:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-04-07 05:08:48 +08:00
|
|
|
|
public abstract class EcsWorld<TWorldArchetype> : EcsWorld, IEcsWorld
|
|
|
|
|
where TWorldArchetype : EcsWorld<TWorldArchetype>
|
2023-03-11 17:11:40 +08:00
|
|
|
|
{
|
|
|
|
|
private IntDispenser _entityDispenser;
|
2023-04-01 22:18:40 +08:00
|
|
|
|
private int[] _denseEntities;
|
|
|
|
|
private int _entitiesCount;
|
|
|
|
|
private short[] _gens; //старший бит указывает на то жива ли сущьность.
|
2023-03-02 14:42:44 +08:00
|
|
|
|
|
2023-04-09 02:52:39 +08:00
|
|
|
|
private EcsGroup _allEntites;
|
|
|
|
|
|
2023-03-26 11:19:03 +08:00
|
|
|
|
//private short[] _componentCounts; //TODO
|
2023-04-09 02:52:39 +08:00
|
|
|
|
private EcsPool[] _pools;
|
2023-03-13 04:32:24 +08:00
|
|
|
|
private EcsNullPool _nullPool;
|
2023-03-02 14:42:44 +08:00
|
|
|
|
|
2023-04-12 23:09:50 +08:00
|
|
|
|
private EcsQuery[] _queries;
|
2023-03-02 14:42:44 +08:00
|
|
|
|
|
2023-04-01 20:45:37 +08:00
|
|
|
|
private EcsPipeline _pipeline;
|
|
|
|
|
|
|
|
|
|
private List<EcsGroup> _groups;
|
|
|
|
|
|
2023-04-08 00:47:35 +08:00
|
|
|
|
public IEcsRealationTable[] _relationTables;
|
|
|
|
|
|
2023-04-10 22:22:17 +08:00
|
|
|
|
private readonly int _worldArchetypeID = ComponentIndexer.GetWorldId<TWorldArchetype>();
|
|
|
|
|
|
2023-04-08 00:47:35 +08:00
|
|
|
|
#region RelationTables
|
|
|
|
|
public IEcsRealationTable GetRelationTalbe<TWorldArhetype>(TWorldArhetype targetWorld)
|
|
|
|
|
where TWorldArhetype : EcsWorld<TWorldArhetype>
|
|
|
|
|
{
|
|
|
|
|
int targetID = targetWorld.ID;
|
|
|
|
|
if (targetID <= 0)
|
|
|
|
|
throw new ArgumentException("targetWorld.ID <= 0");
|
|
|
|
|
|
|
|
|
|
if(_relationTables.Length <= targetID)
|
|
|
|
|
Array.Resize(ref _relationTables, targetID + 8);
|
|
|
|
|
|
|
|
|
|
if (_relationTables[targetID] == null)
|
|
|
|
|
{
|
|
|
|
|
// _relationTables[targetID]= new EcsRelationTable
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
2023-04-07 15:11:48 +08:00
|
|
|
|
|
2023-04-01 20:45:37 +08:00
|
|
|
|
#region RunnersCache
|
|
|
|
|
private PoolRunnres _poolRunnres;
|
|
|
|
|
private IEcsEntityCreate _entityCreate;
|
|
|
|
|
private IEcsEntityDestroy _entityDestry;
|
|
|
|
|
#endregion
|
|
|
|
|
|
2023-03-30 20:47:39 +08:00
|
|
|
|
#region GetterMethods
|
2023-04-09 02:52:39 +08:00
|
|
|
|
public ReadOnlySpan<EcsPool> GetAllPools() => new ReadOnlySpan<EcsPool>(_pools);
|
2023-04-10 22:22:17 +08:00
|
|
|
|
public int GetComponentID<T>() => ComponentIndexer.GetComponentId<T>(_worldArchetypeID);////ComponentType<T>.uniqueID;
|
2023-03-30 20:47:39 +08:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2023-04-06 23:40:47 +08:00
|
|
|
|
#region Internal Properties
|
|
|
|
|
int IEcsReadonlyTable.Count => _entitiesCount;
|
|
|
|
|
int IEcsReadonlyTable.Capacity => _denseEntities.Length;
|
|
|
|
|
#endregion
|
|
|
|
|
|
2023-03-02 14:42:44 +08:00
|
|
|
|
#region Properties
|
2023-04-07 05:08:48 +08:00
|
|
|
|
public Type ArchetypeType => typeof(TWorldArchetype);
|
2023-03-11 17:11:40 +08:00
|
|
|
|
public int ID => id;
|
2023-04-01 20:45:37 +08:00
|
|
|
|
public EcsPipeline Pipeline => _pipeline;
|
|
|
|
|
|
2023-04-01 22:18:40 +08:00
|
|
|
|
public int EntitesCount => _entitiesCount;
|
|
|
|
|
public int EntitesCapacity => _denseEntities.Length;
|
2023-04-09 02:52:39 +08:00
|
|
|
|
public EcsReadonlyGroup Entities => _allEntites.Readonly;
|
2023-03-02 14:42:44 +08:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Constructors
|
2023-04-06 23:40:47 +08:00
|
|
|
|
public EcsWorld(EcsPipeline pipline = null) : base(true)
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
2023-04-01 20:45:37 +08:00
|
|
|
|
_pipeline = pipline ?? EcsPipeline.Empty;
|
|
|
|
|
if (!_pipeline.IsInit) pipline.Init();
|
2023-04-07 15:11:48 +08:00
|
|
|
|
_entityDispenser = new IntDispenser(0);
|
2023-04-06 23:40:47 +08:00
|
|
|
|
_nullPool = EcsNullPool.instance;
|
2023-04-09 02:52:39 +08:00
|
|
|
|
_pools = new EcsPool[512];
|
2023-04-08 00:47:35 +08:00
|
|
|
|
ArrayUtility.Fill(_pools, _nullPool);
|
2023-04-01 20:45:37 +08:00
|
|
|
|
|
2023-03-12 20:45:18 +08:00
|
|
|
|
_gens = new short[512];
|
2023-04-12 23:09:50 +08:00
|
|
|
|
_queries = new EcsQuery[QueryType.capacity];
|
2023-04-01 20:45:37 +08:00
|
|
|
|
_groups = new List<EcsGroup>(128);
|
|
|
|
|
|
2023-04-01 22:18:40 +08:00
|
|
|
|
_denseEntities = new int[512];
|
2023-04-01 20:45:37 +08:00
|
|
|
|
|
|
|
|
|
_poolRunnres = new PoolRunnres(_pipeline);
|
|
|
|
|
_entityCreate = _pipeline.GetRunner<IEcsEntityCreate>();
|
|
|
|
|
_entityDestry = _pipeline.GetRunner<IEcsEntityDestroy>();
|
2023-04-07 05:08:48 +08:00
|
|
|
|
_pipeline.GetRunner<IEcsInject<TWorldArchetype>>().Inject((TWorldArchetype)this);
|
2023-04-01 20:45:37 +08:00
|
|
|
|
_pipeline.GetRunner<IEcsInject<IEcsWorld>>().Inject(this);
|
|
|
|
|
_pipeline.GetRunner<IEcsWorldCreate>().OnWorldCreate(this);
|
2023-04-09 02:52:39 +08:00
|
|
|
|
|
|
|
|
|
_allEntites = new EcsGroup(this);
|
2023-03-02 14:42:44 +08:00
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region GetPool
|
|
|
|
|
public EcsPool<T> GetPool<T>() where T : struct
|
|
|
|
|
{
|
2023-04-10 22:22:17 +08:00
|
|
|
|
//int uniqueID = ComponentType<T>.uniqueID;
|
|
|
|
|
int uniqueID = ComponentIndexer.GetComponentId<T>(_worldArchetypeID);
|
2023-03-02 14:42:44 +08:00
|
|
|
|
|
|
|
|
|
if (uniqueID >= _pools.Length)
|
|
|
|
|
{
|
2023-03-13 04:32:24 +08:00
|
|
|
|
int oldCapacity = _pools.Length;
|
2023-04-10 22:22:17 +08:00
|
|
|
|
Array.Resize(ref _pools, _pools.Length << 1);
|
2023-04-08 00:47:35 +08:00
|
|
|
|
ArrayUtility.Fill(_pools, _nullPool, oldCapacity, oldCapacity - _pools.Length);
|
2023-03-02 14:42:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-13 04:32:24 +08:00
|
|
|
|
if (_pools[uniqueID] == _nullPool)
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
2023-04-10 22:22:17 +08:00
|
|
|
|
_pools[uniqueID] = new EcsPool<T>(this, uniqueID, 512, _poolRunnres);
|
2023-03-02 14:42:44 +08:00
|
|
|
|
}
|
|
|
|
|
return (EcsPool<T>)_pools[uniqueID];
|
|
|
|
|
}
|
2023-04-07 19:23:07 +08:00
|
|
|
|
//public EcsPool<T> UncheckedGetPool<T>() where T : struct => (EcsPool<T>)_pools[ComponentType<T>.uniqueID];
|
2023-03-02 14:42:44 +08:00
|
|
|
|
#endregion
|
|
|
|
|
|
2023-04-08 00:47:35 +08:00
|
|
|
|
#region Query
|
2023-04-12 23:09:50 +08:00
|
|
|
|
public TQuery Query<TQuery>(out TQuery query) where TQuery : EcsQuery
|
2023-03-12 20:45:18 +08:00
|
|
|
|
{
|
2023-04-08 00:47:35 +08:00
|
|
|
|
int uniqueID = QueryType<TQuery>.uniqueID;
|
|
|
|
|
if (_queries.Length < QueryType.capacity)
|
|
|
|
|
Array.Resize(ref _queries, QueryType.capacity);
|
2023-03-02 14:42:44 +08:00
|
|
|
|
|
2023-04-07 16:03:42 +08:00
|
|
|
|
if (_queries[uniqueID] == null)
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
2023-04-12 23:09:50 +08:00
|
|
|
|
_queries[uniqueID] = EcsQuery.Builder.Build<TQuery>(this);
|
2023-03-12 20:45:18 +08:00
|
|
|
|
}
|
2023-04-08 00:47:35 +08:00
|
|
|
|
query = (TQuery)_queries[uniqueID];
|
|
|
|
|
return query;
|
2023-04-07 05:08:48 +08:00
|
|
|
|
}
|
2023-03-02 14:42:44 +08:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region IsMaskCompatible/IsMaskCompatibleWithout
|
2023-04-01 22:19:36 +08:00
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public bool IsMaskCompatible<TInc>(int entityID) where TInc : struct, IInc
|
|
|
|
|
{
|
2023-04-07 05:08:48 +08:00
|
|
|
|
return IsMaskCompatible(EcsMaskMap<TWorldArchetype>.GetMask<TInc, Exc>(), entityID);
|
2023-04-01 22:19:36 +08:00
|
|
|
|
}
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public bool IsMaskCompatible<TInc, TExc>(int entityID) where TInc : struct, IInc where TExc : struct, IExc
|
|
|
|
|
{
|
2023-04-07 05:08:48 +08:00
|
|
|
|
return IsMaskCompatible(EcsMaskMap<TWorldArchetype>.GetMask<TInc, TExc>(), entityID);
|
2023-04-01 22:19:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-04-08 00:47:35 +08:00
|
|
|
|
public bool IsMaskCompatible(EcsComponentMask mask, int entityID)
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
2023-04-01 20:45:37 +08:00
|
|
|
|
#if (DEBUG && !DISABLE_DRAGONECS_DEBUG) || !DRAGONECS_NO_SANITIZE_CHECKS
|
2023-04-07 05:08:48 +08:00
|
|
|
|
if (mask.WorldArchetypeType != typeof(TWorldArchetype))
|
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-04-07 18:21:52 +08:00
|
|
|
|
for (int i = 0, iMax = mask.Inc.Length; i < iMax; i++)
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
2023-04-08 00:47:35 +08:00
|
|
|
|
if (!_pools[mask.Inc[i]].Has(entityID))
|
2023-03-02 14:42:44 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-04-07 18:21:52 +08:00
|
|
|
|
for (int i = 0, iMax = mask.Exc.Length; i < iMax; i++)
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
2023-04-08 00:47:35 +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-04-08 05:50:44 +08:00
|
|
|
|
public EcsEntity NewEntity()
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
2023-03-26 11:19:03 +08:00
|
|
|
|
int entityID = _entityDispenser.GetFree();
|
2023-04-01 22:18:40 +08:00
|
|
|
|
if (_entityDispenser.LastInt >= _denseEntities.Length)
|
|
|
|
|
Array.Resize(ref _denseEntities, _denseEntities.Length << 1);
|
|
|
|
|
_denseEntities[_entitiesCount++] = entityID;
|
|
|
|
|
|
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);
|
2023-04-01 20:45:37 +08:00
|
|
|
|
foreach (var item in _groups)
|
|
|
|
|
item.OnWorldResize(_gens.Length);
|
|
|
|
|
foreach (var item in _pools)
|
|
|
|
|
item.OnWorldResize(_gens.Length);
|
|
|
|
|
}
|
2023-04-01 22:18:40 +08:00
|
|
|
|
_gens[entityID] |= short.MinValue;
|
2023-04-08 05:50:44 +08:00
|
|
|
|
EcsEntity entity = new EcsEntity(entityID, _gens[entityID]++, id);
|
2023-04-01 20:45:37 +08:00
|
|
|
|
_entityCreate.OnEntityCreate(entity);
|
2023-04-09 02:52:39 +08:00
|
|
|
|
_allEntites.Add(entityID);
|
2023-04-01 20:45:37 +08:00
|
|
|
|
return entity;
|
2023-03-26 11:19:03 +08:00
|
|
|
|
}
|
2023-04-08 05:50:44 +08:00
|
|
|
|
public void DelEntity(EcsEntity entity)
|
2023-03-26 11:19:03 +08:00
|
|
|
|
{
|
2023-04-09 02:52:39 +08:00
|
|
|
|
_allEntites.Remove(entity.id);
|
2023-04-01 20:45:37 +08:00
|
|
|
|
_entityDispenser.Release(entity.id);
|
2023-04-01 22:18:40 +08:00
|
|
|
|
_gens[entity.id] |= short.MinValue;
|
|
|
|
|
_entitiesCount--;
|
2023-04-01 20:45:37 +08:00
|
|
|
|
_entityDestry.OnEntityDestroy(entity);
|
2023-03-02 14:42:44 +08:00
|
|
|
|
}
|
2023-04-01 20:45:37 +08:00
|
|
|
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
2023-04-08 05:50:44 +08:00
|
|
|
|
public EcsEntity GetEntity(int entityID)
|
2023-03-13 04:32:24 +08:00
|
|
|
|
{
|
2023-04-08 05:50:44 +08:00
|
|
|
|
return new EcsEntity(entityID, _gens[entityID], id);
|
2023-03-13 04:32:24 +08:00
|
|
|
|
}
|
2023-03-26 11:19:03 +08:00
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public bool EntityIsAlive(int entityID, short gen)
|
|
|
|
|
{
|
2023-04-01 22:18:40 +08:00
|
|
|
|
return _gens[entityID] == gen;
|
2023-03-26 11:19:03 +08:00
|
|
|
|
}
|
2023-03-02 14:42:44 +08:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Destroy
|
|
|
|
|
public void Destroy()
|
|
|
|
|
{
|
2023-03-30 02:29:11 +08:00
|
|
|
|
_entityDispenser = null;
|
2023-04-01 22:18:40 +08:00
|
|
|
|
_denseEntities = null;
|
2023-03-30 02:29:11 +08:00
|
|
|
|
_gens = null;
|
|
|
|
|
_pools = null;
|
|
|
|
|
_nullPool = null;
|
2023-04-07 16:03:42 +08:00
|
|
|
|
_queries = null;
|
2023-03-30 02:29:11 +08:00
|
|
|
|
Realeze();
|
2023-03-02 14:42:44 +08:00
|
|
|
|
}
|
2023-04-01 20:45:37 +08:00
|
|
|
|
public void DestryWithPipeline()
|
|
|
|
|
{
|
|
|
|
|
Destroy();
|
|
|
|
|
_pipeline.Destroy();
|
|
|
|
|
}
|
2023-03-02 14:42:44 +08:00
|
|
|
|
#endregion
|
|
|
|
|
|
2023-04-07 05:08:48 +08:00
|
|
|
|
#region Other
|
|
|
|
|
void IEcsReadonlyTable.RegisterGroup(EcsGroup group)
|
|
|
|
|
{
|
|
|
|
|
_groups.Add(group);
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
2023-03-02 14:42:44 +08:00
|
|
|
|
#region Utils
|
2023-04-08 00:47:35 +08:00
|
|
|
|
internal static class QueryType
|
2023-04-07 05:08:48 +08:00
|
|
|
|
{
|
|
|
|
|
public static int increment = 0;
|
|
|
|
|
public static int capacity = 128;
|
|
|
|
|
}
|
2023-04-08 00:47:35 +08:00
|
|
|
|
internal static class QueryType<TQuery>
|
2023-04-07 05:08:48 +08:00
|
|
|
|
{
|
|
|
|
|
public static int uniqueID;
|
2023-04-08 00:47:35 +08:00
|
|
|
|
static QueryType()
|
2023-04-07 05:08:48 +08:00
|
|
|
|
{
|
2023-04-08 00:47:35 +08:00
|
|
|
|
uniqueID = QueryType.increment++;
|
|
|
|
|
if (QueryType.increment > QueryType.capacity)
|
|
|
|
|
QueryType.capacity <<= 1;
|
2023-04-07 05:08:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-10 22:22:17 +08:00
|
|
|
|
/* internal static class ComponentType
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
|
|
|
|
internal static int increment = 1;
|
2023-03-13 00:05:35 +08:00
|
|
|
|
internal static int Capacity
|
|
|
|
|
{
|
|
|
|
|
get => types.Length;
|
|
|
|
|
}
|
2023-03-13 01:39:04 +08:00
|
|
|
|
internal static Type[] types = new Type[64];
|
2023-03-02 14:42:44 +08:00
|
|
|
|
}
|
2023-03-13 01:39:04 +08:00
|
|
|
|
internal static class ComponentType<T>
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
|
|
|
|
internal static int uniqueID;
|
|
|
|
|
|
|
|
|
|
static ComponentType()
|
|
|
|
|
{
|
2023-03-13 01:39:04 +08:00
|
|
|
|
uniqueID = ComponentType.increment++;
|
2023-04-01 20:45:37 +08:00
|
|
|
|
#if (DEBUG && !DISABLE_DRAGONECS_DEBUG) || !DRAGONECS_NO_SANITIZE_CHECKS
|
2023-03-13 01:39:04 +08:00
|
|
|
|
if (ComponentType.increment + 1 > ushort.MaxValue)
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
2023-04-07 05:08:48 +08:00
|
|
|
|
throw new EcsFrameworkException($"No more room for new component for this {typeof(TWorldArchetype).FullName} IWorldArchetype");
|
2023-03-02 14:42:44 +08:00
|
|
|
|
}
|
|
|
|
|
#endif
|
2023-03-13 01:39:04 +08:00
|
|
|
|
if (uniqueID >= ComponentType.types.Length)
|
2023-03-02 14:42:44 +08:00
|
|
|
|
{
|
2023-03-13 01:39:04 +08:00
|
|
|
|
Array.Resize(ref ComponentType.types, ComponentType.types.Length << 1);
|
2023-03-02 14:42:44 +08:00
|
|
|
|
}
|
2023-03-13 01:39:04 +08:00
|
|
|
|
ComponentType.types[uniqueID] = typeof(T);
|
2023-03-02 14:42:44 +08:00
|
|
|
|
}
|
2023-04-10 22:22:17 +08:00
|
|
|
|
}*/
|
2023-03-02 14:42:44 +08:00
|
|
|
|
#endregion
|
2023-04-08 21:29:18 +08:00
|
|
|
|
|
|
|
|
|
#region GroupsPool
|
|
|
|
|
private Stack<EcsGroup> _pool = new Stack<EcsGroup>(64);
|
|
|
|
|
EcsGroup IEcsWorld.GetGroupFromPool()
|
|
|
|
|
{
|
|
|
|
|
if (_pool.Count <= 0)
|
|
|
|
|
{
|
|
|
|
|
return new EcsGroup(this);
|
|
|
|
|
}
|
|
|
|
|
return _pool.Pop();
|
|
|
|
|
}
|
|
|
|
|
void IEcsWorld.ReleaseGroup(EcsGroup group)
|
|
|
|
|
{
|
|
|
|
|
#if (DEBUG && !DISABLE_DEBUG) || !DRAGONECS_NO_SANITIZE_CHECKS
|
|
|
|
|
if (group.World != this)
|
2023-04-09 02:52:39 +08:00
|
|
|
|
throw new ArgumentException("groupFilter.World != this");
|
2023-04-08 21:29:18 +08:00
|
|
|
|
#endif
|
|
|
|
|
group.Clear();
|
|
|
|
|
_pool.Push(group);
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
2023-04-01 20:45:37 +08:00
|
|
|
|
}
|
2023-04-08 21:29:18 +08:00
|
|
|
|
|
2023-04-01 20:45:37 +08:00
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8, Size = 24)]
|
|
|
|
|
internal readonly struct PoolRunnres
|
2023-03-30 01:14:43 +08:00
|
|
|
|
{
|
2023-04-01 20:45:37 +08:00
|
|
|
|
public readonly IEcsComponentAdd add;
|
|
|
|
|
public readonly IEcsComponentWrite write;
|
|
|
|
|
public readonly IEcsComponentDel del;
|
|
|
|
|
|
|
|
|
|
public PoolRunnres(EcsPipeline pipeline)
|
2023-03-30 01:14:43 +08:00
|
|
|
|
{
|
2023-04-01 20:45:37 +08:00
|
|
|
|
add = pipeline.GetRunner<IEcsComponentAdd>();
|
|
|
|
|
write = pipeline.GetRunner<IEcsComponentWrite>();
|
|
|
|
|
del = pipeline.GetRunner<IEcsComponentDel>();
|
2023-03-30 01:14:43 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-10 22:22:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static class ComponentIndexer
|
|
|
|
|
{
|
|
|
|
|
private static List<Resizer> resizer = new List<Resizer>();
|
|
|
|
|
private static int tokenCount = 0;
|
|
|
|
|
private static int[] componentCounts = new int[0];
|
|
|
|
|
private static class World<TWorldArchetype>
|
|
|
|
|
{
|
|
|
|
|
public static int id = GetToken();
|
|
|
|
|
}
|
|
|
|
|
private static int GetToken()
|
|
|
|
|
{
|
|
|
|
|
tokenCount++;
|
|
|
|
|
Array.Resize(ref componentCounts, tokenCount);
|
|
|
|
|
foreach (var item in resizer)
|
|
|
|
|
item.Resize(tokenCount);
|
|
|
|
|
return tokenCount - 1;
|
|
|
|
|
}
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public static int GetWorldId<TWorldArchetype>() => World<TWorldArchetype>.id;
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public static int GetComponentId<TComponent>(int worldID) => Component<TComponent>.Get(worldID);
|
|
|
|
|
private abstract class Resizer
|
|
|
|
|
{
|
|
|
|
|
public abstract void Resize(int size);
|
|
|
|
|
}
|
|
|
|
|
private sealed class Resizer<T> : Resizer
|
|
|
|
|
{
|
|
|
|
|
public override void Resize(int size) => Array.Resize(ref Component<T>.ids, size);
|
|
|
|
|
}
|
|
|
|
|
private static class Component<TComponent>
|
|
|
|
|
{
|
|
|
|
|
public static int[] ids;
|
|
|
|
|
static Component()
|
|
|
|
|
{
|
|
|
|
|
ids = new int[tokenCount];
|
|
|
|
|
for (int i = 0; i < ids.Length; i++)
|
|
|
|
|
ids[i] = -1;
|
|
|
|
|
resizer.Add(new Resizer<TComponent>());
|
|
|
|
|
}
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public static int Get(int token)
|
|
|
|
|
{
|
|
|
|
|
ref int id = ref ids[token];
|
|
|
|
|
if (id < 0)
|
|
|
|
|
id = componentCounts[token]++;
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-03-02 14:42:44 +08:00
|
|
|
|
}
|