Robin Hood: The Legend of Sherwood DIC BKS: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
imported>Ikskoks
Line 46: Line 46:


* [http://www.watto.org/specs.html?specs=Archive_BKS DIC format description (watto.org)]
* [http://www.watto.org/specs.html?specs=Archive_BKS DIC format description (watto.org)]
* [https://github.com/wattostudios/GameExtractor/blob/master/src/org/watto/ge/plugin/archive/Plugin_BKS.java Plugin_BKS.java (from Game Extractor source code)]
<br/><br>
<br/><br>



Revision as of 22:04, 29 March 2022

Back to index | Edit this page

DIC, BKS

  • Format Type : Archive
  • Endian Order : Little Endian
  • Signature : 96 B6 9B 01


Format Specifications

// DIC file format


//header
4 bytes (uint32) - signature?  // 96 B6 9B 01
2 bytes (uint16) - number of structs

num_of_structs *
{
   2 bytes (uint16) - number of entries  // e.g. 4096
                                         // data_size = num_of_entries * 8
   x bytes - data  // encrypted
}

Notes and Comments

  • File formats for dealing with sprites. DIC is a sprite index file (dictionary) and BKS file contains all the data.

Games

List of games using this file format:

  • Robin Hood: The Legend of Sherwood (PC) (*.DIC / *.BKS)

QuickBMS Script

Not written yet.

Compatible Programs

None.

See Also