Koei Tecmo LINKDATA BIN IDX: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
imported>Ikskoks
 
(65 intermediate revisions by the same user not shown)
Line 6: Line 6:




=== Format Specifications ===  
=== Format Specifications (Dynasty Warriors 8: Empires) ===  


<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>
// TODO
// Dynasty Warriors 8: Empires
// BIN file format
 
num_of_entries *
{
  x bytes - file data
  x bytes - padding  // up to 256 bytes
}
</pre>
</div><br>
 
<div class="toccolours mw-collapsible" id="mw-customcollapsible-myDivision" style="width:800px; overflow:auto;">
<pre>
// Dynasty Warriors 8: Empires
// IDX file format
 
num_of_entries *
{
  8 bytes (uint64) - file offset
  8 bytes (uint64) - uncompressed file size
  8 bytes (uint64) - compressed file size
  8 bytes (uint64) - compression flag
}
</pre>
</pre>
</div>
</div>
Line 21: Line 43:


* [https://zenhax.com/viewtopic.php?t=2037 Hyrule Warriors Legends script]
* [https://zenhax.com/viewtopic.php?t=2037 Hyrule Warriors Legends script]
* [http://aluigi.org/bms/arslan.bms arslan.bms]
* [http://aluigi.org/bms/dynasty_warriors_4.bms dynasty_warriors_4.bms]
* [http://aluigi.org/bms/yokai_sangokushi.bms yokai_sangokushi.bms]


=== Notes and Comments ===  
=== Notes and Comments ===  


* This file format occurs in many Koei Tecmo games.
* This file format occurs in many '''Koei Tecmo''' games.
* Some files inside BIN archive may be compressed or encrypted.
* Some files inside BIN archive are probably using custom ZLIB compression algorithm.
* Some entries in IDX file may be doubled or empty.


=== Games ===  
=== Games ===  
List of games using this file format:
List of games using this file format:
* Arslan: The Warriors of Legend
* Arslan: The Warriors of Legend
* Dragon Quest Builders 2
* Dragon Quest Heroes  
* Dragon Quest Heroes  
* Dynasty Warriors 4
* Dynasty Warriors 7
* Dynasty Warriors 7
* Dynasty Warriors 8
* Dynasty Warriors 8: Empires
* Hyrule Warriors Legends
* Hyrule Warriors Legends
* Pirate Warriors 4
* Persona 5 Strikers (PC)
* Samurai Warriors 4
* Warriors All-Stars / Musou Stars (PS Vita)
* Warriors Orochi 3
* Warriors Orochi 4
* Yo-kai Sangokushi (Nintendo 3DS)


=== Compatible Programs ===  
=== Compatible Programs ===  


* [https://forum.xentax.com/viewtopic.php?f=10&t=21679 Cethleann]
* [https://forum.xentax.com/viewtopic.php?f=10&t=21679 Cethleann]
* Kuriimu 2
* Kuriimu 2 (support for Yo-Kai Watch Sangokushi on Nintendo 3DS)
* [https://github.com/bartlomiejduda/Tools/blob/master/NEW%20Tools/Dynasty%20Warriors%208/Dynasty_Warriors_8_BIN_IDX_Tool.py Dynasty_Warriors_8_BIN_IDX_Tool.py]
 
=== Cethleann Example ===
Below is example of Cethleann usage:
 
<div style="width:1200px; overflow:auto;">
<pre>
// Extracting data from Persona 5 Strikers (PC)
 
Cethleann.DataExporter.exe --linkdata -g P5SPC (Path to output the extracted files) (Path to the folder with linkdata pair)
</pre>
</div>
 
<br/><br>
<br/><br>




[[Category:Complete Complete|Koei Tecmo LINKDATA BIN IDX]]
[[Category:Complete WIP|Koei Tecmo LINKDATA BIN IDX]]
[[Category:Platform PC|Koei Tecmo LINKDATA BIN IDX]]
[[Category:Platform PC|Koei Tecmo LINKDATA BIN IDX]]
[[Category:CE None|Koei Tecmo LINKDATA BIN IDX]]
[[Category:CE Both|Koei Tecmo LINKDATA BIN IDX]]
[[Category:Format_Archive | Type: Archive]]
[[Category:Format_Archive | Type: Archive]]
[[Category:Extension_bin | Extension: bin]]
[[Category:Extension_bin | Extension: bin]]
[[Category:Extension_idx | Extension: idx]]
[[Category:Extension_idx | Extension: idx]]
[[Category:BMS_None | BMS: None]]
[[Category:ZLIB compression]]
[[Category:File Format]]
[[Category:File Format]]

Latest revision as of 14:08, 13 July 2021

Back to index | Edit this page

BIN, IDX


Format Specifications (Dynasty Warriors 8: Empires)

// Dynasty Warriors 8: Empires
// BIN file format

num_of_entries *
{
   x bytes - file data
   x bytes - padding  // up to 256 bytes
}


// Dynasty Warriors 8: Empires
// IDX file format

num_of_entries *
{
  8 bytes (uint64) - file offset
  8 bytes (uint64) - uncompressed file size
  8 bytes (uint64) - compressed file size
  8 bytes (uint64) - compression flag
}

MultiEx BMS Script

Not written yet.

QuickBMS Script

Notes and Comments

  • This file format occurs in many Koei Tecmo games.
  • Some files inside BIN archive may be compressed or encrypted.
  • Some files inside BIN archive are probably using custom ZLIB compression algorithm.
  • Some entries in IDX file may be doubled or empty.

Games

List of games using this file format:

  • Arslan: The Warriors of Legend
  • Dragon Quest Builders 2
  • Dragon Quest Heroes
  • Dynasty Warriors 4
  • Dynasty Warriors 7
  • Dynasty Warriors 8
  • Dynasty Warriors 8: Empires
  • Hyrule Warriors Legends
  • Pirate Warriors 4
  • Persona 5 Strikers (PC)
  • Samurai Warriors 4
  • Warriors All-Stars / Musou Stars (PS Vita)
  • Warriors Orochi 3
  • Warriors Orochi 4
  • Yo-kai Sangokushi (Nintendo 3DS)

Compatible Programs

Cethleann Example

Below is example of Cethleann usage:

// Extracting data from Persona 5 Strikers (PC)

Cethleann.DataExporter.exe --linkdata -g P5SPC (Path to output the extracted files) (Path to the folder with linkdata pair)