Narbacular Drop ORE: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks |
imported>Ikskoks |
||
| (13 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 | ||
4 bytes (uint32) - directories info size | |||
// directories info | |||
4 bytes (uint32) - number of directories | |||
num_of_directiories * | |||
{ | |||
x bytes (char) - directory name + null // e.g. "audio" | |||
4 bytes (uint32) - directory offset | |||
} | |||
4 bytes - nulls | |||
// directories | |||
num_of_directories * | |||
{ | |||
8 bytes (uint64) - directory signature // 8 | |||
4 bytes (uint32) - number of files | |||
num_of_files * | |||
{ | |||
x bytes (char) - file name + null // e.g. "boulder_land.wav" | |||
4 bytes (uint32) - file offset | |||
4 bytes (uint32) - file size | |||
} | |||
num_of_files * | |||
{ | |||
x bytes - file data | |||
} | |||
} | |||
</pre> | </pre> | ||
</div> | </div> | ||
| Line 18: | Line 46: | ||
=== Notes and Comments === | === Notes and Comments === | ||
* This archive file format occurs in '''Narbacular Drop''' game. | * This archive file format occurs in '''[https://en.wikipedia.org/wiki/Narbacular_Drop Narbacular Drop]''' game from '''Nuclear Monkey Software'''. | ||
* The game has only one archive and it's called '''File.ore'''. | * The game has only one archive and it's called '''File.ore'''. | ||
| Line 27: | Line 55: | ||
=== QuickBMS Script === | === QuickBMS Script === | ||
* [https://github.com/bartlomiejduda/Tools/blob/master/NEW%20Tools/Narbacular%20Drop/Narbacular_Drop_ORE_script.bms Narbacular_Drop_ORE_script.bms] | |||
=== Compatible Programs === | === Compatible Programs === | ||
| Line 35: | Line 63: | ||
[[Category:Complete | [[Category:Complete Complete|Narbacular Drop ORE]] | ||
[[Category:Platform PC|Narbacular Drop ORE]] | [[Category:Platform PC|Narbacular Drop ORE]] | ||
[[Category:CE None|Narbacular Drop ORE]] | [[Category:CE None|Narbacular Drop ORE]] | ||
Latest revision as of 21:37, 3 March 2022
Back to index | Edit this page
ORE
- Format Type : Archive
- Endian Order : Little Endian
- Signature : None
Format Specifications
// header
4 bytes (uint32) - directories info size
// directories info
4 bytes (uint32) - number of directories
num_of_directiories *
{
x bytes (char) - directory name + null // e.g. "audio"
4 bytes (uint32) - directory offset
}
4 bytes - nulls
// directories
num_of_directories *
{
8 bytes (uint64) - directory signature // 8
4 bytes (uint32) - number of files
num_of_files *
{
x bytes (char) - file name + null // e.g. "boulder_land.wav"
4 bytes (uint32) - file offset
4 bytes (uint32) - file size
}
num_of_files *
{
x bytes - file data
}
}
Notes and Comments
- This archive file format occurs in Narbacular Drop game from Nuclear Monkey Software.
- The game has only one archive and it's called File.ore.
Games
List of games using this file format:
- * Narbacular Drop (PC) (*.ORE)
QuickBMS Script
Compatible Programs
None.