Game Development Community

Roboherd on Mac?

by Adam Beaumont · 04/22/2006 (6:37 pm) · 4 comments

Feedback from our latest demo release of Roboherd has been ok and looking at the online scores it seems like some people have been able to get the hang of things and post some pretty good times. We're currently figuring out how much more work we should do on it and if we can realistically get it to a level where we can publish it or if we should finish it up, stick a working version on our website and move on to the next project.

One of things I'd like to do is get a version up and running on Mac - things I have are:

- Heavily modded version of v1.2 source code for PC (VC6)
- iMac with intel inside
- XCode

How hard is it going to be for me to get my PC source code set up on Mac? Anyone have any experience of this - I am gonna try and just copy it over and see if I can bodge it to work but tbh I am expecting there to be tons of issues. If anyone can give a helping hand I'd appreciate it - otherwise just wish me luck !

#1
04/22/2006 (6:48 pm)
It's pretty easy so long as most of your modifications are within the 'Game' realm of the engine. I'm not sure if you've gone messing with anything else like rendering, collision, etc... but if it's just in 'Game' then as far as I've noticed you can take that portion of the code and just copy it over. Heck, even outside of that the platform layer usually takes care of most things pretty handily. There are definitely somethings though that won't fly easily. I found it really rewarding to see my games running on both platforms in multiplayer especially ;) Good luck!
#2
04/22/2006 (7:27 pm)
i've been messing with this codebase over a couple of years (and a couple of projects!) so there are lots of changes, most of which I can't even remember. I only touched some of the rendering code (to add in some extra texture layers) but it was all opengl so i think it should be fine.

I've copied all the code source files onto the mac, now im just trying to compare make files with TGE1.4 and see where it gets me !

I've hit a problem with GCC 3.3 not being able to find cc1plus executable - eek - suddenly way out of my deph already!!!
#3
04/23/2006 (12:09 am)
I've helped port Ninjas vs. Pirates to the Mac, and it turned out to be easier than I thought. It sounds like your code is probably more modded than Jon's is, but that may not matter. I'm not an expert at it but I can help out if you need it, let me know.
#4
04/23/2006 (2:24 am)
I always comment every engine change with a //Jeremy's Mods and often times I comment out the original source etc... but leave it there so I can re-use it if I need to.