Extract assets from an old windows (1998) game

Started by
5 comments, last by Xavier Arias Botargues 7 years ago

Hi everyone,

as a hobby project, I decided I want to remake Liberation Day (

), the second part of Fallen Haven (1st one seems to be more known).

My main idea is to reuse all assets, so I only have to work on code-related tasks; at least for now.

The game installer is installing DX5 and a very old version of DAO (3.5), so I'm assuming those are the main dependencies.

I've been expecting a game like this to work through color palettes and 1-byte per color textures; especially since the game looks ok when ran at 256 color compatibility mode.

In any case, I'm struggling to extract any assets from the game, I’ve tried to use Ninja Ripper, to extract used textures at runtime, but I’m unable to view the extracted textures through any viewer.

I abandoned that approach and tried to open files from the disk and interpret them like textures, I’ve mainly been trying to interpret them as black and white 8bit textures, but here I have to guess, not only bit depth, but the texture width, height, so rows are correctly aligned.

Game files that I’ve seen so far have the following extensions

  1. SMK, Inside a folder called INTERF, it seems to be the interface assets.
  2. DBI, inside a folder called IMGS. It should be in-game assets, like roads, buildings...
  3. MDB, inside multiple folders. Seems to be DAO files, but cannot be sure.

That on it's own didn't gave any results, but had me code a tool on Unity to interpret a file like a texture and paint it on screen; if I later manage to get the assets right, they may be interpreted with this tool (as they will use palettes).

Let me know if you're interested on the tool, I can upload it to github.

I’ve found 2 files that look like palettes, but need to be correctly read to be used as such (PAL.BMP and PALCYCLE.PAL).

After writing all this, I now realized that assets could be, not only packed, but compressed, and using palettes, a combination that may explain why i’m unable to see anything from this files at all. I also can take another look at files from ninja riper through the tool.

So my main question here if there's any tools that can aid me at what I'm doing, any guesses from your side that may help me get to the right path?

Thanks and sorry for the long post!

Advertisement

It's worth looking at the Xentax forums if you haven't already as they have a good list of tools and expertise in reverse engineering formats. I started there when I worked on extracting the assets from Gladius. No harm in putting your code on github to look at.

Thanks for the reference to Xentax; i didn't know about it and it looks really interesting.

SMK, Inside a folder called INTERF, it seems to be the interface assets.

SMK

Smack files?

https://en.wikipedia.org/wiki/Smacker_video

http://www.radgametools.com/smkhist.htm

They may have used some compression from rad games as well. i can't recall if rad offered a compression solution back then or not.

Norm Barrows

Rockland Software Productions

"Building PC games since 1989"

rocklandsoftware.net

PLAY CAVEMAN NOW!

http://rocklandsoftware.net/beta.php

Funny enough I started doing this exact thing about a month ago in order to try and get the games (fallen haven and Liberation day) working on Windows 10.

This is my main account: https://www.gamedev.net/user/206824-conquestor3/

But google logins aren't working right now, so this is my temporary one.

@Norman Barrows, thanks to your message I've been able to open the SMK files and reproduce them as a video with MPLite

Image of the interface reproducing as a video https://ibb.co/f0ULqa

@conquestorbugged, I've been able to play liberation day on windows 10, can't tell if that will work for Fallen Haven. I'll PM you with my findings :) Have you made any progress on extracting any assets?

I haven't said so on my first post, but I'm going to make the game open source and post it on github, in order to accept help and colaboration from any source. Anyone interested on it? So far there are 0 lines of code :D

Just wanted to update you guys on my progress.

I have been working on a extractor tool for Liberation Day's files.

So far I've managed to export SMK (using FFmpeg as library) and MDB files (connecting to them through OleDbConnections).

If anyone is interested, I've pushed the code on github.

I still have 2 main challenges: DBI files and a big FF file. After this, I'll only need to code the game :lol:

This topic is closed to new replies.

Advertisement