RNC Archive: Difference between revisions

From XentaxWiki
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>
//header
// header
3 bytes (char) - signature // "RNC"
3 bytes (char) - signature // "RNC"
1 byte (uint8) - compression method  // 1 or 2
4 bytes (uint32) - uncompressed size
4 bytes (uint32) - compressed size
2 bytes (uint16) - uncompressed CRC
2 bytes (uint16) - compressed CRC
1 byte (uint8) - difference between compressed and uncompressed data in largest pack chunk
1 byte (uint8) - amount of pack chunks


// data
x bytes - compressed data
</pre>
</pre>
</div>
</div>

Revision as of 12:08, 6 February 2022

Back to index | Edit this page

RNC

  • Format Type : Archive
  • Endian Order : Little Endian
  • Signature : RNC


Format Specifications

// header
3 bytes (char) - signature // "RNC"
1 byte (uint8) - compression method  // 1 or 2
4 bytes (uint32) - uncompressed size
4 bytes (uint32) - compressed size
2 bytes (uint16) - uncompressed CRC
2 bytes (uint16) - compressed CRC
1 byte (uint8) - difference between compressed and uncompressed data in largest pack chunk
1 byte (uint8) - amount of pack chunks

// data
x bytes - compressed data

MultiEx BMS Script

Not written yet.

Notes and Comments

  • This file format occurs in archives compressed with RNC compression.
  • Many of games developed by Bullfrog contain RNC archives.

Games

List of games using this file format:

  • Dungeon Keeper
  • Gene Wars
  • Syndicate

Compatible Programs