Jasoco wrote:Is the Mac version of LÖVE done in Cocoa?
Sort of.
LÖVE itself is C++ based around cross-platform libraries written in C/C++ such as SDL (which does have some Objective-C code in the Mac version), OpenGL, and DevIL. That doesn't change on the Mac. By necessity, however, the Mac LÖVE app itself uses some Objective-C – a small Cocoa entry point that handles actually starting everything up and interfacing with OS X, since SDL can't manage that on its own. (Namely,
SDLMain.m.)
This is nominally a thread about LÖVE on Android, but I'll make a last statement about porting LÖVE to the iPhone - it would suck to do. SDL 1.3, which should come out sometime before the heat death of the universe, has built-in support for the iPhone and iPod touch, so that's the single-biggest hurdle dealt with. But as far as I know, only one of the other libraries we use has an iPhone version (not counting OpenGL, since the version on the iPhone is much more limited than the desktop version and would require a major amount of rewritten code). We would need to either start/contribute to porting efforts for the above libraries, or ditch them and write the necessary libraries ourselves. And that would take approximately forever.
Even if we get LÖVE completely working, with feature parity with the desktop version, accelerometer support, etc., there's still the issue of that annoying clause in Apple's App Store terms that disallows executing any external code. People would not be able to just download the LÖVE app from the App Store and then play .love files on them - every .love file would
have to be turned into its own separate iPhone app and submitted to the App Store separately. That means that porting a game to the iPhone would cost at least $99 (for the first game anyway, once you've paid the fee you can port as many as you like).
There's the option of going jailbreak-only, obviously, which would simultaneously solve the "no external code" issue and the "$99" issue. I'm not a huge fan of jailbreaking personally, but that's something that can be considered. I would argue, however, that that decision is moot, since the effort to port LÖVE to the iPhone would be highly non-trivial, and
much better spent improving the engine itself.
Back to Android discussion, hopefully!