Tagged Questions
14
votes
4answers
3k views
Simple noise generation
I'm looking to generate noise that looks like this:
(images courtesy of Understanding Perlin Noise)
I'm basically looking for noise with lots of small "ripples". The following is undesirable:
...
7
votes
3answers
1k views
How do I generate terrain like that of Scorched Earth?
I'm a web developer and I am keen to start writing my own games.
For familiarity, I've chosen JavaScript and canvas element for now.
I want to generate some terrain like that in Scorched Earth.
...
1
vote
2answers
320 views
How do I generate a 2d grid-based map without screwing it up?
I'm relatively new to the mechanics of game development - catching up fast, but there are still some things that escape me. For example: generating a fully-accessible map on a 2d grid.
See the ...
1
vote
1answer
305 views
How do I generate a level randomly?
I am currently hard coding 10 different instances like the code below, but but I'd like to create many more. Instead of having the same layout for the new level, I was wondering if there is anyway to ...
-2
votes
1answer
473 views
Dungeon map generator not working in javascript
I am trying to convert this dungeon algorithm from java into javascript, however, my script works 70% of the time. When it works, the rooms are missing a wall on one side, and when it does not work, ...