vote up 3 vote down star
1

Are there are libraries / frameworks that facilitate 2D game programming in Lua on the iPhone?


It looks like http://anscamobile.com/ and http://sio2interactive.com/GAMES.html are the only reasonable options at this point. Someone should create a simple Lua binding for OpenGL, AL and iPhone Events for the iPhone!

flag
I found anscamobile.com It looks like it might be a good option. Perusing the API ... – richcollins Jul 31 at 0:50
anscamobile.com isn't an option for me ATM. You can't test on the physical device before submitting it to the App Store, you can only test in the simulator. – richcollins Jul 31 at 1:10
If i'm correct you can directly embed lua in your game seeing as it's an ANSI C library. Then, if you spend some time you can create your own bindings through plentiful use of function registering, and events can be handled by calling functions. – RCIX Sep 7 at 14:11

2 Answers

vote up 0 vote down check

I'm trying out SIO2 as it apparently supports lua.

While it is for 3D and may be overkill for 2d it looks pretty powerful. Just make your models in 2d and fix your camera position.

--jdkoftinoff

link|flag
Thanks for the link! I think this is overkill. Something with Lua bindings to OpenGL, OpenAL and a way to receive events from the phone would suffice. I just don't want to deal with writing bindings. – richcollins Jul 30 at 23:24
vote up 0 vote down

There has been a fair amount of discussion of Lua on the iPhone on the Lua list. It appears that Apple is touchy about allowing user-supplied scripts, but has approved apps that used Lua internally as an implementation language.

I know I've seen reference to several approaches to wrapping iPhone goodies mentioned, but since I'm not personally an iPhone developer (or even user) I haven't paid attention to the details.

link|flag
That's surprising. I figured Lua would be a no-no based on my reading of Apple App Store Law. – Nosredna Jul 31 at 0:59
It is forbidden for any scripts that aren't initimately packaged within the app to be runnable. You can't ship an app that has a Lua command prompt that will dofile() any file the user wants, for example. But there are several ways to use Lua as an implementation language that hides it within the app without the ability to load arbitrary scripts. The claim is that there exist apps that were approved that included Lua internally. – RBerteig Jul 31 at 1:02
1  
Personally I like Google Android's approach where they embrace Lua as the preferred way for users to script their own phone... – RBerteig Jul 31 at 1:03
1  
From my research, you can't download and execute scripts. You can load scripts from your app wrapper. AFAICS, this is to prevent you from adding features without having them first reviewed in the app store. If anyone has any evidence supporting Apple rejecting scripted apps that don't allow loading of external scripts, I would love to hear it. – richcollins Jul 31 at 1:07
@Rberteig. I don't know. It seems pretty clear to me that even embedded interpreters are forbidden, but I would not be surprised if some got through approval. – Nosredna Jul 31 at 1:08
show 4 more comments

Your Answer

Get an OpenID
or

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