mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
using System;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Generic;
|
|
|
|
namespace Robust.Shared.Prototypes;
|
|
|
|
/// <summary>
|
|
/// Wrapper type for a prototype id of kind <see cref="T"/>.
|
|
/// </summary>
|
|
/// <param name="Id">The id of the prototype.</param>
|
|
/// <typeparam name="T">The kind of prototype to wrap, for example <see cref="TileAliasPrototype"/></typeparam>
|
|
/// <remarks>
|
|
/// This will be automatically validated by <see cref="ProtoIdSerializer{T}"/> if used in data fields.
|
|
/// </remarks>
|
|
/// <remarks><seealso cref="EntProtoId"/> for an <see cref="EntityPrototype"/> alias.</remarks>
|
|
[Serializable]
|
|
public readonly record struct ProtoId<T>(string Id) : IEquatable<string>, IComparable<ProtoId<T>> where T : class, IPrototype
|
|
{
|
|
public static implicit operator string(ProtoId<T> protoId)
|
|
{
|
|
return protoId.Id;
|
|
}
|
|
|
|
public static implicit operator ProtoId<T>(string id)
|
|
{
|
|
return new ProtoId<T>(id);
|
|
}
|
|
|
|
public static implicit operator ProtoId<T>?(string? id)
|
|
{
|
|
return id == null ? default(ProtoId<T>?) : new ProtoId<T>(id);
|
|
}
|
|
|
|
public bool Equals(string? other)
|
|
{
|
|
return Id == other;
|
|
}
|
|
|
|
public int CompareTo(ProtoId<T> other)
|
|
{
|
|
return string.Compare(Id, other.Id, StringComparison.Ordinal);
|
|
}
|
|
|
|
public override string ToString() => Id ?? string.Empty;
|
|
}
|