Tagged Questions

26
votes
19answers
3k views

Mathematical question: procedural generation of a galaxy

I'm going to make a space/trading/combat game that is completely procedurally generated. But, I know that storing all of the details of the whole galaxy in memory is unfeasable. As a result, I've been ...
9
votes
3answers
538 views

What is a good strategy for constructing a directed graph for a game map (in Python)?

I'm developing a procedurally-generated game world in Python. The structure of the world will be similar to the MUD/MUSH paradigm of rooms and exits arranged as a directed graph (rooms are nodes, ...
6
votes
1answer
254 views

Galaxy Generation Algorithm

I'm trying to generate a set of points (represented by a Vector struct) that roughly models a spiral galaxy. The C# code I've been playing with is below; but I can only seem to get it to generate a ...
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
1k views

How is a 3d perlin noise function used to generate terrain?

I can wrap my head around using a 2d perlin noise function to generate the height value but I don't understand why a 3d perlin noise function would be used. In Notch's blog, ...
3
votes
2answers
591 views

Procedural skydome

Does anybody know how to or where I can find info related on how to do a procedural skydome? Any help is welcome.
2
votes
2answers
99 views

Procedurally Generating a Massive Universe

I'm creating a text-based game, and trying to implement procedural world generation. My initial plan was a bit haphazard: each universe has a 3D array of galaxies, of solar systems, which then in ...
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 ...
2
votes
2answers
189 views

What is the average color of a star? [closed]

I am trying to procedurally generate point stars to create a starfield background for my game. I want to weight the color production based on an average star's real color. Can anyone point me in the ...
0
votes
1answer
120 views

How to divide a runtime procedural generated world into chunks

I've been thinking of making a top-down 2D game with a pseudo-infinite runtime procedural generated world. I've read several articles about procedural generation and, maybe I've misread or ...
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
270 views

Randomly generating levels for Sokoban game?

I'm making a Sokoban style game (i.e. it's not exactly the same as Sokoban so I can't use existing levels) and would like to create random levels on it so a player could keep playing it and always ...