DragonECS/src/EcsAspect.cs

371 lines
11 KiB
C#
Raw Normal View History

2024-01-07 18:52:54 +08:00
using DCFApixels.DragonECS.Internal;
using DCFApixels.DragonECS.PoolsCore;
2023-06-26 02:53:55 +08:00
using System;
using System.Collections.Generic;
namespace DCFApixels.DragonECS
{
2024-10-05 20:59:16 +08:00
public abstract class EcsAspect : ITemplateNode, IEcsComponentMask
{
2024-08-23 22:31:43 +08:00
#region Initialization Halpers
2024-03-26 16:06:03 +08:00
[ThreadStatic]
2024-03-26 18:09:13 +08:00
private static Stack<Builder> _constructorBuildersStack = null;
private static Stack<Builder> GetBuildersStack()
{
2024-04-09 00:19:43 +08:00
if (_constructorBuildersStack == null)
2024-03-26 18:09:13 +08:00
{
_constructorBuildersStack = new Stack<Builder>();
}
return _constructorBuildersStack;
}
2024-07-05 22:13:17 +08:00
protected static Builder CurrentBuilder
{
get
{
var buildersStack = GetBuildersStack();
if (buildersStack.Count <= 0)
{
Throw.Aspect_CanOnlyBeUsedDuringInitialization(nameof(CurrentBuilder));
}
return buildersStack.Peek();
}
}
2024-03-26 16:06:03 +08:00
protected static IncludeMarker Inc
{
get
{
2024-03-26 18:09:13 +08:00
var buildersStack = GetBuildersStack();
if (buildersStack.Count <= 0)
2024-04-22 17:37:37 +08:00
{
Throw.Aspect_CanOnlyBeUsedDuringInitialization(nameof(Inc));
2024-03-26 16:06:03 +08:00
}
2024-03-26 18:09:13 +08:00
return buildersStack.Peek().Inc;
2024-03-26 16:06:03 +08:00
}
}
protected static ExcludeMarker Exc
{
get
{
2024-03-26 18:09:13 +08:00
var buildersStack = GetBuildersStack();
if (buildersStack.Count <= 0)
2024-04-22 17:37:37 +08:00
{
Throw.Aspect_CanOnlyBeUsedDuringInitialization(nameof(Exc));
2024-03-26 16:06:03 +08:00
}
2024-03-26 18:09:13 +08:00
return buildersStack.Peek().Exc;
2024-03-26 16:06:03 +08:00
}
}
protected static OptionalMarker Opt
{
get
{
2024-03-26 18:09:13 +08:00
var buildersStack = GetBuildersStack();
if (buildersStack.Count <= 0)
2024-04-22 17:37:37 +08:00
{
Throw.Aspect_CanOnlyBeUsedDuringInitialization(nameof(Opt));
2024-03-26 16:06:03 +08:00
}
2024-03-26 18:09:13 +08:00
return buildersStack.Peek().Opt;
2024-03-26 16:06:03 +08:00
}
}
2024-08-23 22:31:43 +08:00
#endregion
2024-01-07 18:52:54 +08:00
2024-08-23 22:31:43 +08:00
internal EcsWorld _source;
internal EcsMask _mask;
private bool _isBuilt = false;
2024-01-07 18:52:54 +08:00
#region Properties
2024-03-02 21:45:09 +08:00
public EcsMask Mask
{
get { return _mask; }
}
public EcsWorld World
{
get { return _source; }
}
public bool IsInit
{
2024-03-26 16:06:03 +08:00
get { return _isBuilt; }
2024-03-02 21:45:09 +08:00
}
#endregion
#region Methods
2024-02-13 21:00:01 +08:00
public bool IsMatches(int entityID)
{
return _source.IsMatchesMask(_mask, entityID);
}
#endregion
#region Builder
protected virtual void Init(Builder b) { }
2024-02-11 01:28:18 +08:00
public sealed class Builder
{
private EcsWorld _world;
2024-01-07 19:32:16 +08:00
private EcsMask.Builder _maskBuilder;
2024-07-05 22:13:17 +08:00
2024-08-26 11:08:42 +08:00
#region Properties
2024-03-08 20:40:19 +08:00
public IncludeMarker Inc
{
get { return new IncludeMarker(this); }
}
public ExcludeMarker Exc
{
get { return new ExcludeMarker(this); }
}
public OptionalMarker Opt
{
get { return new OptionalMarker(this); }
}
2024-08-26 11:08:42 +08:00
public EcsWorld World
{
get { return _world; }
}
#endregion
2024-03-08 20:40:19 +08:00
2024-08-26 11:08:42 +08:00
#region Constructors/New
private Builder(EcsWorld world)
{
_world = world;
2024-01-11 00:48:39 +08:00
_maskBuilder = EcsMask.New(world);
}
2024-07-05 22:13:17 +08:00
internal static unsafe TAspect New<TAspect>(EcsWorld world) where TAspect : EcsAspect, new()
{
Builder builder = new Builder(world);
2023-06-22 14:31:13 +08:00
Type aspectType = typeof(TAspect);
EcsAspect newAspect;
2024-03-26 16:06:03 +08:00
2024-03-26 18:09:13 +08:00
var buildersStack = GetBuildersStack();
2024-06-27 00:26:05 +08:00
2024-08-26 11:08:42 +08:00
buildersStack.Push(builder);
2024-07-05 22:13:17 +08:00
newAspect = new TAspect();
2024-03-26 18:09:13 +08:00
newAspect.Init(builder);
buildersStack.Pop();
2024-08-26 11:08:42 +08:00
2024-01-07 18:52:54 +08:00
newAspect._source = world;
2024-01-07 19:32:16 +08:00
builder.Build(out newAspect._mask);
2024-03-26 16:06:03 +08:00
newAspect._isBuilt = true;
2024-01-07 18:52:54 +08:00
2023-06-22 14:31:13 +08:00
return (TAspect)newAspect;
}
2024-08-26 11:08:42 +08:00
#endregion
2024-04-18 22:14:50 +08:00
#region Include/Exclude/Optional/Combine/Except
2024-03-07 03:40:06 +08:00
public TPool IncludePool<TPool>() where TPool : IEcsPoolImplementation, new()
{
2024-03-07 03:30:18 +08:00
var pool = _world.GetPoolInstance<TPool>();
IncludeImplicit(pool.ComponentType);
return pool;
}
2024-03-07 03:40:06 +08:00
public TPool ExcludePool<TPool>() where TPool : IEcsPoolImplementation, new()
{
2024-03-07 03:30:18 +08:00
var pool = _world.GetPoolInstance<TPool>();
ExcludeImplicit(pool.ComponentType);
return pool;
}
2024-03-07 03:40:06 +08:00
public TPool OptionalPool<TPool>() where TPool : IEcsPoolImplementation, new()
{
2024-03-07 03:30:18 +08:00
return _world.GetPoolInstance<TPool>();
}
2024-10-05 10:19:52 +08:00
private void IncludeImplicit(Type type)
{
2024-10-02 22:13:10 +08:00
_maskBuilder.Inc(type);
}
private void ExcludeImplicit(Type type)
{
2024-10-02 22:13:10 +08:00
_maskBuilder.Exc(type);
}
2024-10-05 10:19:52 +08:00
2024-07-05 22:13:17 +08:00
public TOtherAspect Combine<TOtherAspect>(int order = 0) where TOtherAspect : EcsAspect, new()
2023-06-03 01:58:54 +08:00
{
2023-06-22 14:31:13 +08:00
var result = _world.GetAspect<TOtherAspect>();
2024-01-11 00:48:39 +08:00
_maskBuilder.Combine(result.Mask);
2023-06-03 01:58:54 +08:00
return result;
}
2024-07-05 22:13:17 +08:00
public TOtherAspect Except<TOtherAspect>(int order = 0) where TOtherAspect : EcsAspect, new()
2024-04-18 22:14:50 +08:00
{
var result = _world.GetAspect<TOtherAspect>();
_maskBuilder.Except(result.Mask);
return result;
}
2023-06-03 01:58:54 +08:00
#endregion
2024-08-26 11:08:42 +08:00
#region Build
2024-01-07 19:32:16 +08:00
private void Build(out EcsMask mask)
{
2024-01-07 19:32:16 +08:00
mask = _maskBuilder.Build();
}
2024-08-26 11:08:42 +08:00
#endregion
2023-05-28 05:53:08 +08:00
#region SupportReflectionHack
#if UNITY_2020_3_OR_NEWER
[UnityEngine.Scripting.Preserve]
#endif
private void SupportReflectionHack<TPool>() where TPool : IEcsPoolImplementation, new()
2023-05-28 05:53:08 +08:00
{
2024-03-07 03:40:06 +08:00
IncludePool<TPool>();
ExcludePool<TPool>();
OptionalPool<TPool>();
IncludeImplicit(null);
ExcludeImplicit(null);
2023-05-28 05:53:08 +08:00
}
#endregion
}
#endregion
2024-01-07 18:52:54 +08:00
#region Combined
2023-06-25 23:13:51 +08:00
private readonly struct Combined
2023-06-05 22:09:34 +08:00
{
2023-06-25 23:13:51 +08:00
public readonly EcsAspect aspect;
public readonly int order;
2023-06-22 14:31:13 +08:00
public Combined(EcsAspect aspect, int order)
2023-06-05 22:09:34 +08:00
{
2023-06-22 14:31:13 +08:00
this.aspect = aspect;
2023-06-05 22:09:34 +08:00
this.order = order;
}
}
2024-01-07 18:52:54 +08:00
#endregion
#region Iterator
2024-08-24 12:29:58 +08:00
[Obsolete("Use EcsMask.GetIterator()")]
public Iterator GetIterator()
{
return new Iterator(Mask.GetIterator(), _source.Entities);
}
[Obsolete("Use EcsMask.GetIterator().Iterate(span)")]
public Iterator GetIteratorFor(EcsSpan span)
{
return new Iterator(Mask.GetIterator(), span);
}
[Obsolete("Use EcsMaskIterator")]
public ref struct Iterator
2023-12-24 15:40:19 +08:00
{
2024-04-16 12:46:09 +08:00
public readonly short worldID;
2024-08-24 12:29:58 +08:00
public readonly EcsMaskIterator.Enumerable iterator;
private EcsSpan _span;
2024-08-24 12:29:58 +08:00
public Iterator(EcsMaskIterator iterator, EcsSpan span)
2023-12-24 15:40:19 +08:00
{
2024-08-24 12:29:58 +08:00
worldID = iterator.World.id;
_span = span;
2024-08-24 12:29:58 +08:00
this.iterator = iterator.Iterate(span);
}
#region CopyTo
public void CopyTo(EcsGroup group)
{
iterator.CopyTo(group);
}
public int CopyTo(ref int[] array)
{
return iterator.CopyTo(ref array);
}
public EcsSpan CopyToSpan(ref int[] array)
{
2024-10-10 19:57:19 +08:00
int count = CopyTo(ref array);
return new EcsSpan(worldID, array, count);
2024-08-24 12:29:58 +08:00
}
#endregion
public EcsMaskIterator.Enumerable.Enumerator GetEnumerator()
{
return iterator.GetEnumerator();
2023-12-24 15:40:19 +08:00
}
}
2023-06-02 04:00:08 +08:00
#endregion
2024-04-22 17:01:13 +08:00
#region Template
public virtual void Apply(short worldID, int entityID)
{
EcsWorld world = EcsWorld.GetWorld(worldID);
2024-04-22 17:20:31 +08:00
foreach (var incTypeID in _mask._inc)
2024-04-22 17:01:13 +08:00
{
var pool = world.FindPoolInstance(incTypeID);
2024-04-22 17:16:37 +08:00
if (pool != null)
2024-04-22 17:01:13 +08:00
{
2024-04-22 17:16:37 +08:00
if (pool.Has(entityID) == false)
{
pool.AddRaw(entityID, null);
}
}
#if DEBUG
else
{
EcsDebug.PrintWarning("Component has not been added because the pool has not been initialized yet.");
2024-04-22 17:01:13 +08:00
}
2024-04-22 17:16:37 +08:00
#endif
2024-04-26 04:55:19 +08:00
}
2024-04-22 17:20:31 +08:00
foreach (var excTypeID in _mask._exc)
2024-04-22 17:01:13 +08:00
{
var pool = world.FindPoolInstance(excTypeID);
2024-04-22 17:09:06 +08:00
if (pool != null && pool.Has(entityID))
2024-04-22 17:01:13 +08:00
{
pool.Del(entityID);
}
}
}
#endregion
2024-10-05 20:59:16 +08:00
#region Other
EcsMask IEcsComponentMask.ToMask(EcsWorld world) { return _mask; }
#endregion
}
2024-08-23 22:31:43 +08:00
2024-08-26 11:08:42 +08:00
#region EcsAspectExtensions
//public static class EcsAspectExtensions
//{
// public static EcsAspect.Builder Inc<TPool>(this EcsAspect.Builder self, ref TPool pool) where TPool : IEcsPoolImplementation, new()
// {
// pool = self.IncludePool<TPool>();
// return self;
// }
// public static EcsAspect.Builder Exc<TPool>(this EcsAspect.Builder self, ref TPool pool) where TPool : IEcsPoolImplementation, new()
// {
// pool = self.ExcludePool<TPool>();
// return self;
// }
// public static EcsAspect.Builder Opt<TPool>(this EcsAspect.Builder self, ref TPool pool) where TPool : IEcsPoolImplementation, new()
// {
// pool = self.OptionalPool<TPool>();
// return self;
// }
//}
#endregion
2024-08-23 22:31:43 +08:00
#region Constraint Markers
2024-03-08 20:40:19 +08:00
public readonly ref struct IncludeMarker
{
private readonly EcsAspect.Builder _builder;
public IncludeMarker(EcsAspect.Builder builder)
{
_builder = builder;
}
2024-08-23 22:31:43 +08:00
public T GetInstance<T>() where T : IEcsPoolImplementation, new()
2024-03-08 20:40:19 +08:00
{
return _builder.IncludePool<T>();
}
}
public readonly ref struct ExcludeMarker
{
private readonly EcsAspect.Builder _builder;
public ExcludeMarker(EcsAspect.Builder builder)
{
_builder = builder;
}
2024-08-23 22:31:43 +08:00
public T GetInstance<T>() where T : IEcsPoolImplementation, new()
2024-03-08 20:40:19 +08:00
{
return _builder.ExcludePool<T>();
}
}
public readonly ref struct OptionalMarker
{
private readonly EcsAspect.Builder _builder;
public OptionalMarker(EcsAspect.Builder builder)
{
_builder = builder;
}
2024-08-23 22:31:43 +08:00
public T GetInstance<T>() where T : IEcsPoolImplementation, new()
2024-03-08 20:40:19 +08:00
{
return _builder.OptionalPool<T>();
}
}
2024-08-23 22:31:43 +08:00
#endregion
}