Hello.
I'm willing to work on a program that would allow modification of the Gobliins series games (Gob1-3 and Woodruff), but I'm not quite sure about the file formats used in there, and the compression algorithm inside STKs. I've checked out the ScummVM tools for a program that would allow the decompression/compression/packing/unpacking of STK files and data inside them, but it looks like one hasn't been made or released. Are there any plans to make and release such a tool, or are there file format specs out there somewhere so I can check them out? Depending on the time I have I may be willing to contribute to the Gobliins part of the ScummVM project in the future (can't say for sure right now since I'm rather busy atm, but will try to report on it later on). My skills include C#.NET, VB.NET, and C++.
Thanks in advance for any help.
- Agetian
GOB engine tools question.
Moderator: ScummVM Team
Check out <http://wiki.xentax.com/index.php/Goblins_3>.
-
- Posts: 9
- Joined: Fri Sep 23, 2005 1:55 pm
- Location: Versailles
mmm, Lzss algo has already been written in scummvm for Gob1 & 2
They also use a rle algo for pictures.
Animations of Gob3 and woodruff are in the VMD format that is used in Sierra games too: http://www.multimedia.cx/vmd-format.txt
And the xentax specifications are very very poor for Goblins, it describes only the archives structure, not the format of each file contained in these structures, some of them are also archives.
They also use a rle algo for pictures.
Animations of Gob3 and woodruff are in the VMD format that is used in Sierra games too: http://www.multimedia.cx/vmd-format.txt
And the xentax specifications are very very poor for Goblins, it describes only the archives structure, not the format of each file contained in these structures, some of them are also archives.
@ Dorian Gray: I see, thanks for help. Do you think there are any better specs out there somewhere? Btw, I've seen the Lzss algo written in scummvm, but it's only for unpacking AFAIK, and I can't find the packing counterpart. I've tried using another LZSS algorithm I found on the Internet but it didn't seem to work correctly with Gob files -- I'm wondering if Gob files need a certain specific version of LZSS or a certain set of parameters (e.g. the buffer size and so on) to decode/encode?
Thanks for any further help.
- Agetian
Thanks for any further help.
- Agetian
-
- Posts: 9
- Joined: Fri Sep 23, 2005 1:55 pm
- Location: Versailles
I browsed around a little and found this: http://cd.textfiles.com/blackphiles/PHI ... R/LZ_C.ZIP
Use lzss.c
I tested it on some files from Goblins and sometimes the original compressed data and the data compressed with Lzss even is identical.
It also seems to decompress the Gob data well (just for testing the Lzss code, I know there's obviously code in the ScummVM SVN).
So maybe this could help you.
I it doesn't work, you can also simply store the files uncompressed in the Stk etc. archives.
Use lzss.c
I tested it on some files from Goblins and sometimes the original compressed data and the data compressed with Lzss even is identical.
It also seems to decompress the Gob data well (just for testing the Lzss code, I know there's obviously code in the ScummVM SVN).
So maybe this could help you.
I it doesn't work, you can also simply store the files uncompressed in the Stk etc. archives.