Java TileMap game.. example

Do any of you guys have some java dummy source …
that explains me how to create a simple Tile Map game.

Thank you…

take a look at GAGE http://java.dnsalias.com

[quote]take a look at GAGE http://java.dnsalias.com
[/quote]
How about something else… which uses basic java api JFrame or something…

I would like to know … how to use int array to specify the world map… and some structure to handle the current visible tiles and
how to draw them into JFrame for example…

How about something else… which uses basic java api JFrame or something…

I would like to know … how to use int array to specify the world map… and some structure to handle the current visible tiles and
how to draw them into JFrame for example…
[/quote]
Check out my silly Iso-Applet Demo and tell me if that’s sort of what you’re looking for. :slight_smile:

Read the tile based articles on
http://www.gamedev.net/reference/list.asp?categoryid=44

They are not Java, but the source is clear and the maths behind this remains the same. You should be able
to write this in Java yourself.

-JAW