Rocky asteroids part II

Developed a procedure to generate Perlin noise in a 3D Texture.

I got the idea to texture the asteroids this way from the Orange Book (OpenGL Shading Language, 2nd Edition (2006)), but I needed to convert the GLSL shader code to HLSL.

I am not a crack at that stuff so that was a bit hard to develop.

The benefit of this procedure instead of Projective texturing is that it always looks crisp and non distorted at any angle or distance.

It does’nt look lowpoly but in fact it is (light enable):

So everything about the rock is procedural now!!!

Now the next step is to smooth the asteroid, so that the lighting is more realistic.

And probably add some more irregularity. Some bump/normal mapping would make the asteroid more realistic.

Archived: Uncategorised

Rocky asteroids part I

Developed a procedure to create rocky asteroids. They should be very lowpoly because there will be a lot of them in Psirens.

Off course the rocks can be of any size and complexity. Like this:

The algorithm is ported from the PovRockGen utility. A lot of work on the geometry had to be done.

The face indices were completely missing and I had to think up a way to find the correct triangle winding order.

I did this by finding a common edge between two triangle and changed the indices in a way that the counter-clockwise order was valid.

A lot of improvement on the speed of this algorithm should be done because the triangles are not sorted beforehand, making the algorithm slow for complex rocks.

After long and hard thinking about texturing I decided to go for the easiest approach. Projecting a texture from a set of fixed points. Projection with only one point this gives the following results:

 

As you can see that the picture does not look good from all angles. Left upper corner looks undistorted, the right upper corner is heavily distorted.

Sometimes the rock has deeper parts and show some distortion too. The asteroid will need a lot more projections and with the correct blending this will lead to a less distorted view.

The texture used:

Archived: Uncategorised

The game is mine

Created a new asset very quickly.

This will have the purpose of a new weapon, a so called Gravity Mine.

It will draw in all asteroida in the neighbourhood by it’s created gravity field.

It’s based on this type of (land)mine a XM7-Spider, except it’s more flat and has longer arms.

Archived: Uncategorised