vote up 1 vote down star
1

I've taken a couple of courses in programming (mainly Java) in my first year at college, and I've been trying to keep up my skills through the summer, so I was thinking of attempting a very basic video game project for the summer, because it would be an equally entertaining and educating way of practicing good program design.

So, I was wondering if anyone knows of any excellent tutorials on game development (the basics), preferably in Java...thanks in advance!

flag

73% accept rate

5 Answers

vote up 2 vote down

The Java Boutique has a nice Java Game Development Tutorial.

link|flag
vote up 1 vote down

What type of game?

Playing around with the console to make some simple guessing games is fun. If you get really into the console, you can get some serious manipulation using JCurses, and maybe make a rogue-like or some type of cellular automata.

Or if you are adventurous, Swing has a decent enough drawing api.

And taking it a bit further, you can interface directly with OpenGL, But it really depends on what you've got experience with.

A lot of "game" design involves making the computer do something interesting for the user. If you start small with things like tick-tack-toe, and then grow from there, you can be making neat stuff in no-time!

link|flag
I was thinking more along the lines of something like Swing and not as in-depth as OpenGL – mportiz08 Jul 7 at 1:58
vote up 1 vote down

There's no need for a tutorial, just try to code some simple games that take input from the console and print status on the console after each move. These are fun projects to try and create a program that is smarter than you!

Tic tac toe like ape inago said is a good example.

A matches game like taking up to 3 matches away from a pile but at least 1. Loser is the one that has to take the last match.

Or try your hand at a sudoku solver. Brute force is easy... but try to do it with rules, like a human would solve it. Not every sudoku can be solved like that, mind you. The good ones can though.

Look through your cupboard, see what games you find that would be codable. Simple logical games are best. Ive got one here called "The Da Vinci Code" (Published by Winning Moves):

  • 12 white tiles and 12 black tiles, both sets numbered from 0 - 11. Face down in a heap.
  • draw 4 random stones each from the heap and order them low to high numbered, lower being left. Equal is your choice. This is a 'hand'.
  • Each player takes a turn at guessing the number of a tile of their choosing from the opponents 'hand'.
  • If you are right the guessed tile is turned face up and you can either:
    • keep guessing.
    • stop, and take a random tile from the heap and put it face down in the right place in your 'hand'.

  • If you are wrong:

    • take a tile from the heap and put it face up in the right place in your 'hand'.
    • if the heap is empty, select a tile from your 'hand' at your choice to turn face up.

  • Turn ends when you're wrong, or if you elect to stop guessing (at least 1 guess).
  • To win is to 'crack' the opponents code, i.e. turn all his tiles face up.
This game can be played by 2-4 players, with 4 players draw only 3 tiles.

Best thing about these puzzles is that you can output to console first. Add a cool graphical interface later. If you've designed properly of course ;-). Have fun!

link|flag
vote up 0 vote down

NeHe Productions offers really good Tutorials on OpenGL development. Many examples include Java Code as well and it is another challenge to put it all into a nice(r) architecture than plain OpenGL calls.

link|flag
They work for basics, but imho they are rather incomplete. – Ape-inago Jul 7 at 0:51
vote up 0 vote down

Download the source tutorials from JMonkeyEngine contained in the Code Repository.. They are good, and the JMonkey are a good 3d engine also. (free and Java).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.