Compare commits
No commits in common. "main" and "v1.0" have entirely different histories.
25
Program.cs
25
Program.cs
|
@ -1,4 +1,5 @@
|
|||
//Written for The Accursed Crown of the Giant King. https://store.steampowered.com/app/1970780
|
||||
//Written for The Accursed Crown of the Giant King. https://store.steampowered.com/app/1970780/
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace ACotGK_seng_Extractor
|
||||
|
@ -17,14 +18,17 @@ namespace ACotGK_seng_Extractor
|
|||
for (int i = 0; i < fileCount - 1; i++)
|
||||
{
|
||||
br.ReadInt32();
|
||||
string name = NullTerminatedString();
|
||||
if (br.BaseStream.Position < (i + 1) * 0x4C + 0x48)
|
||||
br.BaseStream.Position = (i + 1) * 0x4C + 0x48;
|
||||
|
||||
fileTable.Add(new SUBFILE
|
||||
{
|
||||
name = new string(br.ReadChars(64)).TrimEnd('\0'),
|
||||
name = name,
|
||||
offset = br.ReadInt32(),
|
||||
size = br.ReadInt32()
|
||||
});
|
||||
}
|
||||
|
||||
foreach (SUBFILE sub in fileTable)
|
||||
{
|
||||
br.BaseStream.Position = sub.offset;
|
||||
|
@ -42,5 +46,20 @@ namespace ACotGK_seng_Extractor
|
|||
public int offset;
|
||||
public int size;
|
||||
}
|
||||
|
||||
public static string NullTerminatedString()
|
||||
{
|
||||
char[] fileName = Array.Empty<char>();
|
||||
char readchar = (char)1;
|
||||
while (readchar > 0)
|
||||
{
|
||||
readchar = br.ReadChar();
|
||||
Array.Resize(ref fileName, fileName.Length + 1);
|
||||
fileName[^1] = readchar;
|
||||
}
|
||||
Array.Resize(ref fileName, fileName.Length - 1);
|
||||
string name = new(fileName);
|
||||
return name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
# ACotGK-seng-Extractor
|
||||
Written for [The Accursed Crown of the Giant King](https://store.steampowered.com/app/1970780). Use it to extract from "module.seng" or "uiwin32.seng".
|
||||
Written for The Accursed Crown of the Giant King. Use it to extract from "module.seng" or "uiwin32.seng".
|
||||
|
|
Loading…
Reference in New Issue