7th Level BIN 7L: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>WATTO
No edit summary
imported>Ikskoks
No edit summary
 
(13 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== BIN (TYPE 1) ==
{{GRAFPageHeader}}


* ''' Format Type ''':    Archive <br>
== BIN (Type 1) ==
* ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br>
{{GRAFPageMisc}}


=== Format Specifications ===
{{GRAFPageFormat|1=
: char {2}&nbsp;&nbsp;&nbsp;&nbsp; - Header {{Constant|(7L)}}
: uint16 {2}&nbsp;&nbsp; - Version {{Constant|(1)}}
: byte {1}&nbsp;&nbsp;&nbsp;&nbsp; - Description Length
: byte {79}&nbsp;&nbsp;&nbsp; - Description {{Constant|(null)}}
: uint16 {2}&nbsp;&nbsp; - Number Of Files
: uint16 {2}&nbsp;&nbsp; - {{Unknown}}
: uint16 {2}&nbsp;&nbsp; - {{Unknown}}
: uint16 {2}&nbsp;&nbsp; - {{Unknown}}
: uint32 {4}&nbsp;&nbsp; - {{Unknown}}
: uint32 {4}&nbsp;&nbsp; - null
: uint16 {2}&nbsp;&nbsp; - Filename Directory Length
: byte {4}&nbsp;&nbsp;&nbsp;&nbsp; - Padding {{Constant|(0xFF 0xFF 0xFF 0xFF)}}
: uint32 {4}&nbsp;&nbsp; - {{Unknown}}
: uint64 {8}&nbsp;&nbsp; - null
{{BlockDescription| // Directory }}
: {{BlockDescription| // for each file }}
:: uint16 {2}&nbsp;&nbsp; - {{Unknown|File Type ID?}} {{Constant|(1,3,5,11,12)}}
:: uint32 {4}&nbsp;&nbsp; - Offset {{Constant|(relative to the end of the directory)}}
:: uint32 {4}&nbsp;&nbsp; - Length
{{BlockDescription| // Filename Directory }}
: {{BlockDescription| // for each file }}
:: char {X}&nbsp;&nbsp;&nbsp;&nbsp; - Filename {{constant|(null)}}
:: byte {1}&nbsp;&nbsp;&nbsp;&nbsp; - null Filename Terminator


=== Format Specifications ===
byte {X}&nbsp;&nbsp;&nbsp;&nbsp; - File Data
}}


<tt><b>
=== Notes and Comments ===  
char {2}&nbsp;&nbsp;&nbsp;&nbsp; - Header <font color="purple">(7L)</font> <br>
None
uint16 {2}&nbsp;&nbsp; - Version <font color="purple">(1)</font> <br>
byte {1}&nbsp;&nbsp;&nbsp;&nbsp; - Description Length <br>
byte {79}&nbsp;&nbsp;&nbsp; - Description <font color="purple">(null)</font> <br>
uint16 {2}&nbsp;&nbsp; - Number Of Files <br>
uint16 {2}&nbsp;&nbsp; - <font color="red"> '' Unknown '' </font> <br>
uint16 {2}&nbsp;&nbsp; - <font color="red"> '' Unknown '' </font> <br>
uint16 {2}&nbsp;&nbsp; - <font color="red"> '' Unknown '' </font> <br>
uint32 {4}&nbsp;&nbsp; - <font color="red"> '' Unknown '' </font> <br>
uint32 {4}&nbsp;&nbsp; - null <br>
uint16 {2}&nbsp;&nbsp; - Filename Directory Length <br>
byte {4}&nbsp;&nbsp;&nbsp;&nbsp; - Padding <font color="purple">(all (byte)255's)</font> <br>
uint32 {4}&nbsp;&nbsp; - <font color="red"> '' Unknown '' </font> <br>
uint64 {8}&nbsp;&nbsp; - null <br>
<br>
<font color="blue"> ''' // Directory ''' </font> <br>
: <font color="blue"> ''' // for each file ''' </font> <br>
:: uint16 {2}&nbsp;&nbsp; - <font color="red"> '' File Type ID? <font color="purple">(1,3,5,11,12)</font> '' </font> <br>
:: uint32 {4}&nbsp;&nbsp; - Offset <font color="purple">(relative to the end of the directory)</font> <br>
:: uint32 {4}&nbsp;&nbsp; - Length <br>
<br>
<font color="blue"> ''' // Filename Directory ''' </font> <br>
: <font color="blue"> ''' // for each file ''' </font> <br>
:: char {X}&nbsp;&nbsp;&nbsp;&nbsp; - Filename <font color="purple">(null)</font> <br>
:: byte {1}&nbsp;&nbsp;&nbsp;&nbsp; - null Filename Terminator <br>
<br>
byte {X}&nbsp;&nbsp;&nbsp;&nbsp; - File Data <br>
<br>
</b></tt>


=== MultiEx BMS Script ===  
=== MultiEx BMS Script ===  
Not written yet


Not written yet<br><br>
=== Supported by Programs ===
* [[Game Extractor|Game Extractor]]


=== Compatible Programs ===  
=== Documentation ===
None


* [[Game Extractor|Game Extractor]]<br><br>
=== Games ===
* [[Arcade America]] [[BIN|*.bin]]
* [[Battle Beast]] [[BIN|*.bin]]
* [[G-Nome]] [[BIN|*.bin]]
* [[Krondor]] [[BIN|*.bin]]
* [[Monty Python and the Quest For The Holy Grail]] [[BIN|*.bin]]
* [[Monty Pythons Complete Waste Of Time]] [[BIN|*.bin]]
* [[Monty Pythons Meaning Of Life]] [[BIN|*.bin]]
* [[Take Your Best Shot]] [[BIN|*.bin]]
* [[The Great Word Adventure]] [[BIN|*.bin]]
* [[The Universe According To Virgil]] [[BIN|*.bin]]
* [[Tuneland]] [[BIN|*.bin]]


=== Other Games ===
{{GRAFPageFooter}}


These games also use this file format<br>
{{DEFAULTSORT:{{PAGENAME}}}}
* Arcade America *.bin
[[Category:PC formats]]
* Battle Beast *.bin
[[Category:File Format]]
* G-Nome *.bin
* Krondor *.bin
* Monty Python and the Quest For The Holy Grail *.bin
* Monty Pythons Complete Waste Of Time *.bin
* Monty Pythons Meaning Of Life *.bin
* Take Your Best Shot *.bin
* The Great Word Adventure *.bin
* The Universe According To Virgil *.bin
* Tuneland *.bin

Latest revision as of 01:32, 3 January 2021

Back to index | Edit this page

BIN (Type 1)

Format Specifications

: char {2}     - Header (7L)
uint16 {2}   - Version (1)
byte {1}     - Description Length
byte {79}    - Description (null)
uint16 {2}   - Number Of Files
uint16 {2}   - Unknown
uint16 {2}   - Unknown
uint16 {2}   - Unknown
uint32 {4}   - Unknown
uint32 {4}   - null
uint16 {2}   - Filename Directory Length
byte {4}     - Padding (0xFF 0xFF 0xFF 0xFF)
uint32 {4}   - Unknown
uint64 {8}   - null

// Directory

// for each file
uint16 {2}   - File Type ID? (1,3,5,11,12)
uint32 {4}   - Offset (relative to the end of the directory)
uint32 {4}   - Length

// Filename Directory

// for each file
char {X}     - Filename (null)
byte {1}     - null Filename Terminator
byte {X}     - File Data

Notes and Comments

None

MultiEx BMS Script

Not written yet

Supported by Programs

Documentation

None

Games

Navigation

Jump to a listing by...
All Formats - Common Formats - Standard Formats - Malformed Pages
Platforms
Microsoft:
Xbox
Xbox 360
Nintendo:
GameCube
DS
Desktop:
PC
Sega:
Dreamcast
Sony:
PlayStation
PlayStation 2
PlayStation 3
PlayStation Portable
Type
Animation - Archive - Audio - Image - Mesh - Miscellaneous - Model - Video
Endianness
Little-endian - Big-endian
BMS Scripts
Pages Without a BMS Script

All Pages with Scripts:
Recently Added Scripts

Program Support
No Known Support

MultiEx Commander - Game Extractor

Format Specification Completion
Work in Progress - Almost Done - Completed
Compression and Encryption
No Compression or Encryption Used - Unknown Compression or Encryption Used

One or Both Used:
Compression Used - Both Compression and Encryption Used