Click here to Skip to main content
15,881,139 members
Articles / Mobile Apps / Android

Diggers: cross-platform 2D game

Rate me:
Please Sign up or sign in to vote.
4.80/5 (17 votes)
5 Nov 2012CPOL4 min read 33.3K   1   43   5
2D cross-platfrom game using SDL and Open GLES 2.0

Disclaimer

This article is part of our Android at Play: Android Game App Contest and has different requirements and requires less strict guidelines.

Introduction

This article covers developing 2D cross-platform game for Windows, Android X86 and Android ARM.

Some time ago I saw the game Dwarf Fortress and I liked it very much. I wanted to make a similar game, which will have a world with wide opportunities, where dwarves will build a strong fortress and organize their settlement with the development of production.

Description

Game "Diggers" is a 2D-platformer. Player controls a few dwarves to build strength and production. When you start the game, world is randomly generated.

Image 1

Picture 1. General overview.

The world consists of chunks, each chunk has a size of 64x64 block. Chunk is one of several biomes listed in the file boimes.json: "BiomePlain.json", "BiomeDesert.json", "BiomeHill.json", "BiomeShallowMetalls.json", "BiomeLake.json", "BiomeCave.json"

Each biome consists of certain mineral blocks which are listed in the corresponding JSON-file biome.

Dwarfs have mood and needs, which are shown in the thinking bubble, for example idle dwarf falls sad mood.

Image 2

Picture 2. Dwarf.

Production and enemies in the game is not over yet.

Technical Information

The game running on Windows, Android ARM (tested on HTC EVO 3D and Samsung Galaxy SII) and Android x86 (tested on emulator). Building for Windows uses Visual Studio 2010 and the .sln files, building for Android used .mk files with the desired targets:

APP_ABI: = x86 for x86,  
APP_ABI: = armeabi armeabi-v7a for ARM    

The game using SDL library and many other dependencies - SDL_ttf and libFreetype for rendering text, SDL_Mixer and libTremor for sound, libJPEG and libPNG for rendering images, JSONCPP to use JSON-files. Thanks God, all dependencies builds successfully on all platforms - Windows, Android ARM and Android x86.

Image 3

Picture 2. Diggers run in the emulator Android X86.

Let's look at some interesting technical points.

Rendering

The game uses OPEN GLES 2.0 for rendering.

One of the things I've come across - is optimized rendering. Simultaneously on the screen can be up to 200,000 mineral blocks or even more, they must be quickly drawn. If we will use glDrawElements for draw each block, the drawing will be very slow.

Image 4

Picture 3. Reveale mode on, many mineral blocks rendered, some caves shown.

For fast rendering the same blocks merges together in batches (class SpriteBlockBatch). Each batch consists of the blocks of the same type - for example, for all blocks of the soil rendering creates a single batch, for all blocks of limestone rendering creates another batch etc. In addition, since the number of elements in the call glDrawElements in the OPEN GLES 2.0 is limited to unsigned short, then we have to break batch into several smaller internal batches. Rendering can be divided into two phases - the creation of batches and dispay batches.

When the batch has changed, we need to re-create it. For example, when a dwarf dig soil block, there are three things happend: soil block must be deleted, background soil block must be created and mined soil block must be created too. In this case, we need to re-create three butches - batch of soil, batch of background soil and batch of mined soil.

Batches created in the method

void SpriteBlockBatch :: MakeBatch (void)

In this method, we run through all mineral blocks of the desired type (eg all blocks of the soil) and create a soil blocks batch.

Batches displayed in method

bool Render :: Update (float _dt)

In this method, we call update method for each batch:

bool SpriteBlockBatch::Update(float _dt) 

Lighting

There is a smooth change of the time of day and lighting. In addition, the game has a light sources - such as lightning during the rain or glowing plants.

Image 5

Picture 4. Night time, you can see stars and glowing plants

Lighting is realized mainly in the shader fragmentShaderMineralsText. This complex shader that has a lot of input parameters - the time of day, ambient light (eg lightning), the depth of the mineral, backgound or foreground mineral type.

const char * fragmentShaderMineralsText =
# Ifndef WIN32
"Precision lowp float; \ n"
# Endif
"Varying float vDeleted; \ n"
"Varying vec3 vDeep; \ n"
"Varying vec3 vDay; \ n"
"Varying vec3 vLighting; \ n"
"Varying vec2 vTC; \ n"
"Uniform sampler2D s_texture; \ n"
"Void main () \ n"
"{\ N"
"Float alpha = texture2D (s_texture, vTC). A; \ n"
"Float deep = 1.0; \ n"
"If ((vDeep.x + vDeep.y + vDeep.z) <0.001) deep = 0.0; \ n"
"Float red = texture2D (s_texture, vTC). R * (vDay.x * deep * (vDeep.x - vTC.y * 0.8) + vLighting.x) * vDeleted; \ n"
"Float green = texture2D (s_texture, vTC). G * (vDay.y * deep * (vDeep.y - vTC.y * 0.8) + vLighting.y) * vDeleted; \ n"
"Float blue = texture2D (s_texture, vTC). B * (vDay.z * deep * (vDeep.z - vTC.y * 0.8) + vLighting.z) * vDeleted; \ n"
"Gl_FragColor = vec4 (red, green, blue, alpha); \ n"
"} \ N";

Also there are fragmentShaderStarsText shader for stars rendering in the night time and fragmentShaderSurfaceObjectsText shader for rendering surface objects that do not depends on the deep.

Java Interop

In the game, we need interaction between Java and native code, for example to save and load the game. This interaction is happened in the files JavaBridge.h and JavaBridge.cpp. For example, lets look to saving the game.

Native-method ( in the file JavaBridge.cpp)

unsigned int JavaBridge :: WriteSave (const char * _buffer, unsigned int _size) 

call this Java-method (in the file SDLActivity.java)

public static void writeSave (byte [] _buffer, int _size) 

It looks a little complicated, but if you take a closer look at the source code, all will become clear.

3-d party content

For this game, i used some resources with CC license:

music from http://www.jamendo.com/en/artist/355362/marc-teichert

and dwarf model from http://opengameart.org/content/dwarf-fixed


License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Member 1108418916-Sep-14 12:00
professionalMember 1108418916-Sep-14 12:00 
GeneralMy vote of 5 Pin
priti@cp15-Sep-14 3:14
professionalpriti@cp15-Sep-14 3:14 
GeneralMy vote of 5 Pin
codealone15-Feb-13 8:25
codealone15-Feb-13 8:25 
QuestionMy vote is 5 Pin
Sajeesh Payolam22-Dec-12 0:54
Sajeesh Payolam22-Dec-12 0:54 
GeneralMy vote of 5 Pin
Ștefan-Mihai MOGA14-Dec-12 5:13
professionalȘtefan-Mihai MOGA14-Dec-12 5:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.