清理代码,有空再重新糊
This commit is contained in:
parent
fa77839893
commit
22e4ce06dd
@ -47,39 +47,18 @@ namespace EscudeLSF
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
string? workDirectory;
|
|
||||||
string? outputDirectory;
|
|
||||||
|
|
||||||
switch (args[0])
|
switch (args[0])
|
||||||
{
|
{
|
||||||
case "-h":
|
case "-h":
|
||||||
DisplayHelp();
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
case "-r":
|
case "-r":
|
||||||
case "-d":
|
case "-d":
|
||||||
case "-s":
|
case "-s":
|
||||||
workDirectory = GetWorkDirectory(args);
|
|
||||||
outputDirectory = GetOutputDirectory(workDirectory);
|
|
||||||
if (args[0] == "-d")
|
|
||||||
{
|
|
||||||
ProcessBatch(args[1], workDirectory, outputDirectory);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
CombineIMG(ReadLSF(args[1]), workDirectory, outputDirectory);
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
if (!IsValidFileArgument(args))
|
|
||||||
{
|
|
||||||
Console.WriteLine("Invalid arguments. Use -h for help.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
workDirectory = Path.GetDirectoryName(args[0]);
|
|
||||||
outputDirectory = GetOutputDirectory(workDirectory);
|
|
||||||
CombineIMG(ReadLSF(args[0]), workDirectory, outputDirectory);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -94,184 +73,5 @@ namespace EscudeLSF
|
|||||||
Console.WriteLine(" -h Display help info");
|
Console.WriteLine(" -h Display help info");
|
||||||
}
|
}
|
||||||
|
|
||||||
static string GetOutputDirectory(string workDirectory)
|
|
||||||
{
|
|
||||||
string outputDirectory = Path.Combine(Path.GetDirectoryName(workDirectory), "output");
|
|
||||||
if (!Directory.Exists(outputDirectory))
|
|
||||||
{
|
|
||||||
Directory.CreateDirectory(outputDirectory);
|
|
||||||
}
|
|
||||||
return outputDirectory;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void ProcessBatch(string directory, string workDirectory, string outputDirectory)
|
|
||||||
{
|
|
||||||
foreach (string file in Directory.GetFiles(directory, "*.lsf"))
|
|
||||||
{
|
|
||||||
CombineIMG(ReadLSF(file), workDirectory, outputDirectory);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static string GetWorkDirectory(string[] args)
|
|
||||||
{
|
|
||||||
return args[0] == "-d" ? args[1] : Path.GetDirectoryName(args[1]);
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool IsValidFileArgument(string[] args)
|
|
||||||
{
|
|
||||||
return args.Length == 2 || (args.Length == 1 && !Path.Exists(args[0]));
|
|
||||||
}
|
|
||||||
static List<LSFENTRY> ReadLSF(string filePath)
|
|
||||||
{
|
|
||||||
LSFHDR header;
|
|
||||||
List<LSFENTRY> entries = [];
|
|
||||||
|
|
||||||
using (FileStream fs = new(filePath, FileMode.Open, FileAccess.Read))
|
|
||||||
using (BinaryReader reader = new(fs))
|
|
||||||
{
|
|
||||||
header = ReadLSFHDR(reader);
|
|
||||||
if (!header.signature.SequenceEqual(Signature))
|
|
||||||
{
|
|
||||||
Console.WriteLine("Invalid LSF file: Signature does not match.");
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
while (fs.Position < fs.Length)
|
|
||||||
{
|
|
||||||
LSFENTRY entry = ReadLSFENTRY(reader);
|
|
||||||
|
|
||||||
// 过滤某些类型(主要是表情,还有审查
|
|
||||||
// 没找到合适的处理方法,有主意的老哥欢迎Pull Request
|
|
||||||
if (entry.type == 0x0B || entry.type == 0x15 || entry.type == 0xFF || (entry.type == 0x00 && entry.unknown5 == 0x03))
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
// 过滤重复项(没看出重复的意义,也许是前面过滤掉的某个类型需要
|
|
||||||
if (entries.Any(e => e.name.SequenceEqual(entry.name)))
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
entries.Add(entry);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return entries;
|
|
||||||
}
|
|
||||||
|
|
||||||
static LSFHDR ReadLSFHDR(BinaryReader reader)
|
|
||||||
{
|
|
||||||
byte[] headerData = reader.ReadBytes(Marshal.SizeOf(typeof(LSFHDR)));
|
|
||||||
GCHandle handle = GCHandle.Alloc(headerData, GCHandleType.Pinned);
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return (LSFHDR)Marshal.PtrToStructure(handle.AddrOfPinnedObject(), typeof(LSFHDR));
|
|
||||||
}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
handle.Free();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static LSFENTRY ReadLSFENTRY(BinaryReader reader)
|
|
||||||
{
|
|
||||||
byte[] entryData = reader.ReadBytes(Marshal.SizeOf(typeof(LSFENTRY)));
|
|
||||||
GCHandle handle = GCHandle.Alloc(entryData, GCHandleType.Pinned);
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return (LSFENTRY)Marshal.PtrToStructure(handle.AddrOfPinnedObject(), typeof(LSFENTRY));
|
|
||||||
}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
handle.Free();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void CombineIMG(List<LSFENTRY> entrys, string workDirectory, string storeDir)
|
|
||||||
{
|
|
||||||
// 检查是否有多个角色
|
|
||||||
bool isMultiCharacter = entrys.Any(e => e.type == 0x14);
|
|
||||||
|
|
||||||
foreach (var entry in entrys.Where(e => e.type == 0x00))
|
|
||||||
{
|
|
||||||
string baseName = new string(entry.name).Trim('\0');
|
|
||||||
string targetPath = Path.Combine(storeDir, baseName);
|
|
||||||
string baseImagePath = Path.Combine(workDirectory, baseName + ".png");
|
|
||||||
|
|
||||||
if (!File.Exists(baseImagePath))
|
|
||||||
{
|
|
||||||
Console.WriteLine($"Error, File not found: {baseName}");
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
foreach (var eyeEntry in entrys.Where(e => e.type == 0x0A))
|
|
||||||
{
|
|
||||||
using var baseImage = new MagickImage(baseImagePath);
|
|
||||||
ProcessEyeImage(entrys, workDirectory, baseImage, eyeEntry, targetPath, isMultiCharacter);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void ProcessEyeImage(List<LSFENTRY> entrys, string workDirectory, MagickImage baseImage, LSFENTRY eyeEntry, string targetPath, bool isMultiCharacter)
|
|
||||||
{
|
|
||||||
string eyeName = new string(eyeEntry.name).Trim('\0');
|
|
||||||
string eyeImagePath = Path.Combine(workDirectory, eyeName + ".png");
|
|
||||||
|
|
||||||
if (!File.Exists(eyeImagePath))
|
|
||||||
{
|
|
||||||
Console.WriteLine($"Error, File not found: {eyeName}");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
using var eyeImage = new MagickImage(eyeImagePath);
|
|
||||||
var tmpImage = RealProcessIMG(baseImage, eyeImage, (int)eyeEntry.x, (int)eyeEntry.y);
|
|
||||||
string target2Path = targetPath + "_" + eyeName;
|
|
||||||
|
|
||||||
if (isMultiCharacter)
|
|
||||||
{
|
|
||||||
foreach (var eye2Entry in entrys.Where(e => e.type == 0x14))
|
|
||||||
{
|
|
||||||
using var tmpImageClone = (MagickImage)tmpImage.Clone();
|
|
||||||
ProcessOverlayImage(eye2Entry, target2Path, workDirectory, tmpImageClone);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
tmpImage.Write(target2Path + ".png");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void ProcessOverlayImage(LSFENTRY eye2Entry, string target2Path, string workDirectory, MagickImage tmpImage)
|
|
||||||
{
|
|
||||||
string eye2Name = new string(eye2Entry.name).Trim('\0');
|
|
||||||
string eye2ImagePath = Path.Combine(workDirectory, eye2Name + ".png");
|
|
||||||
|
|
||||||
if (!File.Exists(eye2ImagePath))
|
|
||||||
{
|
|
||||||
Console.WriteLine($"Error, File not found: {eye2Name}");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
using var overlayImage = new MagickImage(eye2ImagePath);
|
|
||||||
RealProcessIMG(tmpImage, overlayImage, (int)eye2Entry.x, (int)eye2Entry.y).Write($"{target2Path}_{eye2Name}.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static MagickImage RealProcessIMG(MagickImage b, MagickImage o, int x, int y)
|
|
||||||
{
|
|
||||||
o.Alpha(AlphaOption.Set);
|
|
||||||
|
|
||||||
// Not working
|
|
||||||
// 原先是设计给处理那些不透明的图片,但好像有问题
|
|
||||||
//if (args[4] == "y")
|
|
||||||
//{
|
|
||||||
// //overlayImage.ColorFuzz = new Percentage(6); // For Face
|
|
||||||
// //overlayImage.Transparent(MagickColors.White); // For Face
|
|
||||||
// //overlayImage.Blur(0, 4); // For Face
|
|
||||||
//}
|
|
||||||
|
|
||||||
b.Composite(o, x, y, CompositeOperator.Over);
|
|
||||||
return b;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user