Arx Fatalis PAK: Difference between revisions
Jump to navigation
Jump to search
imported>Mr.Mouse |
(→Format Specifications: fixed) |
||
| Line 12: | Line 12: | ||
<tt><b> | <tt><b> | ||
uint32 {4} - Directory Offset <br> | <font color="blue"> ''' // ARCHIVE HEADER ''' </font> <br> | ||
:uint32 {4} - Directory Offset <br> | |||
<br> | <br> | ||
byte {X} - File Data <br> | byte {X} - File Data <br> | ||
<br> | <br> | ||
<font color="blue"> ''' // | <font color="blue"> ''' // FILES DIRECTORY ''' </font> <br> | ||
: uint32 {4} - | : uint32 {4} - Directory Length <br> | ||
<font color="blue"> ''' // for each directory ''' </font> <br> | |||
: char {X} - Path <br> | : char {X} - Path <br> | ||
: byte {1} - null Path Terminator <br> | : byte {1} - null Path Terminator <br> | ||
: uint32 {4} - Number Of Files <br> | : uint32 {4} - Number Of Files <br> | ||
:: <font color="blue"> ''' // for each file ''' </font> <br> | |||
: <font color="blue"> ''' // for each file ''' </font> <br> | ::: char {X} - Filename <br> | ||
:: char {X} - Filename <br> | ::: byte {1} - null Filename Terminator <br> | ||
:: byte {1} - null Filename Terminator <br> | ::: uint32 {4} - File Offset <br> | ||
:: uint32 {4} - File Offset <br> | ::: uint32 {4} - Packed flag (<font color="purple">0 - unpacked, else - PKWARE implode</font>) <br> | ||
:: uint32 {4} - | ::: uint32 {4} - Decompressed Length (<font color="purple">0 if not packed - use field above</font>)<br> | ||
:: uint32 {4} - Decompressed Length <br> | ::: uint32 {4} - File Length <br> | ||
:: uint32 {4} - File Length <br> | |||
<br> | <br> | ||
</b></tt> | </b></tt> | ||
Revision as of 15:26, 9 April 2011
Choose archive extension:
PAK
- Format Type : Archive
- Endian Order : Little Endian
Format Specifications
// ARCHIVE HEADER
- uint32 {4} - Directory Offset
byte {X} - File Data
// FILES DIRECTORY
- uint32 {4} - Directory Length
// for each directory
- char {X} - Path
- byte {1} - null Path Terminator
- uint32 {4} - Number Of Files
- // for each file
- char {X} - Filename
- byte {1} - null Filename Terminator
- uint32 {4} - File Offset
- uint32 {4} - Packed flag (0 - unpacked, else - PKWARE implode)
- uint32 {4} - Decompressed Length (0 if not packed - use field above)
- uint32 {4} - File Length
- char {X} - Filename
- // for each file
MultiEx BMS Script
ImpType StandardTail ; SavePos TailOffOff 0 ; Get TO Long 0 ; GoTo TO 0 ; Get TS Long 0 ; SavePos T 0 ; Math T += 5 ; GoTo T 0 ; Get Path String 0 ; Get FN Long 0 ; For D = 1 To FN ; Set Name String Path ; Get Name String 0 ; SavePos FOO 0 ; Get FO Long 0 ; Get ZipState Long 0 ; Get OrSize Long 0 ; SavePos FSO 0 ; Get FS Long 0 ; Log Name FO FS FOO FSO ; Next D ;