mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Promote Control
This commit is contained in:
@@ -232,6 +232,9 @@ namespace SabreTools.Library.DatFiles
|
|||||||
case ItemType.Configuration:
|
case ItemType.Configuration:
|
||||||
datItem = datItemObj.ToObject<Configuration>();
|
datItem = datItemObj.ToObject<Configuration>();
|
||||||
break;
|
break;
|
||||||
|
case ItemType.Control:
|
||||||
|
datItem = datItemObj.ToObject<Control>();
|
||||||
|
break;
|
||||||
case ItemType.Device:
|
case ItemType.Device:
|
||||||
datItem = datItemObj.ToObject<Device>();
|
datItem = datItemObj.ToObject<Device>();
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -686,7 +686,7 @@ namespace SabreTools.Library.DatFiles
|
|||||||
{
|
{
|
||||||
case "control":
|
case "control":
|
||||||
var control = new Control();
|
var control = new Control();
|
||||||
control.Type = reader.GetAttribute("type");
|
control.ControlType = reader.GetAttribute("type");
|
||||||
control.Player = reader.GetAttribute("player");
|
control.Player = reader.GetAttribute("player");
|
||||||
control.Buttons = reader.GetAttribute("buttons");
|
control.Buttons = reader.GetAttribute("buttons");
|
||||||
control.RegButtons = reader.GetAttribute("regbuttons");
|
control.RegButtons = reader.GetAttribute("regbuttons");
|
||||||
@@ -1558,7 +1558,7 @@ namespace SabreTools.Library.DatFiles
|
|||||||
foreach (var control in input.Controls)
|
foreach (var control in input.Controls)
|
||||||
{
|
{
|
||||||
xtw.WriteStartElement("control");
|
xtw.WriteStartElement("control");
|
||||||
xtw.WriteOptionalAttributeString("type", control.Type);
|
xtw.WriteOptionalAttributeString("type", control.ControlType);
|
||||||
xtw.WriteOptionalAttributeString("player", control.Player);
|
xtw.WriteOptionalAttributeString("player", control.Player);
|
||||||
xtw.WriteOptionalAttributeString("buttons", control.Buttons);
|
xtw.WriteOptionalAttributeString("buttons", control.Buttons);
|
||||||
xtw.WriteOptionalAttributeString("regbuttons", control.RegButtons);
|
xtw.WriteOptionalAttributeString("regbuttons", control.RegButtons);
|
||||||
|
|||||||
@@ -196,7 +196,7 @@ namespace SabreTools.Library.DatFiles
|
|||||||
int indexId)
|
int indexId)
|
||||||
{
|
{
|
||||||
List<DatItem> items = new List<DatItem>();
|
List<DatItem> items = new List<DatItem>();
|
||||||
OpenMSXOriginal original = null;
|
Original original = null;
|
||||||
|
|
||||||
while (!reader.EOF)
|
while (!reader.EOF)
|
||||||
{
|
{
|
||||||
@@ -238,7 +238,7 @@ namespace SabreTools.Library.DatFiles
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case "original":
|
case "original":
|
||||||
original = new OpenMSXOriginal();
|
original = new Original();
|
||||||
original.Value = reader.GetAttribute("value").AsYesNo();
|
original.Value = reader.GetAttribute("value").AsYesNo();
|
||||||
original.Content = reader.ReadElementContentAsString();
|
original.Content = reader.ReadElementContentAsString();
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -1486,7 +1486,7 @@ namespace SabreTools.Library.DatFiles
|
|||||||
foreach (var control in input.Controls)
|
foreach (var control in input.Controls)
|
||||||
{
|
{
|
||||||
xtw.WriteStartElement("control");
|
xtw.WriteStartElement("control");
|
||||||
xtw.WriteOptionalAttributeString("type", control.Type);
|
xtw.WriteOptionalAttributeString("type", control.ControlType);
|
||||||
xtw.WriteOptionalAttributeString("player", control.Player);
|
xtw.WriteOptionalAttributeString("player", control.Player);
|
||||||
xtw.WriteOptionalAttributeString("buttons", control.Buttons);
|
xtw.WriteOptionalAttributeString("buttons", control.Buttons);
|
||||||
xtw.WriteOptionalAttributeString("regbuttons", control.RegButtons);
|
xtw.WriteOptionalAttributeString("regbuttons", control.RegButtons);
|
||||||
|
|||||||
@@ -164,13 +164,13 @@ namespace SabreTools.Library.DatFiles
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case "info":
|
case "info":
|
||||||
var info = new SoftwareListInfo();
|
var info = new Info();
|
||||||
info.Name = reader.GetAttribute("name");
|
info.Name = reader.GetAttribute("name");
|
||||||
info.Value = reader.GetAttribute("value");
|
info.Value = reader.GetAttribute("value");
|
||||||
|
|
||||||
// Ensure the list exists
|
// Ensure the list exists
|
||||||
if (machine.Infos == null)
|
if (machine.Infos == null)
|
||||||
machine.Infos = new List<SoftwareListInfo>();
|
machine.Infos = new List<Info>();
|
||||||
|
|
||||||
machine.Infos.Add(info);
|
machine.Infos.Add(info);
|
||||||
|
|
||||||
@@ -178,13 +178,13 @@ namespace SabreTools.Library.DatFiles
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case "sharedfeat":
|
case "sharedfeat":
|
||||||
var sharedFeature = new SoftwareListSharedFeature();
|
var sharedFeature = new SharedFeature();
|
||||||
sharedFeature.Name = reader.GetAttribute("name");
|
sharedFeature.Name = reader.GetAttribute("name");
|
||||||
sharedFeature.Value = reader.GetAttribute("value");
|
sharedFeature.Value = reader.GetAttribute("value");
|
||||||
|
|
||||||
// Ensure the list exists
|
// Ensure the list exists
|
||||||
if (machine.SharedFeatures == null)
|
if (machine.SharedFeatures == null)
|
||||||
machine.SharedFeatures = new List<SoftwareListSharedFeature>();
|
machine.SharedFeatures = new List<SharedFeature>();
|
||||||
|
|
||||||
machine.SharedFeatures.Add(sharedFeature);
|
machine.SharedFeatures.Add(sharedFeature);
|
||||||
|
|
||||||
@@ -701,7 +701,7 @@ namespace SabreTools.Library.DatFiles
|
|||||||
|
|
||||||
if (datItem.Machine.Infos != null && datItem.Machine.Infos.Count > 0)
|
if (datItem.Machine.Infos != null && datItem.Machine.Infos.Count > 0)
|
||||||
{
|
{
|
||||||
foreach (SoftwareListInfo kvp in datItem.Machine.Infos)
|
foreach (Info kvp in datItem.Machine.Infos)
|
||||||
{
|
{
|
||||||
xtw.WriteStartElement("info");
|
xtw.WriteStartElement("info");
|
||||||
xtw.WriteRequiredAttributeString("name", kvp.Name);
|
xtw.WriteRequiredAttributeString("name", kvp.Name);
|
||||||
@@ -712,7 +712,7 @@ namespace SabreTools.Library.DatFiles
|
|||||||
|
|
||||||
if (datItem.Machine.SharedFeatures != null && datItem.Machine.SharedFeatures.Count > 0)
|
if (datItem.Machine.SharedFeatures != null && datItem.Machine.SharedFeatures.Count > 0)
|
||||||
{
|
{
|
||||||
foreach (SoftwareListSharedFeature kvp in datItem.Machine.SharedFeatures)
|
foreach (SharedFeature kvp in datItem.Machine.SharedFeatures)
|
||||||
{
|
{
|
||||||
xtw.WriteStartElement("sharedfeat");
|
xtw.WriteStartElement("sharedfeat");
|
||||||
xtw.WriteRequiredAttributeString("name", kvp.Name);
|
xtw.WriteRequiredAttributeString("name", kvp.Name);
|
||||||
|
|||||||
@@ -15,100 +15,13 @@ namespace SabreTools.Library.DatItems
|
|||||||
{
|
{
|
||||||
#region Machine
|
#region Machine
|
||||||
|
|
||||||
#region ListXML
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Represents one ListXML control
|
|
||||||
/// </summary>
|
|
||||||
[JsonObject("control")]
|
|
||||||
public class Control
|
|
||||||
{
|
|
||||||
#region Fields
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Control type
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("type", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public string Type { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Player ID
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("player", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public string Player { get; set; } // TODO: Int32?
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Button count
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("buttons", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public string Buttons { get; set; } // TODO: Int32?
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Regular button count
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("regbuttons", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public string RegButtons { get; set; } // TODO: Int32?
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Minimum value
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("minimum", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public string Minimum { get; set; } // TODO: Int32? Float?
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Maximum value
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("maximum", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public string Maximum { get; set; } // TODO: Int32? Float?
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Sensitivity value
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("sensitivity", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public string Sensitivity { get; set; } // TODO: Int32? Float?
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Keypress delta
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("keydelta", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public string KeyDelta { get; set; } // TODO: Int32? Float?
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Determines if the control is reversed
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("reverse", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public bool? Reverse { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// First set of ways
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("ways", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public string Ways { get; set; } // TODO: Int32? Float?
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Second set of ways
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("ways2", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public string Ways2 { get; set; } // TODO: Int32? Float?
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Third set of ways
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("ways3", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
||||||
public string Ways3 { get; set; } // TODO: Int32? Float?
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region OpenMSX
|
#region OpenMSX
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents the OpenMSX original value
|
/// Represents the OpenMSX original value
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonObject("original")]
|
[JsonObject("original")]
|
||||||
public class OpenMSXOriginal
|
public class Original
|
||||||
{
|
{
|
||||||
[JsonProperty("value")]
|
[JsonProperty("value")]
|
||||||
public bool? Value { get; set; }
|
public bool? Value { get; set; }
|
||||||
@@ -125,7 +38,7 @@ namespace SabreTools.Library.DatItems
|
|||||||
/// Represents one SoftwareList info
|
/// Represents one SoftwareList info
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonObject("info")]
|
[JsonObject("info")]
|
||||||
public class SoftwareListInfo
|
public class Info
|
||||||
{
|
{
|
||||||
[JsonProperty("name")]
|
[JsonProperty("name")]
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
@@ -138,7 +51,7 @@ namespace SabreTools.Library.DatItems
|
|||||||
/// Represents one SoftwareList shared feature object
|
/// Represents one SoftwareList shared feature object
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonObject("sharedfeat")]
|
[JsonObject("sharedfeat")]
|
||||||
public class SoftwareListSharedFeature
|
public class SharedFeature
|
||||||
{
|
{
|
||||||
[JsonProperty("name")]
|
[JsonProperty("name")]
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
|
|||||||
425
SabreTools.Library/DatItems/Control.cs
Normal file
425
SabreTools.Library/DatItems/Control.cs
Normal file
@@ -0,0 +1,425 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
using SabreTools.Library.Filtering;
|
||||||
|
using SabreTools.Library.Tools;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
namespace SabreTools.Library.DatItems
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Represents control for an input
|
||||||
|
/// </summary>
|
||||||
|
[JsonObject("control")]
|
||||||
|
public class Control : DatItem
|
||||||
|
{
|
||||||
|
#region Fields
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Control type
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("type", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public string ControlType { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Player ID
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("player", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public string Player { get; set; } // TODO: Int32?
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Button count
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("buttons", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public string Buttons { get; set; } // TODO: Int32?
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Regular button count
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("regbuttons", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public string RegButtons { get; set; } // TODO: Int32?
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Minimum value
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("minimum", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public string Minimum { get; set; } // TODO: Int32? Float?
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Maximum value
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("maximum", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public string Maximum { get; set; } // TODO: Int32? Float?
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sensitivity value
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("sensitivity", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public string Sensitivity { get; set; } // TODO: Int32? Float?
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Keypress delta
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("keydelta", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public string KeyDelta { get; set; } // TODO: Int32? Float?
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Determines if the control is reversed
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("reverse", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public bool? Reverse { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// First set of ways
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("ways", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public string Ways { get; set; } // TODO: Int32? Float?
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Second set of ways
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("ways2", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public string Ways2 { get; set; } // TODO: Int32? Float?
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Third set of ways
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("ways3", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
|
public string Ways3 { get; set; } // TODO: Int32? Float?
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Accessors
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Set fields with given values
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="mappings">Mappings dictionary</param>
|
||||||
|
public override void SetFields(Dictionary<Field, string> mappings)
|
||||||
|
{
|
||||||
|
// Set base fields
|
||||||
|
base.SetFields(mappings);
|
||||||
|
|
||||||
|
// Handle Control-specific fields
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_Type))
|
||||||
|
ControlType = mappings[Field.DatItem_Control_Type];
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_Player))
|
||||||
|
Player = mappings[Field.DatItem_Control_Player];
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_Buttons))
|
||||||
|
Buttons = mappings[Field.DatItem_Control_Buttons];
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_RegButtons))
|
||||||
|
RegButtons = mappings[Field.DatItem_Control_RegButtons];
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_Minimum))
|
||||||
|
Minimum = mappings[Field.DatItem_Control_Minimum];
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_Maximum))
|
||||||
|
Maximum = mappings[Field.DatItem_Control_Maximum];
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_Sensitivity))
|
||||||
|
Sensitivity = mappings[Field.DatItem_Control_Sensitivity];
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_KeyDelta))
|
||||||
|
KeyDelta = mappings[Field.DatItem_Control_KeyDelta];
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_Reverse))
|
||||||
|
Reverse = mappings[Field.DatItem_Control_Reverse].AsYesNo();
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_Ways))
|
||||||
|
Ways = mappings[Field.DatItem_Control_Ways];
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_Ways2))
|
||||||
|
Ways2 = mappings[Field.DatItem_Control_Ways2];
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Control_Ways3))
|
||||||
|
Ways3 = mappings[Field.DatItem_Control_Ways3];
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Constructors
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Create a default, empty Control object
|
||||||
|
/// </summary>
|
||||||
|
public Control()
|
||||||
|
{
|
||||||
|
ItemType = ItemType.Control;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Cloning Methods
|
||||||
|
|
||||||
|
public override object Clone()
|
||||||
|
{
|
||||||
|
return new Control()
|
||||||
|
{
|
||||||
|
ItemType = this.ItemType,
|
||||||
|
DupeType = this.DupeType,
|
||||||
|
|
||||||
|
AltName = this.AltName,
|
||||||
|
AltTitle = this.AltTitle,
|
||||||
|
|
||||||
|
Original = this.Original,
|
||||||
|
OpenMSXSubType = this.OpenMSXSubType,
|
||||||
|
OpenMSXType = this.OpenMSXType,
|
||||||
|
Remark = this.Remark,
|
||||||
|
Boot = this.Boot,
|
||||||
|
|
||||||
|
Part = this.Part,
|
||||||
|
Features = this.Features,
|
||||||
|
AreaName = this.AreaName,
|
||||||
|
AreaSize = this.AreaSize,
|
||||||
|
AreaWidth = this.AreaWidth,
|
||||||
|
AreaEndianness = this.AreaEndianness,
|
||||||
|
Value = this.Value,
|
||||||
|
LoadFlag = this.LoadFlag,
|
||||||
|
|
||||||
|
Machine = this.Machine.Clone() as Machine,
|
||||||
|
Source = this.Source.Clone() as Source,
|
||||||
|
Remove = this.Remove,
|
||||||
|
|
||||||
|
ControlType = this.ControlType,
|
||||||
|
Player = this.Player,
|
||||||
|
Buttons = this.Buttons,
|
||||||
|
RegButtons = this.RegButtons,
|
||||||
|
Minimum = this.Minimum,
|
||||||
|
Maximum = this.Maximum,
|
||||||
|
Sensitivity = this.Sensitivity,
|
||||||
|
KeyDelta = this.KeyDelta,
|
||||||
|
Reverse = this.Reverse,
|
||||||
|
Ways = this.Ways,
|
||||||
|
Ways2 = this.Ways2,
|
||||||
|
Ways3 = this.Ways3,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Comparision Methods
|
||||||
|
|
||||||
|
public override bool Equals(DatItem other)
|
||||||
|
{
|
||||||
|
// If we don't have a Control, return false
|
||||||
|
if (ItemType != other.ItemType)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Otherwise, treat it as a Control
|
||||||
|
Control newOther = other as Control;
|
||||||
|
|
||||||
|
// If the Control information matches
|
||||||
|
return (ControlType == newOther.ControlType
|
||||||
|
&& Player == newOther.Player
|
||||||
|
&& Buttons == newOther.Buttons
|
||||||
|
&& RegButtons == newOther.RegButtons
|
||||||
|
&& Minimum == newOther.Minimum
|
||||||
|
&& Maximum == newOther.Maximum
|
||||||
|
&& Sensitivity == newOther.Sensitivity
|
||||||
|
&& KeyDelta == newOther.KeyDelta
|
||||||
|
&& Reverse == newOther.Reverse
|
||||||
|
&& Ways == newOther.Ways
|
||||||
|
&& Ways2 == newOther.Ways2
|
||||||
|
&& Ways3 == newOther.Ways3);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Filtering
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Check to see if a DatItem passes the filter
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="filter">Filter to check against</param>
|
||||||
|
/// <returns>True if the item passed the filter, false otherwise</returns>
|
||||||
|
public override bool PassesFilter(Filter filter)
|
||||||
|
{
|
||||||
|
// Check common fields first
|
||||||
|
if (!base.PassesFilter(filter))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on control type
|
||||||
|
if (filter.DatItem_Control_Type.MatchesPositiveSet(ControlType) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Control_Type.MatchesNegativeSet(ControlType) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on display type
|
||||||
|
if (filter.DatItem_Control_Player.MatchesPositiveSet(Player) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Control_Player.MatchesNegativeSet(Player) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on buttons
|
||||||
|
if (filter.DatItem_Control_Buttons.MatchesPositiveSet(Buttons) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Control_Buttons.MatchesNegativeSet(Buttons) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on regbuttons
|
||||||
|
if (filter.DatItem_Control_RegButtons.MatchesPositiveSet(RegButtons) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Control_RegButtons.MatchesNegativeSet(RegButtons) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on minimum
|
||||||
|
if (filter.DatItem_Control_Minimum.MatchesPositiveSet(Minimum) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Control_Minimum.MatchesNegativeSet(Minimum) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on maximum
|
||||||
|
if (filter.DatItem_Control_Maximum.MatchesPositiveSet(Maximum) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Control_Maximum.MatchesNegativeSet(Maximum) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on sensitivity
|
||||||
|
if (filter.DatItem_Control_Sensitivity.MatchesPositiveSet(Sensitivity) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Control_Sensitivity.MatchesNegativeSet(Sensitivity) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on keydelta
|
||||||
|
if (filter.DatItem_Control_KeyDelta.MatchesPositiveSet(KeyDelta) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Control_KeyDelta.MatchesNegativeSet(KeyDelta) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on reverse
|
||||||
|
if (filter.DatItem_Control_Reverse.MatchesNeutral(null, Reverse) == false)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on ways
|
||||||
|
if (filter.DatItem_Control_Ways.MatchesPositiveSet(Ways) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Control_Ways.MatchesNegativeSet(Ways) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on ways2
|
||||||
|
if (filter.DatItem_Control_Ways2.MatchesPositiveSet(Ways2) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Control_Ways2.MatchesNegativeSet(Ways2) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on ways3
|
||||||
|
if (filter.DatItem_Control_Ways3.MatchesPositiveSet(Ways3) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Control_Ways3.MatchesNegativeSet(Ways3) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Remove fields from the DatItem
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="fields">List of Fields to remove</param>
|
||||||
|
public override void RemoveFields(List<Field> fields)
|
||||||
|
{
|
||||||
|
// Remove common fields first
|
||||||
|
base.RemoveFields(fields);
|
||||||
|
|
||||||
|
// Remove the fields
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Type))
|
||||||
|
ControlType = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Player))
|
||||||
|
Player = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Buttons))
|
||||||
|
Buttons = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_RegButtons))
|
||||||
|
RegButtons = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Minimum))
|
||||||
|
Minimum = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Maximum))
|
||||||
|
Maximum = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Sensitivity))
|
||||||
|
Sensitivity = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_KeyDelta))
|
||||||
|
KeyDelta = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Reverse))
|
||||||
|
Reverse = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Ways))
|
||||||
|
Ways = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Ways2))
|
||||||
|
Ways2 = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Ways3))
|
||||||
|
Ways3 = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Sorting and Merging
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Replace fields from another item
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="item">DatItem to pull new information from</param>
|
||||||
|
/// <param name="fields">List of Fields representing what should be updated</param>
|
||||||
|
public override void ReplaceFields(DatItem item, List<Field> fields)
|
||||||
|
{
|
||||||
|
// Replace common fields first
|
||||||
|
base.ReplaceFields(item, fields);
|
||||||
|
|
||||||
|
// If we don't have a Control to replace from, ignore specific fields
|
||||||
|
if (item.ItemType != ItemType.Control)
|
||||||
|
return;
|
||||||
|
|
||||||
|
// Cast for easier access
|
||||||
|
Control newItem = item as Control;
|
||||||
|
|
||||||
|
// Replace the fields
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Type))
|
||||||
|
ControlType = newItem.ControlType;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Player))
|
||||||
|
Player = newItem.Player;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Buttons))
|
||||||
|
Buttons = newItem.Buttons;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_RegButtons))
|
||||||
|
RegButtons = newItem.RegButtons;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Minimum))
|
||||||
|
Minimum = newItem.Minimum;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Maximum))
|
||||||
|
Maximum = newItem.Maximum;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Sensitivity))
|
||||||
|
Sensitivity = newItem.Sensitivity;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_KeyDelta))
|
||||||
|
KeyDelta = newItem.KeyDelta;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Reverse))
|
||||||
|
Reverse = newItem.Reverse;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Ways))
|
||||||
|
Ways = newItem.Ways;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Ways2))
|
||||||
|
Ways2 = newItem.Ways2;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Control_Ways3))
|
||||||
|
Ways3 = newItem.Ways3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -72,7 +72,7 @@ namespace SabreTools.Library.DatItems
|
|||||||
/// OpenMSX sub item type
|
/// OpenMSX sub item type
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("original", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
[JsonProperty("original", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
public OpenMSXOriginal Original { get; set; }
|
public Original Original { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// OpenMSX sub item type
|
/// OpenMSX sub item type
|
||||||
@@ -395,7 +395,7 @@ namespace SabreTools.Library.DatItems
|
|||||||
#region OpenMSX
|
#region OpenMSX
|
||||||
|
|
||||||
if (mappings.Keys.Contains(Field.DatItem_Original))
|
if (mappings.Keys.Contains(Field.DatItem_Original))
|
||||||
Original = new OpenMSXOriginal() { Content = mappings[Field.DatItem_Original] };
|
Original = new Original() { Content = mappings[Field.DatItem_Original] };
|
||||||
|
|
||||||
if (mappings.Keys.Contains(Field.DatItem_OpenMSXSubType))
|
if (mappings.Keys.Contains(Field.DatItem_OpenMSXSubType))
|
||||||
OpenMSXSubType = mappings[Field.DatItem_OpenMSXSubType].AsOpenMSXSubType();
|
OpenMSXSubType = mappings[Field.DatItem_OpenMSXSubType].AsOpenMSXSubType();
|
||||||
@@ -478,6 +478,9 @@ namespace SabreTools.Library.DatItems
|
|||||||
|
|
||||||
case ItemType.Configuration:
|
case ItemType.Configuration:
|
||||||
return new Configuration();
|
return new Configuration();
|
||||||
|
|
||||||
|
case ItemType.Control:
|
||||||
|
return new Control();
|
||||||
|
|
||||||
case ItemType.Device:
|
case ItemType.Device:
|
||||||
return new Device();
|
return new Device();
|
||||||
|
|||||||
@@ -483,6 +483,7 @@ namespace SabreTools.Library.DatItems
|
|||||||
Chip,
|
Chip,
|
||||||
Condition,
|
Condition,
|
||||||
Configuration,
|
Configuration,
|
||||||
|
Control,
|
||||||
Device,
|
Device,
|
||||||
DeviceReference,
|
DeviceReference,
|
||||||
DipSwitch,
|
DipSwitch,
|
||||||
|
|||||||
@@ -264,13 +264,13 @@ namespace SabreTools.Library.DatItems
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>Also in SoftwareList</remarks>
|
/// <remarks>Also in SoftwareList</remarks>
|
||||||
[JsonProperty("infos", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
[JsonProperty("infos", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
public List<SoftwareListInfo> Infos { get; set; } = null;
|
public List<Info> Infos { get; set; } = null;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// List of shared feature items
|
/// List of shared feature items
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("sharedfeat", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
[JsonProperty("sharedfeat", DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||||
public List<SoftwareListSharedFeature> SharedFeatures { get; set; } = null;
|
public List<SharedFeature> SharedFeatures { get; set; } = null;
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|||||||
@@ -1655,6 +1655,8 @@ namespace SabreTools.Library.Tools
|
|||||||
return ItemType.Condition;
|
return ItemType.Condition;
|
||||||
case "configuration":
|
case "configuration":
|
||||||
return ItemType.Configuration;
|
return ItemType.Configuration;
|
||||||
|
case "control":
|
||||||
|
return ItemType.Control;
|
||||||
case "device":
|
case "device":
|
||||||
return ItemType.Device;
|
return ItemType.Device;
|
||||||
case "device_ref":
|
case "device_ref":
|
||||||
@@ -1713,6 +1715,7 @@ namespace SabreTools.Library.Tools
|
|||||||
"chip" => ItemType.Chip,
|
"chip" => ItemType.Chip,
|
||||||
"condition" => ItemType.Condition,
|
"condition" => ItemType.Condition,
|
||||||
"configuration" => ItemType.Configuration,
|
"configuration" => ItemType.Configuration,
|
||||||
|
"control" => ItemType.Control,
|
||||||
"device" => ItemType.Device,
|
"device" => ItemType.Device,
|
||||||
"device_ref" => ItemType.DeviceReference,
|
"device_ref" => ItemType.DeviceReference,
|
||||||
"dipswitch" => ItemType.DipSwitch,
|
"dipswitch" => ItemType.DipSwitch,
|
||||||
@@ -2293,6 +2296,8 @@ namespace SabreTools.Library.Tools
|
|||||||
return "condition";
|
return "condition";
|
||||||
case ItemType.Configuration:
|
case ItemType.Configuration:
|
||||||
return "configuration";
|
return "configuration";
|
||||||
|
case ItemType.Control:
|
||||||
|
return "control";
|
||||||
case ItemType.Device:
|
case ItemType.Device:
|
||||||
return "device";
|
return "device";
|
||||||
case ItemType.DeviceReference:
|
case ItemType.DeviceReference:
|
||||||
@@ -2351,6 +2356,7 @@ namespace SabreTools.Library.Tools
|
|||||||
ItemType.Chip => "chip",
|
ItemType.Chip => "chip",
|
||||||
ItemType.Condition => "condition",
|
ItemType.Condition => "condition",
|
||||||
ItemType.Configuration => "configuration",
|
ItemType.Configuration => "configuration",
|
||||||
|
ItemType.Control => "control",
|
||||||
ItemType.Device => "device",
|
ItemType.Device => "device",
|
||||||
ItemType.DeviceReference => "device_ref",
|
ItemType.DeviceReference => "device_ref",
|
||||||
ItemType.DipSwitch => "dipswitch",
|
ItemType.DipSwitch => "dipswitch",
|
||||||
|
|||||||
Reference in New Issue
Block a user