mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
* Add PreferOtherTypeAttribute, analyzer, and test. * nullable enable * Add nuget package for CodeFix verifier * Add fixer for PreferOtherType * Rename arguments * Adjust diagnostic message * Move attribute lookup
51 lines
1.5 KiB
C#
51 lines
1.5 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]
|
|
[PreferOtherType(typeof(EntityPrototype), typeof(EntProtoId))]
|
|
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>(T proto)
|
|
{
|
|
return new ProtoId<T>(proto.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;
|
|
}
|