123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- Texture2D shaderTexture : register( t0 );
- SamplerState SampleType;
- cbuffer Kamera : register( b0 )
- {
- float4 kPosition;
- }
- cbuffer Material : register( b1 )
- {
- float ambientFactor;
- float diffusFactor;
- float specularFactor;
- };
- cbuffer LightCount : register( b2 )
- {
- int diffuseLightCount;
- int pointLightCount;
- }
- struct DiffuseLight
- {
- float3 direction;
- float3 color;
- };
- struct PointLight
- {
- float3 position;
- float3 color;
- float radius;
- };
- StructuredBuffer< DiffuseLight > difuseLights : register( t1 );
- StructuredBuffer< PointLight > pointLights : register( t2 );
- struct PixelInputType
- {
- float4 worldPos : POSITION;
- float4 position : SV_POSITION;
- float2 tex : TEXCOORD0;
- float3 normal : TEXCOORD1;
- };
- float4 TexturePixelShader( PixelInputType input ) : SV_TARGET
- {
- float3 diffuseLight = float3( 0, 0, 0 );
- float3 specularLight = float3( 0, 0, 0 );
- for( int j = 0; j < diffuseLightCount; j++ )
- {
- if( dot( input.normal, -difuseLights[ j ].direction ) < 0 )
- continue;
- diffuseLight += difuseLights[ j ].color * dot( input.normal, -difuseLights[ j ].direction );
- }
- for( int i = 0; i < pointLightCount; i++ )
- {
- float3 lightDir = pointLights[ i ].position - input.worldPos.xyz;
- float factor;
- if (length(lightDir) < 1)
- factor = 1;
- else
- factor = pointLights[i].radius / length(lightDir);
- float f = dot( input.normal, normalize( lightDir ) );
- if( f > 0 )
- {
- diffuseLight += pointLights[ i ].color * f * factor;
- f = dot( normalize( reflect( normalize( -lightDir ), input.normal ) ), normalize( kPosition.xyz - input.worldPos.xyz ) );
- if( f > 0 )
- specularLight += pointLights[ i ].color * f * factor;
- }
- }
-
-
- float4 materialColor = shaderTexture.Sample( SampleType, input.tex );
- float4 textureColor = saturate( (materialColor * ambientFactor) + (float4( diffuseLight.x, diffuseLight.y, diffuseLight.z, 0 ) * diffusFactor) + (float4( specularLight.x, specularLight.y, specularLight.z, 0 ) * specularFactor) );
- textureColor.a = materialColor.a;
- if(isnan(diffuseLight.x * diffusFactor))
- textureColor = materialColor;
- return textureColor;
-
-
-
-
- }
|