Tagged Questions
10
votes
6answers
6k views
Realistic 2D terrain map generation
I am looking for some algorithms which allow me to generate a realistic 2D terrain map.
By realistic I mean that person will consider such map as a "normal" terrain map, not created artificially.
I ...
2
votes
1answer
102 views
2d Platformer Terrain generation in java
I am making a 2d platformer, and am trying to get some auto-terrain generation. I have found a Perlin noise function, however it isn't really helping, it is generated noise, but there are some ...
1
vote
1answer
107 views
How do I write the diamond-square algorithm in C++? [closed]
Possible Duplicate:
Diamond square algorithm
I'm trying to use the diamond-square algorithm to generate terrain in my 2D game. I have found many resources explaining the algorithm but none ...
1
vote
0answers
31 views
Storing pixel based world data
I am making a 2d game with destructable terrain. It will be on iOS but I am looking for ideas or pseudocode, not actual code. I'm wondering how to store a large amount of data. (It will be a large ...
1
vote
1answer
482 views
Canvas/Bitmap scrolling question
I'm trying to make a small game based on the canvas in Delphi. Basically, I'd like to make a fairly large bitmap ( 3000x3000, for example ), then load it into the canvas, and being able to scroll ...