up vote 11 down vote favorite
6
share [g+] share [fb]

A good starting point for an own project is to take a look at other code for the same field of problem. So which java-games in open-source you would recommend for a look in the source? Which game helps best to learn some techniques for creating games especially in the Java-environment?

link|improve this question

feedback

7 Answers

up vote 4 down vote accepted

FreeCol - based on Sid Meier's Colonization.

link|improve this answer
I even played FreeCol before, but it didn't came to my mind, that I could use it as an example. Thanks for the hint. – Mnementh Dec 19 '08 at 13:03
feedback

This doesn't directly answer your question, but if you ever decide you want to try writing a game in JavaFX, the JavaFX site has a bunch of sample code, including a couple of games (as of current writing).

link|improve this answer
Thanks for this reference, it looks interesting. – Mnementh Dec 19 '08 at 13:03
feedback

I wonder if http://sourceforge.net/projects/creepsmash/ would be a good choice. It was built by a team of computer science students in order to simulate a "real" commercial-style project. Thus, they used things like version control, build tools, and unit testing. Probably a better project to learn from then most, since that was its purpose. Yet the game is rather entertaining and plenty of people play it for fun. Not sure how much of its documentation is in English, though.

link|improve this answer
feedback

It would help if you specified what kind of game you want to build - game type and whether you want to go 2d or 3d.

But to answer your question: have a look at the Lightweight Java Game Library (http://lwjgl.org/) There is a list of projects on their web site of which some are open source.

link|improve this answer
feedback

Frozen Bubble ported to Java

link|improve this answer
feedback

You could look at Jake 2 which is a reimplementation of the Quake 2 engine in Java. This could be a good starting point for a 3D game.

link|improve this answer
feedback

You could do worse than using Wyvern as an example. There's an added bonus that you are starting with something that comes largely from the mind of Steve Yegge.

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.