up vote 7 down vote favorite
5
share [g+] share [fb]

Looking for an easy to use 3D Java Engine API (i.e. not wrapper) that has a good community and good development. Extra features (i.e. audio, input, etc.) are not necessary but nice.

List of the most popular Java 3D graphics APIs I found:

Wrappers / Low Level

  • Jogl - Strong community / Good support / Active
  • Java3D - Abandoned (or slowly dying), phased out Scene Graph (or re-tooling into JavaFX?)
  • lwjgl - Wrapper (Along with audio and input) / Active

Engines

jMonkey Engine - Wikipedia - Active - Branching between version 3.0 and 2.0 (may hurt community)

ogre4j - Wikipedia - Active

Bindenlicht - No Wikipedia! - Not active


High Level (Not designed for gaming)

  • Processing - Doesn't seem suited for gaming but for graphics visualizations and demos

Update: Please pick a JAVA engine and explain why its your choice! Thanks!

link|improve this question

70% accept rate
1  
Why Java? Better use C++, your options increase tenfold even when restricting yourself to multi-platform solutions. It is easier to learn C++ than getting lacking Java libs to work. Also irrlicht's java binding hasn't been updated for almost two years. Irrlicht itself is C++. – haffax Jul 30 '09 at 22:20
2  
@haffax My program does a lot of work with line input and MIDI files, I don't think I would get that with C++ easily. I know its difficult to do it with C# (there's no official support in the API). I could only imagine how much harder it would be in C++ :) – srand Jul 30 '09 at 23:57
jogl moved from java.net to jogamp: jogamp.org you linked the old project home. – mbien Sep 14 '11 at 3:33
feedback

2 Answers

You are mixing libraries and levels of libraries, Jogl and lwjgl are both pretty thin wrappers around OpenGl (IIRC lwjgl has more wrappers for OpenAL i.e. audio). While you can write a game using pure opengl you will probably spend a lot of time managing geometry, building (or reinventing) a scenegraph and other management functionality.

Processing is mostly 2D oriented.

I don't have any experience with ogre4j, but the last time I looked JMonkey was under current development looking at the 2.0 repository there is a long list of changes that are current.

If you are not too set on using Java consider some of the alternatives Torque (private Scripting Language) Panda3d (python) or the aforementioned OGRE using C++. I don't know what classes and constructs you are talking about in your first paragraph, but having a library or backend that takes care of the scene management, visibility calculations, sound management, game loop, possibly even networking might be a better driver for your decision than a specific language feature.

link|improve this answer
I would like to add irrlicht too. – Umair Ahmed Jul 29 '09 at 3:18
feedback

I would look at Ardor3D and have another look at JMonkeyEngine.


Ardor3D

Created by the original JMonkeyEngine developer(s) who decided a clean break was required so they could start over and use all the experienced gained developing it to create a better API and platform.

The people I know to have used Ardor3D have very positive things to say about its design and API. It is under active development and has a good community and good API documentation, although tutorials are a little short in supply and generally you'll have to be familiar with 3D programming concepts to be able to pick it up.


JMonkeyEngine 3

A community-lead rewrite of JMonkeyEngine 2, driven by dissatisfaction with JME2 design and related issues caused by said design, it has gone from strength to strength since its release.

There is ample documentation including tutorials and plenty of projects using it. If you had issues with JMonkeyEngine 2 or earlier, it is well worth another look at version 3.


Others

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.