Promote Sound

This commit is contained in:
Matt Nadareski
2020-09-02 12:51:21 -07:00
parent 7aa042f76d
commit 07cf2135ff
11 changed files with 251 additions and 105 deletions

View File

@@ -167,6 +167,12 @@ namespace SabreTools.Library.DatFiles
[JsonIgnore] [JsonIgnore]
public long SoftwareListCount { get; private set; } = 0; public long SoftwareListCount { get; private set; } = 0;
/// <summary>
/// Number of Sound items
/// </summary>
[JsonIgnore]
public long SoundCount { get; private set; } = 0;
/// <summary> /// <summary>
/// Number of machines /// Number of machines
/// </summary> /// </summary>
@@ -569,6 +575,9 @@ namespace SabreTools.Library.DatFiles
case ItemType.SoftwareList: case ItemType.SoftwareList:
SoftwareListCount++; SoftwareListCount++;
break; break;
case ItemType.Sound:
SoundCount++;
break;
} }
} }
@@ -719,6 +728,9 @@ namespace SabreTools.Library.DatFiles
case ItemType.SoftwareList: case ItemType.SoftwareList:
SoftwareListCount--; SoftwareListCount--;
break; break;
case ItemType.Sound:
SoundCount--;
break;
} }
} }

View File

@@ -256,6 +256,9 @@ namespace SabreTools.Library.DatFiles
case ItemType.SoftwareList: case ItemType.SoftwareList:
datItem = datItemObj.ToObject<DatItems.SoftwareList>(); datItem = datItemObj.ToObject<DatItems.SoftwareList>();
break; break;
case ItemType.Sound:
datItem = datItemObj.ToObject<DatItems.Sound>();
break;
} }
} }

View File

@@ -369,7 +369,21 @@ namespace SabreTools.Library.DatFiles
}); });
reader.Read(); reader.Read();
break;
case "sound":
datItems.Add(new Sound
{
Channels = reader.GetAttribute("channels"),
Source = new Source
{
Index = indexId,
Name = filename,
},
});
reader.Read();
break; break;
case "display": case "display":
@@ -398,19 +412,6 @@ namespace SabreTools.Library.DatFiles
reader.Read(); reader.Read();
break; break;
case "sound":
var sound = new Sound();
sound.Channels = reader.GetAttribute("channels");
// Ensure the list exists
if (machine.Sounds == null)
machine.Sounds = new List<Sound>();
machine.Sounds.Add(sound);
reader.Read();
break;
case "condition": case "condition":
var condition = new Condition(); var condition = new Condition();
condition.Tag = reader.GetAttribute("tag"); condition.Tag = reader.GetAttribute("tag");
@@ -1223,18 +1224,6 @@ namespace SabreTools.Library.DatFiles
xtw.WriteEndElement(); xtw.WriteEndElement();
} }
} }
if (datItem.Machine.Sounds != null)
{
foreach (var sound in datItem.Machine.Sounds)
{
xtw.WriteStartElement("sound");
xtw.WriteOptionalAttributeString("channels", sound.Channels);
// End sound
xtw.WriteEndElement();
}
}
if (datItem.Machine.Conditions != null) if (datItem.Machine.Conditions != null)
{ {
foreach (var condition in datItem.Machine.Conditions) foreach (var condition in datItem.Machine.Conditions)
@@ -1653,6 +1642,13 @@ namespace SabreTools.Library.DatFiles
xtw.WriteOptionalAttributeString("filter", softwareList.Filter); xtw.WriteOptionalAttributeString("filter", softwareList.Filter);
xtw.WriteEndElement(); xtw.WriteEndElement();
break; break;
case ItemType.Sound:
var sound = datItem as Sound;
xtw.WriteStartElement("sound");
xtw.WriteOptionalAttributeString("channels", sound.Channels);
xtw.WriteEndElement();
break;
} }
xtw.Flush(); xtw.Flush();

View File

@@ -1489,6 +1489,14 @@ namespace SabreTools.Library.DatFiles
xtw.WriteOptionalAttributeString("sha512", softwareList.Filter); xtw.WriteOptionalAttributeString("sha512", softwareList.Filter);
xtw.WriteEndElement(); xtw.WriteEndElement();
break; break;
case ItemType.Sound:
var sound = datItem as Sound;
xtw.WriteStartElement("file");
xtw.WriteAttributeString("type", "sound");
xtw.WriteOptionalAttributeString("channels", sound.Channels);
xtw.WriteEndElement();
break;
} }
xtw.Flush(); xtw.Flush();

View File

@@ -311,17 +311,6 @@ namespace SabreTools.Library.DatItems
public bool? Default { get; set; } public bool? Default { get; set; }
} }
/// <summary>
/// Represents one ListXML sound
/// </summary>
/// TODO: Promote to DatItem level
[JsonObject("sound")]
public class Sound
{
[JsonProperty("channels")]
public string Channels { get; set; } // TODO: Int32?
}
#endregion #endregion
#region OpenMSX #region OpenMSX

View File

@@ -503,6 +503,9 @@ namespace SabreTools.Library.DatItems
case ItemType.SoftwareList: case ItemType.SoftwareList:
return new SoftwareList(); return new SoftwareList();
case ItemType.Sound:
return new Sound();
default: default:
return new Rom(); return new Rom();
} }
@@ -525,6 +528,7 @@ namespace SabreTools.Library.DatItems
ItemType.Sample => new Sample(), ItemType.Sample => new Sample(),
ItemType.Slot => new Slot(), ItemType.Slot => new Slot(),
ItemType.SoftwareList => new SoftwareList(), ItemType.SoftwareList => new SoftwareList(),
ItemType.Sound => new Sound(),
_ => new Rom(), _ => new Rom(),
}; };
#endif #endif

View File

@@ -146,10 +146,6 @@ namespace SabreTools.Library.DatItems
Machine_Display_VBEnd, Machine_Display_VBEnd,
Machine_Display_VBStart, Machine_Display_VBStart,
// Sounds
Machine_Sounds,
Machine_Sound_Channels,
// Conditions // Conditions
Machine_Conditions, Machine_Conditions,
Machine_Condition_Tag, Machine_Condition_Tag,
@@ -398,6 +394,9 @@ namespace SabreTools.Library.DatItems
DatItem_SoftwareListStatus, DatItem_SoftwareListStatus,
DatItem_Filter, DatItem_Filter,
// Sounds
DatItem_Channels,
#endregion #endregion
#endregion // Item-Specific #endregion // Item-Specific
@@ -446,6 +445,7 @@ namespace SabreTools.Library.DatItems
Sample, Sample,
Slot, Slot,
SoftwareList, SoftwareList,
Sound,
Blank = 99, // This is not a real type, only used internally Blank = 99, // This is not a real type, only used internally
} }

View File

@@ -158,12 +158,6 @@ namespace SabreTools.Library.DatItems
[JsonProperty("displays", DefaultValueHandling = DefaultValueHandling.Ignore)] [JsonProperty("displays", DefaultValueHandling = DefaultValueHandling.Ignore)]
public List<Display> Displays { get; set; } = null; public List<Display> Displays { get; set; } = null;
/// <summary>
/// List of associated sounds
/// </summary>
[JsonProperty("sounds", DefaultValueHandling = DefaultValueHandling.Ignore)]
public List<Sound> Sounds { get; set; } = null;
/// <summary> /// <summary>
/// List of associated conditions /// List of associated conditions
/// </summary> /// </summary>
@@ -553,7 +547,6 @@ namespace SabreTools.Library.DatItems
SourceFile = this.SourceFile, SourceFile = this.SourceFile,
Runnable = this.Runnable, Runnable = this.Runnable,
Displays = this.Displays, Displays = this.Displays,
Sounds = this.Sounds,
Conditions = this.Conditions, Conditions = this.Conditions,
Inputs = this.Inputs, Inputs = this.Inputs,
Ports = this.Ports, Ports = this.Ports,
@@ -1039,34 +1032,6 @@ namespace SabreTools.Library.DatItems
#endregion #endregion
#region Sounds
// Machine_Sounds
if (filter.Machine_Sounds.MatchesNeutral(null, Sounds?.Any() ?? null) == false)
return false;
// Machine_Sound_Channels
if (Sounds?.Any() == true)
{
bool anyPositive = false;
bool anyNegative = false;
foreach (var sound in Sounds)
{
if (filter.Machine_Sound_Channels.MatchesPositiveSet(sound?.Channels) != false)
anyPositive = true;
if (filter.Machine_Sound_Channels.MatchesNegativeSet(sound?.Channels) == true)
anyNegative = true;
}
if (!anyPositive)
return false;
if (anyNegative)
return false;
}
#endregion
#region Conditions #region Conditions
// Machine_Conditions // Machine_Conditions

View File

@@ -0,0 +1,173 @@
using System.Collections.Generic;
using System.Linq;
using SabreTools.Library.Filtering;
using Newtonsoft.Json;
namespace SabreTools.Library.DatItems
{
/// <summary>
/// Represents the sound output for a machine
/// </summary>
[JsonObject("sound")]
public class Sound : DatItem
{
#region Fields
/// <summary>
/// Number of channels
/// </summary>
[JsonProperty("channels")]
public string Channels { get; set; } // TODO: Int32?
#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 Sample-specific fields
if (mappings.Keys.Contains(Field.DatItem_Channels))
Channels = mappings[Field.DatItem_Channels];
}
#endregion
#region Constructors
/// <summary>
/// Create a default, empty Sound object
/// </summary>
public Sound()
{
ItemType = ItemType.Sound;
}
#endregion
#region Cloning Methods
public override object Clone()
{
return new Sound()
{
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,
Channels = this.Channels,
};
}
#endregion
#region Comparision Methods
public override bool Equals(DatItem other)
{
// If we don't have a Sound, return false
if (ItemType != other.ItemType)
return false;
// Otherwise, treat it as a Sound
Sound newOther = other as Sound;
// If the Sound information matches
return (Channels == newOther.Channels);
}
#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 channels
if (filter.DatItem_Channels.MatchesPositiveSet(Channels) == false)
return false;
if (filter.DatItem_Channels.MatchesNegativeSet(Channels) == 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_Channels))
Channels = 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 Sound to replace from, ignore specific fields
if (item.ItemType != ItemType.Sound)
return;
// Cast for easier access
Sound newItem = item as Sound;
// Replace the fields
if (fields.Contains(Field.DatItem_Channels))
Channels = newItem.Channels;
}
#endregion
}
}

View File

@@ -68,10 +68,6 @@ namespace SabreTools.Library.Filtering
public FilterItem<string> Machine_Display_VBEnd { get; private set; } = new FilterItem<string>(); public FilterItem<string> Machine_Display_VBEnd { get; private set; } = new FilterItem<string>();
public FilterItem<string> Machine_Display_VBStart { get; private set; } = new FilterItem<string>(); public FilterItem<string> Machine_Display_VBStart { get; private set; } = new FilterItem<string>();
// Sounds
public FilterItem<bool?> Machine_Sounds { get; private set; } = new FilterItem<bool?>() { Neutral = null };
public FilterItem<string> Machine_Sound_Channels { get; private set; } = new FilterItem<string>();
// Conditions // Conditions
public FilterItem<bool?> Machine_Conditions { get; private set; } = new FilterItem<bool?>() { Neutral = null }; public FilterItem<bool?> Machine_Conditions { get; private set; } = new FilterItem<bool?>() { Neutral = null };
public FilterItem<string> Machine_Condition_Tag { get; private set; } = new FilterItem<string>(); public FilterItem<string> Machine_Condition_Tag { get; private set; } = new FilterItem<string>();
@@ -320,6 +316,9 @@ namespace SabreTools.Library.Filtering
public FilterItem<SoftwareListStatus> DatItem_SoftwareListStatus { get; private set; } = new FilterItem<SoftwareListStatus>() { Positive = SoftwareListStatus.NULL, Negative = SoftwareListStatus.NULL }; public FilterItem<SoftwareListStatus> DatItem_SoftwareListStatus { get; private set; } = new FilterItem<SoftwareListStatus>() { Positive = SoftwareListStatus.NULL, Negative = SoftwareListStatus.NULL };
public FilterItem<string> DatItem_Filter { get; private set; } = new FilterItem<string>(); public FilterItem<string> DatItem_Filter { get; private set; } = new FilterItem<string>();
// Sound
public FilterItem<string> DatItem_Channels { get; private set; } = new FilterItem<string>();
#endregion #endregion
#endregion // Item-Specific #endregion // Item-Specific
@@ -653,21 +652,6 @@ namespace SabreTools.Library.Filtering
Machine_Display_VBStart.PositiveSet.Add(value); Machine_Display_VBStart.PositiveSet.Add(value);
break; break;
// Sounds
case Field.Machine_Sounds:
if (negate || value.Equals("false", StringComparison.OrdinalIgnoreCase))
Machine_Sounds.Neutral = false;
else
Machine_Sounds.Neutral = true;
break;
case Field.Machine_Sound_Channels:
if (negate)
Machine_Sound_Channels.NegativeSet.Add(value);
else
Machine_Sound_Channels.PositiveSet.Add(value);
break;
// Conditions // Conditions
case Field.Machine_Conditions: case Field.Machine_Conditions:
if (negate || value.Equals("false", StringComparison.OrdinalIgnoreCase)) if (negate || value.Equals("false", StringComparison.OrdinalIgnoreCase))
@@ -1802,6 +1786,14 @@ namespace SabreTools.Library.Filtering
DatItem_Filter.PositiveSet.Add(value); DatItem_Filter.PositiveSet.Add(value);
break; break;
// Sound
case Field.DatItem_Channels:
if (negate)
DatItem_Channels.NegativeSet.Add(value);
else
DatItem_Channels.PositiveSet.Add(value);
break;
#endregion #endregion
#endregion // Item-Specifics #endregion // Item-Specifics

View File

@@ -500,12 +500,6 @@ namespace SabreTools.Library.Tools
case "display_vbstart": case "display_vbstart":
return Field.Machine_Display_VBStart; return Field.Machine_Display_VBStart;
case "sounds":
return Field.Machine_Sounds;
case "sound_channels":
return Field.Machine_Sound_Channels;
case "conditions": case "conditions":
return Field.Machine_Conditions; return Field.Machine_Conditions;
@@ -1049,6 +1043,10 @@ namespace SabreTools.Library.Tools
case "filter": case "filter":
return Field.DatItem_Filter; return Field.DatItem_Filter;
// Sound
case "channels":
return Field.DatItem_Channels;
#endregion #endregion
#endregion // Item-Specific #endregion // Item-Specific
@@ -1584,6 +1582,8 @@ namespace SabreTools.Library.Tools
return ItemType.Slot; return ItemType.Slot;
case "softwarelist": case "softwarelist":
return ItemType.SoftwareList; return ItemType.SoftwareList;
case "sound":
return ItemType.Sound;
default: default:
return null; return null;
} }
@@ -1606,6 +1606,7 @@ namespace SabreTools.Library.Tools
"sample" => ItemType.Sample, "sample" => ItemType.Sample,
"slot" => ItemType.Slot, "slot" => ItemType.Slot,
"softwarelist" => ItemType.SoftwareList, "softwarelist" => ItemType.SoftwareList,
"sound" => ItemType.Sound,
_ => null, _ => null,
}; };
#endif #endif
@@ -2029,6 +2030,8 @@ namespace SabreTools.Library.Tools
return "slot"; return "slot";
case ItemType.SoftwareList: case ItemType.SoftwareList:
return "softwarelist"; return "softwarelist";
case ItemType.Sound:
return "sound";
default: default:
return null; return null;
} }
@@ -2051,6 +2054,7 @@ namespace SabreTools.Library.Tools
ItemType.Sample => "sample", ItemType.Sample => "sample",
ItemType.Slot => "slot", ItemType.Slot => "slot",
ItemType.SoftwareList => "softwarelist", ItemType.SoftwareList => "softwarelist",
ItemType.Sound => "sound",
_ => null, _ => null,
}; };
#endif #endif