84 lines
2.3 KiB
GLSL
84 lines
2.3 KiB
GLSL
#version 330 core
|
|
|
|
uniform sampler2D u_texture;
|
|
uniform sampler2D u_normal_texture;
|
|
|
|
uniform vec3 u_campos;
|
|
uniform vec3 u_camdir;
|
|
uniform vec3 u_highlight;
|
|
uniform float u_time;
|
|
|
|
in vec3 v_position;
|
|
in vec3 v_normal;
|
|
in vec3 v_proj_normal;
|
|
in vec2 v_texcoord;
|
|
in vec3 v_tangent;
|
|
in vec3 v_bitangent;
|
|
|
|
layout (location=0) out vec4 v_output;
|
|
|
|
float kpc(float d, float min, float max)
|
|
{
|
|
if (d >= max) return 1.0;
|
|
if (d <= min) return 0.0;
|
|
|
|
return 1.0 - (max - d) / (max - min);
|
|
}
|
|
|
|
struct Light
|
|
{
|
|
vec3 position;
|
|
vec3 diffuse;
|
|
float radius;
|
|
};
|
|
|
|
vec4 MakeLight(vec3 norm, vec3 position, vec3 diffuse, float radius, float sharpness, float power)
|
|
{
|
|
Light light;
|
|
light.position = position;
|
|
light.diffuse = diffuse;
|
|
light.radius = radius;// * 2.0;
|
|
|
|
float alpha = kpc(distance(light.position, v_position), light.radius * sharpness, light.radius);
|
|
|
|
vec3 light_dir = normalize(light.position - v_position);
|
|
//vec3 view_dir = normalize(u_camdir - v_position);
|
|
vec3 view_dir = normalize(u_campos - v_position);
|
|
vec3 reflect_dir = reflect(-light_dir, norm);
|
|
float spec = max(dot(view_dir, reflect_dir), 0.0);
|
|
float diff = max(dot(norm, light_dir), 0.0);
|
|
//diff *= 1.0 - alpha;
|
|
power *= 0.5;
|
|
//power = 0.5;//alpha;
|
|
vec3 specular = power * spec * light.diffuse * diff;
|
|
vec4 res = vec4(vec3(diff) + specular, 1.0) * (1.0 - alpha);
|
|
res *= vec4(light.diffuse, 1);
|
|
|
|
//float alpha = kpc(distance(light.position, v_position), light.radius * sharpness, light.radius);
|
|
//res *= mix(vec4(light.diffuse, 1), vec4(0,0,0,1), alpha);
|
|
|
|
return res;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
vec3 tangentNormal = normalize(texture(u_normal_texture, v_texcoord).xyz * 2.0 - 1.0);
|
|
vec3 T = normalize(v_tangent);
|
|
vec3 B = normalize(v_bitangent);
|
|
vec3 N = normalize(abs(v_normal));
|
|
mat3 TBN = mat3(T, B, N);
|
|
vec3 norm = normalize(TBN * tangentNormal);
|
|
//norm = vec3(0,1,0);
|
|
vec4 texv = texture(u_texture, v_texcoord);
|
|
|
|
vec4 ambient = vec4(0.1, 0.1, 0.1, 1.0) * 10.5, light = ambient;
|
|
|
|
light += MakeLight(norm, vec3(2.0, 10.0, -24.0), vec3(0.7), /*5.0*/ 1000.0, 1.0, 1.0);
|
|
light += MakeLight(norm, vec3(5.0, 2.0, -7.0 + cos(u_time/35.0) * 2.0), vec3(1.0, 0.6, 0.0), 5.0, 0.6, 1.0);
|
|
light += MakeLight(norm, vec3(7, 2.0, -7.0 + -cos(u_time / 30.0) * 1.0), vec3(0.6, 0.9, 1.0), 5.0, 0.6, 1.0);
|
|
|
|
v_output = texv * light;// * 2.0;
|
|
|
|
// + editor highlighting
|
|
v_output.rgb *= u_highlight;
|
|
}
|