Author Topic: Outpost 2 Remake?  (Read 2425 times)

Offline Brazilian Fan

  • Sr. Member
  • ****
  • Posts: 302
Outpost 2 Remake?
« on: June 13, 2007, 11:00:05 AM »
I've read about an Outpost 2 remake, but I don't remember where. Is it still been made? This isn't a bad idea at all.

Offline Mez

  • Hero Member
  • *****
  • Posts: 648
Outpost 2 Remake?
« Reply #1 on: June 13, 2007, 12:14:35 PM »
The current idea, is that op2 would take too much time to remake.  Programming a game of that size was a team's full time job after all!

Offline Brazilian Fan

  • Sr. Member
  • ****
  • Posts: 302
Outpost 2 Remake?
« Reply #2 on: June 13, 2007, 12:24:00 PM »
Most of the job is already done: Grphics, Sounds, Campaings, Maps, Gameplay, etc.

Offline Sirbomber

  • Hero Member
  • *****
  • Posts: 3238
Outpost 2 Remake?
« Reply #3 on: June 13, 2007, 12:38:22 PM »
But we would still need to reprogram the entire game, and seeing as how we don't know how half of it works that's a bit of a problem.  We'd also probably want to go in and fix some design flaws and add new features (like a built in recorder, ability to add new units, rename existing units, the list goes on).  Additionally, the format used for maps/missions would have to be completely redone to store the information all in one file as well as get rid of the programming knowledge required for making missions.
"As usual, colonist opinion is split between those who think the plague is a good idea, and those who are dying from it." - Outpost Evening Star

Outpost 2 Coding 101 Tutorials

Offline Mez

  • Hero Member
  • *****
  • Posts: 648
Outpost 2 Remake?
« Reply #4 on: June 13, 2007, 02:09:17 PM »
Quote
Most of the job is already done: Grphics, Sounds, Campaings, Maps, Gameplay, etc.
All very well you telling us that the sprites have been done, missions made etc.

Yes that is considered more to the side of data used by the game engine.  You still have to remake the engine, and write all the code to display the graphics, menu system, use the missions dll's.

Then you have the debug and testing time, big big job.

Offline Hooman

  • Administrator
  • Hero Member
  • *****
  • Posts: 4955
Outpost 2 Remake?
« Reply #5 on: June 13, 2007, 04:36:31 PM »
Yeah, it's a big job, hence why it hasn't been done. Although, I have been saying for a while that it's probably less work to remake the game than to keep patching the current copy to get all the bugs out. Of course that also depends on how closely a remake follows the current game. There are certain internal calculations we never looked for or found, so we wouldn't know how to do them accurately. Plus there are a few odditied in the game we wouldn't even know to look for. We just sort of accidentally find them from time to time. Like how lasers and microwaves have a bonus when attacking walls. How are we supposed to know to look for that? Plus, even if we know to look for something, would we really want it to be the same? Anyone here a fan of the pathfinding?

And yes, there is all that data we can use, but is it in a useful format? There's no real meta data associating the graphics in there with what it's used for. It's just a compilation of various graphics. The game engine hardcodes the index of the graphics for various uses. There is no easy way to extract that info. How do you find all the weapon turret graphics? Well, you can look through ALL the graphics and pull them out, or you can check all the weapons drawing code in the exe to find the hardcoded constants. Now consider how small some of those graphics are. I don't know what at lot of them were used for just by looking at them. Some of them are too small to get enough context to figure out what it is. Plus a few of them were never used. The howling dog and the walking santa are obvious examples, but how do we know if any of the others are unused?

That and the way the levels/campaigns are done.... Sure it's kind of cool, but I can't imagine anyone sticking with that format for a remake. Who wants to learn C++ programming just to make a level? Trying to extract the level data inside of a DLL for use in some other format that might be designed is not such an easy task either. I can think of some automated ways of appoximating that info, but to be sure it's the same would take some painstaking analysis of the DLL code.

Just because the data is there, doesn't mean it'd be easy to use it.
 

Offline Sirbomber

  • Hero Member
  • *****
  • Posts: 3238
Outpost 2 Remake?
« Reply #6 on: June 13, 2007, 06:40:42 PM »
Quote
Plus, even if we know to look for something, would we really want it to be the same? Anyone here a fan of the pathfinding?
I like it...
Though for all those obscure things you don't understand, you could always just make something up that looks/feels right and replace it later when you find how it really works.
"As usual, colonist opinion is split between those who think the plague is a good idea, and those who are dying from it." - Outpost Evening Star

Outpost 2 Coding 101 Tutorials