vote up 4 vote down star
2

For a while I've been thinking of trying to do a port of one of my favorite classic PC games, The Ur-Quan Masters (aka Star Control 2) to the iPhone. UQM uses SDL for all its graphics, sound, input and other gamey stuff and there does seem to be a port of SDL to iPhone but it doesn't look very mature at this point.

Has anyone put the iPhone SDL port through its paces? How well does it work? What kinds of issues can I expect taking this project, which is already cross platform code to iPhone?

If SDL isn't an option can anyone reccomend an alternative framework to look at that will bridge the gap between SDL and the native libraries like OpenGL ES and Core Audio? Or is coding to those frameworks the best option?

Edit to add: Here's a link to a forum thread on the UQM forum about doing an iPhone port.

flag

72% accept rate
I was just thinking the same thing (that there should be an iPhone version of Starcon) -- but got hung up on trying to figure out how the melee controls could possibly work. Anyway in your shoes I'd just code straight to OpenGL, but I've not enough iPhone experience to answer with authority. – Crashworks Feb 28 at 3:49
Take a look at the forum thread I linked to, there's some discussion on there about possible control schemes. – Mike Akers Feb 28 at 3:57

2 Answers

vote up 7 vote down check

The svn version's working well for me.

I had one problem and that was a crash in atexit(SDL_Quit).

So I disabled cleanup.

Plus the library names are not sensible, but you can change that.

The hardest part for me was porting my SDL code to SDL-1.3, and porting my OpenGL code to OpenGLES.

OpenGLES works as you'd expect, the accelerometer shows up as a 3 axis joystick, and sound is solid.

I give iPhone SDL 4.5 out of a possible 5 stars.

link|flag
Great news, thanks! – Mike Akers Feb 28 at 18:25
vote up 2 vote down

Of note to others is that "SDL" is the Simple DirectMedia Layer:

http://www.libsdl.org/

link|flag
What iPhone SDL project are you talking about? I just did an SVN checkout from svn.libsdl.org and I don't see anything related to iPhone. There are a couple of files called SDL_ipodvideo.*. That's it. – Buggieboy Aug 3 at 17:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.