XNA Shader Programming – Tutorial 2, Diffuse light

XNA Shader Programming
Tutorial 2 – Diffuse light
 
Hi, and welcome to Tutorial 2 of my XNA Shader Programming tutorial. Today we are going to work on Tutorial 1 in order to make the lighting equation a bit more interesting, by implementing Diffuse lighting.
 
Diffuse light
 
Ambient light got the following equation:
I = Aintensity * Acolor
 
Diffuse lighting builds on this equation, adding a directional light to the equation:
I = Aintensity x Acolor + Dintensity x Dcolor x N.L (2.1)
 
From this equating, you can see that we still use the Ambient light, but need two more variables for describing the color and intensity of the Diffuse light, and two vectors N and L for describing the light direction L compared to the surface normal N.
 
We can think of Diffuse lighting as a value that indicates how much a surface reflects light. The light that is reflected will be stronger and more visible when the angle between the Normal N and the light direction L gets smaller and smaller.
 
 
If L is parallel with N, the light will be strongest reflected, and if L is parallel with the surface, the light will be reflected with the minimal amount.
 
To compute the angle between L and N, we can use the Dot-product, or the scalar product. This rule is used to find the angle between two given vectors and can be defines as the following:
N.L = |N| x |L| x cos(a)      where |N| is the length of vector N, |L| is the length of vector L and cos(a) is the angle between the two vectors.
 
Implementing the shader
We need three global variables:
 
float4x4    matWorldViewProj;
float4x4    matWorld;
float4      vLightDirection;
 
We still have the worldviewprojection matrix from tutorial one, but in addition, we have the matWorld matrix that is used to calculate a correct normal related to the world matrix, and a light direction vLightDirection that explains what direction that light have.
 
We also need to define the OUT structure for our vertex shader, in order to make the correct light equation in the pixel shader:
struct OUT
{
    float4 Pos: POSITION;
    float3 L:    TEXCOORD0;
    float3 N:    TEXCOORD1;
};
 
Here we have the position Pos, the light direction L and the Normal N stored in different registers. TEXCOORDn can be used for any values, and as we don’t yet use any texture coordinates, we can easily just use these registers as a storage for our two vectors.
 
Ok, its time for our vertex shader:
OUT VertexShader( float4 Pos: POSITION, float3 N: NORMAL )
{
    OUT Out = (OUT) 0;
    Out.Pos = mul(Pos, matWorldViewProj);
    Out.L = normalize(vLightDirection);
    Out.N = normalize(mul(N, matWorld));
    return Out;
}
 
We take the position from the model file, as well as the normal, and pass it into the shader. Based on these and our global variables, we can transform the position Pos, normalize the light direction and transforming+normalizing the normal of the surface.
 
Then, in the pixel shader we take the values in TEXCOORD0 and put it in L, and the values in TEXCOORD1 and put it in N. These registers are filled by the vertex shader. Then we implement equation 2.1 in the pixel shader:
 
float4 PixelShader(float3 L: TEXCOORD0, float3 N: TEXCOORD1) : COLOR
{   
    float Ai = 0.8f;
    float4 Ac = float4(0.075, 0.075, 0.2, 1.0);
    float Di = 1.0f;
    float4 Dc = float4(1.0, 1.0, 1.0, 1.0);
    return Ai * Ac + Di * Dc * saturate(dot(L, N));
}
 
 
The technique for this shader is the following:
technique DiffuseLight
{
    pass P0
    {
        VertexShader = compile vs_1_1 VertexShader();
        PixelShader = compile ps_1_1 PixelShader();
    }
}
 
 
Ok, thats if for Diffuse light! Download the source and play around with it in order to understand it fully 🙂 I hope that you start to see the power of shaders now and how to use them in your own application!
 
NOTE:
You might have noticed that I have not used effect.commitChanges(); in this code. If you are rendering many objects using this shader, you should add this code in the pass.Begin() part so the changed will get affected in the current pass, and not in the next pass. This should be done if you set any shader paramteres inside the pass.
This entry was posted in XNA Shader Tutorial. Bookmark the permalink.

9 Responses to XNA Shader Programming – Tutorial 2, Diffuse light

  1. Daniel says:

    Great Tutorials, I\’m just getting into shader programming and this has help alot, but the source for this tutorial is not connected to the download "link".

  2. Petri says:

    I know, i will upload them asap! I was not able to upload the source earlier today, but i will do it tonight.

  3. Daniel says:

    Ok thanks!

  4. Petri says:

    Thank you for the feedback, i have now uploaded the rest of my tutorials and the executable. Tutorial 6 is on the way as we speak 🙂

  5. Rich says:

    Just a comment: it doesn\’t really make sense to transform the normal direction by the inverse world matrix, as the normal is in model space, so it should be transformed to world space (via the regular world matrix) so that it is in the same basis as the light direction.The reason the inverse world transform is working is that you are multiplying the normal vector on the \’wrong\’ side of the matrix, i.e. instead of Out.N = normalize(mul(matInverseWorld, N));you can just write: Out.N = normalize(N, mul(matWorld));Putting the vector on the right hand side of the mul causes it to be treated as a column vector, which in turn will cause the matrix to be interpreted as a transpose, hence we have: matInverseWorld * N = N * transpose(matInverseWorld) = N * matWorld:)Many thanks for the tutorial – I\’m finally getting up to speed on HLSL and it\’s a very useful starting point!

  6. Petri says:

    Thanks for notifying me about this! 🙂 The tutorial have been updated!

  7. Pingback: XNA Shaders « VIST 405 – Laura Murphy

  8. Pingback: Föreläsning 28/1 samt startprojekt inför laborationerna. - Shaderprogrammering

  9. Pingback: Föreläsningar - Shaderprogrammering

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.