Difference between revisions of "FF7/Kernel/Low level libraries"

From Final Fantasy Inside
< FF7‎ | Kernel
Jump to navigation Jump to search
my_wiki>Halkun
(LGP Archive)
my_wiki>Halkun
(BIN Types)
Line 17: Line 17:
 
The BIN format comes as two different types. They both have the same extension, so one must open the file to see which format is which. They are best described as BIN Types and Bin-GZIP types
 
The BIN format comes as two different types. They both have the same extension, so one must open the file to see which format is which. They are best described as BIN Types and Bin-GZIP types
  
==== BIN Types ====
+
==== BIN Type Archives ====
  
 
These are uncompressed archives. The header consists of a 4 byte header that gives the length of the file without the header and then the data beyond that.
 
These are uncompressed archives. The header consists of a 4 byte header that gives the length of the file without the header and then the data beyond that.
 +
  
 
==== BIN-GZIP Types ====
 
==== BIN-GZIP Types ====

Revision as of 11:45, 11 March 2005

PC to PSX comparison

The files and data formats used in the PSX version of FF7 and it's PC port are conceptually the same thing, and accomplish the same tasks. That being said, they both have wildly different formats. Both ofwhich were derived from a third original format that is also somewhat different that the first two.

The original PSX FF7 was created in part using Sony's Psy-Q development library. This library usescommon formats that are "native" to the PSX. Often times a toolkit was used to convert commondevelopment- based formats, such as a TGA bitmap or a palleted GIF file, to something a little moresuited to Psy-Q, which would be a TIM file.

During the porting process to the PC, some of the original artwork, (and artists for that matter), wereno longer available. This resulted in the port team having to use the Psy-Q versions of many files,which were ill suited for the PC architecture. In our example, the TIM file was converted to a TEX file,which would be manipulated in the PC's video memory a little more efficiently. Sometimes theoriginal artwork was available, such as the pictures of the characters within the menu, or the original MIDI files. Most often times it was not.

To make things a little more confusing, both systems also archive their data files in different ways,making the extraction and rendering of each file a bit of a bear. For the most part the data within eachfile is the same thing, just a little switched around. This manual will cover the more generic files first,and then common files used in each module.

Data Archives

To save space, quicken access time, and to obfuscate the file structure a little, most of the data files are stored in some kind of archive format. The archives remove such useful items as subdirectories and logical data placement. There is no real "native" format these are based on.

BIN archive data format

The BIN format comes as two different types. They both have the same extension, so one must open the file to see which format is which. They are best described as BIN Types and Bin-GZIP types

BIN Type Archives

These are uncompressed archives. The header consists of a 4 byte header that gives the length of the file without the header and then the data beyond that.


BIN-GZIP Types

Unless otherwise noted, these have a 6 byte header. After this are many gziped sections concatenated together.

Offset Length Description
0x0000 2 bytes Length of gzipped section 1
0x0002 2 bytes Unknown
0x0004 2 bytes File number
0x0006 Varies [0x1F8B080000000000...] - Gzip header 1 and data
Varies 2 bytes Length of gzipped section 2
Varies 2 Unknown
Varies 2 bytes File number
Varies Varies [0x1F8B080000000000...] - Gzip header 2 and data
...


LZS Archive

The LZS format is used throughout the PSX version of Final Fantasy 7, often ending with the .lzs extension. LZS itself stands for Lempel-Ziv-Shannon-Fano, Satisitcal plus Arthimitic. It was originally devoped by Professor Haruhiko Okumura based on the work of Abraham Lempel and Jacob Ziv.

LGP Archive

The LGP file format is only used for the PC port of Final Fantasy 7. These are large "volume" type archives that hold most of the game's data. The archive holds no subdirectory information and can hold thousands of files. Unlike the BIN or LZS type files, this archive does reference the data within it by filename.