Any JOGL complete game creation tutorial/guide?

Hi! I’m starting with JOGL and I’ve seen multiple tutorials about geometry and thouse with JOGL and now I need some tutorial or guide about the creation of a complete (simple) game.
I’ve search it but I can’t find it so… someone knows about some webpage with tutorials like that or some ebooks?

Thanks!

Here you go:
http://www.lwjgl.org/wiki/index.php?title=Space_Invaders_Example_Game

JOGL

The windowing system and keyboard / mouse input.
Yeah, you’re right. In JOGL it’s:


gl.glExampleFunction(...);

and in LWJGL:


GL11.glExampleFunciton(...);

But first you have to setup the window (which is easy in LWJGL, but solved better in JogAmp, IMO), and input handling (In LWJGL easy too, but IMO solved better in JogAmp :stuck_out_tongue: ) is different too, as I already said…

Actually in LWJGL it’s


glExampleFunction();

GL11. is not required any more since Java 5.

Cas :slight_smile:

wow x)
thanks for the replies

I got some mindfucks trying to port JOGL 1 to JOGL2 so porting LWJGL to JOGL2 .______. …
I’ll give it a try but, someone has JOGL2 ones? :stuck_out_tongue:

okey, I could have wrote:


import static org.lwjgl.opengl.GL11.*;

glExampleFunction();