Let's have a look at this bit of the shader synthersiser example
Code: Select all
specular_color_map =
{
name = "oolite-adder-diffuse.png";
extract_channel = "a";
self_color = true; // Modulate specular colour with diffuse colour.
scale_factor = 6; // Multiply all channels by a constant.
};
specular_exponent = 5;
Here's a typical spec map:

this one looks like it's been quickly generated by greyscaling the diffuse texture and adjusting it with brightness & contrast tools - this particular map is a 'Specular Intensity' map, it's just letting oolite know which parts of the ship are going to appear shiny when light falls on them (the lighter pixels in the map) and which are going to be dull (the darker pixels in the map).
Putting some noise and grime in your spec intensity map can really break up the specular highlight 'spot' in game and make the surface feel a lot more realistic. Like the glow map in the earlier post, all this map's information can fit in a single channel
self_color
You can have the shader synthesiser colour your specular highlight with your ships texture map.
here's an example of self_color set to true:

hmm, rather drab looking, the darkness of the diffuse texture is really subduing our specular highlight, we can compensate for this with the
scale_factor setting (this is like a gain control for the strength of the specular highlight), if we set this to 6.0 we get a much
stronger highlight on our ship (at the risk of over blowing out some areas of the ship (edit your spec intensity map to correct for this)
Here's an example of a self colouring specular highlight with a scale_factor of 6.0
If you prefer, you can set self_color to false and only use the systems sun to colour your highlight, this results in nice strong highlights
(so be careful with the scale_factor setting, don't set it too high), here's an example of self colour set to false and a scale factor of 1.5

here's the same example but with a scale factor of 3.0

notice much stronger the specularity effect is compared to the self_color = true; examples
specular_exponent
This is basically the size of the highlight 'spot', set it quite low (5.0 or so) for metals, set it higher for organic and wet or plastic surfaces
here's an example of a specular exponent of 5.0:

here's an example of a specular exponent of 80.0:

the above exampes had self_colour set to false and a scale_factor of 1.0
Here's a quicktime.mov of the cobra showing self_colour = true and some mucking about with the scale factor and Exponent settings...
http://www.box.com/s/o83l272kh93ucs0rym22
...and here's something similar but with self_color = false;
http://www.box.com/s/hiqzoyzu41xcdye58fbi