2015-05-24 15:23:55 +00:00
|
|
|
#version 330
|
|
|
|
|
2015-04-08 18:47:55 +00:00
|
|
|
/********************************************************************************
|
|
|
|
* OpenGL-Framework *
|
2015-05-24 15:23:55 +00:00
|
|
|
* Copyright (c) 2015 Daniel Chappuis *
|
2015-04-08 18:47:55 +00:00
|
|
|
*********************************************************************************
|
|
|
|
* *
|
|
|
|
* This software is provided 'as-is', without any express or implied warranty. *
|
|
|
|
* In no event will the authors be held liable for any damages arising from the *
|
|
|
|
* use of this software. *
|
|
|
|
* *
|
|
|
|
* Permission is granted to anyone to use this software for any purpose, *
|
|
|
|
* including commercial applications, and to alter it and redistribute it *
|
|
|
|
* freely, subject to the following restrictions: *
|
|
|
|
* *
|
|
|
|
* 1. The origin of this software must not be misrepresented; you must not claim *
|
|
|
|
* that you wrote the original software. If you use this software in a *
|
|
|
|
* product, an acknowledgment in the product documentation would be *
|
|
|
|
* appreciated but is not required. *
|
|
|
|
* *
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and must not be *
|
|
|
|
* misrepresented as being the original software. *
|
|
|
|
* *
|
|
|
|
* 3. This notice may not be removed or altered from any source distribution. *
|
|
|
|
* *
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
// Uniform variables
|
|
|
|
uniform vec3 lightAmbientColor; // Lights ambient color
|
|
|
|
uniform vec3 light0PosCameraSpace; // Camera-space position of the light
|
|
|
|
uniform vec3 light0DiffuseColor; // Light 0 diffuse color
|
|
|
|
uniform vec3 light0SpecularColor; // Light 0 specular color
|
|
|
|
uniform float shininess; // Shininess
|
2015-05-24 15:23:55 +00:00
|
|
|
uniform sampler2D textureSampler; // Texture
|
2015-04-08 18:47:55 +00:00
|
|
|
uniform bool isTexture; // True if we need to use the texture
|
|
|
|
uniform vec4 vertexColor; // Vertex color
|
|
|
|
|
2015-05-24 15:23:55 +00:00
|
|
|
// In variables
|
|
|
|
in vec3 vertexPosCameraSpace; // Camera-space position of the vertex
|
|
|
|
in vec3 vertexNormalCameraSpace; // Vertex normal in camera-space
|
|
|
|
in vec2 texCoords; // Texture coordinates
|
|
|
|
|
|
|
|
// Out variable
|
|
|
|
out vec4 color; // Output color
|
2015-04-08 18:47:55 +00:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
|
|
|
|
// Compute the ambient term
|
|
|
|
vec3 ambient = lightAmbientColor;
|
|
|
|
|
|
|
|
// Get the texture color
|
|
|
|
vec3 textureColor = vertexColor.rgb;
|
2015-05-24 15:23:55 +00:00
|
|
|
if (isTexture) textureColor = texture(textureSampler, texCoords).rgb;
|
2015-04-08 18:47:55 +00:00
|
|
|
|
|
|
|
// Compute the surface normal vector
|
|
|
|
vec3 N = normalize(vertexNormalCameraSpace);
|
|
|
|
|
|
|
|
// Compute the diffuse term of light 0
|
|
|
|
vec3 L0 = normalize(light0PosCameraSpace - vertexPosCameraSpace);
|
|
|
|
float diffuseFactor = max(dot(N, L0), 0.0);
|
|
|
|
vec3 diffuse = light0DiffuseColor * diffuseFactor * textureColor;
|
|
|
|
|
|
|
|
// Compute the specular term of light 0
|
|
|
|
vec3 V = normalize(-vertexPosCameraSpace);
|
|
|
|
vec3 H0 = normalize(V + L0);
|
|
|
|
float specularFactor = pow(max(dot(N, H0), 0.0), shininess);
|
|
|
|
if (diffuseFactor < 0.0) specularFactor = 0.0;
|
|
|
|
vec3 specular = light0SpecularColor * specularFactor;
|
|
|
|
|
|
|
|
// Compute the final color
|
2015-05-24 15:23:55 +00:00
|
|
|
color = vec4(ambient + diffuse + specular, 1.0);
|
2015-04-08 18:47:55 +00:00
|
|
|
}
|