New to Game programming

Hello

I have been programming in java for a while now....i'v worked a little with applet..but i'v been much into Swing.

I want to dive into Java Game programming. I looked online and there are lot of Java Gaming tutorials...can some people suggest me which ones are good? Or maybe some one has learned a lot from a tutorial...please give me the link.

Right now im just looking to make a small simple game....

thanks

[450 byte] By [bhaarat_javaa] at [2007-10-1 19:09:16]
# 1

okay then, i'd look at the Java2D demos that come with the JDK

all the source code is provided and you will learn a lot there

if you want to go 3D, that's another story, try this if you want to get more serious:

http://www.amazon.com/exec/obidos/tg/detail/-/1584503262/qid=1122303524/sr=8-1/ref=pd_bbs_1/104-7665494-2067138?v=glance&s=books&n=507846

SoulTech2012a at 2007-7-11 14:32:39 > top of Java-index,Other Topics,Java Game Development...
# 2
if your making any sort of action game forget about swing and learn about java2d and basic awt. If your making anything 3d take note that the java3d package doesn't come with the JRE or SDK download and is windows only, which may limit the portability of your game if you plan on using
Linkera at 2007-7-11 14:32:39 > top of Java-index,Other Topics,Java Game Development...
# 3
You can try this book as well.. http://www.amazon.com/exec/obidos/ASIN/1592730051/brackeencom-20/002-1585439-7351232
Sentient-Absencea at 2007-7-11 14:32:39 > top of Java-index,Other Topics,Java Game Development...
# 4
> the java3d package doesn't come with the JRE or SDK download and is windows only,>that's not right, it also exists on mac. however for 3D i'd rather recommend OpenGL for Java. i don't like the way Java3D works
must41a at 2007-7-11 14:32:39 > top of Java-index,Other Topics,Java Game Development...
# 5
you can also use sdl http://sdljava.sourceforge.net/ (the main page of the project http://sourceforge.net/projects/sdljava/)
windupa at 2007-7-11 14:32:39 > top of Java-index,Other Topics,Java Game Development...