Twinkle Crusaders DAT: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks (Created page with "{{GRAFPageHeader}} == DAT == * ''' Format Type ''': Archive <br> * ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> * ''' Signature '''...") |
imported>Ikskoks |
||
| (23 intermediate revisions by the same user not shown) | |||
| 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 | ||
12 bytes (char) - signature // "GAMEDAT PAC2" | 12 bytes (char) - signature // "GAMEDAT PAC2" | ||
4 bytes (uint32) - number of files | |||
// name table | |||
num_of_files * | |||
{ | |||
32 bytes (char) - filename + padding // e.g. "BE_AS_MELILOT_EF.ogg" | |||
} | |||
// info table | |||
num_of_files * | |||
{ | |||
4 bytes (uint32) - file offset | |||
4 bytes (uint32) - file size | |||
} | |||
// data | |||
num_of_files * | |||
{ | |||
x bytes - file data | |||
} | |||
</pre> | </pre> | ||
</div> | </div> | ||
| Line 19: | Line 39: | ||
=== Notes and Comments === | === Notes and Comments === | ||
* This file format occurs in games made using "'''2XT - SEVEN WONDER Adventure Engine''' (Pajamas Adventure System)". | |||
=== Games === | === Games === | ||
List of games using this file format: | List of games using this file format: | ||
* Arui wa Koi to Iu Na no Mahou | |||
* Paradise Cleaning! | * Paradise Cleaning! | ||
* TAISHO x ALICE | |||
* Twinkle Crusaders | * Twinkle Crusaders | ||
Other (unconfirmed) games: | |||
* Aneimo 2 ~Second Stage~ | |||
* Futa Ane ~Bitter & Sweet~ | |||
* Lilycle Rainbow Stage!!! | |||
* Momichupa Teacher! | |||
* Natsu no Owari no Nirvana | |||
* Patissier na Nyanko | |||
* Prism Heart | |||
* Toraba! | |||
* Trouble @ Spiral! | |||
=== QuickBMS Script === | === QuickBMS Script === | ||
| Line 32: | Line 65: | ||
=== Compatible Programs === | === Compatible Programs === | ||
* [http://wks.arai-kibou.ru/ae.php AE VN Tools] (+ [https://github.com/niksaak/ae source code]) | |||
* [https://github.com/morkt/GARbro GARbro] | |||
* [https://github.com/jjolano/unpac unpac] | |||
=== See Also === | |||
* [[Twinkle Crusaders EPA]] | |||
<br/><br> | <br/><br> | ||
Latest revision as of 21:45, 8 May 2022
Back to index | Edit this page
DAT
- Format Type : Archive
- Endian Order : Little Endian
- Signature : GAMEDAT PAC2
Format Specifications
// header
12 bytes (char) - signature // "GAMEDAT PAC2"
4 bytes (uint32) - number of files
// name table
num_of_files *
{
32 bytes (char) - filename + padding // e.g. "BE_AS_MELILOT_EF.ogg"
}
// info table
num_of_files *
{
4 bytes (uint32) - file offset
4 bytes (uint32) - file size
}
// data
num_of_files *
{
x bytes - file data
}
Notes and Comments
- This file format occurs in games made using "2XT - SEVEN WONDER Adventure Engine (Pajamas Adventure System)".
Games
List of games using this file format:
- Arui wa Koi to Iu Na no Mahou
- Paradise Cleaning!
- TAISHO x ALICE
- Twinkle Crusaders
Other (unconfirmed) games:
- Aneimo 2 ~Second Stage~
- Futa Ane ~Bitter & Sweet~
- Lilycle Rainbow Stage!!!
- Momichupa Teacher!
- Natsu no Owari no Nirvana
- Patissier na Nyanko
- Prism Heart
- Toraba!
- Trouble @ Spiral!
QuickBMS Script
Compatible Programs
See Also