Tagged Questions

10
votes
2answers
2k views

2D tile map generation

I'm developing a 2D tile engine and at this moment I'm working on map generation algorithms. I tried the basic ones usually involved in simple heightmap generation like hill generation perlin noise ...
5
votes
2answers
194 views

JavaScript simplex / perlin noise

I'm trying to create a perlin / simplex / value noise function in JavaScript that will give results similar to the following: (Note: this image has already had a treshold applied. I want it without ...
5
votes
6answers
812 views

Generating random points within a hexagon for procedural game content

I'm using procedural techniques to generate graphics for a game I am writing. To generate some woods I would like to scatter trees randomly within a regular hexagonal area centred at <0,0>. What ...
3
votes
3answers
709 views

Information on L-Systems

Hey Stack Overflow folks, I am about to start a project for university to build a procedural city for a pre existing project. I was wondering if any of you have had any experience coding L-Systems ...
2
votes
1answer
67 views

What are the potential problems with this multithreaded procedural generation algorithm?

I know this is game design related, but I have read the StackOverflow FAQ and it states software algorithm questions can be asked here. If this is better off in game design then I hope someone can ...
1
vote
1answer
338 views

Generating random tree branch

I want to generate (an image of) a single branch of a tree (the "woody plant" kind). Maybe similar to this branch, or this one. I need it to be interesting but simple, so just one branch, with a few ...
0
votes
1answer
116 views

How to implement the diamond-square algorithm?

I was reading this: http://www.gameprogrammer.com/fractal.html#diamond And it says: This is the starting-point for the iterative subdivision routine, which is in two steps: The diamond ...
0
votes
1answer
87 views

Generating random points to build a procedural line

I want to randomly generate points. Well at least there should be a limitation on the y-axis. Later I connect the points to a line which should proceed in a simple animation. You can imagine this as a ...
0
votes
1answer
107 views

Runtime vertex generation

Is it possible to create an infinite world, where the world is generated using an algorithms? Does XNA support vertex loading during runtime?