mirror of
https://github.com/Kbz-8/42_vox.git
synced 2026-01-13 07:33:35 +00:00
adding custom pipeline for water (what a journey to do so...)
This commit is contained in:
56
Resources/Shaders/Fragment.nzsl
git.filemode.normal_file
56
Resources/Shaders/Fragment.nzsl
git.filemode.normal_file
@@ -0,0 +1,56 @@
|
||||
[nzsl_version("1.0")]
|
||||
module;
|
||||
|
||||
struct VertOut
|
||||
{
|
||||
[location(0)] color: vec4[f32],
|
||||
[location(1)] uv: vec2[f32],
|
||||
[location(2)] norm: vec4[f32],
|
||||
[location(3)] transformed_norm: vec3[f32],
|
||||
[location(4)] frag_position: vec4[f32],
|
||||
[location(5)] camera_position: vec3[f32],
|
||||
[builtin(position)] pos: vec4[f32]
|
||||
}
|
||||
|
||||
struct FragmentData
|
||||
{
|
||||
dissolve_texture_factor: f32,
|
||||
dissolve_black_white_colors_factor: f32,
|
||||
dissolve_normals_colors_factor: f32,
|
||||
}
|
||||
|
||||
struct FragOut
|
||||
{
|
||||
[location(0)] color: vec4[f32]
|
||||
}
|
||||
|
||||
external
|
||||
{
|
||||
[set(1), binding(0)] u_albedo: sampler2D[f32],
|
||||
[set(1), binding(1)] u_fragment_data: uniform[FragmentData],
|
||||
}
|
||||
|
||||
[entry(frag)]
|
||||
fn main(input: VertOut) -> FragOut
|
||||
{
|
||||
if(input.color.a == 0.0)
|
||||
discard;
|
||||
|
||||
const ambient = vec3[f32](0.1, 0.1, 0.1);
|
||||
const directional_color = vec3[f32](5.0, 5.0, 5.0);
|
||||
const specular_strength = 0.5;
|
||||
let directional_vector = normalize(vec3[f32](1.0, 0.8, 0.75));
|
||||
|
||||
let directional: f32 = max(dot(input.transformed_norm.xyz, directional_vector), 0.0);
|
||||
|
||||
let view_dir: vec3[f32] = normalize(input.camera_position - input.frag_position.xyz);
|
||||
let reflect_dir: vec3[f32] = reflect(-directional_vector, input.norm.xyz);
|
||||
let spec: f32 = pow(max(dot(view_dir, reflect_dir), 0.0), 128.0);
|
||||
let specular: vec3[f32] = specular_strength * spec * directional_color;
|
||||
|
||||
let lighting: vec3[f32] = ambient + (directional_color * directional) + specular;
|
||||
|
||||
let output: FragOut;
|
||||
output.color = input.color * u_albedo.Sample(input.uv) * vec4[f32](lighting, 1.0);
|
||||
return output;
|
||||
}
|
||||
116
Resources/Shaders/PostProcess.nzsl
git.filemode.normal_file
116
Resources/Shaders/PostProcess.nzsl
git.filemode.normal_file
@@ -0,0 +1,116 @@
|
||||
[nzsl_version("1.0")]
|
||||
module;
|
||||
|
||||
struct VertOut
|
||||
{
|
||||
[location(0)] uv: vec2[f32],
|
||||
[builtin(frag_coord)] fragcoord: vec4[f32],
|
||||
}
|
||||
|
||||
struct FragOut
|
||||
{
|
||||
[location(0)] color: vec4[f32]
|
||||
}
|
||||
|
||||
[layout(std140)]
|
||||
struct Data
|
||||
{
|
||||
inv_res: vec2[f32],
|
||||
underwater: i32,
|
||||
}
|
||||
|
||||
external
|
||||
{
|
||||
[set(0), binding(0)] u_texture: sampler2D[f32],
|
||||
[set(0), binding(1)] u_depth: sampler2D[f32],
|
||||
[set(0), binding(2)] u_data: uniform[Data],
|
||||
}
|
||||
|
||||
fn Mixf32(a: f32, b: f32, t: f32) -> f32
|
||||
{
|
||||
return a + (b - a) * t;
|
||||
}
|
||||
|
||||
fn MixVec4f32(a: vec4[f32], b: vec4[f32], t: f32) -> vec4[f32]
|
||||
{
|
||||
return vec4[f32](
|
||||
Mixf32(a.x, b.x, t),
|
||||
Mixf32(a.y, b.y, t),
|
||||
Mixf32(a.z, b.z, t),
|
||||
Mixf32(a.w, b.w, t)
|
||||
);
|
||||
}
|
||||
|
||||
option EnableDepthOfField: bool = false;
|
||||
fn SampleDepthOfField(uv: vec2[f32], depth: f32) -> vec4[f32]
|
||||
{
|
||||
const focal_depth: f32 = 0.5;
|
||||
const focal_range: f32 = 0.15;
|
||||
const blur_amount: f32 = 0.0005;
|
||||
const samples: i32 = 16;
|
||||
|
||||
let blur: f32 = clamp(abs(depth - focal_depth) / focal_range, 0.0, 1.0) * blur_amount;
|
||||
|
||||
let color = vec4[f32](0.0, 0.0, 0.0, 1.0);
|
||||
for i in 0 -> samples
|
||||
{
|
||||
let angle: f32 = f32(i) * 3.14159265 * 2.0 / f32(samples);
|
||||
let offset: vec2[f32] = vec2[f32](cos(angle), sin(angle)) * blur;
|
||||
color += u_texture.Sample(uv + offset);
|
||||
}
|
||||
return color / f32(samples);
|
||||
}
|
||||
|
||||
option EnableRadialBlur: bool = true;
|
||||
fn SampleRadialBlur(uv: vec2[f32]) -> vec4[f32]
|
||||
{
|
||||
const center = vec2[f32](0.5, 0.5);
|
||||
const blur_strength: f32 = 0.01;
|
||||
const samples: i32 = 16;
|
||||
const fade_start: f32 = -0.1;
|
||||
|
||||
let dir: vec2[f32] = uv - center;
|
||||
let dist: f32 = length(dir);
|
||||
let dynamic_strength: f32 = blur_strength * dist;
|
||||
let step: vec2[f32] = dir * dynamic_strength / f32(samples);
|
||||
|
||||
let accum_color: vec4[f32] = vec4[f32](0.0, 0.0, 0.0, 0.0);
|
||||
let sample_uv: vec2[f32] = uv;
|
||||
|
||||
for i in 0 -> samples
|
||||
{
|
||||
accum_color += u_texture.Sample(sample_uv);
|
||||
sample_uv -= step;
|
||||
}
|
||||
let color = accum_color / f32(samples);
|
||||
let fade: f32 = clamp((dist - fade_start) / (1.0 - fade_start), 0.0, 1.0);
|
||||
return color * (1.0 - fade);
|
||||
}
|
||||
|
||||
[entry(frag)]
|
||||
fn main(input: VertOut) -> FragOut
|
||||
{
|
||||
let depth: f32 = u_depth.Sample(input.uv).r;
|
||||
let output: FragOut;
|
||||
|
||||
const if(EnableDepthOfField)
|
||||
output.color = SampleDepthOfField(input.uv, depth);
|
||||
else
|
||||
output.color = u_texture.Sample(input.uv);
|
||||
|
||||
const if(EnableRadialBlur)
|
||||
output.color = SampleRadialBlur(input.uv);
|
||||
|
||||
if(u_data.underwater != 0)
|
||||
{
|
||||
const fog_near: f32 = 0.9;
|
||||
const fog_far: f32 = 1.0;
|
||||
const fog_color: vec4[f32] = vec4[f32](0.0, 0.0, 0.25, 1.0);
|
||||
let fog_factor: f32 = (fog_far - depth) / (fog_far - fog_near);
|
||||
fog_factor = clamp(fog_factor, 0.0, 1.0);
|
||||
output.color = MixVec4f32(fog_color, output.color, fog_factor);
|
||||
}
|
||||
|
||||
output.color.w = 1.0;
|
||||
return output;
|
||||
}
|
||||
39
Resources/Shaders/WaterFragment.nzsl
git.filemode.normal_file
39
Resources/Shaders/WaterFragment.nzsl
git.filemode.normal_file
@@ -0,0 +1,39 @@
|
||||
[nzsl_version("1.0")]
|
||||
module;
|
||||
|
||||
struct VertOut
|
||||
{
|
||||
[location(0)] color: vec4[f32],
|
||||
[location(1)] uv: vec2[f32],
|
||||
[location(2)] time: f32,
|
||||
[builtin(position)] pos: vec4[f32]
|
||||
}
|
||||
|
||||
struct FragmentData
|
||||
{
|
||||
dissolve_texture_factor: f32,
|
||||
dissolve_black_white_colors_factor: f32,
|
||||
dissolve_normals_colors_factor: f32,
|
||||
}
|
||||
|
||||
struct FragOut
|
||||
{
|
||||
[location(0)] color: vec4[f32]
|
||||
}
|
||||
|
||||
external
|
||||
{
|
||||
[set(1), binding(0)] u_albedo: sampler2D[f32],
|
||||
[set(1), binding(1)] u_fragment_data: uniform[FragmentData],
|
||||
}
|
||||
|
||||
[entry(frag)]
|
||||
fn main(input: VertOut) -> FragOut
|
||||
{
|
||||
if(input.color.a == 0.0)
|
||||
discard;
|
||||
let output: FragOut;
|
||||
output.color = input.color * u_albedo.Sample(input.uv) * vec4[f32](sin(input.time), 1.0, cos(input.time), 1.0);
|
||||
return output;
|
||||
}
|
||||
|
||||
49
Resources/Shaders/WaterVertex.nzsl
git.filemode.normal_file
49
Resources/Shaders/WaterVertex.nzsl
git.filemode.normal_file
@@ -0,0 +1,49 @@
|
||||
[nzsl_version("1.0")]
|
||||
module;
|
||||
|
||||
import ViewerData from ScopEngine.ViewerData;
|
||||
|
||||
struct VertIn
|
||||
{
|
||||
[location(0)] pos: vec4[f32],
|
||||
[location(1)] color: vec4[f32],
|
||||
[location(2)] normal: vec4[f32],
|
||||
[location(3)] uv: vec2[f32]
|
||||
}
|
||||
|
||||
struct VertOut
|
||||
{
|
||||
[location(0)] color: vec4[f32],
|
||||
[location(1)] uv: vec2[f32],
|
||||
[location(2)] time: f32,
|
||||
[builtin(position)] pos: vec4[f32]
|
||||
}
|
||||
|
||||
struct ModelData
|
||||
{
|
||||
matrix: mat4[f32],
|
||||
normal: mat4[f32],
|
||||
}
|
||||
|
||||
struct CustomData
|
||||
{
|
||||
time: f32,
|
||||
}
|
||||
|
||||
external
|
||||
{
|
||||
[set(0), binding(0)] viewer_data: uniform[ViewerData],
|
||||
[set(0), binding(1)] data: uniform[CustomData],
|
||||
model: push_constant[ModelData]
|
||||
}
|
||||
|
||||
[entry(vert)]
|
||||
fn main(input: VertIn) -> VertOut
|
||||
{
|
||||
let output: VertOut;
|
||||
output.color = input.color;
|
||||
output.uv = input.uv;
|
||||
output.time = data.time;
|
||||
output.pos = viewer_data.view_proj_matrix * model.matrix * input.pos;
|
||||
return output;
|
||||
}
|
||||
Reference in New Issue
Block a user