Disney Games POD: 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> | ||
// Disney Games *.POD file format | // PC Disney Games *.POD file format | ||
// header | // header | ||
Revision as of 12:46, 10 July 2022
Back to index | Edit this page
POD
- Format Type : Archive
- Endian Order : Little Endian
- Signature : Pod file / Pod / RPOD
Format Specifications
// PC Disney Games *.POD file format
// header
12 bytes (char) - signature // "Pod file" or "Pod"
4 bytes (uint32) - number of files
// info table
number_of_files *
{
12 bytes (char) - file name
4 bytes (uint32) - file size
}
// data
{
x bytes - file data
}
Notes and Comments
- This file format occurs in some games from Disney.
- Main POD archive can store another POD archives inside.
- PC Disney games have "Pod file" signature, but PS1 Disney games use different file format with "RPOD" signature.
Games
List of games using this file format:
- Disney's Animated Storybook Mulan (*.POD)
- Disney's Hades Challenge (PC) (*.POD)
QuickBMS Script
Compatible Programs
- ScummVM (Hadesch engine) (see source code on github here)