I am currently working on an OpenGL procedural planet generator. I hope to use it for a space RPG, that will not allow players to go down to the surface of a planet so I have ignored anything ROAM related. At the momement I am drawing a cube with VBOs and mapping onto a sphere as shown here.

I am familiar with most fractal heightmap generating techniques and have already implemented my own version of midpoint displacement(not that useful in this case I know).

My question is, what is the best way to procedurally generate the heightmap. I have looked at libnoise which allows me to make tilable heightmaps/textures, but as far as I can see I would need to generate a net like:

this

Leaving the tiling obvious.

Could anyone advise me on the best route to take?

Any input would be much appreciated.

Thanks,

Henry.

link|improve this question

People can't go down to the surface? Then you don't need heightmaps. If the earth were a basketball, then Mt Everest would be less than one the basketball's bumps. There's not enough variation to make an actual heightmap worth it. – McKay Nov 2 '10 at 22:55
Well I'm still looking to create planets with visible terrain from space. Even if it seems a little overstated. In any case I would still like to generate the texture procedurally. – henryprescott Nov 2 '10 at 22:57
Something like img504.imageshack.us/img504/7848/gc2007sporescreens20070mp2.jpg for example. – henryprescott Nov 2 '10 at 23:08
feedback

2 Answers

up vote 3 down vote accepted

Yeah, it looks like you understand the problem with generating a flat, seamless surface and then trying to UVW map it onto a sphere.

How about using a 3D noise function instead? A 3D noise function takes 3 coordinates instead of 2 as its input, so imagine a 3D array full of generated numbers (instead of a 2D array). Thus, once you have a 3D noise function, you can generate a 2D texture, but instead of using 2D coordinates for each pixel, use the 3D coordinates of where that pixel would be on the sphere. (I hope that convoluted sentence made sense!)

Take a look at halfway-down this page about Perlin noise: http://local.wasp.uwa.edu.au/~pbourke/texture_colour/perlin/

I think it describes exactly what you want wrt to spheres.

link|improve this answer
Thanks, I have seen people talking of this on forums but didn't really get a good image of it in my head. Thanks for your help, and for people who may come by this - libnoise.sourceforge.net/docs/… for 3D perlin generator! – henryprescott Nov 2 '10 at 23:27
I was about to answer "3d perlin noise" myself but I saw the perlin-noise tag and assumed the author of the original question was familiar with it! – Ben Jackson Nov 2 '10 at 23:36
feedback

You may also want to check out this article from 2004 on how to 'split' up a sphere into manageable parts.

http://www.gamedev.net/reference/articles/article2074.asp

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.