Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android opengl game

I'm trying to develop a 2D game to android using opengl.

I know how to print images on the screen and animate them. But in my game I have a map and a want to zoom in and out and scroll the map. But I can't figure out the best way of doing it.

Can anybody help me?

like image 488
Luiz Guilherme Avatar asked Feb 04 '10 23:02

Luiz Guilherme


People also ask

Do Android games use OpenGL?

OpenGL ES 2.0 is supported by most Android devices and is recommended for new applications being developed with OpenGL. OpenGL ES 3.0 is supported with Android 4.3 (API level 18) and higher, on devices that provide an implementation of the OpenGL ES 3.0 API.

Can OpenGL be used for games?

OpenGL is one of the most popular rendering SDKs used to develop games. OpenGL has been used to create everything from 3D masterpieces running on desktop computers to 2D puzzles running on mobile devices. You will learn to apply both 2D and 3D technologies to bring your game idea to life.

How do I download OpenGL for Android?

You have to buy a new phone. You can check what GPU your phone has by installing CPU-Z from the Google Play Store. Then, search your GPU in your search engine and find its Web page. On the page, you will find the latest supported version of OpenGL ES.


1 Answers

I don't have any api examples but I did games design at college so I'll give my two bits.

The method you use will depend on your map style, size, functionality and format.

For example if you are looking for a very static non changing map, use a simple picture image. You can use the API frame for a picture view, enabling you to zoom in and out as you do in the gallery and to scroll on zoomed images, or in this case, zoom locations on your map.

Alternatively, if your map is based off a tiling system, a good example of this is the original Pokémon and Legend of Zelda games from the old game boy, then each area stores a tile 'thumbnail' for itself as a bitmap. These are then put into their appropriate locations on a grid depending on what areas are discovered.

This is the probably the most flexible way to build your map as you are not relying on a set bitmap for the entirety your map meaning it can change its look efficiently; you can build it as desired to show areas of choice (useful for if the map only reveals places the gamer has covered) and it also means you can do tile based overlay:

ie - if a certain area should contain treasure, theres a treasure icon overlayed on that tiles x,y position on the map grid.

I used the tiling option in my game projects from college and it made everything else map related easier. It also made the map side of things smaller storage wise.

like image 123
Tom 'Blue' Piddock Avatar answered Oct 17 '22 11:10

Tom 'Blue' Piddock