Move printing into IRDKit

This commit is contained in:
Deterous
2023-11-16 11:58:27 +13:00
parent e665391e47
commit f86a89c04a
7 changed files with 40 additions and 65 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
<PackAsTool>true</PackAsTool>
<ToolCommandName>irdkit</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
<Version>0.1.0</Version>
+34 -3
View File
@@ -33,10 +33,11 @@ namespace IRDKit
}
// IRD Info
[Verb("info")]
public class InfoOptions
{
[Value(0, Required = true, HelpText = "Path to the IRD file to be printed")]
public string IRDPath { get; set; }
[Value(0, Required = true, HelpText = "Path to the IRD or ISO file to be printed")]
public string Path { get; set; }
}
public static void Main(string[] args)
@@ -105,7 +106,37 @@ namespace IRDKit
}
break;
case InfoOptions info:
//
bool isISO = false;
if (isISO)
{
string filename = "./PS3_DISC.SFB";
if (File.Exists(filename))
{
PS3_DiscSFB ps3_DiscSFB = new(filename);
Console.WriteLine("PS3_DISC.SFB for: " + ps3_DiscSFB.Field["TITLE_ID"]);
ps3_DiscSFB.Print();
}
else
{
Console.WriteLine(filename + " not found");
}
filename = "./PARAM.SFO";
if (File.Exists(filename))
{
ParamSFO paramSFO = new(filename);
Console.WriteLine("PARAM.SFO for: " + paramSFO["TITLE_ID"]);
paramSFO.Print();
}
else
{
Console.WriteLine(filename + " not found");
}
}
else
{
IRD.Read(info.Path).Print();
}
break;
}
}