I have a Java Application and want to interface Ogre inside it. Specifically Ogre is a 3D Game engine library which has plenty of complex C++ objects inside it.I have got multiple options to accomplish this

1.)Use Raw JNI (Tough as JNI is quite complex)

2.)Use SWIG + JNI (Somewhat simple...but still JNI is involved)

3.)Use Lua and NO JNI (Use lua binding to Ogre)...Basically using Lua helps because interfacing a C++ lib with Lua is much more easier and calling Lua from java wouldnt be too hard.

4.)Use Ogre4j (A Java binding to Ogre using JNI...but this project isnt so updated with the latest Ogre version)

Which of these/looks like the best option keeping in mind future maintenance/upgrades to Ogre?

Is Option no 3 worthwhile for trying out?

link|improve this question

Why would you want to use Ogre from Java? Why not either find a Java game engine, or write your app in C++? – jalf Feb 29 at 16:43
feedback

1 Answer

up vote 1 down vote accepted

I'd like to suggest a 5th option: JNA https://github.com/twall/jna, a former java.net project.

My reasoning: options 1 and 2 are too low level, 3 is imho experimental (you mentioned "plenty of complex C++ objects"), and number 4 definitely lacks updates. JNA is still maintained, open source (LGPL), documented and cross-platform (although the docs/examples might suggest opposite).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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