Home | Forums | What's new | Resources | |
Compressed DAT files on many Saturn Games |
UltraDev - Aug 7, 2001 |
UltraDev | Aug 7, 2001 | |||
I have ran into archive files, that contain many other files. How would I go about opening them. I have tried Winrar and Winace I haven't bothered with WinZip b/c it's so lame. |
IceDigger | Aug 7, 2001 | |||
they tend to be compressed in a developer- or gamespecific format.. none of the common stuff. |
UltraDev | Aug 7, 2001 | |||
Well, do you know what I can do about it? |
IceDigger | Aug 9, 2001 | |||
figure out the compression algorythm or ask the programmers for the extraction tool. |
whodailli | Aug 17, 2001 | |||
well actualy if its a huge file an its a .dat then its most likely a mpeg....basicaly a movie file... |
RadSil | Aug 18, 2001 | |||
A question to some people that might know... what file format has the header "LZ00"? LZH compression? |
ExCyber | Aug 18, 2001 | |||
Looking at a description of the LZH file format, it seems that LZH files do not start with "LZ00" (it might appear somewhere in the header, but I'm not sure). The signature may signify some kind of custom format based on Lempel-Ziv compression, though. The Lempel-Ziv compression scheme is based on recognizing repeating blocks in a stream of data. A description of the algorithm can be found at: http://www.data-compression.com/lossless.html#lz For source code that decompresses Lempel-Ziv, gzip ( http://www.gzip.org... ) should have an LZ decompression routine, though it's probably for a specific implementation of LZ. |
TakaIsSilly | Aug 18, 2001 | |||
Ah! Here's that source code and texts I was thinking. It's 3 very influent modifications of the LZ and Huffman compression. http://programmersheaven.com/zone22/cat166/2261.ht... |