Mortal Kombat: Deadly Alliance PAK: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
(Created page with "{{GRAFPageHeader}} == PAK == * ''' Format Type ''': Archive <br> * ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> === Format Specif...")
imported>Ikskoks
Line 13: Line 13:
// PAK file format
// PAK file format


//header
// header
4 bytes (char) - signature  // " KAP"
4 bytes (char) - signature  // " KAP"
4 bytes (uint32) - check value // 256
4 bytes (uint32) - number of files
4 bytes (uint32) - struct offset


//TODO
// data
num_of_files *
{
  x bytes - file data
}
 
// tail
num_of_files *
{
  4 bytes (uint32) - path offset
  4 bytes (uint32) - file offset
  4 bytes (uint32) - file size
}
 
num_of_files *
{
  x bytes (char) - file path
}
</pre>
</pre>
</div>
</div>

Revision as of 08:35, 25 May 2021

Back to index | Edit this page

PAK


Format Specifications

// Mortal Kombat: Deadly Alliance
// PAK file format

// header
4 bytes (char) - signature  // " KAP"
4 bytes (uint32) - check value // 256
4 bytes (uint32) - number of files
4 bytes (uint32) - struct offset

// data
num_of_files *
{
   x bytes - file data
}

// tail
num_of_files *
{
  4 bytes (uint32) - path offset
  4 bytes (uint32) - file offset
  4 bytes (uint32) - file size
}

num_of_files *
{
   x bytes (char) - file path
}

MultiEx BMS Script

Not written yet.

Notes and Comments

None.

Games

List of games using this file format:

  • Mortal Kombat: Deadly Alliance

Compatible Programs