mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 21:59:47 +00:00
113 lines
3.7 KiB
C#
113 lines
3.7 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("dipswitch"), XmlRoot("dipswitch")]
|
|
public class DipSwitch : DatItem, ICloneable, IEquatable<DipSwitch>
|
|
{
|
|
#region Properties
|
|
|
|
/// <remarks>Condition subitem</remarks>
|
|
public string? ConditionMask { get; set; }
|
|
|
|
/// <remarks>Condition subitem, (eq|ne|gt|le|lt|ge)</remarks>
|
|
public Relation? ConditionRelation { get; set; }
|
|
|
|
/// <remarks>Condition subitem</remarks>
|
|
public string? ConditionTag { get; set; }
|
|
|
|
/// <remarks>Condition subitem</remarks>
|
|
public string? ConditionValue { get; set; }
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
public bool? Default { get; set; }
|
|
|
|
public DipLocation[]? DipLocation { get; set; }
|
|
|
|
public DipValue[]? DipValue { get; set; }
|
|
|
|
public string[]? Entry { get; set; }
|
|
|
|
public string? Mask { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? Tag { get; set; }
|
|
|
|
#endregion
|
|
|
|
public DipSwitch() => ItemType = ItemType.DipSwitch;
|
|
|
|
/// <inheritdoc/>
|
|
public object Clone()
|
|
{
|
|
var obj = new DipSwitch();
|
|
|
|
obj.ConditionMask = ConditionMask;
|
|
obj.ConditionRelation = ConditionRelation;
|
|
obj.ConditionTag = ConditionTag;
|
|
obj.ConditionValue = ConditionValue;
|
|
obj.Default = Default;
|
|
if (DipLocation is not null)
|
|
obj.DipLocation = Array.ConvertAll(DipLocation, i => (DipLocation)i.Clone());
|
|
if (DipValue is not null)
|
|
obj.DipValue = Array.ConvertAll(DipValue, i => (DipValue)i.Clone());
|
|
if (Entry is not null)
|
|
obj.Entry = Array.ConvertAll(Entry, i => i);
|
|
obj.Mask = Mask;
|
|
obj.Name = Name;
|
|
obj.Tag = Tag;
|
|
|
|
return obj;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public bool Equals(DipSwitch? other)
|
|
{
|
|
// Null never matches
|
|
if (other is null)
|
|
return false;
|
|
|
|
// Properties
|
|
if ((ConditionMask is null) ^ (other.ConditionMask is null))
|
|
return false;
|
|
else if (ConditionMask is not null && !ConditionMask.Equals(other.ConditionMask, StringComparison.OrdinalIgnoreCase))
|
|
return false;
|
|
|
|
if (ConditionRelation != other.ConditionRelation)
|
|
return false;
|
|
|
|
if ((ConditionTag is null) ^ (other.ConditionTag is null))
|
|
return false;
|
|
else if (ConditionTag is not null && !ConditionTag.Equals(other.ConditionTag, StringComparison.OrdinalIgnoreCase))
|
|
return false;
|
|
|
|
if ((ConditionValue is null) ^ (other.ConditionValue is null))
|
|
return false;
|
|
else if (ConditionValue is not null && !ConditionValue.Equals(other.ConditionValue, StringComparison.OrdinalIgnoreCase))
|
|
return false;
|
|
|
|
if ((Mask is null) ^ (other.Mask is null))
|
|
return false;
|
|
else if (Mask is not null && !Mask.Equals(other.Mask, StringComparison.OrdinalIgnoreCase))
|
|
return false;
|
|
|
|
if ((Name is null) ^ (other.Name is null))
|
|
return false;
|
|
else if (Name is not null && !Name.Equals(other.Name, StringComparison.OrdinalIgnoreCase))
|
|
return false;
|
|
|
|
if ((Tag is null) ^ (other.Tag is null))
|
|
return false;
|
|
else if (Tag is not null && !Tag.Equals(other.Tag, StringComparison.OrdinalIgnoreCase))
|
|
return false;
|
|
|
|
// TODO: Figure out how to properly check arrays
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|