Aquarnoid 2 GOB: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>WATTO
imported>Ikskoks
m (Ikskoks moved page Aquarnoid 2 to Aquarnoid 2 GOB without leaving a redirect)
 
(7 intermediate revisions by 2 users not shown)
Line 8: Line 8:


<tt><b>
<tt><b>
char {4}&nbsp;&nbsp;&nbsp;&nbsp; - Header <font color="purple">(GOB + null byte)</font> <br>  
char {4}&nbsp;&nbsp;&nbsp;&nbsp; - Header <font color="purple">("GOB" + null)</font> <br>  
uint32 {4}&nbsp;&nbsp; - Number of files <br><br>
uint32 {4}&nbsp;&nbsp; - Number Of Files <br>  
<font color="blue"> ''' // Directory ''' </font> <br>
: <font color="blue"> ''' // for each file ''' </font> <br>
:: uint32 {4}&nbsp;&nbsp; - File Offset <br>
:: uint32 {4}&nbsp;&nbsp; - File Length <br>
:: char {260}&nbsp;&nbsp;&nbsp; - Filename <font color="purple">(null)</font> <br><br>
byte {X}&nbsp;&nbsp;&nbsp;&nbsp; - File Data <br>
<br>
<br>
<font color="blue"> ''' // for each file ''' </font> <br>
: uint32 {4}&nbsp;&nbsp; - File Offset <br>
: uint32 {4}&nbsp;&nbsp; - File Length <br>
: byte {260}&nbsp;&nbsp; - Filename <font color="purple">(null)</font> <br>
<br>
byte {X}&nbsp;&nbsp;&nbsp;&nbsp; - File Data <br>
</b></tt>
</b></tt>


Line 36: Line 36:


=== Supported by Programs ===  
=== Supported by Programs ===  
* [[Game Extractor|Game Extractor]]<br>
* [[MultiEx Commander|MultiEx Commander]]<br><br>
* [[MultiEx Commander|MultiEx Commander]]<br><br>


Line 43: Line 44:
* Aquarnoid 2
* Aquarnoid 2
* Barkanoid 2
* Barkanoid 2
[[Category:File Format]]

Latest revision as of 15:46, 20 March 2022

GOB

  • Format Type : Archive
  • Endian Order : Little Endian
  • Date Posted : Dec. 5, 2005

Format Specifications

char {4}     - Header ("GOB" + null)
uint32 {4}   - Number Of Files

// for each file

uint32 {4}   - File Offset
uint32 {4}   - File Length
byte {260}   - Filename (null)


byte {X}     - File Data

MultiEx BMS Script

ImpType Standard ;
IDString 0 GOB ;
Get FOOBAR Byte 0 ;
Get FILENUM Long 0 ;
For X = 1 To FILENUM ;
SavePos FOFFSETX 0 ;
Get FOFFSET Long 0 ;
SavePos FSIZEX 0 ;
Get FSIZE Long 0 ;
GetDString FNAME 260 0 ;
Log FNAME FOFFSET FSIZE FOFFSETX FSIZEX ;
Next X ;

Supported by Programs

Other Games

These games also use this file format:

  • Aquarnoid 2
  • Barkanoid 2