The current URL is datacrystal.tcrf.net.
Strike Witches: Silver Wing/Notes: Difference between revisions
(Create initial page. Moved GGXArchiver research to notes) |
Lelegofrog (talk | contribs) mNo edit summary |
||
(8 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{notes}} | |||
==File Formats== | ==File Formats== | ||
===GGXArchive Packed Files=== | ===GGXArchive Packed Files=== | ||
Most of the game's files appear to be archives created with "GGXArchiver v1.00". These can contain various types of files, including but not limited to models, textures and text. | Most of the game's files appear to be archives created with "GGXArchiver v1.00". These can contain various types of files, including but not limited to models, textures and text. Some entries are stored as little endian | ||
{| class="wikitable" | {| class="wikitable" | ||
Line 12: | Line 13: | ||
| Magic || "GGXArchiver1.00" + 0x00 | | Magic || "GGXArchiver1.00" + 0x00 | ||
|- | |- | ||
| | | Archive Header || 16-bytes, ex: '''0x02 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00''' (/media/data/sc_logo.bin) | ||
First four bytes are number of entries in the archive's file table<sup>(LE)</sup> | |||
Second four bytes are number of "valid" entries in the file table (blank entries of 32 0x00 are "invalid")<sup>(LE)</sup> | |||
Remaining 8 bytes are probably padding | |||
|- | |- | ||
| File List || 32-bytes per file, relative path to file, directories supported | | File List || 32-bytes per file, relative path to file, directories supported | ||
|- | |- | ||
| | | File Metadata Table || Size seems to scale with number of files in archive | ||
0x00-0x03 File ID<sup>(LE)</sup> | |||
0x04-0x07 static 1<sup>(LE)</sup> | |||
0x08-0x0B uncompressed file size<sup>(LE)</sup> | |||
0x0C-0x0F Size of compressed file data in archive<sup>(LE)</sup> | |||
0x10-0x13 Boolean? (could also represent compression type), is data compressed<sup>(LE)</sup>. Does not seem to support uncompressed data? | |||
0x14-0x17 Offset from end of file metadata table to start of file<sup>(LE)</sup> | |||
Repeated for each file in archive | |||
|- | |- | ||
| File Data || The actual data for each of the archived files | | File Data || The actual data for each of the archived files | ||
|} | |} | ||
====Compression Information==== | |||
Appears to be compressed with BPE ([https://en.wikipedia.org/wiki/Byte_pair_encoding Byte-Pair Encoding]) compression (quickbms compression method 25/55). quickbms sometimes fails decompression, may require new utility or manual decompression. | |||
quickbms's reinsert2 is bugged, and will not adjust archives appropriately if new zsize < old zsize. Archives with files that are smaller than originally will cause the game to softlock when unpacking them. The relatively simple fix is to ensure all repacked files are larger than their originals. reinsert2 will then overwrite the entire original file with zeroes and adjust offsets appropriately. This will create a small increase in loading times unless the files are manually (TBD on utility to automate this) stripped of padding. | |||
====Strategies to avoid unpack softlock==== | |||
* '''Enabling mipmaps''' | |||
** Pros | |||
*** Simple | |||
*** Significant file size increase will almost certainly outweigh improved packing | |||
** Cons | |||
*** Only works on textures, and only those with mipmaps disabled originally | |||
*** Creates unnecessary bloat | |||
*** Significant VRAM usage increase | |||
* '''Packer-unfriendly data''' | |||
** Pros | |||
*** Works on all file types | |||
*** Can make files exactly the desired size to avoid softlock and reduce bloat/load times/VRAM usage | |||
** Cons | |||
*** Time consuming to do manually, unreliable via utility | |||
* '''Custom utility''' | |||
** Pros | |||
*** Solves all issues elegantly | |||
** Cons | |||
*** High up-front work to write and test utility | |||
{{Internal Data}} | {{Internal Data}} |
Latest revision as of 03:49, 24 October 2024
The following article is a Notes Page for Strike Witches: Silver Wing.
File Formats
GGXArchive Packed Files
Most of the game's files appear to be archives created with "GGXArchiver v1.00". These can contain various types of files, including but not limited to models, textures and text. Some entries are stored as little endian
Entry | Format |
---|---|
Magic | "GGXArchiver1.00" + 0x00 |
Archive Header | 16-bytes, ex: 0x02 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 (/media/data/sc_logo.bin)
First four bytes are number of entries in the archive's file table(LE) Second four bytes are number of "valid" entries in the file table (blank entries of 32 0x00 are "invalid")(LE) Remaining 8 bytes are probably padding |
File List | 32-bytes per file, relative path to file, directories supported |
File Metadata Table | Size seems to scale with number of files in archive
0x00-0x03 File ID(LE) 0x04-0x07 static 1(LE) 0x08-0x0B uncompressed file size(LE) 0x0C-0x0F Size of compressed file data in archive(LE) 0x10-0x13 Boolean? (could also represent compression type), is data compressed(LE). Does not seem to support uncompressed data? 0x14-0x17 Offset from end of file metadata table to start of file(LE) Repeated for each file in archive |
File Data | The actual data for each of the archived files |
Compression Information
Appears to be compressed with BPE (Byte-Pair Encoding) compression (quickbms compression method 25/55). quickbms sometimes fails decompression, may require new utility or manual decompression.
quickbms's reinsert2 is bugged, and will not adjust archives appropriately if new zsize < old zsize. Archives with files that are smaller than originally will cause the game to softlock when unpacking them. The relatively simple fix is to ensure all repacked files are larger than their originals. reinsert2 will then overwrite the entire original file with zeroes and adjust offsets appropriately. This will create a small increase in loading times unless the files are manually (TBD on utility to automate this) stripped of padding.
Strategies to avoid unpack softlock
- Enabling mipmaps
- Pros
- Simple
- Significant file size increase will almost certainly outweigh improved packing
- Cons
- Only works on textures, and only those with mipmaps disabled originally
- Creates unnecessary bloat
- Significant VRAM usage increase
- Pros
- Packer-unfriendly data
- Pros
- Works on all file types
- Can make files exactly the desired size to avoid softlock and reduce bloat/load times/VRAM usage
- Cons
- Time consuming to do manually, unreliable via utility
- Pros
- Custom utility
- Pros
- Solves all issues elegantly
- Cons
- High up-front work to write and test utility
- Pros
Internal Data for Strike Witches: Silver Wing
| |
---|---|