Crazy Racing PAK: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks |
imported>Ikskoks |
||
| Line 11: | Line 11: | ||
<div class="toccolours mw-collapsible" id="mw-customcollapsible-myDivision" style="width:800px; overflow:auto;"> | <div class="toccolours mw-collapsible" id="mw-customcollapsible-myDivision" style="width:800px; overflow:auto;"> | ||
<pre> | <pre> | ||
// | // Crazy Racing PAK file format | ||
struct Archive | |||
{ | |||
uint FileCount; | |||
FileInfo FileInfos[FileCount]; | |||
byte Data[x]; | |||
} | |||
struct FileInfo | |||
{ | |||
uint Hash; | |||
int Offset; // multiply by 4 | |||
int CompressedSize; // LZMA | |||
} | |||
</pre> | </pre> | ||
</div> | </div> | ||
Revision as of 10:49, 13 August 2022
Back to index | Edit this page
PAK
- Format Type : Archive
- Endian Order : Little Endian
- Signature : None
Format Specifications
// Crazy Racing PAK file format
struct Archive
{
uint FileCount;
FileInfo FileInfos[FileCount];
byte Data[x];
}
struct FileInfo
{
uint Hash;
int Offset; // multiply by 4
int CompressedSize; // LZMA
}
Notes and Comments
- Files are compressed with LZMA compression.
Games
List of games using this file format:
- Crazy Racing (Android) (*.PAK)
QuickBMS Script
Not written yet.
Compatible Programs
None.