views:

140

answers:

2

What is the best package for game developing in Java; I work with JITTers but it's too weak for example how can I make a game such as Splinter Cell Conviction? :)

No, I'm kidding but what is the best in Java?

Thanks a lot ...

+2  A: 

You may want to have a look at jirr, the Java binding to Irrlicht. It's a bit outdated (latest Irrlicht version is 1.7, jirr only up to 1.4.x). It contains mostly 3D stuff, so it's not a full game engine library.

There's also LWJGL (Lightweight Java Game Library), but I've never used that.

AndiDog
Thanks . Is it free or ?
Mike Redford
All three libraries AndiDog mentioned are opensource and therefore free. You can even use them in a commercial setting.
Jay Askren
Thanks Andi rep++
Mike Redford
+3  A: 

JMonkey Engine is quite good. It's a scenegraph engine which is layered on top of LWJGL or JOGL. It's quite nice. A couple of years ago, we were using Irrlicht with Java. We switched over to JMonkey Engine, and found it to be much easier to do what we needed.

Jay Askren
Thanks Dear Jay it's really perfect ; I'll check it, is it free?
Mike Redford
@Mike: jME is completely open source under the BSD license.
Thilo
@Thilo , Thanks my dear friend :)
Mike Redford
Do remember to mark the question as answered if you are satisfied.
Jay Askren