Dune: Difference between revisions
Jump to navigation
Jump to search
imported>Mr.Mouse |
imported>Ikskoks No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 71: | Line 71: | ||
* [[MultiEx_Commander|MultiEx Commander]] | * [[MultiEx_Commander|MultiEx Commander]] | ||
[[Category:File Format]] | |||
Latest revision as of 12:19, 4 January 2021
Choose archive extension:
DAT
- Format Type : Archive
- Endian Order : Little Endian
Format Specifications
// MexCom - Recreation of D:\Code\All Official MexFormats\Dune\dat.bms
// THIS IS AN AUTOMATED SPECIFICATION
// READ WITH CARE
// ----------------------------
// LEGEND
// ----------------------------
// ==> (Jump to offset)
// #DECLARE (Set variable to value)
// $$ CALCULATE (Calculate a new value)
// ** (Section that repeats itself on condition)
// // (Comment)
// uint32{4} (Unsigned 32-bit value, 4 bytes)
// uint16{2} (Unsigned 16-bit value, 2 bytes)
// ubyte{1} (Unsigned 8-bit value, 1 byte)
// char{n} (String value, n bytes in length
// ----------------------------
// Format Specification
uint16{2} FileNum
** Start Repeated entry (T) {FileNum}
char{16} Filename of resource (FN)
#DECLARE SIZEOFF = CURRENT OFFSET
uint32{4} SIZE
#DECLARE OFFOFF = CURRENT OFFSET
uint32{4} OFF
ubyte{1} DUM
// Resources have a name (FN), are located at OFF and have a size of SIZE
** End Repeated entry (T)
// ----------------------------
// MexCom - Recreation complete
MultiEx BMS Script
Get FileNum Int 0 ; For T = 1 To FileNum ; GetDString FN 16 0 ; SavePos SIZEOFF 0 ; Get SIZE Long 0 ; SavePos OFFOFF 0 ; Get OFF Long 0 ; Get DUM Byte 0 ; Log FN OFF SIZE OFFOFF SIZEOFF ; Next T ;
Notes and Comments
None