189 lines
3.9 KiB
C#
189 lines
3.9 KiB
C#
namespace Ghost.Core;
|
|
|
|
public interface IHandleType;
|
|
public interface IIdentifierType;
|
|
public interface IKeyType;
|
|
|
|
public readonly struct Handle<T> : IEquatable<Handle<T>>
|
|
{
|
|
public int ID
|
|
{
|
|
get => field - 1;
|
|
}
|
|
|
|
public int Generation
|
|
{
|
|
get => field - 1;
|
|
}
|
|
|
|
public Handle(int id, int generation)
|
|
{
|
|
ID = id + 1;
|
|
Generation = generation + 1;
|
|
}
|
|
|
|
public static Handle<T> Invalid => default;
|
|
|
|
public readonly bool IsValid => this != Invalid;
|
|
public readonly bool IsInvalid => this == Invalid;
|
|
|
|
public readonly override int GetHashCode()
|
|
{
|
|
return ID + (Generation << 16);
|
|
}
|
|
|
|
public readonly override bool Equals(object? obj)
|
|
{
|
|
return obj is Handle<T> id && Equals(id);
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"Handle<{typeof(T).Name}>({ID}, {Generation})";
|
|
}
|
|
|
|
public readonly bool Equals(Handle<T> other)
|
|
{
|
|
return ID == other.ID && Generation == other.Generation;
|
|
}
|
|
|
|
public readonly int CompareTo(Handle<T> other)
|
|
{
|
|
return ID.CompareTo(other.ID);
|
|
}
|
|
|
|
public static bool operator ==(Handle<T> a, Handle<T> b)
|
|
{
|
|
return a.Equals(b);
|
|
}
|
|
|
|
public static bool operator !=(Handle<T> a, Handle<T> b)
|
|
{
|
|
return !a.Equals(b);
|
|
}
|
|
}
|
|
|
|
public readonly struct Identifier<T> : IEquatable<Identifier<T>>
|
|
{
|
|
public int Value
|
|
{
|
|
get => field - 1;
|
|
}
|
|
|
|
public Identifier(int value)
|
|
{
|
|
Value = value + 1;
|
|
}
|
|
|
|
public static Identifier<T> Invalid => default;
|
|
|
|
public readonly bool IsValid => this != Invalid;
|
|
public readonly bool IsInvalid => this == Invalid;
|
|
|
|
public readonly override int GetHashCode()
|
|
{
|
|
return Value;
|
|
}
|
|
|
|
public readonly override bool Equals(object? obj)
|
|
{
|
|
return obj is Identifier<T> id && Equals(id);
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"Identifier<{typeof(T).Name}>({Value})";
|
|
}
|
|
|
|
public readonly bool Equals(Identifier<T> other)
|
|
{
|
|
return Value == other.Value;
|
|
}
|
|
|
|
public readonly int CompareTo(Identifier<T> other)
|
|
{
|
|
return Value.CompareTo(other.Value);
|
|
}
|
|
|
|
public static bool operator ==(Identifier<T> a, Identifier<T> b)
|
|
{
|
|
return a.Equals(b);
|
|
}
|
|
|
|
public static bool operator !=(Identifier<T> a, Identifier<T> b)
|
|
{
|
|
return !a.Equals(b);
|
|
}
|
|
|
|
public static bool operator <(Identifier<T> a, Identifier<T> b)
|
|
{
|
|
return a.Value < b.Value;
|
|
}
|
|
|
|
public static bool operator >(Identifier<T> a, Identifier<T> b)
|
|
{
|
|
return a.Value > b.Value;
|
|
}
|
|
|
|
public static bool operator <=(Identifier<T> a, Identifier<T> b)
|
|
{
|
|
return a.Value <= b.Value;
|
|
}
|
|
|
|
public static bool operator >=(Identifier<T> a, Identifier<T> b)
|
|
{
|
|
return a.Value >= b.Value;
|
|
}
|
|
|
|
public static implicit operator int(Identifier<T> id) => id.Value;
|
|
public static implicit operator Identifier<T>(int value) => new Identifier<T>(value);
|
|
}
|
|
|
|
public readonly struct Key<T>
|
|
{
|
|
public ulong Value
|
|
{
|
|
get;
|
|
}
|
|
|
|
public Key(ulong value)
|
|
{
|
|
Value = value;
|
|
}
|
|
|
|
public static Key<T> Invalid => new(0);
|
|
|
|
public bool IsValid => this != Invalid;
|
|
public bool IsInvalid => this == Invalid;
|
|
|
|
public readonly override int GetHashCode()
|
|
{
|
|
return Value.GetHashCode();
|
|
}
|
|
|
|
public readonly override bool Equals(object? obj)
|
|
{
|
|
return obj is Key<T> id && Equals(id);
|
|
}
|
|
|
|
public readonly bool Equals(Key<T> other)
|
|
{
|
|
return Value == other.Value;
|
|
}
|
|
|
|
public readonly int CompareTo(Key<T> other)
|
|
{
|
|
return Value.CompareTo(other.Value);
|
|
}
|
|
|
|
public static bool operator ==(Key<T> a, Key<T> b)
|
|
{
|
|
return a.Equals(b);
|
|
}
|
|
|
|
public static bool operator !=(Key<T> a, Key<T> b)
|
|
{
|
|
return !a.Equals(b);
|
|
}
|
|
}
|