| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /***
- phong lighting model
- Parameters:
- position: input vertex position in camera coordinates
- normal: input vertex normal in camera coordinates
- camDir: input camera directions
- matAmbient: input material ambient color
- matDiffuse: input material diffuse color
- ambdiff: output ambient+diffuse color
- spec: output specular color
- Uniforms:
- AmbientLightColor[]
- DiffuseLightColor[]
- DiffuseLightPosition[]
- PointLightColor[]
- PointLightPosition[]
- PointLightLinearDecay[]
- PointLightQuadraticDecay[]
- MatSpecularColor
- MatShininess
- *****/
- void phongModel(vec4 position, vec3 normal, vec3 camDir, vec3 matAmbient, vec3 matDiffuse, out vec3 ambdiff, out vec3 spec) {
- vec3 ambientTotal = vec3(0.0);
- vec3 diffuseTotal = vec3(0.0);
- vec3 specularTotal = vec3(0.0);
- #if AMB_LIGHTS>0
- // Ambient lights
- for (int i = 0; i < AMB_LIGHTS; i++) {
- ambientTotal += AmbientLightColor[i] * matAmbient;
- }
- #endif
- #if DIR_LIGHTS>0
- // Directional lights
- for (int i = 0; i < DIR_LIGHTS; i++) {
- // Diffuse reflection
- // DirLightPosition is the direction of the current light
- vec3 lightDirection = normalize(DirLightPosition(i));
- // Calculates the dot product between the light direction and this vertex normal.
- float dotNormal = max(dot(lightDirection, normal), 0.0);
- diffuseTotal += DirLightColor(i) * matDiffuse * dotNormal;
- // Specular reflection
- // Calculates the light reflection vector
- vec3 ref = reflect(-lightDirection, normal);
- if (dotNormal > 0.0) {
- specularTotal += DirLightColor(i) * MatSpecularColor * pow(max(dot(ref, camDir), 0.0), MatShininess);
- }
- }
- #endif
- #if POINT_LIGHTS>0
- // Point lights
- for (int i = 0; i < POINT_LIGHTS; i++) {
- // Common calculations
- // Calculates the direction and distance from the current vertex to this point light.
- vec3 lightDirection = PointLightPosition(i) - vec3(position);
- float lightDistance = length(lightDirection);
- // Normalizes the lightDirection
- lightDirection = lightDirection / lightDistance;
- // Calculates the attenuation due to the distance of the light
- float attenuation = 1.0 / (1.0 + PointLightLinearDecay(i) * lightDistance +
- PointLightQuadraticDecay(i) * lightDistance * lightDistance);
- // Diffuse reflection
- float dotNormal = max(dot(lightDirection, normal), 0.0);
- diffuseTotal += PointLightColor(i) * matDiffuse * dotNormal * attenuation;
- // Specular reflection
- // Calculates the light reflection vector
- vec3 ref = reflect(-lightDirection, normal);
- if (dotNormal > 0.0) {
- specularTotal += PointLightColor(i) * MatSpecularColor *
- pow(max(dot(ref, camDir), 0.0), MatShininess) * attenuation;
- }
- }
- #endif
- #if SPOT_LIGHTS>0
- for (int i = 0; i < SPOT_LIGHTS; i++) {
- // Calculates the direction and distance from the current vertex to this spot light.
- vec3 lightDirection = SpotLightPosition(i) - vec3(position);
- float lightDistance = length(lightDirection);
- lightDirection = lightDirection / lightDistance;
- // Calculates the attenuation due to the distance of the light
- float attenuation = 1.0 / (1.0 + SpotLightLinearDecay(i) * lightDistance +
- SpotLightQuadraticDecay(i) * lightDistance * lightDistance);
- // Calculates the angle between the vertex direction and spot direction
- // If this angle is greater than the cutoff the spotlight will not contribute
- // to the final color.
- float angle = acos(dot(-lightDirection, SpotLightDirection(i)));
- float cutoff = radians(clamp(SpotLightCutoffAngle(i), 0.0, 90.0));
- if (angle < cutoff) {
- float spotFactor = pow(dot(-lightDirection, SpotLightDirection(i)), SpotLightAngularDecay(i));
- // Diffuse reflection
- float dotNormal = max(dot(lightDirection, normal), 0.0);
- diffuseTotal += SpotLightColor(i) * matDiffuse * dotNormal * attenuation * spotFactor;
- // Specular reflection
- vec3 ref = reflect(-lightDirection, normal);
- if (dotNormal > 0.0) {
- specularTotal += SpotLightColor(i) * MatSpecularColor * pow(max(dot(ref, camDir), 0.0), MatShininess) * attenuation * spotFactor;
- }
- }
- }
- #endif
- // Sets output colors
- ambdiff = ambientTotal + MatEmissiveColor + diffuseTotal;
- spec = specularTotal;
- }
|