Hokuto no Ken BIN IDX: Difference between revisions

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




=== Format Specifications ===  
=== Format Specifications (IDX file) ===  


<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;">
Line 58: Line 58:


8 bytes - nulls
8 bytes - nulls
</pre>
</div>
=== Format Specifications (BIN file) ===
<div class="toccolours mw-collapsible" id="mw-customcollapsible-myDivision" style="width:800px; overflow:auto;">
<pre>
// Hokuto no Ken
// Fist of the North Star
// BIN file format
num_of_files *
{
  x bytes - file data
  x bytes - padding  // filled with strings
                      // "Hokuto for Atomiswave. ARC System Works co."
                      // up to 2048 bytes
}
</pre>
</pre>
</div>
</div>

Revision as of 14:08, 11 March 2021

Back to index | Edit this page

BIN, IDX

  • Game : Hokuto no Ken: Shinpan no Sososei Kengo Retsuden / Fist of the North Star
  • Format Type : Archive
  • Endian Order : Little Endian


Format Specifications (IDX file)

// Hokuto no Ken
// Fist of the North Star
// IDX file format


// header
4 bytes (char) - magic  // "FARC"
4 bytes (uint32) - version?  // 1
4 bytes (uint32) - number of directory entries
4 bytes (uint32) - unknown  // 749


// dir offset array
num_of_dir_entries *
{
   4 bytes (uint32) - directory entry offset
}

24 bytes (char) - file name  // e.g. "hk_b.bin"


// directory info array
num_of_dir_entries *
{
   4 bytes (char) - directory name  // e.g. "GICH"
   4 bytes (uint32) - dir entry offset
   4 bytes (uint32) - dir entry size
   4 bytes - nulls
}


// directory entries
num_of_dir_entries *
{
   4 bytes (char) - directory name  // e.g. "GICH"
   4 bytes (uint32) - number of file entries
   4 bytes (uint32) - start offset?
   4 bytes (uint32) - directory size
   
   // file entries
   num_of_file_entries *
   {
      4 bytes (uint32) - file offset
      4 bytes (uint32) - file size
   }
}

8 bytes - nulls


Format Specifications (BIN file)

// Hokuto no Ken
// Fist of the North Star
// BIN file format

num_of_files *
{
   x bytes - file data
   x bytes - padding  // filled with strings
                      // "Hokuto for Atomiswave. ARC System Works co."
                      // up to 2048 bytes
}

MultiEx BMS Script

Not written yet.

Notes and Comments

None.

Compatible Programs

None.