2021-02-01 11:43:38 -08:00
using System ;
using System.Collections.Generic ;
2020-08-21 10:15:38 -07:00
2021-02-01 11:43:38 -08:00
using SabreTools.Core ;
2020-12-08 16:37:08 -08:00
using SabreTools.Core.Tools ;
2021-02-01 11:43:38 -08:00
using SabreTools.DatFiles ;
using SabreTools.DatItems ;
2020-12-07 14:29:45 -08:00
using SabreTools.Logging ;
2020-08-21 10:54:51 -07:00
2020-12-08 13:48:57 -08:00
namespace SabreTools.Filtering
2020-08-21 10:15:38 -07:00
{
public class ExtraIni
{
2020-08-21 10:38:42 -07:00
#region Fields
2020-08-21 10:15:38 -07:00
/// <summary>
/// List of extras to apply
/// </summary>
public List < ExtraIniItem > Items { get ; set ; } = new List < ExtraIniItem > ( ) ;
2020-08-21 10:38:42 -07:00
#endregion
2020-10-07 15:42:30 -07:00
#region Logging
/// <summary>
/// Logging object
/// </summary>
2020-10-07 16:37:10 -07:00
private readonly Logger logger ;
#endregion
#region Constructors
/// <summary>
/// Constructor
/// </summary>
public ExtraIni ( )
{
logger = new Logger ( this ) ;
}
2020-10-07 15:42:30 -07:00
#endregion
2021-02-01 11:43:38 -08:00
#region Population
2020-08-21 10:38:42 -07:00
/// <summary>
/// Populate item using field:file inputs
/// </summary>
/// <param name="inputs">Field and file combinations</param>
public void PopulateFromList ( List < string > inputs )
{
foreach ( string input in inputs )
{
ExtraIniItem item = new ExtraIniItem ( ) ;
2020-08-21 10:54:51 -07:00
// If we don't even have a possible field and file combination
if ( ! input . Contains ( ":" ) )
{
2020-10-07 15:42:30 -07:00
logger . Warning ( $"'{input}` is not a valid INI extras string. Valid INI extras strings are of the form 'key:value'. Please refer to README.1ST or the help feature for more details." ) ;
2020-08-21 10:54:51 -07:00
return ;
}
string inputTrimmed = input . Trim ( '"' , ' ' , '\t' ) ;
string fieldString = inputTrimmed . Split ( ':' ) [ 0 ] . ToLowerInvariant ( ) . Trim ( '"' , ' ' , '\t' ) ;
2020-12-14 16:01:28 -08:00
string fileString = inputTrimmed [ ( fieldString . Length + 1 ) . . ] . Trim ( '"' , ' ' , '\t' ) ;
2020-08-21 10:54:51 -07:00
2020-12-13 13:22:06 -08:00
item . DatItemField = fieldString . AsDatItemField ( ) ;
item . MachineField = fieldString . AsMachineField ( ) ;
2020-08-21 10:54:51 -07:00
if ( item . PopulateFromFile ( fileString ) )
Items . Add ( item ) ;
2020-08-21 10:38:42 -07:00
}
}
#endregion
2021-02-01 11:43:38 -08:00
#region Running
/// <summary>
/// Apply a set of Extra INIs on the DatFile
/// </summary>
/// <param name="datFile">Current DatFile object to run operations on</param>
/// <param name="throwOnError">True if the error that is thrown should be thrown back to the caller, false otherwise</param>
/// <returns>True if the extras were applied, false on error</returns>
public bool ApplyExtras ( DatFile datFile , bool throwOnError = false )
{
try
{
// Bucket by game first
datFile . Items . BucketBy ( ItemKey . Machine , DedupeType . None ) ;
// Create a new set of mappings based on the items
var machineMap = new Dictionary < string , Dictionary < MachineField , string > > ( ) ;
var datItemMap = new Dictionary < string , Dictionary < DatItemField , string > > ( ) ;
// Loop through each of the extras
foreach ( ExtraIniItem item in Items )
{
foreach ( var mapping in item . Mappings )
{
string key = mapping . Key ;
List < string > machineNames = mapping . Value ;
// Loop through the machines and add the new mappings
foreach ( string machine in machineNames )
{
if ( item . MachineField ! = MachineField . NULL )
{
if ( ! machineMap . ContainsKey ( machine ) )
machineMap [ machine ] = new Dictionary < MachineField , string > ( ) ;
machineMap [ machine ] [ item . MachineField ] = key ;
}
else if ( item . DatItemField ! = DatItemField . NULL )
{
if ( ! datItemMap . ContainsKey ( machine ) )
datItemMap [ machine ] = new Dictionary < DatItemField , string > ( ) ;
datItemMap [ machine ] [ item . DatItemField ] = key ;
}
}
}
}
// Now apply the new set of Machine mappings
foreach ( string key in machineMap . Keys )
{
// If the key doesn't exist, continue
if ( ! datFile . Items . ContainsKey ( key ) )
continue ;
List < DatItem > datItems = datFile . Items [ key ] ;
2021-02-01 14:07:50 -08:00
Setter setter = new Setter { MachineMappings = machineMap [ key ] } ;
2021-02-01 11:43:38 -08:00
foreach ( var datItem in datItems )
{
2021-02-01 14:07:50 -08:00
setter . SetFields ( datItem . Machine ) ;
2021-02-01 11:43:38 -08:00
}
}
// Now apply the new set of DatItem mappings
foreach ( string key in datItemMap . Keys )
{
// If the key doesn't exist, continue
if ( ! datFile . Items . ContainsKey ( key ) )
continue ;
List < DatItem > datItems = datFile . Items [ key ] ;
2021-02-01 14:07:50 -08:00
Setter setter = new Setter { DatItemMappings = datItemMap [ key ] } ;
2021-02-01 11:43:38 -08:00
foreach ( var datItem in datItems )
{
2021-02-01 14:07:50 -08:00
setter . SetFields ( datItem ) ;
2021-02-01 11:43:38 -08:00
}
}
}
catch ( Exception ex ) when ( ! throwOnError )
{
logger . Error ( ex ) ;
return false ;
}
return true ;
}
#endregion
2020-08-21 10:15:38 -07:00
}
}