update
This commit is contained in:
parent
ea52c2128b
commit
c7c17002dd
@ -3,18 +3,24 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.11.35312.102
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EscudeTools", "EscudeTools\EscudeTools.csproj", "{3DD9B6A4-5DD0-43FA-92EF-33DED4622A2B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EscudeTools", "EscudeTools\EscudeTools.csproj", "{3DD9B6A4-5DD0-43FA-92EF-33DED4622A2B}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x64 = Debug|x64
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x64 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{3DD9B6A4-5DD0-43FA-92EF-33DED4622A2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{3DD9B6A4-5DD0-43FA-92EF-33DED4622A2B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3DD9B6A4-5DD0-43FA-92EF-33DED4622A2B}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{3DD9B6A4-5DD0-43FA-92EF-33DED4622A2B}.Debug|x64.Build.0 = Debug|x64
|
||||
{3DD9B6A4-5DD0-43FA-92EF-33DED4622A2B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3DD9B6A4-5DD0-43FA-92EF-33DED4622A2B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{3DD9B6A4-5DD0-43FA-92EF-33DED4622A2B}.Release|x64.ActiveCfg = Release|x64
|
||||
{3DD9B6A4-5DD0-43FA-92EF-33DED4622A2B}.Release|x64.Build.0 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
@ -5,6 +5,23 @@
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<Platforms>AnyCPU;x64</Platforms>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
<DebugType>portable</DebugType>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<DebugType>portable</DebugType>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||
<DebugType>portable</DebugType>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<DebugType>portable</DebugType>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -1,4 +1,5 @@
|
||||
using Microsoft.Data.Sqlite;
|
||||
using System.Data;
|
||||
|
||||
namespace EscudeTools
|
||||
{
|
||||
@ -31,6 +32,9 @@ namespace EscudeTools
|
||||
case "-f":
|
||||
RepackMdb(args[1]);
|
||||
break;
|
||||
//case "-s1": 这是一个坏主意
|
||||
// StProcessS1(args[1]);
|
||||
// break;
|
||||
default:
|
||||
InvalidArgument();
|
||||
break;
|
||||
@ -118,6 +122,7 @@ namespace EscudeTools
|
||||
}
|
||||
else
|
||||
InvalidArgument();
|
||||
Console.WriteLine("Press any key to exit.");
|
||||
Console.ReadKey();
|
||||
}
|
||||
private static void StProcess(string v1, string v2)
|
||||
@ -204,7 +209,7 @@ namespace EscudeTools
|
||||
}
|
||||
List<StTable> stts = [];
|
||||
Face[] faces = new Face[32];
|
||||
using (var command = new SqliteCommand($"SELECT * FROM {foundTN[1]};", connection))
|
||||
using (var command = new SqliteCommand($"SELECT * FROM {foundTN[0]};", connection))
|
||||
{
|
||||
using var reader = command.ExecuteReader();
|
||||
while (reader.Read())
|
||||
@ -213,20 +218,21 @@ namespace EscudeTools
|
||||
continue;
|
||||
stts.Add(new StTable
|
||||
{
|
||||
name = reader.GetString(0),
|
||||
file = reader.GetString(1),
|
||||
option = reader.GetString(2).Split(' '),
|
||||
coverd = (uint)reader.GetInt32(3),
|
||||
filter = (uint)reader.GetInt32(4),
|
||||
face = (uint)reader.GetInt32(5),
|
||||
id = (uint)reader.GetInt32(6),
|
||||
loc = (uint)reader.GetInt32(7),
|
||||
order = reader.GetInt32(8),
|
||||
link = (uint)reader.GetInt32(9)
|
||||
name = reader["ID_44"].ToString() ?? "",
|
||||
file = reader["ファイル_44"].ToString() ?? "",
|
||||
option = (reader["オプション_44"].ToString() ?? "").Split(' '),
|
||||
//coverd = (uint)reader.GetInt32(3),
|
||||
//filter = (uint)reader.GetInt32(4),
|
||||
face = (uint)reader.GetInt32("表情_14"),
|
||||
//id = (uint)reader.GetInt32(6),
|
||||
//loc = (uint)reader.GetInt32(7),
|
||||
order = reader.GetInt32("CG鑑賞_14"),
|
||||
//link = (uint)reader.GetInt32(9)
|
||||
});
|
||||
}
|
||||
}
|
||||
using (var command = new SqliteCommand($"SELECT * FROM {foundTN[2]};", connection))
|
||||
List<string> fa = [];
|
||||
using (var command = new SqliteCommand($"SELECT * FROM {foundTN[1]};", connection))
|
||||
{
|
||||
using var reader = command.ExecuteReader();
|
||||
while (reader.Read())
|
||||
@ -242,7 +248,6 @@ namespace EscudeTools
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
string[] files = Directory.GetFiles(v1, "*.lsf", SearchOption.AllDirectories);
|
||||
LsfManager lm = new();
|
||||
foreach (string file in files)
|
||||
@ -258,6 +263,7 @@ namespace EscudeTools
|
||||
string outputDir = Path.Combine(Path.GetDirectoryName(v1), "Output");
|
||||
if (!Directory.Exists(outputDir))
|
||||
Directory.CreateDirectory(outputDir);
|
||||
|
||||
var parallelOptions = new ParallelOptions
|
||||
{
|
||||
MaxDegreeOfParallelism = 6 // 设置最大并行线程数
|
||||
@ -284,15 +290,21 @@ namespace EscudeTools
|
||||
pendingListFn.Add(lsfData.lli[i].nameStr);
|
||||
}
|
||||
}
|
||||
pendingList = TableManagercs.OrderLayer(pendingList, pendingListFn);
|
||||
//pendingList = TableManagercs.OrderLayer(pendingList, pendingListFn);
|
||||
int n = 0;
|
||||
foreach (string o in faces[(int)stt.face].faceOptions)
|
||||
{
|
||||
List<int> pendingListCopy = new(pendingList);
|
||||
List<string> pendingListFnCopy = new(pendingListFn);
|
||||
List<int> t = TableManagercs.ParseOptions(lsfData, o);
|
||||
if (t.Count == 0)
|
||||
continue;
|
||||
foreach (int i in t)
|
||||
{
|
||||
pendingListFnCopy.Add(lsfData.lli[i].nameStr);
|
||||
}
|
||||
pendingListCopy.AddRange(t);
|
||||
pendingListCopy = TableManagercs.OrderLayer(pendingListCopy, pendingListFnCopy);
|
||||
if (!ImageManager.Process(lsfData, [.. pendingListCopy], targetFilename + $"_{n++}.png"))
|
||||
throw new Exception("Process Fail");
|
||||
else
|
||||
@ -368,16 +380,17 @@ namespace EscudeTools
|
||||
continue;
|
||||
evts.Add(new EvTable
|
||||
{
|
||||
name = reader.GetString(0),
|
||||
file = reader.GetString(1),
|
||||
option = reader.GetString(2).Split(' '),
|
||||
coverd = (uint)reader.GetInt32(3),
|
||||
filter = (uint)reader.GetInt32(4),
|
||||
color = (uint)reader.GetInt32(5),
|
||||
id = (uint)reader.GetInt32(6),
|
||||
loc = (uint)reader.GetInt32(7),
|
||||
order = reader.GetInt32(8),
|
||||
link = (uint)reader.GetInt32(9)
|
||||
name = reader["ID_44"].ToString() ?? "",
|
||||
file = reader["ファイル_44"].ToString() ?? "",
|
||||
option = (reader["オプション_44"].ToString() ?? "").Split(' '),
|
||||
//coverd = (uint)reader.GetInt32(3),
|
||||
//filter = (uint)reader.GetInt32(4),
|
||||
//color = (uint)reader.GetInt32(5),
|
||||
//id = (uint)reader.GetInt32(6),
|
||||
//loc = (uint)reader.GetInt32(7),
|
||||
order = reader.GetInt32("CG鑑賞_14"),
|
||||
//link = (uint)reader.GetInt32(9)
|
||||
//向后兼容,少读点
|
||||
});
|
||||
}
|
||||
}
|
||||
@ -655,6 +668,14 @@ namespace EscudeTools
|
||||
Console.WriteLine("-f: repack SQLite to db_*.bin");
|
||||
Console.WriteLine("Restores all SQLite databases in the path to db_*.bin files.");
|
||||
Console.WriteLine();
|
||||
Console.WriteLine("EscudeTools.exe -c <EvPath> <db_graphics.db Path>");
|
||||
Console.WriteLine("-c: compose EV image");
|
||||
Console.WriteLine("Provide a set of EV images of the same size and the db_graphics.db to compose the images.");
|
||||
Console.WriteLine();
|
||||
Console.WriteLine("EscudeTools.exe -s <StPath> <db_graphics.db Path>");
|
||||
Console.WriteLine("-s: compose ST image");
|
||||
Console.WriteLine("Provide a set of ST images of the same size and the db_graphics.db to compose the images.");
|
||||
Console.WriteLine();
|
||||
Console.WriteLine("EscudeTools.exe -h");
|
||||
Console.WriteLine("-h: print help info");
|
||||
}
|
||||
@ -662,3 +683,4 @@ namespace EscudeTools
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
{
|
||||
"profiles": {
|
||||
"EscudeTools": {
|
||||
"commandName": "Project",
|
||||
"commandLineArgs": "G:\\x221.local\\archived\\femme_fatale\\output\r\n\"G:\\x221.local\\lab3\\Haison\\output\\ev\\db_graphics.db\""
|
||||
"commandName": "Project"
|
||||
}
|
||||
}
|
||||
}
|
@ -54,6 +54,8 @@ namespace EscudeTools
|
||||
}
|
||||
}
|
||||
}
|
||||
if (results.Count == 0)
|
||||
return [];
|
||||
List<int> tmp = [];
|
||||
List<string> tmpS = [];
|
||||
for (int i = 0; i < ld.lli.Length; i++)
|
||||
|
Loading…
Reference in New Issue
Block a user