notes about FF8 internal structure

  • Thread starter Thread starter G3nius
  • Start date Start date
Status
Not open for further replies.
G

G3nius

Guest
Hi all!
Recently I started discovering FF8 file formats which aren't described here. And while I go thru code I see some interesting details and write about them.

This is my first article about LZS: http://viiigine.com/articles/LZS-native-unpacker.php
I know that LZS compression is fully discovered, but I finded that function while discovering FF8 file descriptor structures. I think this might be interesting to know, how it's works and how to force it to work faster.
 
Great start, you seem to be serious about understanding FF8 fully!
 :-D
 
Thanks. My goal is to understand meaning of data stored in files. Many things I can guess by looking on it, but in other cases I can't say anything without disassembler and debugger.
Some FF-related projects on this forum inspired me on this start. So, start of viiigine project is your "fault" too  :wink:

I would like to complete discovering FF8 file descriptor structures in a few days. This might give useful info about following data processing. I hope I'm lucky  :mrgreen:
 
It does appear to be the PC version your are tweaking.
I suppose I should do something about the PS1 version someday.

Cyb
 
Some resource filenames are hardcoded in FF8 executable "as is", location resources are composing from maplist entry (c:\data\eng\field\mapdata\maplist) and resource extension (".id", ".msd", etc).

Maybe you spoke about another filenames. If yes, concretize your question please, because my skills in English are low.

Note: I mean PC version of FF8.
 
I don't know if this will be useful for anyone, but when I translated kernel.bin in FF8 (PC version), I found inside pointers to all phrases in file. :)
General note: kernel.bin has 25 sections (for magic names, item names, etc.). Every section has 2 subsections - one for pointers, and one for text.

Inside pointer subsection, very often there is "interval" between correct pointers, which has some other data (I don't know what this data is). So I create this table:

http://www.translation-ff8.xt.pl/qh/kernel-pointers.htm

Texts inside kernel.bin use DTE, but only in descriptions for items, etc., not in the names.
 
Colly, thanks. I'll keep in mind your link while exploring code that uses kernel.bin.
I had a lot of work this week, but I hope I can to dedicate weekend to viiigine only.  :evil:
 
Status
Not open for further replies.
Back
Top