Blood Magic BM: Difference between revisions
Jump to navigation
Jump to search
imported>WATTO No edit summary |
imported>Ikskoks No edit summary |
||
| (7 intermediate revisions by 2 users not shown) | |||
| Line 7: | Line 7: | ||
<tt><b> | <tt><b> | ||
uint64 {8} - Number Of Files <br> | |||
<br> | <br> | ||
<font color="blue"> ''' // for each file (92-bytes per entry) ''' </font> <br> | <font color="blue"> ''' // for each file (92-bytes per entry) ''' </font> <br> | ||
: char {64} - Filename <font color="purple">(null-terminated)</font> <font color="purple">(filled with junk)</font> <br> | : char {64} - Filename <font color="purple">(null-terminated)</font> <font color="purple">(filled with junk)</font> <br> | ||
: uint32 {4} - Decompressed Length <br> | : uint32 {4} - Decompressed Length <br> | ||
: uint32 {4} - Compressed Length <br> | : uint32 {4} - Compressed Length <br> | ||
: uint64 {8} - File Offset <br> | : uint64 {8} - File Offset <br> | ||
: uint64 {8} - <font color="red"> '' | : uint64 {8} - Timestamp <br> | ||
: uint32 {4} - <font color="red"> '' Type of compression? '' </font> - Uncompressed {{Purple|(0)}} or Compressed {{Purple|(5)}}<br> | |||
<br> | <br> | ||
byte {X} - File Data <br> | byte {X} - File Data <br> | ||
| Line 22: | Line 22: | ||
=== Notes and Comments === | === Notes and Comments === | ||
* The Timestamp is the Windows FILETIME struct | |||
* Unknown compression<br> | * Unknown compression<br> | ||
| Line 27: | Line 28: | ||
* [[Game Extractor|Game Extractor]]<br> (no decompression support) | * [[Game Extractor|Game Extractor]]<br> (no decompression support) | ||
[[Category:File Format]] | |||
Latest revision as of 13:53, 3 January 2021
BM
- Format Type : Archive
- Endian Order : Little Endian
Format Specifications
uint64 {8} - Number Of Files
// for each file (92-bytes per entry)
- char {64} - Filename (null-terminated) (filled with junk)
- uint32 {4} - Decompressed Length
- uint32 {4} - Compressed Length
- uint64 {8} - File Offset
- uint64 {8} - Timestamp
- uint32 {4} - Type of compression? - Uncompressed (0) or Compressed (5)
byte {X} - File Data
Notes and Comments
- The Timestamp is the Windows FILETIME struct
- Unknown compression
Supported Programs
- Game Extractor
(no decompression support)