mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Cleanup usings, promote PartFeature
This commit is contained in:
@@ -179,6 +179,12 @@ namespace SabreTools.Library.DatFiles
|
|||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public long MediaCount { get; private set; } = 0;
|
public long MediaCount { get; private set; } = 0;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Number of PartFeature items
|
||||||
|
/// </summary>
|
||||||
|
[JsonIgnore]
|
||||||
|
public long PartFeatureCount { get; private set; } = 0;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Number of Port items
|
/// Number of Port items
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -623,6 +629,9 @@ namespace SabreTools.Library.DatFiles
|
|||||||
SHA1Count += (string.IsNullOrWhiteSpace((item as Media).SHA1) ? 0 : 1);
|
SHA1Count += (string.IsNullOrWhiteSpace((item as Media).SHA1) ? 0 : 1);
|
||||||
SHA256Count += (string.IsNullOrWhiteSpace((item as Media).SHA256) ? 0 : 1);
|
SHA256Count += (string.IsNullOrWhiteSpace((item as Media).SHA256) ? 0 : 1);
|
||||||
break;
|
break;
|
||||||
|
case ItemType.PartFeature:
|
||||||
|
PartFeatureCount++;
|
||||||
|
break;
|
||||||
case ItemType.Port:
|
case ItemType.Port:
|
||||||
PortCount++;
|
PortCount++;
|
||||||
break;
|
break;
|
||||||
@@ -806,6 +815,9 @@ namespace SabreTools.Library.DatFiles
|
|||||||
SHA1Count -= (string.IsNullOrWhiteSpace((item as Media).SHA1) ? 0 : 1);
|
SHA1Count -= (string.IsNullOrWhiteSpace((item as Media).SHA1) ? 0 : 1);
|
||||||
SHA256Count -= (string.IsNullOrWhiteSpace((item as Media).SHA256) ? 0 : 1);
|
SHA256Count -= (string.IsNullOrWhiteSpace((item as Media).SHA256) ? 0 : 1);
|
||||||
break;
|
break;
|
||||||
|
case ItemType.PartFeature:
|
||||||
|
PartFeatureCount--;
|
||||||
|
break;
|
||||||
case ItemType.Port:
|
case ItemType.Port:
|
||||||
PortCount--;
|
PortCount--;
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -274,6 +274,9 @@ namespace SabreTools.Library.DatFiles
|
|||||||
case ItemType.Media:
|
case ItemType.Media:
|
||||||
datItem = datItemObj.ToObject<Media>();
|
datItem = datItemObj.ToObject<Media>();
|
||||||
break;
|
break;
|
||||||
|
case ItemType.PartFeature:
|
||||||
|
datItem = datItemObj.ToObject<PartFeature>();
|
||||||
|
break;
|
||||||
case ItemType.Port:
|
case ItemType.Port:
|
||||||
datItem = datItemObj.ToObject<Port>();
|
datItem = datItemObj.ToObject<Port>();
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -4,9 +4,9 @@ using System.Linq;
|
|||||||
|
|
||||||
using SabreTools.Library.DatItems;
|
using SabreTools.Library.DatItems;
|
||||||
using SabreTools.Library.Filtering;
|
using SabreTools.Library.Filtering;
|
||||||
|
using SabreTools.Library.Tools;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using Newtonsoft.Json.Converters;
|
using Newtonsoft.Json.Converters;
|
||||||
using SabreTools.Library.Tools;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This holds all of the auxiliary types needed for proper parsing
|
/// This holds all of the auxiliary types needed for proper parsing
|
||||||
@@ -103,20 +103,6 @@ namespace SabreTools.Library.DatItems
|
|||||||
public List<PartFeature> Features { get; set; }
|
public List<PartFeature> Features { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Represents one SoftwareList feature object
|
|
||||||
/// </summary>
|
|
||||||
/// TODO: Promote this to DatItem
|
|
||||||
[JsonObject("part_feature")]
|
|
||||||
public class PartFeature
|
|
||||||
{
|
|
||||||
[JsonProperty("name")]
|
|
||||||
public string Name { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("value")]
|
|
||||||
public string Value { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#endregion //DatItem
|
#endregion //DatItem
|
||||||
|
|||||||
@@ -355,6 +355,9 @@ namespace SabreTools.Library.DatItems
|
|||||||
case ItemType.Media:
|
case ItemType.Media:
|
||||||
return new Media();
|
return new Media();
|
||||||
|
|
||||||
|
case ItemType.PartFeature:
|
||||||
|
return new PartFeature();
|
||||||
|
|
||||||
case ItemType.Port:
|
case ItemType.Port:
|
||||||
return new Port();
|
return new Port();
|
||||||
|
|
||||||
@@ -414,6 +417,7 @@ namespace SabreTools.Library.DatItems
|
|||||||
ItemType.Instance => new Instance(),
|
ItemType.Instance => new Instance(),
|
||||||
ItemType.Location => new Location(),
|
ItemType.Location => new Location(),
|
||||||
ItemType.Media => new Media(),
|
ItemType.Media => new Media(),
|
||||||
|
ItemType.PartFeature => new PartFeature(),
|
||||||
ItemType.Port => new Port(),
|
ItemType.Port => new Port(),
|
||||||
ItemType.RamOption => new RamOption(),
|
ItemType.RamOption => new RamOption(),
|
||||||
ItemType.Release => new Release(),
|
ItemType.Release => new Release(),
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
using SabreTools.Library.Filtering;
|
using SabreTools.Library.Filtering;
|
||||||
using Newtonsoft.Json;
|
|
||||||
using SabreTools.Library.Tools;
|
using SabreTools.Library.Tools;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace SabreTools.Library.DatItems
|
namespace SabreTools.Library.DatItems
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -483,6 +483,7 @@ namespace SabreTools.Library.DatItems
|
|||||||
Input,
|
Input,
|
||||||
Instance,
|
Instance,
|
||||||
Location,
|
Location,
|
||||||
|
PartFeature,
|
||||||
Port,
|
Port,
|
||||||
RamOption,
|
RamOption,
|
||||||
Release,
|
Release,
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
using SabreTools.Library.Filtering;
|
using SabreTools.Library.Filtering;
|
||||||
using Newtonsoft.Json;
|
|
||||||
using SabreTools.Library.Tools;
|
using SabreTools.Library.Tools;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace SabreTools.Library.DatItems
|
namespace SabreTools.Library.DatItems
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
using SabreTools.Library.Filtering;
|
using SabreTools.Library.Filtering;
|
||||||
using Newtonsoft.Json;
|
|
||||||
using SabreTools.Library.Tools;
|
using SabreTools.Library.Tools;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace SabreTools.Library.DatItems
|
namespace SabreTools.Library.DatItems
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
using SabreTools.Library.Filtering;
|
using SabreTools.Library.Filtering;
|
||||||
using Newtonsoft.Json;
|
|
||||||
using SabreTools.Library.Tools;
|
using SabreTools.Library.Tools;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace SabreTools.Library.DatItems
|
namespace SabreTools.Library.DatItems
|
||||||
{
|
{
|
||||||
|
|||||||
226
SabreTools.Library/DatItems/PartFeature.cs
Normal file
226
SabreTools.Library/DatItems/PartFeature.cs
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
using SabreTools.Library.Filtering;
|
||||||
|
using SabreTools.Library.Tools;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
namespace SabreTools.Library.DatItems
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Represents one part feature object
|
||||||
|
/// </summary>
|
||||||
|
[JsonObject("part_feature")]
|
||||||
|
public class PartFeature : DatItem
|
||||||
|
{
|
||||||
|
#region Fields
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the item
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("name")]
|
||||||
|
public string Name { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// PartFeature value
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("value")]
|
||||||
|
public string Value { get; set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Accessors
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the name to use for a DatItem
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>Name if available, null otherwise</returns>
|
||||||
|
public override string GetName()
|
||||||
|
{
|
||||||
|
return Name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <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 PartFeature-specific fields
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Name))
|
||||||
|
Name = mappings[Field.DatItem_Name];
|
||||||
|
|
||||||
|
if (mappings.Keys.Contains(Field.DatItem_Value))
|
||||||
|
Value = mappings[Field.DatItem_Value];
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Constructors
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Create a default, empty PartFeature object
|
||||||
|
/// </summary>
|
||||||
|
public PartFeature()
|
||||||
|
{
|
||||||
|
Name = string.Empty;
|
||||||
|
ItemType = ItemType.PartFeature;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Cloning Methods
|
||||||
|
|
||||||
|
public override object Clone()
|
||||||
|
{
|
||||||
|
return new PartFeature()
|
||||||
|
{
|
||||||
|
ItemType = this.ItemType,
|
||||||
|
DupeType = this.DupeType,
|
||||||
|
|
||||||
|
Machine = this.Machine.Clone() as Machine,
|
||||||
|
Source = this.Source.Clone() as Source,
|
||||||
|
Remove = this.Remove,
|
||||||
|
|
||||||
|
Name = this.Name,
|
||||||
|
Value = this.Value,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Comparision Methods
|
||||||
|
|
||||||
|
public override bool Equals(DatItem other)
|
||||||
|
{
|
||||||
|
// If we don't have a sample, return false
|
||||||
|
if (ItemType != other.ItemType)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Otherwise, treat it as a PartFeature
|
||||||
|
PartFeature newOther = other as PartFeature;
|
||||||
|
|
||||||
|
// If the archive information matches
|
||||||
|
return (Name == newOther.Name && Value == newOther.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Filtering
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean a DatItem according to the cleaner
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cleaner">Cleaner to implement</param>
|
||||||
|
public override void Clean(Cleaner cleaner)
|
||||||
|
{
|
||||||
|
// Clean common items first
|
||||||
|
base.Clean(cleaner);
|
||||||
|
|
||||||
|
// If we're stripping unicode characters, strip item name
|
||||||
|
if (cleaner?.RemoveUnicode == true)
|
||||||
|
Name = Sanitizer.RemoveUnicodeCharacters(Name);
|
||||||
|
|
||||||
|
// If we are in NTFS trim mode, trim the game name
|
||||||
|
if (cleaner?.Trim == true)
|
||||||
|
{
|
||||||
|
// Windows max name length is 260
|
||||||
|
int usableLength = 260 - Machine.Name.Length - (cleaner.Root?.Length ?? 0);
|
||||||
|
if (Name.Length > usableLength)
|
||||||
|
{
|
||||||
|
string ext = Path.GetExtension(Name);
|
||||||
|
Name = Name.Substring(0, usableLength - ext.Length);
|
||||||
|
Name += ext;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <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 item name
|
||||||
|
if (filter.DatItem_Name.MatchesPositiveSet(Name) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Name.MatchesNegativeSet(Name) == true)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Filter on info value
|
||||||
|
if (filter.DatItem_Value.MatchesPositiveSet(Value) == false)
|
||||||
|
return false;
|
||||||
|
if (filter.DatItem_Value.MatchesNegativeSet(Value) == 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_Name))
|
||||||
|
Name = null;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Value))
|
||||||
|
Value = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Set internal names to match One Rom Per Game (ORPG) logic
|
||||||
|
/// </summary>
|
||||||
|
public override void SetOneRomPerGame()
|
||||||
|
{
|
||||||
|
string[] splitname = Name.Split('.');
|
||||||
|
Machine.Name += $"/{string.Join(".", splitname.Take(splitname.Length > 1 ? splitname.Length - 1 : 1))}";
|
||||||
|
Name = Path.GetFileName(Name);
|
||||||
|
}
|
||||||
|
|
||||||
|
#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 PartFeature to replace from, ignore specific fields
|
||||||
|
if (item.ItemType != ItemType.PartFeature)
|
||||||
|
return;
|
||||||
|
|
||||||
|
// Cast for easier access
|
||||||
|
PartFeature newItem = item as PartFeature;
|
||||||
|
|
||||||
|
// Replace the fields
|
||||||
|
if (fields.Contains(Field.DatItem_Name))
|
||||||
|
Name = newItem.Name;
|
||||||
|
|
||||||
|
if (fields.Contains(Field.DatItem_Value))
|
||||||
|
Value = newItem.Value;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,9 +1,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
using SabreTools.Library.Filtering;
|
using SabreTools.Library.Filtering;
|
||||||
using SabreTools.Library.Tools;
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace SabreTools.Library.DatItems
|
namespace SabreTools.Library.DatItems
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
using SabreTools.Library.Filtering;
|
using SabreTools.Library.Filtering;
|
||||||
using Newtonsoft.Json;
|
|
||||||
using SabreTools.Library.Tools;
|
using SabreTools.Library.Tools;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace SabreTools.Library.DatItems
|
namespace SabreTools.Library.DatItems
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
using SabreTools.Library.Filtering;
|
using SabreTools.Library.Filtering;
|
||||||
using Newtonsoft.Json;
|
|
||||||
using SabreTools.Library.Tools;
|
using SabreTools.Library.Tools;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace SabreTools.Library.DatItems
|
namespace SabreTools.Library.DatItems
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,9 +11,9 @@ namespace SabreTools.Library.Filtering
|
|||||||
/// Represents the filtering operations that need to be performed on a set of items, usually a DAT
|
/// Represents the filtering operations that need to be performed on a set of items, usually a DAT
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// TODO: Can clever use of Filtering allow for easier external splitting methods?
|
/// TODO: Can clever use of Filtering allow for easier external splitting methods?
|
||||||
/// TODO: Field name for filter population needs to be overhauled
|
|
||||||
public class Filter
|
public class Filter
|
||||||
{
|
{
|
||||||
|
// TODO: Reorder once all reorganization is done
|
||||||
#region Fields
|
#region Fields
|
||||||
|
|
||||||
#region Machine Filters
|
#region Machine Filters
|
||||||
|
|||||||
@@ -1650,6 +1650,9 @@ namespace SabreTools.Library.Tools
|
|||||||
return ItemType.Location;
|
return ItemType.Location;
|
||||||
case "media":
|
case "media":
|
||||||
return ItemType.Media;
|
return ItemType.Media;
|
||||||
|
case "partfeature":
|
||||||
|
case "part_feature":
|
||||||
|
return ItemType.PartFeature;
|
||||||
case "port":
|
case "port":
|
||||||
return ItemType.Port;
|
return ItemType.Port;
|
||||||
case "ramoption":
|
case "ramoption":
|
||||||
@@ -1700,6 +1703,8 @@ namespace SabreTools.Library.Tools
|
|||||||
"instance" => ItemType.Instance,
|
"instance" => ItemType.Instance,
|
||||||
"location" => ItemType.Location,
|
"location" => ItemType.Location,
|
||||||
"media" => ItemType.Media,
|
"media" => ItemType.Media,
|
||||||
|
"partfeature" => ItemType.PartFeature,
|
||||||
|
"part_feature" => ItemType.PartFeature,
|
||||||
"port" => ItemType.Port,
|
"port" => ItemType.Port,
|
||||||
"ramoption" => ItemType.RamOption,
|
"ramoption" => ItemType.RamOption,
|
||||||
"release" => ItemType.Release,
|
"release" => ItemType.Release,
|
||||||
@@ -2297,6 +2302,8 @@ namespace SabreTools.Library.Tools
|
|||||||
return "location";
|
return "location";
|
||||||
case ItemType.Media:
|
case ItemType.Media:
|
||||||
return "media";
|
return "media";
|
||||||
|
case ItemType.PartFeature:
|
||||||
|
return "part_feature";
|
||||||
case ItemType.Port:
|
case ItemType.Port:
|
||||||
return "port";
|
return "port";
|
||||||
case ItemType.RamOption:
|
case ItemType.RamOption:
|
||||||
@@ -2347,6 +2354,7 @@ namespace SabreTools.Library.Tools
|
|||||||
ItemType.Instance => "instance",
|
ItemType.Instance => "instance",
|
||||||
ItemType.Location => "location",
|
ItemType.Location => "location",
|
||||||
ItemType.Media => "media",
|
ItemType.Media => "media",
|
||||||
|
ItemType.PartFeature => "part_feature",
|
||||||
ItemType.Port => "port",
|
ItemType.Port => "port",
|
||||||
ItemType.RamOption => "ramoption",
|
ItemType.RamOption => "ramoption",
|
||||||
ItemType.Release => "release",
|
ItemType.Release => "release",
|
||||||
|
|||||||
Reference in New Issue
Block a user