Search found 58 matches

by john_doe
Tue Jul 24, 2007 5:41 pm
Forum: Compressed files and methods
Topic: ZLIB RFC 1951 problems..
Replies: 9
Views: 3272

Could it be the file is compressed with Deflate64?
It's almost identical to the standard deflate but with some improvements.
by john_doe
Tue Jul 24, 2007 4:03 pm
Forum: Compressed files and methods
Topic: Compressed archive LZW ???
Replies: 16
Views: 5406

That's normal for LZW. The maximum length is probably 13 or 14 bits.
by john_doe
Tue Jul 24, 2007 8:46 am
Forum: Compressed files and methods
Topic: Compressed archive LZW ???
Replies: 16
Views: 5406

No.


:)
by john_doe
Tue Jul 24, 2007 8:05 am
Forum: Compressed files and methods
Topic: Compressed archive LZW ???
Replies: 16
Views: 5406

Just a note: The first bit and next 8 bits probably make up a 9bit code word.
"100000000" then indicates to clear the dictionary. Codes < 256 are literals and codes >= 258 indices into the dictionary.
You can probably use an existing LZW decompressor and play around with it.
by john_doe
Mon Jul 16, 2007 6:35 pm
Forum: Game Archive
Topic: Transformers *.DAT
Replies: 21
Views: 6903

Seems to be LZW based.
by john_doe
Thu Jul 12, 2007 6:22 pm
Forum: Game Archive
Topic: Request for Joint Task Force - .pak
Replies: 4
Views: 1879

Sorry, there's nothing usable yet. It's been on my todo-list since back then :)
But I've located the decompression code, it's "just" a matter of writing the code :)
by john_doe
Tue Jun 12, 2007 8:07 pm
Forum: Compressed files and methods
Topic: Zone66 Compression Unknown
Replies: 28
Views: 10471

Hi, No worries, I've just been busy with some other stuff. :) I've made a little sprite viewer some time ago, it works quite well so far. There's still the problem with the different LZW values...probably I'll just have to hard-code a list of filenames and note which version of the algorithm to use....
by john_doe
Sat Jun 09, 2007 11:25 am
Forum: Graphic file formats
Topic: Strange fixed Palette.
Replies: 3
Views: 1951

That seems to be a DAC VGA palette. The range there is from 0..63, not from 0..255. You need to shift every byte left by 2 to adjust the range, the palette should be correct then.
by john_doe
Tue May 22, 2007 6:19 am
Forum: Holy Cow!
Topic: Wer spricht jetzt hier eigentlich deutsch?
Replies: 14
Views: 5941

Hallo, hier ist noch'n Deutscher :)
by john_doe
Sun May 13, 2007 5:35 pm
Forum: Compressed files and methods
Topic: Zone66 Compression Unknown
Replies: 28
Views: 10471

Sorry that I haven't released the decompression tool yet. It works so far but crashes with the problem I mentioned before (the different max. dictionary size in the LZW decompressor). I want it to detect automatically which value is used somehow. And yes, it's basically possible to modify the graphi...
by john_doe
Tue May 08, 2007 8:11 am
Forum: Compressed files and methods
Topic: Zone66 Compression Unknown
Replies: 28
Views: 10471

I found out more. The map looks much nicer now :)
by john_doe
Mon May 07, 2007 11:19 pm
Forum: Compressed files and methods
Topic: Zone66 Compression Unknown
Replies: 28
Views: 10471

:)

In MAPADAT.Z66 are the animations of the tiles. These values translate to the actual tile to use.
Well, more tomorrow I hope.
by john_doe
Mon May 07, 2007 10:14 pm
Forum: Compressed files and methods
Topic: Zone66 Compression Unknown
Replies: 28
Views: 10471

Not much. The only difference is one value used in the LZW decompression. It's the maximum dictionary size. In the code I currently use it's max. 13 bits, in the other code 14 bits. That's all I can see so far. I just threw together a sucky map viewer . Works ok so far but some tiles seem wrong. I u...
by john_doe
Mon May 07, 2007 9:37 pm
Forum: Compressed files and methods
Topic: Zone66 Compression Unknown
Replies: 28
Views: 10471

It's almost done but as you said, something popped up :) I'll try to get it done this week. Also I need to test it with all the files. There's a slightly different decompression routine in the Exe and I'm not sure if it's used. If it is used, then there's no way of telling which routine is used on w...
by john_doe
Sat May 05, 2007 1:40 am
Forum: Compressed files and methods
Topic: Zone66 Compression Unknown
Replies: 28
Views: 10471

LZW it is. More tomorrow :)