Dune: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Mr.Mouse
imported>Ikskoks
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 66: Line 66:
=== Notes and Comments ===  
=== Notes and Comments ===  


The files in the directory are in a different order to the files in the archive. eg. File 1 in the directory may be File 482 in the archive.<br><br>
None


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


* [[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 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

Compatible Programs