GlobalLight_ps.hlsl
上传用户:xhbjoy
上传日期:2014-10-07
资源大小:38068k
文件大小:4k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /******************************************************************************
  2. Copyright (c) W.J. van der Laan
  3. Permission is hereby granted, free of charge, to any person obtaining a copy of 
  4. this software  and associated documentation files (the "Software"), to deal in 
  5. the Software without restriction, including without limitation the rights to use, 
  6. copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
  7. Software, and to permit persons to whom the Software is furnished to do so, subject 
  8. to the following conditions:
  9. The above copyright notice and this permission notice shall be included in all copies 
  10. or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 
  12. INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 
  13. PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 
  14. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 
  15. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE 
  16. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. ******************************************************************************/
  18. /** Deferred shading framework
  19. // W.J. :wumpus: van der Laan 2005 //
  20. Post shader: Multipass, one light
  21. */
  22. sampler Tex0: register(s0);
  23. sampler Tex1: register(s1);
  24. // Attributes of light 0
  25. float4 lightPos0;
  26. float4 lightDiffuseColor0;
  27. float4 lightSpecularColor0;
  28. // Global parameters for lights
  29. struct LightGlobal
  30. {
  31. float3 position;
  32. float3 normal;
  33. float3 viewDir;
  34. };
  35. // Current state of light
  36. struct LightAccum
  37. {
  38. float3 light_diffuse;
  39. float3 light_specular;
  40. };
  41. // Do lighting calculations for one light
  42. void processLight(
  43. inout LightAccum accum,
  44. LightGlobal global,
  45. float4 lightPos,
  46. float4 lightDiffuseColor,
  47. float4 lightSpecularColor)
  48. {
  49.     float3 lightVec = lightPos - global.position;
  50.     float3 lightDir = normalize(lightVec);
  51.     accum.light_diffuse += max(0,dot(lightDir, global.normal)) * lightDiffuseColor;
  52.     
  53.     float3 h = normalize(global.viewDir + lightDir);
  54.     accum.light_specular += pow(dot(global.normal, h),32) * lightSpecularColor;
  55. }
  56. float4 main(float2 texCoord: TEXCOORD0, float3 projCoord: TEXCOORD1) : COLOR 
  57. {
  58.     float4 a0 = tex2D(Tex0, texCoord); // Attribute 0: Diffuse color+shininess
  59.     float4 a1 = tex2D(Tex1, texCoord); // Attribute 1: Normal+depth
  60.     
  61.     LightGlobal global; 
  62.     
  63.     // Clip fragment if depth is too close, so the skybox can be rendered on the background
  64.     //clip(a1.w-0.001);
  65.       
  66.     // Attributes
  67.     float3 colour = a0.rgb;
  68.     float alpha = a0.a; // Specularity
  69.     float distance = a1.w;  // Distance from viewer
  70.     //global.normal = normalize(a1.xyz);
  71.     global.normal = a1.xyz;
  72.     // Acquire view space position via inverse projection transformation
  73.     //global.position = mul(invProj, float4(projCoord, 0, 1))*distance;
  74.     global.position = projCoord*distance;
  75.     
  76.     // Apply light
  77.     LightAccum accum;
  78.     accum.light_diffuse = float3(0,0,0);
  79.     accum.light_specular = float3(0,0,0);
  80.     global.viewDir = -normalize(global.position);
  81.     
  82.     processLight(accum, global, lightPos0, lightDiffuseColor0, lightSpecularColor0);
  83.     
  84.     // Calcalate total lighting for this fragment
  85.     float3 total_light_contrib;
  86. total_light_contrib = accum.light_diffuse+alpha*accum.light_specular;
  87.     return float4( total_light_contrib*colour ,0);
  88.     //return float4(accum.light_diffuse,0);
  89.     //return float4(global.position/1000.0,0);
  90. }