DragonECS/src/Collections/EcsSpan.cs

126 lines
4.4 KiB
C#
Raw Normal View History

2023-12-24 15:40:19 +08:00
using System;
2023-12-31 17:33:48 +08:00
using System.Collections.Generic;
2023-12-24 15:40:19 +08:00
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace DCFApixels.DragonECS
{
public readonly ref struct EcsSpan
{
private readonly int _worldID;
private readonly ReadOnlySpan<int> _values;
#region Properties
public int WorldID
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get => _worldID;
}
public EcsWorld World
{
get => EcsWorld.GetWorld(_worldID);
}
public int Length
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get => _values.Length;
}
2024-01-04 22:52:54 +08:00
public int this[int index]
2023-12-24 15:40:19 +08:00
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get => _values[index];
}
public bool IsNull
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get => _values.IsEmpty;
}
2023-12-24 15:40:19 +08:00
#endregion
#region Constructors
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal EcsSpan(int worldID, ReadOnlySpan<int> span)
{
_worldID = worldID;
_values = span;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal EcsSpan(int worldID, int[] array)
{
_worldID = worldID;
_values = array;
}
internal EcsSpan(int worldID, int[] array, int length)
{
_worldID = worldID;
_values = new ReadOnlySpan<int>(array, 0, length);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal EcsSpan(int worldID, int[] array, int start, int length)
{
_worldID = worldID;
_values = new ReadOnlySpan<int>(array, start, length);
}
#endregion
2023-12-31 17:33:48 +08:00
#region Methdos
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public int[] Bake()
{
int[] result = new int[_values.Length];
_values.CopyTo(result);
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public int Bake(ref int[] entities)
{
if (entities.Length < _values.Length)
Array.Resize(ref entities, _values.Length);
int[] result = new int[_values.Length];
_values.CopyTo(result);
return _values.Length;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Bake(List<int> entities)
{
entities.Clear();
foreach (var e in _values)
{
entities.Add(e);
}
}
#endregion
2023-12-24 15:40:19 +08:00
#region Object
#pragma warning disable CS0809 // Устаревший член переопределяет неустаревший член
2023-12-31 23:26:56 +08:00
[Obsolete("Equals() on EcsSpan will always throw an exception. Use the equality operator instead.")]
2023-12-24 15:40:19 +08:00
[EditorBrowsable(EditorBrowsableState.Never)]
public override bool Equals(object obj) => throw new NotSupportedException();
2023-12-31 23:26:56 +08:00
[Obsolete("GetHashCode() on EcsSpan will always throw an exception.")]
2023-12-24 15:40:19 +08:00
[EditorBrowsable(EditorBrowsableState.Never)]
public override int GetHashCode() => throw new NotSupportedException();
#pragma warning restore CS0809 // Устаревший член переопределяет неустаревший член
public override string ToString() => _values.ToString();
#endregion
#region operators
public static bool operator ==(EcsSpan left, EcsSpan right) => left._values == right._values;
public static bool operator !=(EcsSpan left, EcsSpan right) => left._values != right._values;
#endregion
#region Enumerator
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ReadOnlySpan<int>.Enumerator GetEnumerator() => _values.GetEnumerator();
#endregion
#region Other
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public EcsSpan Slice(int start) => new EcsSpan(_worldID, _values.Slice(start));
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public EcsSpan Slice(int start, int length) => new EcsSpan(_worldID, _values.Slice(start, length));
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public int[] ToArray() => _values.ToArray();
#endregion
}
}