mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 21:59:47 +00:00
123 lines
3.1 KiB
C#
123 lines
3.1 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
using SabreTools.Metadata.Filter;
|
|
|
|
namespace SabreTools.Metadata.DatItems.Formats
|
|
{
|
|
/// <summary>
|
|
/// Represents which Slot(s) is associated with a set
|
|
/// </summary>
|
|
[JsonObject("slot"), XmlRoot("slot")]
|
|
public sealed class Slot : DatItem<Data.Models.Metadata.Slot>
|
|
{
|
|
#region Properties
|
|
|
|
/// <inheritdoc>/>
|
|
public override Data.Models.Metadata.ItemType ItemType
|
|
=> Data.Models.Metadata.ItemType.Slot;
|
|
|
|
public string? Name
|
|
{
|
|
get => _internal.Name;
|
|
set => _internal.Name = value;
|
|
}
|
|
|
|
public SlotOption[]? SlotOption { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public bool SlotOptionSpecified => SlotOption is not null && SlotOption.Length > 0;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public Slot() : base() { }
|
|
|
|
public Slot(Data.Models.Metadata.Slot item) : base(item)
|
|
{
|
|
// Handle subitems
|
|
if (item.SlotOption is not null)
|
|
SlotOption = Array.ConvertAll(item.SlotOption, slotOption => new SlotOption(slotOption)); ;
|
|
}
|
|
|
|
public Slot(Data.Models.Metadata.Slot item, Machine machine, Source source) : this(item)
|
|
{
|
|
Source = source;
|
|
CopyMachineInformation(machine);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Accessors
|
|
|
|
/// <inheritdoc/>
|
|
public override string? GetName() => Name;
|
|
|
|
/// <inheritdoc/>
|
|
public override void SetName(string? name) => Name = name;
|
|
|
|
#endregion
|
|
|
|
#region Cloning Methods
|
|
|
|
/// <inheritdoc/>
|
|
public override object Clone() => new Slot(GetInternalClone());
|
|
|
|
/// <inheritdoc/>
|
|
public override Data.Models.Metadata.Slot GetInternalClone()
|
|
{
|
|
var slotItem = _internal.Clone() as Data.Models.Metadata.Slot ?? new();
|
|
|
|
if (SlotOption is not null)
|
|
slotItem.SlotOption = Array.ConvertAll(SlotOption, slotOption => slotOption.GetInternalClone());
|
|
|
|
return slotItem;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Comparision Methods
|
|
|
|
/// <inheritdoc/>
|
|
public override bool Equals(DatItem? other)
|
|
{
|
|
// If the other item is null
|
|
if (other is null)
|
|
return false;
|
|
|
|
// If the type matches
|
|
if (other is Slot otherSlot)
|
|
return _internal.Equals(otherSlot._internal);
|
|
|
|
// Everything else fails
|
|
return false;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Manipulation
|
|
|
|
/// <inheritdoc/>
|
|
public override bool PassesFilter(FilterRunner filterRunner)
|
|
{
|
|
if (Machine is not null && !Machine.PassesFilter(filterRunner))
|
|
return false;
|
|
|
|
// TODO: SlotOption
|
|
|
|
return filterRunner.Run(_internal);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public override bool PassesFilterDB(FilterRunner filterRunner)
|
|
{
|
|
// TODO: SlotOption
|
|
|
|
return filterRunner.Run(_internal);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|