Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
|
6514cb49af | |
![]() |
e692d6e386 | |
![]() |
4b36a134ea |
25
Program.cs
25
Program.cs
|
@ -1,5 +1,4 @@
|
|||
//Written for The Accursed Crown of the Giant King. https://store.steampowered.com/app/1970780/
|
||||
using System;
|
||||
//Written for The Accursed Crown of the Giant King. https://store.steampowered.com/app/1970780
|
||||
using System.IO;
|
||||
|
||||
namespace ACotGK_seng_Extractor
|
||||
|
@ -18,17 +17,14 @@ 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 = name,
|
||||
name = new string(br.ReadChars(64)).TrimEnd('\0'),
|
||||
offset = br.ReadInt32(),
|
||||
size = br.ReadInt32()
|
||||
});
|
||||
}
|
||||
|
||||
foreach (SUBFILE sub in fileTable)
|
||||
{
|
||||
br.BaseStream.Position = sub.offset;
|
||||
|
@ -46,20 +42,5 @@ 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. Use it to extract from "module.seng" or "uiwin32.seng".
|
||||
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".
|
||||
|
|
Loading…
Reference in New Issue