mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-16 05:44:56 +00:00
222 lines
7.5 KiB
C#
222 lines
7.5 KiB
C#
using System;
|
|
#if NET20 || NET35
|
|
using System.Collections.Generic;
|
|
#else
|
|
using System.Collections.Concurrent;
|
|
#endif
|
|
using System.Reflection;
|
|
using SabreTools.RedumpLib.Data;
|
|
using RedumperReadMethod = MPF.ExecutionContexts.Redumper.ReadMethod;
|
|
using RedumperSectorOrder = MPF.ExecutionContexts.Redumper.SectorOrder;
|
|
|
|
namespace MPF.Frontend
|
|
{
|
|
public static class EnumExtensions
|
|
{
|
|
#region Convert to Long Name
|
|
|
|
/// <summary>
|
|
/// Long name method cache
|
|
/// </summary>
|
|
#if NET20 || NET35
|
|
private static readonly Dictionary<Type, MethodInfo?> LongNameMethods = [];
|
|
#else
|
|
private static readonly ConcurrentDictionary<Type, MethodInfo?> LongNameMethods = [];
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// Get the string representation of a generic enumerable value
|
|
/// </summary>
|
|
/// <param name="value">Enum value to convert</param>
|
|
/// <returns>String representation of that value if possible, empty string on error</returns>
|
|
public static string GetLongName(Enum value)
|
|
{
|
|
try
|
|
{
|
|
var sourceType = value.GetType();
|
|
sourceType = Nullable.GetUnderlyingType(sourceType) ?? sourceType;
|
|
|
|
if (!LongNameMethods.TryGetValue(sourceType, out var method))
|
|
{
|
|
method = typeof(Extensions).GetMethod("LongName", [typeof(Nullable<>).MakeGenericType(sourceType)]);
|
|
method ??= typeof(EnumExtensions).GetMethod("LongName", [typeof(Nullable<>).MakeGenericType(sourceType)]);
|
|
|
|
#if NET20 || NET35
|
|
LongNameMethods[sourceType] = method;
|
|
#else
|
|
LongNameMethods.TryAdd(sourceType, method);
|
|
#endif
|
|
}
|
|
|
|
if (method != null)
|
|
return method.Invoke(null, [value]) as string ?? string.Empty;
|
|
else
|
|
return string.Empty;
|
|
}
|
|
catch
|
|
{
|
|
// Converter is not implemented for the given type
|
|
return string.Empty;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the string representation of the InternalProgram enum values
|
|
/// </summary>
|
|
/// <param name="prog">InternalProgram value to convert</param>
|
|
/// <returns>String representing the value, if possible</returns>
|
|
public static string LongName(this InternalProgram? prog)
|
|
{
|
|
return prog switch
|
|
{
|
|
#region Dumping support
|
|
|
|
InternalProgram.Aaru => "Aaru",
|
|
InternalProgram.DiscImageCreator => "DiscImageCreator",
|
|
InternalProgram.Redumper => "Redumper",
|
|
|
|
#endregion
|
|
|
|
#region Verification support only
|
|
|
|
InternalProgram.CleanRip => "CleanRip",
|
|
InternalProgram.PS3CFW => "PS3 CFW",
|
|
InternalProgram.UmdImageCreator => "UmdImageCreator",
|
|
InternalProgram.XboxBackupCreator => "XboxBackupCreator",
|
|
|
|
#endregion
|
|
|
|
InternalProgram.NONE => "Unknown",
|
|
_ => "Unknown",
|
|
};
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the string representation of the RedumperReadMethod enum values
|
|
/// </summary>
|
|
/// <param name="method">RedumperReadMethod value to convert</param>
|
|
/// <returns>String representing the value, if possible</returns>
|
|
public static string LongName(this RedumperReadMethod? method)
|
|
{
|
|
return method switch
|
|
{
|
|
RedumperReadMethod.D8 => "D8",
|
|
RedumperReadMethod.BE => "BE",
|
|
RedumperReadMethod.BE_CDDA => "BE_CDDA",
|
|
|
|
RedumperReadMethod.NONE => "Default",
|
|
_ => "Unknown",
|
|
};
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the string representation of the RedumperSectorOrder enum values
|
|
/// </summary>
|
|
/// <param name="order">RedumperSectorOrder value to convert</param>
|
|
/// <returns>String representing the value, if possible</returns>
|
|
public static string LongName(this RedumperSectorOrder? order)
|
|
{
|
|
return order switch
|
|
{
|
|
RedumperSectorOrder.DATA_C2_SUB => "DATA_C2_SUB",
|
|
RedumperSectorOrder.DATA_SUB_C2 => "DATA_SUB_C2",
|
|
RedumperSectorOrder.DATA_SUB => "DATA_SUB",
|
|
RedumperSectorOrder.DATA_C2 => "DATA_C2",
|
|
|
|
RedumperSectorOrder.NONE => "Default",
|
|
_ => "Unknown",
|
|
};
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Convert from String
|
|
|
|
/// <summary>
|
|
/// Get the RedumperReadMethod enum value for a given string
|
|
/// </summary>
|
|
/// <param name="method">String value to convert</param>
|
|
/// <returns>RedumperReadMethod represented by the string, if possible</returns>
|
|
public static RedumperReadMethod ToRedumperReadMethod(this string? method)
|
|
{
|
|
return (method?.ToLowerInvariant()) switch
|
|
{
|
|
"d8" => RedumperReadMethod.D8,
|
|
"be" => RedumperReadMethod.BE,
|
|
"be_cdda"
|
|
or "be cdda"
|
|
or "be-cdda"
|
|
or "becdda" => RedumperReadMethod.BE_CDDA,
|
|
|
|
_ => RedumperReadMethod.NONE,
|
|
};
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the RedumperSectorOrder enum value for a given string
|
|
/// </summary>
|
|
/// <param name="order">String value to convert</param>
|
|
/// <returns>RedumperSectorOrder represented by the string, if possible</returns>
|
|
public static RedumperSectorOrder ToRedumperSectorOrder(this string? order)
|
|
{
|
|
return (order?.ToLowerInvariant()) switch
|
|
{
|
|
"data_c2_sub"
|
|
or "data c2 sub"
|
|
or "data-c2-sub"
|
|
or "datac2sub" => RedumperSectorOrder.DATA_C2_SUB,
|
|
"data_sub_c2"
|
|
or "data sub c2"
|
|
or "data-sub-c2"
|
|
or "datasubc2" => RedumperSectorOrder.DATA_SUB_C2,
|
|
"data_sub"
|
|
or "data sub"
|
|
or "data-sub"
|
|
or "datasub" => RedumperSectorOrder.DATA_SUB,
|
|
"data_c2"
|
|
or "data c2"
|
|
or "data-c2"
|
|
or "datac2" => RedumperSectorOrder.DATA_C2,
|
|
|
|
_ => RedumperSectorOrder.NONE,
|
|
};
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Functionality Support
|
|
|
|
/// <summary>
|
|
/// Get if a system requires an anti-modchip scan
|
|
/// </summary>
|
|
public static bool SupportsAntiModchipScans(this RedumpSystem? system)
|
|
{
|
|
return system switch
|
|
{
|
|
RedumpSystem.SonyPlayStation => true,
|
|
_ => false,
|
|
};
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get if a system requires a copy protection scan
|
|
/// </summary>
|
|
public static bool SupportsCopyProtectionScans(this RedumpSystem? system)
|
|
{
|
|
return system switch
|
|
{
|
|
RedumpSystem.AppleMacintosh => true,
|
|
RedumpSystem.EnhancedCD => true,
|
|
RedumpSystem.IBMPCcompatible => true,
|
|
RedumpSystem.PalmOS => true,
|
|
RedumpSystem.PocketPC => true,
|
|
RedumpSystem.RainbowDisc => true,
|
|
RedumpSystem.SonyElectronicBook => true,
|
|
_ => false,
|
|
};
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|