couch/shaders/flat.vert

118 lines
3.0 KiB
GLSL
Raw Permalink Normal View History

2021-01-13 10:42:57 -06:00
#version 330 core
layout (location = 0) in vec3 pos;
2021-01-21 15:26:39 -06:00
layout (location = 1) in vec3 normal;
layout (location = 2) in vec2 uv;
2021-01-13 10:42:57 -06:00
2021-01-13 13:17:31 -06:00
uniform mat4 MODEL;
uniform mat4 VIEW;
uniform mat4 PROJECTION;
uniform mat3 NORMAL;
2021-01-13 10:42:57 -06:00
2021-01-22 14:37:32 -06:00
noperspective out vec2 UV; // PSX use affine texture mapping
2021-01-22 18:44:43 -06:00
out vec3 AMBIENT;
out vec3 DIFFUSE;
out vec3 SPECULAR;
2021-01-21 18:03:50 -06:00
2021-01-23 23:49:13 -06:00
flat out float kill;
const float cullDistance = 100.0;
2021-01-21 18:03:50 -06:00
struct DirectionalLight {
vec3 direction;
vec3 color;
float ambient;
float diffuse;
float specular;
};
2021-03-04 14:29:48 -06:00
struct PointLight {
vec3 pos;
float radius;
vec3 color;
float ambient;
float diffuse;
float specular;
};
#define NUM_POINT_LIGHTS 4
uniform PointLight pointLights[NUM_POINT_LIGHTS];
2021-01-22 18:44:43 -06:00
struct Material {
sampler2D tex;
bool usesTex;
vec3 ambient;
vec3 diffuse;
vec3 specular;
int shininess;
float alphaScissor;
bool unshaded;
bool cullBack;
};
2021-01-21 18:03:50 -06:00
uniform DirectionalLight directionalLight;
2021-01-22 18:44:43 -06:00
uniform Material material;
2021-03-04 14:49:48 -06:00
float calcDiffuseIntensity(in vec3 direction, in vec3 normal) {
float diff = dot(normalize(direction), normalize(normal));
return max(diff, 0.0);
}
float calcSpecularIntensity(in vec3 direction, in vec3 normal, in int shininess) {
vec3 viewDir = normalize((VIEW * MODEL * vec4(pos, 1.0)).xyz);
vec3 reflectionDir = reflect(normalize(direction), normalize(normal));
float spec = dot(viewDir, reflectionDir);
spec = max(spec, 0.0);
spec = pow(spec, shininess);
return spec;
}
2021-03-04 14:29:48 -06:00
void calcDirectionalLight(in vec3 normal) {
AMBIENT += directionalLight.ambient * directionalLight.color * material.ambient;
vec3 direction = -(VIEW * vec4(directionalLight.direction, 0.0)).xyz;
2021-03-04 14:49:48 -06:00
DIFFUSE += directionalLight.diffuse * directionalLight.color * material.diffuse * calcDiffuseIntensity(direction, normal);
2021-03-04 14:29:48 -06:00
SPECULAR += directionalLight.color * material.specular * calcSpecularIntensity(direction, normal, material.shininess);
2021-03-04 14:29:48 -06:00
}
void calcPointLight(in vec3 normal, in PointLight pointLight) {
2021-03-04 14:49:48 -06:00
vec3 direction = vec3(VIEW * vec4(pointLight.pos, 1.0) - VIEW * MODEL * vec4(pos, 1.0)).xyz;
float dist = length(direction);
2021-03-04 14:29:48 -06:00
float attenuation = max(1.0 - dist * dist / pointLight.radius / pointLight.radius, 0.0);
AMBIENT += pointLight.color * material.ambient * pointLight.ambient * attenuation;
2021-03-04 14:49:48 -06:00
DIFFUSE += pointLight.color * pointLight.diffuse * material.diffuse * calcDiffuseIntensity(direction, normal);
SPECULAR += pointLight.color * material.specular * calcSpecularIntensity(direction, normal, material.shininess);
2021-03-04 14:29:48 -06:00
}
2021-01-13 10:42:57 -06:00
void main() {
2021-01-19 16:08:37 -06:00
vec4 vertex = PROJECTION * VIEW * MODEL * vec4(pos, 1.0);
gl_Position = vertex;
2021-01-23 23:49:13 -06:00
if (length(vertex) > cullDistance) {
kill = 1.0;
} else {
kill = 0.0;
}
2021-01-22 14:37:32 -06:00
UV = uv;
2021-01-21 18:03:50 -06:00
2021-01-23 23:31:46 -06:00
vec3 my_normal = (VIEW * mat4(NORMAL) * vec4(normal, 0.0)).xyz;
2021-01-21 18:03:50 -06:00
// Flat shading, we compute light per vertex
2021-03-04 14:29:48 -06:00
AMBIENT = vec3(0.0);
DIFFUSE = vec3(0.0);
SPECULAR = vec3(0.0);
2021-01-21 18:03:50 -06:00
2021-03-04 14:29:48 -06:00
calcDirectionalLight(my_normal);
2021-01-21 18:03:50 -06:00
2021-03-04 14:29:48 -06:00
// PointLights
for(int i = 0; i < NUM_POINT_LIGHTS; i++) {
calcPointLight(my_normal, pointLights[i]);
}
2021-01-13 10:42:57 -06:00
}