mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Add nullable context to SabreTools.DatItems
This change also starts migrating the internals of the DatItem formats to the new internal models. Right now, it's basically just acting like a wrapper around those models.
This commit is contained in:
@@ -16,32 +16,50 @@ namespace SabreTools.DatItems.Formats
|
||||
/// Slot option name
|
||||
/// </summary>
|
||||
[JsonProperty("name"), XmlElement("name")]
|
||||
public string Name { get; set; }
|
||||
public string? Name
|
||||
{
|
||||
get => _slotOption.ReadString(Models.Internal.SlotOption.NameKey);
|
||||
set => _slotOption[Models.Internal.SlotOption.NameKey] = value;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Referenced device name
|
||||
/// </summary>
|
||||
[JsonProperty("devname"), XmlElement("devname")]
|
||||
public string DeviceName { get; set; }
|
||||
public string? DeviceName
|
||||
{
|
||||
get => _slotOption.ReadString(Models.Internal.SlotOption.DevNameKey);
|
||||
set => _slotOption[Models.Internal.SlotOption.DevNameKey] = value;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Determines if this slot option is default or not
|
||||
/// </summary>
|
||||
[JsonProperty("default", DefaultValueHandling = DefaultValueHandling.Ignore), XmlElement("default")]
|
||||
public bool? Default { get; set; }
|
||||
public bool? Default
|
||||
{
|
||||
get => _slotOption.ReadBool(Models.Internal.SlotOption.DefaultKey);
|
||||
set => _slotOption[Models.Internal.SlotOption.DefaultKey] = value;
|
||||
}
|
||||
|
||||
[JsonIgnore]
|
||||
public bool DefaultSpecified { get { return Default != null; } }
|
||||
|
||||
/// <summary>
|
||||
/// Internal SlotOption model
|
||||
/// </summary>
|
||||
[JsonIgnore]
|
||||
private Models.Internal.SlotOption _slotOption = new();
|
||||
|
||||
#endregion
|
||||
|
||||
#region Accessors
|
||||
|
||||
/// <inheritdoc/>
|
||||
public override string GetName() => Name;
|
||||
public override string? GetName() => Name;
|
||||
|
||||
/// <inheritdoc/>
|
||||
public override void SetName(string name) => Name = name;
|
||||
public override void SetName(string? name) => Name = name;
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -68,13 +86,11 @@ namespace SabreTools.DatItems.Formats
|
||||
ItemType = this.ItemType,
|
||||
DupeType = this.DupeType,
|
||||
|
||||
Machine = this.Machine.Clone() as Machine,
|
||||
Source = this.Source.Clone() as Source,
|
||||
Machine = this.Machine?.Clone() as Machine,
|
||||
Source = this.Source?.Clone() as Source,
|
||||
Remove = this.Remove,
|
||||
|
||||
Name = this.Name,
|
||||
DeviceName = this.DeviceName,
|
||||
Default = this.Default,
|
||||
_slotOption = this._slotOption?.Clone() as Models.Internal.SlotOption ?? new Models.Internal.SlotOption(),
|
||||
};
|
||||
}
|
||||
|
||||
@@ -83,19 +99,14 @@ namespace SabreTools.DatItems.Formats
|
||||
#region Comparision Methods
|
||||
|
||||
/// <inheritdoc/>
|
||||
public override bool Equals(DatItem other)
|
||||
public override bool Equals(DatItem? other)
|
||||
{
|
||||
// If we don't have a SlotOption, return false
|
||||
if (ItemType != other.ItemType)
|
||||
// If we don't have a Adjuster, return false
|
||||
if (ItemType != other?.ItemType || other is not SlotOption otherInternal)
|
||||
return false;
|
||||
|
||||
// Otherwise, treat it as a SlotOption
|
||||
SlotOption newOther = other as SlotOption;
|
||||
|
||||
// If the SlotOption information matches
|
||||
return (Name == newOther.Name
|
||||
&& DeviceName == newOther.DeviceName
|
||||
&& Default == newOther.Default);
|
||||
// Compare the internal models
|
||||
return _slotOption.EqualTo(otherInternal._slotOption);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user