luban/src/Luban.Job.Cfg/Source/Datas/DEnum.cs

70 lines
1.7 KiB
C#

using Luban.Job.Cfg.DataVisitors;
using Luban.Job.Common.Types;
namespace Luban.Job.Cfg.Datas
{
public class DEnum : DType
{
public int Value { get; }
public string StrValue { get; }
public TEnum Type { get; }
public override string TypeName => "enum";
public DEnum(TEnum type, string value)
{
Type = type;
StrValue = value;
Value = type.DefineEnum.GetValueByNameOrAlias(value);
}
public override void Apply<T>(IDataActionVisitor<T> visitor, T x)
{
visitor.Accept(this, x);
}
public override void Apply<T1, T2>(IDataActionVisitor<T1, T2> visitor, T1 x, T2 y)
{
visitor.Accept(this, x, y);
}
public override TR Apply<TR>(IDataFuncVisitor<TR> visitor)
{
return visitor.Accept(this);
}
public override TR Apply<T, TR>(IDataFuncVisitor<T, TR> visitor, T x)
{
return visitor.Accept(this, x);
}
public override bool Equals(object obj)
{
switch (obj)
{
case DInt dint: return this.Value == dint.Value;
case DFint fint: return this.Value == fint.Value;
case DEnum denum: return this.Value == denum.Value;
default: return false;
}
}
public override int GetHashCode()
{
return Value.GetHashCode();
}
public override int CompareTo(DType other)
{
if (other is DEnum d)
{
return this.Value.CompareTo(d.Value);
}
throw new System.NotSupportedException();
}
}
}