/*********************************************************************NVMH3**** $Revision$ Copyright NVIDIA Corporation 2007 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED *AS IS* AND NVIDIA AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL NVIDIA OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. To learn more about shading, shaders, and to bounce ideas off other shader authors and users, visit the NVIDIA Shader Library Forums at: http://developer.nvidia.com/forums/ ******************************************************************************/ #define FLIP_TEXTURE_Y float Script : STANDARDSGLOBAL < string UIWidget = "none"; string ScriptClass = "object"; string ScriptOrder = "standard"; string ScriptOutput = "color"; string Script = "Technique=Gooch?Main:Main10;"; > = 0.8; //// UN-TWEAKABLES - AUTOMATICALLY-TRACKED TRANSFORMS //////////////// float4x4 WorldITXf : WorldInverseTranspose < string UIWidget="None"; >; float4x4 WvpXf : WorldViewProjection < string UIWidget="None"; >; float4x4 WorldXf : World < string UIWidget="None"; >; float4x4 ViewIXf : ViewInverse < string UIWidget="None"; >; //// TWEAKABLE PARAMETERS //////////////////// /// Point Lamp 0 //////////// float3 Lamp0Pos : Position < string Object = "PointLight0"; string UIName = "Lamp 0 Position"; string Space = "World"; > = {-0.5f,2.0f,1.25f}; float3 Lamp0Color : Specular < string UIName = "Lamp 0"; string Object = "PointLight0"; string UIWidget = "Color"; > = {1.0f,1.0f,1.0f}; // Ambient Light float3 AmbiColor : Ambient < string UIName = "Ambient Light"; string UIWidget = "Color"; > = {0.07f,0.07f,0.07f}; float3 WarmColor < string UIName = "Gooch Warm Tone"; string UIWidget = "Color"; > = {0.5f, 0.4f, 0.05f}; float3 CoolColor < string UIName = "Gooch Cool Tone"; string UIWidget = "Color"; > = {0.05f, 0.05f, 0.6f}; float GlossTop < string UIWidget = "slider"; float UIMin = 0.1; float UIMax = 0.95; float UIStep = 0.01; string UIName = "Gloss Edge"; > = 0.65; float Ks < string UIWidget = "slider"; float UIMin = 0.0; float UIMax = 1.0; float UIStep = 0.05; string UIName = "Specular"; > = 0.4; float GlossDrop < string UIWidget = "slider"; float UIMin = 0.0; float UIMax = 1.0; float UIStep = 0.01; string UIName = "Gloss Falloff"; > = 0.25; float GlossEdge < string UIWidget = "slider"; float UIMin = 0.0; float UIMax = 0.5; float UIStep = 0.01; string UIName = "Gloss Edge"; > = 0.25; float SpecExpon : SpecularPower < string UIWidget = "slider"; float UIMin = 1.0; float UIMax = 128.0; float UIStep = 1.0; string UIName = "Specular Power"; > = 5.0; //////// COLOR & TEXTURE ///////////////////// float3 SurfaceColor : DIFFUSE < string UIName = "Surface"; string UIWidget = "Color"; > = {1.0f, 1.0f, 1.0f}; // shared shadow mapping supported in Cg version //////// CONNECTOR DATA STRUCTURES /////////// /* data from application vertex buffer */ struct appdata { float3 Position : POSITION; float2 UV : TEXCOORD0; float3 Normal : NORMAL; float3 Tangent : TANGENT0; float3 Binormal : BINORMAL0; }; /* data passed from vertex shader to pixel shader */ struct vertexOutput { float4 HPosition : POSITION; float2 UV : TEXCOORD0; // The following values are passed in "World" coordinates since // it tends to be the most flexible and easy for handling // reflections, sky lighting, and other "global" effects. float3 LightVec : TEXCOORD1; float3 WorldNormal : TEXCOORD2; float3 WorldTangent : TEXCOORD3; float3 WorldBinormal : TEXCOORD4; float3 WorldView : TEXCOORD5; }; ///////// VERTEX SHADING ///////////////////// /*********** Generic Vertex Shader ******/ vertexOutput std_VS(appdata IN) { vertexOutput OUT = (vertexOutput)0; OUT.WorldNormal = mul(IN.Normal,WorldITXf).xyz; OUT.WorldTangent = mul(IN.Tangent,WorldITXf).xyz; OUT.WorldBinormal = mul(IN.Binormal,WorldITXf).xyz; float4 Po = float4(IN.Position.xyz,1); float3 Pw = mul(Po,WorldXf).xyz; OUT.LightVec = (Lamp0Pos - Pw); #ifdef FLIP_TEXTURE_Y OUT.UV = float2(IN.UV.x,(1.0-IN.UV.y)); #else /* !FLIP_TEXTURE_Y */ OUT.UV = IN.UV.xy; #endif /* !FLIP_TEXTURE_Y */ OUT.WorldView = normalize(ViewIXf[3].xyz - Pw); OUT.HPosition = mul(Po,WvpXf); return OUT; } ///////// PIXEL SHADING ////////////////////// // Utility function for gooch shading float glossy_drop(float v, uniform float top, uniform float bot, uniform float drop) { return (drop+smoothstep(bot,top,v)*(1.0-drop)); } void gooch_shading(vertexOutput IN, float3 LightColor, float3 Nn, float3 Ln, float3 Vn, out float3 DiffuseContrib, out float3 SpecularContrib) { float3 Hn = normalize(Vn + Ln); float ldn = dot(Ln,Nn); float hdn = dot(Hn,Nn); float4 litV = lit(ldn,hdn,SpecExpon); float goochFactor = (1.0 + ldn) / 2.0; float3 toneColor = lerp(CoolColor,WarmColor,goochFactor); DiffuseContrib = toneColor; // now to add glossiness... float spec = litV.y * litV.z; spec *= glossy_drop(spec,GlossTop,(GlossTop-GlossEdge),GlossDrop); SpecularContrib = spec * Ks * LightColor; } float4 std_PS(vertexOutput IN) : COLOR { float3 diffContrib; float3 specContrib; float3 Ln = normalize(IN.LightVec); float3 Vn = normalize(IN.WorldView); float3 Nn = normalize(IN.WorldNormal); gooch_shading(IN,Lamp0Color,Nn,Ln,Vn,diffContrib,specContrib); float3 diffuseColor = SurfaceColor; float3 result = specContrib+(diffuseColor*(diffContrib+AmbiColor)); // return as float4 return float4(result,1); } ///// TECHNIQUES ///////////////////////////// RasterizerState DisableCulling { CullMode = NONE; }; DepthStencilState DepthEnabling { DepthEnable = TRUE; }; BlendState DisableBlend { BlendEnable[0] = FALSE; }; technique10 Main10 < string Script = "Pass=p0;"; > { pass p0 < string Script = "Draw=geometry;"; > { SetVertexShader( CompileShader( vs_4_0, std_VS() ) ); SetGeometryShader( NULL ); SetPixelShader( CompileShader( ps_4_0, std_PS() ) ); SetRasterizerState(DisableCulling); SetDepthStencilState(DepthEnabling, 0); SetBlendState(DisableBlend, float4( 0.0f, 0.0f, 0.0f, 0.0f ), 0xFFFFFFFF); } }