2022-10-02 18:59:20 +03:00
|
|
|
struct InstanceInput {
|
|
|
|
@location(5) model_matrix_0: vec4<f32>,
|
|
|
|
@location(6) model_matrix_1: vec4<f32>,
|
|
|
|
@location(7) model_matrix_2: vec4<f32>,
|
|
|
|
@location(8) model_matrix_3: vec4<f32>,
|
2022-10-03 22:31:01 +03:00
|
|
|
}
|
2022-10-02 18:59:20 +03:00
|
|
|
|
2022-10-01 23:58:09 +03:00
|
|
|
// Vertex shader
|
|
|
|
|
2022-10-02 18:59:20 +03:00
|
|
|
struct CameraUniform {
|
2022-10-03 22:31:01 +03:00
|
|
|
view: mat4x4<f32>,
|
|
|
|
proj: mat4x4<f32>,
|
|
|
|
position: vec4<f32>,
|
|
|
|
}
|
2022-10-02 18:59:20 +03:00
|
|
|
@group(1) @binding(0)
|
|
|
|
var<uniform> camera: CameraUniform;
|
|
|
|
|
2022-10-03 22:31:01 +03:00
|
|
|
struct Light {
|
|
|
|
position: vec3<f32>,
|
|
|
|
color: vec3<f32>,
|
|
|
|
}
|
|
|
|
@group(2) @binding(0)
|
|
|
|
var<uniform> light: Light;
|
|
|
|
|
2022-10-01 23:58:09 +03:00
|
|
|
struct VertexInput {
|
|
|
|
@location(0) position: vec3<f32>,
|
|
|
|
@location(1) tex_coords: vec2<f32>,
|
2022-10-03 22:31:01 +03:00
|
|
|
@location(2) normal: vec3<f32>,
|
2022-10-01 23:58:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
struct VertexOutput {
|
|
|
|
@builtin(position) clip_position: vec4<f32>,
|
|
|
|
@location(0) tex_coords: vec2<f32>,
|
2022-10-03 22:31:01 +03:00
|
|
|
@location(1) world_normal: vec3<f32>,
|
|
|
|
@location(2) world_position: vec3<f32>,
|
2022-10-01 23:58:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@vertex
|
|
|
|
fn vs_main(
|
|
|
|
model: VertexInput,
|
2022-10-02 18:59:20 +03:00
|
|
|
instance: InstanceInput,
|
2022-10-01 23:58:09 +03:00
|
|
|
) -> VertexOutput {
|
2022-10-02 18:59:20 +03:00
|
|
|
let model_matrix = mat4x4<f32>(
|
|
|
|
instance.model_matrix_0,
|
|
|
|
instance.model_matrix_1,
|
|
|
|
instance.model_matrix_2,
|
|
|
|
instance.model_matrix_3,
|
|
|
|
);
|
2022-10-03 22:31:01 +03:00
|
|
|
|
2022-10-01 23:58:09 +03:00
|
|
|
var out: VertexOutput;
|
2022-10-03 22:31:01 +03:00
|
|
|
|
2022-10-01 23:58:09 +03:00
|
|
|
out.tex_coords = model.tex_coords;
|
2022-10-03 22:31:01 +03:00
|
|
|
|
|
|
|
out.world_normal = normalize((model_matrix * vec4<f32>(model.normal, 0.0)).xyz);
|
|
|
|
|
|
|
|
var world_position: vec4<f32> = model_matrix * vec4<f32>(model.position, 1.0);
|
|
|
|
out.world_position = world_position.xyz;
|
|
|
|
|
|
|
|
out.clip_position = camera.proj * camera.view * world_position;
|
|
|
|
|
2022-10-01 23:58:09 +03:00
|
|
|
return out;
|
2022-10-03 22:31:01 +03:00
|
|
|
}
|
2022-10-01 23:58:09 +03:00
|
|
|
|
|
|
|
// Fragment shader
|
|
|
|
|
|
|
|
@group(0) @binding(0)
|
|
|
|
var t_diffuse: texture_2d<f32>;
|
|
|
|
@group(0)@binding(1)
|
|
|
|
var s_diffuse: sampler;
|
|
|
|
|
|
|
|
@fragment
|
|
|
|
fn fs_main(in: VertexOutput) -> @location(0) vec4<f32> {
|
2022-10-03 22:31:01 +03:00
|
|
|
let object_color: vec4<f32> = textureSample(t_diffuse, s_diffuse, in.tex_coords);
|
|
|
|
|
|
|
|
let light_dir = normalize(light.position - in.world_position);
|
|
|
|
|
|
|
|
// ambient
|
|
|
|
let ambient_strength = 0.05;
|
|
|
|
let ambient_color = light.color * ambient_strength;
|
|
|
|
|
|
|
|
// diffuse
|
|
|
|
let diffuse_strength = max(dot(in.world_normal, light_dir), 0.0);
|
|
|
|
let diffuse_color = light.color * diffuse_strength;
|
|
|
|
|
|
|
|
// specular
|
|
|
|
let view_dir = normalize(camera.position.xyz - in.world_position);
|
|
|
|
let half_dir = normalize(view_dir + light_dir);
|
|
|
|
let specular_strength = pow(max(dot(in.world_normal, half_dir), 0.0), 32.0);
|
|
|
|
let specular_color = specular_strength * light.color;
|
|
|
|
|
|
|
|
let result = (ambient_color + diffuse_color + specular_color) * object_color.xyz;
|
|
|
|
|
|
|
|
return vec4<f32>(result, object_color.a);
|
2022-10-01 23:58:09 +03:00
|
|
|
}
|