Activision PKR3: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks (Created page with "== PKR == * ''' Game ''': Mat Hoffman's Pro BMX <br> * ''' Format Type ''': Archive <br> * ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little...") |
imported>Ikskoks |
||
| (28 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
== PKR == | == PKR == | ||
* ''' Format Type ''': Archive <br> | * ''' Format Type ''': Archive <br> | ||
* ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> | * ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> | ||
| Line 9: | Line 8: | ||
<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> | ||
// | // Activision games | ||
// PKR file format | // PKR file format | ||
| Line 56: | Line 55: | ||
=== MultiEx BMS Script === | === MultiEx BMS Script === | ||
* [https://forum.xentax.com/download/file.php?id=1245 PKR3 scripts] | |||
=== Notes and Comments === | === Notes and Comments === | ||
* It seems that this file format is shared between few Activision games and it may be next version of [[Tony Hawk - Pro Skater 2|PKR2]] file format. | |||
=== Games === | |||
List of games using this file format: | |||
* [[Mat Hoffman's Pro BMX]] | |||
* Spider-Man 2000 | |||
=== Compatible Programs === | === Compatible Programs === | ||
* [http://www.thps-mods.com/forum/viewtopic.php?t=796 PKR3 Editor] | * [http://www.thps-mods.com/forum/viewtopic.php?t=796 PKR3 Editor] | ||
* [[Game Extractor]] | |||
* [https://github.com/krystalgamer/spidey-tools/tree/master/pkr_extractor spidey-tools / pkr_extractor] | |||
==Gallery== | |||
<gallery bordercolor="transparent" spacing="small" orientation="landscape"> | |||
pkr3_editor.png | |||
game_extractor_media_pkr.png | |||
</gallery> | |||
<br/><br> | <br/><br> | ||
Latest revision as of 14:12, 15 November 2020
PKR
- Format Type : Archive
- Endian Order : Little Endian
Format Specifications
// Activision games
// PKR file format
// little endian
// Note: Data may be compressed with zlib
// header
4 bytes (char) - magic // "PKR3"
4 bytes (uint32) - tail offset
// data
num_of_files *
{
x bytes - file data (compressed or not)
}
// tail
4 bytes (uint32) - unknown // "4"
4 bytes (uint32) - number of folders
4 bytes (uint32) - number of files
num_of_folders *
{
32 bytes (char) - folder path + padding // "data\movies\Intro\" etc.
4 bytes (uint32) - number of files in previous folders
4 bytes (uint32) - number of files in current folder
}
number_of_files *
{
32 bytes (char) - filename + padding // "Act02.bik"
4 bytes - CRC32 value
4 bytes (int32) - compression marker // "-2" - uncompressed
// "2" - compressed
4 bytes (uint32) - file offset
4 bytes (uint32) - uncompressed file size
4 bytes (uint32) - compressed file size
}
MultiEx BMS Script
Notes and Comments
- It seems that this file format is shared between few Activision games and it may be next version of PKR2 file format.
Games
List of games using this file format:
- Mat Hoffman's Pro BMX
- Spider-Man 2000
Compatible Programs
Gallery