Cat Daddy Tycoons BIN: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
(Created page with "{{GRAFPageHeader}} == BIN == * ''' Format Type ''': Archive <br> * ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> * ''' Signature '''...")
imported>Ikskoks
Line 13: Line 13:
//header
//header
4 bytes (uint32) - signature // \x64\x00\x00\x00
4 bytes (uint32) - signature // \x64\x00\x00\x00
8 bytes - nulls
64 bytes (char) - archive name // e.g. "yesno"
4 bytes - nulls
4 bytes (uint32) - number of files
4 bytes (uint32) - number of folders


num_of_folders *
{
  4 bytes (uint32) - folder offset
}
num_of_files *
{
  4 bytes (uint32) - file offset
}
8 bytes - nulls
// data
num_of_files *
{
  64 bytes (char) - file name  // e.g. "background"
  2 bytes (char) - some delimeter  // "CD"
  4 bytes (uint32) - file size
  x bytes - file data
}
x bytes - unknown (some directory info)
</pre>
</pre>
</div>
</div>

Revision as of 23:19, 23 December 2021

Back to index | Edit this page

BIN

  • Format Type : Archive
  • Endian Order : Little Endian
  • Signature : \x64\x00\x00\x00


Format Specifications

//header
4 bytes (uint32) - signature // \x64\x00\x00\x00
8 bytes - nulls
64 bytes (char) - archive name // e.g. "yesno"
4 bytes - nulls
4 bytes (uint32) - number of files
4 bytes (uint32) - number of folders

num_of_folders *
{
   4 bytes (uint32) - folder offset
}

num_of_files *
{
   4 bytes (uint32) - file offset
}

8 bytes - nulls

// data
num_of_files *
{
   64 bytes (char) - file name  // e.g. "background"
   2 bytes (char) - some delimeter  // "CD"
   4 bytes (uint32) - file size
   x bytes - file data
}

x bytes - unknown (some directory info)

QuickBMS Script

Not written yet.

Notes and Comments

  • This file format occurs in made by Cat Daddy.

Games

List of games using this file format:

  • Cruise Ship Tycoon (*.BIN) (PC)

Compatible Programs

None.