Hokuto no Ken BIN IDX: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks |
imported>Ikskoks |
||
| (9 intermediate revisions by the same user not shown) | |||
| 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 19: | Line 19: | ||
4 bytes (uint32) - version? // 1 | 4 bytes (uint32) - version? // 1 | ||
4 bytes (uint32) - number of directory entries | 4 bytes (uint32) - number of directory entries | ||
4 bytes (uint32) - | 4 bytes (uint32) - total number of files | ||
| Line 28: | Line 28: | ||
} | } | ||
24 bytes (char) - | 24 bytes (char) - bin archive name // e.g. "hk_b.bin" | ||
| 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> | ||
| Line 71: | Line 89: | ||
=== Compatible Programs === | === Compatible Programs === | ||
* [https://github.com/bartlomiejduda/Tools/blob/master/NEW%20Tools/Hokuto%20No%20Ken/Hokuto_no_ken_BIN_IDX_Tool.py Hokuto_no_ken_BIN_IDX_Tool.py] | |||
<br/><br> | <br/><br> | ||
[[Category:Complete Almost Done|Hokuto no Ken BIN IDX]] | [[Category:Complete Almost Done|Hokuto no Ken BIN IDX]] | ||
[[Category:Platform | [[Category:Platform PS2|Hokuto no Ken BIN IDX]] | ||
[[Category:CE None|Hokuto no Ken BIN IDX]] | [[Category:CE None|Hokuto no Ken BIN IDX]] | ||
[[Category:Format_Archive | Type: Archive]] | [[Category:Format_Archive | Type: Archive]] | ||
Latest revision as of 15:31, 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) - total number of files
// dir offset array
num_of_dir_entries *
{
4 bytes (uint32) - directory entry offset
}
24 bytes (char) - bin archive 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