I am building a game using canvas.

I have terrain that is generated randomly on game initilisation. The terrain is destroyable via the weaponry in the game.

Here is an example of the terrain I want to generate.

When generating this 2D terrain...

  • Is it best to simply store the peaks per x coordinate, or store every pixel that is terrain?
  • When a portion is removed via weapon damage, should I switch that pixel to off and then redraw the terrain, or redraw the terrain whilst checking if each one is on via the weapons damage being stored? Or, upon weapons damage, should I adjust each peak in the terrain state and then redraw?
link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

I think you can safely store the terrain in 2D array. Having array of bools with size of like 3000x1000 may seem scary, but rest assured, traversing such array is still very fast. You can traverse this whole array 10 times and still maintain smooth animation speed.

link|improve this answer
feedback

Yey, Scorched Earth! As far as I remember you could bomb away circle-shaped volumes of terrain even below the original surface (leapfrog!). Terrain will then crumble and fill the gaps. Hence storing only polygonal vertex coordinates of the surface will not suffice. A per-pixel array-approach seems like a better idea.

The redrawing issue remains difficult. I guess it is not feasible to redraw the whole canvas at 30fps. Maybe you can redraw the weapon-affected/crumbled pixels only.

link|improve this answer
Redrawing the whole canvas at 30fps is wholly reasonable for a particular maximum resolution and minimum computer specifications. – Phrogz Mar 7 '11 at 15:49
feedback

Let's say you split your terrain into subsquares.

Before:

+---------------------------+
|           ______       /  |
|   ___    /      \     /   |
|  /   \__/        \___/    |
|-/                         |
|                           |
|                           |
|                           |
+---------------------------+

After:

+---------------------------+
|    |    | ___|__  |    |  |
|   _|_   |/   |  \ |   /|  |
|  / | \__/    |   \|__/ |  |
|-/--|----------------------|
|    |    |    |    |    |  |
|    |    |    |    |    |  |
|    |    |    |    |    |  |
+---------------------------+

You can have three states for these subsections:

  1. All terrain
  2. All blank
  3. Split up

This should give you a decent optimization without seriously sacrificing readability of code.

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.