views:

142

answers:

1

I'm thinking about starting a crazy enough hobby project that would span across several years and would include disassembling & OpenGL programming.
Having almost finished my 3rd Android app, I must say that I love the platform and will program for it.
Now, let's take the classic Carmageddon game as a porting candidate.

The question boils down to:

  • What tools have been used back then?
  • What specific knowledge would be valuable for this kind of taks (math & general gamedev knowledge aside)?

EDIT: Legal questions aside.

+1  A: 

A common approach is to implement an emulator of the CPU and/or system which hosted the legacy game(s) and then to run the binaries of the game as-is (or only slightly altered).

This approach is certainly not as powerful as a true rewrite/port of the original work, for example it doesn't allow you to modify the game in any way, not even to fix existing bugs, but it is also very practical for by re-creating a single host system, one can run dozens of different games.

The tools to rewriting / porting an application in earnest are the common tools of reverse engineering of software:

  • disassemblers (in particular for the Z80 CPU which was quite popular with arcade game producers)
  • decompilers (if you have some insight into which higher language the game was written in)
  • Google ;-) (I mean Internet Search Engines at large), as finding, even fragmentary source code or information related to the targeted game (or even to games produced on/for the same system) can provide a formidable jump-start to the project.

Before you get too advanced in any such project, I suggest you assert the legality of the project and that you seek formal permission fromthe relevant right owners etc.
I can't find it at the moment but I remember a story about someone who recently revived a long defunct game (!) running on now outdated hardware/system hosts, and yet who got in trouble when trying to market (or was it even for free?) the "revived" application...

mjv
What kind of lowlife would sue someone for porting his 30 year old abandonware to a modern system? (if it's not open source I can see difference)
Longpoke
LongPoke: Try remaking Super Mario Bros 1 for PC/Xbox/Whatever and see how far you get for getting sued by Nintendo. That game is about 24 years old now. As long as your content is original and you don't publish the game under the same name, it's all kosher though.
Mads Elvheim