Ksiaze i Tchorz PTC: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
imported>Ikskoks
Line 38: Line 38:
=== Notes and Comments ===  
=== Notes and Comments ===  


None.
* All files seems to have the same filename which is "'''DATABANK.PTC'''".
* Values in header are encrypted with '''XOR'''. TOC is also encrypted with custom encryption method.


=== Games ===  
=== Games ===  

Revision as of 15:38, 30 January 2022

Back to index | Edit this page

PTC

  • Format Type : Archive
  • Endian Order : Little Endian
  • Signature : P&TC


Format Specifications

//header
4 bytes (char) - signature // "P&TC"
4 bytes (uint32) - file table offset  // encrypted
4 bytes (uint32) - file table size  // encrypted

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

// file table (encrypted)
num_of_files *
{
   24 bytes (char) - file name  // e.g. "CREDITS.DAT"
   4 bytes (uint32) - file offset
   4 bytes (uint32) - file size
}

MultiEx BMS Script

Not written yet.

Notes and Comments

  • All files seems to have the same filename which is "DATABANK.PTC".
  • Values in header are encrypted with XOR. TOC is also encrypted with custom encryption method.

Games

List of games using this file format:

  • Ksiaze i Tchorz / The Prince and the Coward (PC) (*.PTC)

Compatible Programs

  • ScummVM (see "extractor" source code here)