SpeedTree7BillboardPasses.hlsl 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. #ifndef UNIVERSAL_SPEEDTREE7BILLBOARD_PASSES_INCLUDED
  2. #define UNIVERSAL_SPEEDTREE7BILLBOARD_PASSES_INCLUDED
  3. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Lighting.hlsl"
  4. #include "SpeedTree7CommonPasses.hlsl"
  5. void InitializeData(inout SpeedTreeVertexInput input, out half2 outUV, out half outHueVariation)
  6. {
  7. // assume no scaling & rotation
  8. float3 worldPos = input.vertex.xyz + float3(UNITY_MATRIX_M[0].w, UNITY_MATRIX_M[1].w, UNITY_MATRIX_M[2].w);
  9. #ifdef BILLBOARD_FACE_CAMERA_POS
  10. float3 eyeVec = normalize(unity_BillboardCameraPosition - worldPos);
  11. float3 billboardTangent = normalize(float3(-eyeVec.z, 0, eyeVec.x)); // cross(eyeVec, {0,1,0})
  12. float3 billboardNormal = float3(billboardTangent.z, 0, -billboardTangent.x); // cross({0,1,0},billboardTangent)
  13. float3 angle = atan2(billboardNormal.z, billboardNormal.x); // signed angle between billboardNormal to {0,0,1}
  14. angle += angle < 0 ? 2 * SPEEDTREE_PI : 0;
  15. #else
  16. float3 billboardTangent = unity_BillboardTangent;
  17. float3 billboardNormal = unity_BillboardNormal;
  18. float angle = unity_BillboardCameraXZAngle;
  19. #endif
  20. float widthScale = input.texcoord1.x;
  21. float heightScale = input.texcoord1.y;
  22. float rotation = input.texcoord1.z;
  23. float2 percent = input.texcoord.xy;
  24. float3 billboardPos = (percent.x - 0.5f) * unity_BillboardSize.x * widthScale * billboardTangent;
  25. billboardPos.y += (percent.y * unity_BillboardSize.y + unity_BillboardSize.z) * heightScale;
  26. #ifdef ENABLE_WIND
  27. if (_WindQuality * _WindEnabled > 0)
  28. billboardPos = GlobalWind(billboardPos, worldPos, true, _ST_WindVector.xyz, input.texcoord1.w);
  29. #endif
  30. input.vertex.xyz += billboardPos;
  31. input.vertex.w = 1.0f;
  32. input.normal = billboardNormal.xyz;
  33. input.tangent = float4(billboardTangent.xyz, -1);
  34. float slices = unity_BillboardInfo.x;
  35. float invDelta = unity_BillboardInfo.y;
  36. angle += rotation;
  37. float imageIndex = fmod(floor(angle * invDelta + 0.5f), slices);
  38. float4 imageTexCoords = unity_BillboardImageTexCoords[imageIndex];
  39. if (imageTexCoords.w < 0)
  40. {
  41. outUV = imageTexCoords.xy - imageTexCoords.zw * percent.yx;
  42. }
  43. else
  44. {
  45. outUV = imageTexCoords.xy + imageTexCoords.zw * percent;
  46. }
  47. #ifdef EFFECT_HUE_VARIATION
  48. float hueVariationAmount = frac(worldPos.x + worldPos.y + worldPos.z);
  49. outHueVariation = saturate(hueVariationAmount * _HueVariation.a);
  50. #else
  51. outHueVariation = 0;
  52. #endif
  53. }
  54. SpeedTreeVertexOutput SpeedTree7Vert(SpeedTreeVertexInput input)
  55. {
  56. SpeedTreeVertexOutput output = (SpeedTreeVertexOutput)0;
  57. UNITY_SETUP_INSTANCE_ID(input);
  58. UNITY_TRANSFER_INSTANCE_ID(input, output);
  59. UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output);
  60. // handle speedtree wind and lod
  61. InitializeData(input, output.uvHueVariation.xy, output.uvHueVariation.z);
  62. VertexPositionInputs vertexInput = GetVertexPositionInputs(input.vertex.xyz);
  63. half3 normalWS = input.normal; // Already calculated in world space. Can probably get rid of the world space transform in GetVertexPositionInputs too.
  64. half3 vertexLight = VertexLighting(vertexInput.positionWS, normalWS);
  65. half fogFactor = ComputeFogFactor(vertexInput.positionCS.z);
  66. output.fogFactorAndVertexLight = half4(fogFactor, vertexLight);
  67. half3 viewDirWS = GetCameraPositionWS() - vertexInput.positionWS;
  68. #ifdef EFFECT_BUMP
  69. real sign = input.tangent.w * GetOddNegativeScale();
  70. output.normalWS.xyz = TransformObjectToWorldNormal(input.normal);
  71. output.tangentWS.xyz = TransformObjectToWorldDir(input.tangent.xyz);
  72. output.bitangentWS.xyz = cross(output.normalWS.xyz, output.tangentWS.xyz) * sign;
  73. // View dir packed in w.
  74. output.normalWS.w = viewDirWS.x;
  75. output.tangentWS.w = viewDirWS.y;
  76. output.bitangentWS.w = viewDirWS.z;
  77. #else
  78. output.normalWS.xyz = TransformObjectToWorldNormal(input.normal);
  79. output.viewDirWS = viewDirWS;
  80. #endif
  81. output.positionWS = vertexInput.positionWS;
  82. output.clipPos = vertexInput.positionCS;
  83. #ifdef _MAIN_LIGHT_SHADOWS
  84. output.shadowCoord = GetShadowCoord(vertexInput);
  85. #endif
  86. return output;
  87. }
  88. SpeedTreeVertexDepthOutput SpeedTree7VertDepth(SpeedTreeVertexInput input)
  89. {
  90. SpeedTreeVertexDepthOutput output = (SpeedTreeVertexDepthOutput)0;
  91. UNITY_SETUP_INSTANCE_ID(input);
  92. UNITY_TRANSFER_INSTANCE_ID(input, output);
  93. UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output);
  94. // handle speedtree wind and lod
  95. InitializeData(input, output.uvHueVariation.xy, output.uvHueVariation.z);
  96. VertexPositionInputs vertexInput = GetVertexPositionInputs(input.vertex.xyz);
  97. #ifdef SHADOW_CASTER
  98. half3 normalWS = TransformObjectToWorldNormal(input.normal);
  99. output.clipPos = TransformWorldToHClip(ApplyShadowBias(vertexInput.positionWS, normalWS, _LightDirection));
  100. #else
  101. output.clipPos = vertexInput.positionCS;
  102. #endif
  103. return output;
  104. }
  105. #endif