Refactor folder structure
This commit is contained in:
242
src/Runtime/Ghost.Core/Handle.cs
Normal file
242
src/Runtime/Ghost.Core/Handle.cs
Normal file
@@ -0,0 +1,242 @@
|
||||
namespace Ghost.Core;
|
||||
|
||||
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 Key64<T> : IEquatable<Key64<T>>
|
||||
{
|
||||
public ulong Value
|
||||
{
|
||||
get;
|
||||
}
|
||||
|
||||
public Key64(ulong value)
|
||||
{
|
||||
Value = value;
|
||||
}
|
||||
|
||||
public static Key64<T> Invalid => new(0);
|
||||
|
||||
public bool IsValid => this != Invalid;
|
||||
public bool IsInvalid => this == Invalid;
|
||||
|
||||
public readonly override int GetHashCode()
|
||||
{
|
||||
return Value.GetHashCode();
|
||||
}
|
||||
|
||||
public readonly bool Equals(Key64<T> other)
|
||||
{
|
||||
return Value == other.Value;
|
||||
}
|
||||
|
||||
public readonly int CompareTo(Key64<T> other)
|
||||
{
|
||||
return Value.CompareTo(other.Value);
|
||||
}
|
||||
|
||||
public readonly override bool Equals(object? obj)
|
||||
{
|
||||
return obj is Key64<T> id && Equals(id);
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return Value.ToString("X16");
|
||||
}
|
||||
|
||||
public static bool operator ==(Key64<T> a, Key64<T> b)
|
||||
{
|
||||
return a.Equals(b);
|
||||
}
|
||||
|
||||
public static bool operator !=(Key64<T> a, Key64<T> b)
|
||||
{
|
||||
return !a.Equals(b);
|
||||
}
|
||||
}
|
||||
|
||||
public readonly struct Key128<T> : IEquatable<Key128<T>>
|
||||
{
|
||||
public UInt128 Value
|
||||
{
|
||||
get;
|
||||
}
|
||||
|
||||
public Key128(UInt128 value)
|
||||
{
|
||||
Value = value;
|
||||
}
|
||||
|
||||
public static Key128<T> Invalid => new(0);
|
||||
|
||||
public bool IsValid => this != Invalid;
|
||||
public bool IsInvalid => this == Invalid;
|
||||
|
||||
public readonly override int GetHashCode()
|
||||
{
|
||||
return Value.GetHashCode();
|
||||
}
|
||||
|
||||
public readonly bool Equals(Key128<T> other)
|
||||
{
|
||||
return Value == other.Value;
|
||||
}
|
||||
|
||||
public readonly int CompareTo(Key128<T> other)
|
||||
{
|
||||
return Value.CompareTo(other.Value);
|
||||
}
|
||||
|
||||
public readonly override bool Equals(object? obj)
|
||||
{
|
||||
return obj is Key128<T> id && Equals(id);
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return Value.ToString("X16");
|
||||
}
|
||||
|
||||
public static bool operator ==(Key128<T> a, Key128<T> b)
|
||||
{
|
||||
return a.Equals(b);
|
||||
}
|
||||
|
||||
public static bool operator !=(Key128<T> a, Key128<T> b)
|
||||
{
|
||||
return !a.Equals(b);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user