From 4cb192730d6113e58e348581d1c120e18ca94943 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Fri, 1 Oct 2021 20:37:14 -0400 Subject: [PATCH] mid-progress --- game/assets/configs/final_shader.json | 4 ++- game/assets/shaders/pixelart.fs | 41 +++++++++++++++++++++++---- game/src/lib.rs | 13 +++++++-- game/src/utilities/datastore.rs | 11 +++++++ game/src/utilities/game_config.rs | 2 ++ game/src/utilities/map_loader.rs | 6 ---- game/src/utilities/mod.rs | 1 - 7 files changed, 62 insertions(+), 16 deletions(-) delete mode 100644 game/src/utilities/map_loader.rs diff --git a/game/assets/configs/final_shader.json b/game/assets/configs/final_shader.json index 67a1b56..f652f87 100644 --- a/game/assets/configs/final_shader.json +++ b/game/assets/configs/final_shader.json @@ -1,5 +1,7 @@ { "pixel_scale": 1.0, "warp_factor": 0.65, - "scanline_darkness": 0.55 + "scanline_darkness": 0.55, + "bloom_samples": 5.0, + "bloom_quality": 2.5 } diff --git a/game/assets/shaders/pixelart.fs b/game/assets/shaders/pixelart.fs index 33ee27b..13152c9 100644 --- a/game/assets/shaders/pixelart.fs +++ b/game/assets/shaders/pixelart.fs @@ -1,5 +1,6 @@ /** - * This shader is the last piece of the graphics pipeline. EVERYTHING is passed through it. + * This shader is the last piece of the graphics pipeline. EVERYTHING is passed + * through it. */ #version 330 @@ -9,6 +10,7 @@ in vec2 fragTexCoord; // Whole input texture uniform sampler2D texture0; +uniform vec4 colDiffuse; // Viewport size uniform vec2 viewport; @@ -23,6 +25,10 @@ uniform vec2 pixelScale; uniform float warpFactor; uniform float scanlineDarkness; +// Bloom parameters +uniform float bloomSamples; +uniform float bloomQuality; + void main() { // Calculate the distance to merge pixels float dx = pixelScale.x * (1.0 / viewport.x); @@ -38,20 +44,43 @@ void main() { // Calculate a UV for this new blocky pixel vec2 pixelatedUV = vec2(dx * floor(baseUV.x / dx), dy * floor(baseUV.y / dy)); + // --- BEGIN BLOOM EFFECT --- + + vec2 sizeFactor = vec2(1) / viewport * bloomQuality; + vec4 textureSum = vec4(0); + + const int range = 2; + for (int x = -range; x <= range; x++) { + for (int y = -range; y <= range; y++) { + textureSum += texture(texture0, fragTexCoord + vec2(x, y) * sizeFactor); + } + } + + // --- BEGIN CRT SHADER --- + // Warp the UVs of the pixelated texture vec2 warpedUV = pixelatedUV; - warpedUV.x -= 0.5; warpedUV.x *= 1.0+(dist_center_sq.y * (0.3 * warpFactor)); warpedUV.x += 0.5; - warpedUV.y -= 0.5; warpedUV.y *= 1.0+(dist_center_sq.x * (0.4 * warpFactor)); warpedUV.y += 0.5; + warpedUV.x -= 0.5; + warpedUV.x *= 1.0 + (dist_center_sq.y * (0.3 * warpFactor)); + warpedUV.x += 0.5; + warpedUV.y -= 0.5; + warpedUV.y *= 1.0 + (dist_center_sq.x * (0.4 * warpFactor)); + warpedUV.y += 0.5; // If the UV is outside the texture, return black - if (warpedUV.x < 0.0 || warpedUV.x > 1.0 || warpedUV.y < 0.0 || warpedUV.y > 1.0) { + if (warpedUV.x < 0.0 || warpedUV.x > 1.0 || warpedUV.y < 0.0 || + warpedUV.y > 1.0) { finalColor = vec4(0.0, 0.0, 0.0, 1.0); return; } // Determine factor of if we are rendering on a scanline - float scanlineFactor = abs(sin(fragTexCoord.y * viewport.y) * 0.5 * scanlineDarkness); + float scanlineFactor = + abs(sin(fragTexCoord.y * viewport.y) * 0.5 * scanlineDarkness); // Build the final pixel - finalColor = vec4(mix(texture(texture0, warpedUV).rgb, vec3(0.0), scanlineFactor), 1.0); + vec4 texWithBloom = + ((textureSum / (bloomSamples * bloomSamples)) + texture0) * colDiffuse; + finalColor = vec4( + mix(texture(texWithBloom, warpedUV).rgb, vec3(0.0), scanlineFactor), 1.0); } diff --git a/game/src/lib.rs b/game/src/lib.rs index 6173bb0..96fc5a2 100644 --- a/game/src/lib.rs +++ b/game/src/lib.rs @@ -186,12 +186,19 @@ pub async fn game_begin(game_config: &GameConfig) -> Result<(), Box Result<(), Box Result { + + let temp_dir = tempdir()?; + let tmp_path = temp_dir.path().join(Path::new(path).file_name().unwrap()); + + std::fs::write( + &tmp_path + ) +} diff --git a/game/src/utilities/game_config.rs b/game/src/utilities/game_config.rs index 629385b..8fc9147 100644 --- a/game/src/utilities/game_config.rs +++ b/game/src/utilities/game_config.rs @@ -42,6 +42,8 @@ pub struct FinalShaderConfig { pub pixel_scale: f32, pub warp_factor: f32, pub scanline_darkness: f32, + pub bloom_samples: f32, + pub bloom_quality: f32, } impl FinalShaderConfig { diff --git a/game/src/utilities/map_loader.rs b/game/src/utilities/map_loader.rs deleted file mode 100644 index 445f3dd..0000000 --- a/game/src/utilities/map_loader.rs +++ /dev/null @@ -1,6 +0,0 @@ -use tiled::* - -pub struct Level { - pub map: Map, - -} diff --git a/game/src/utilities/mod.rs b/game/src/utilities/mod.rs index 6ebe759..a8e4323 100644 --- a/game/src/utilities/mod.rs +++ b/game/src/utilities/mod.rs @@ -6,4 +6,3 @@ pub mod math; pub mod non_ref_raylib; pub mod render_layer; pub mod shaders; -pub mod map_loader;