]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Drug overlay shader rework - a little more motion-sickness friendly, a little less...
authordeathride58 <deathride58@users.noreply.github.com>
Sat, 23 Dec 2023 05:35:46 +0000 (00:35 -0500)
committerGitHub <noreply@github.com>
Sat, 23 Dec 2023 05:35:46 +0000 (00:35 -0500)
* reworks the drug overlay effect to be less motion-sickness inducing and a bit less shonky

* UNAUTHORIZED fucking THING. DESTROY it immediately

* further tweaks - adds another gradient to control the color effect too

Resources/Textures/Shaders/rainbow.swsl

index 67b2b78686acca315d4f075e53037717ed76d66c..a96d2fdb31b23bd95bc358a7ad9bc6fec3c0e7e0 100644 (file)
@@ -5,6 +5,14 @@ const highp float TimeScale = 0.15;
 const highp float DistortionScale = 0.02; // how strongly to warp the screen
 const highp float NoiseScale = 4.0; // scale of the random noise
 const highp float MaxColorMix = 0.05; // rainbow effect strength. at 1.0, you wont be able to see the screen anymore
+const highp float BaseColorMult = 8; // multiplier of the underlying screen texture for the rainbow effect
+const highp float BaseColorPow = 0.8; // exponent for the rainbow effect's 
+const highp float CenterRadius = 200; // radius of the gradient used to tone down the distortion effect
+const highp float CenterMinDist = 0.4; // minimum distance from the center of the screen for the distortion to appear at all
+const highp float CenterPow = 3; // the exponent used for the distortion center
+const highp float CenterColorRadius = 250; // radius of the gradient used to tone down the color effect
+const highp float CenterColorMinDist = 0.2; // minimum distance from the center of the screen for the color to appear at all
+const highp float CenterColorPow = 1.25; // the exponent used for the color's center
 
 // hash(),  noise(), and hsv2rgb_smooth() were converted from shadertoy examples, which were released under the MIT License:
 // The MIT License
@@ -48,15 +56,20 @@ highp float mixNoise(highp vec2 point, highp float phase) {
 
 void fragment() {
     highp vec2 coord = FRAGCOORD.xy * SCREEN_PIXEL_SIZE.xy;
+    highp vec2 aspect = vec2(1.0/SCREEN_PIXEL_SIZE.x, 1.0/SCREEN_PIXEL_SIZE.y);
+    highp vec2 center = aspect * 0.5;
     
     // warp the screen.
     highp vec2 offset = vec2(mixNoise(coord, 0.), mixNoise(coord, 5.));
-    COLOR = zTextureSpec(SCREEN_TEXTURE, coord + effectScale * DistortionScale * offset);
+    highp float centergradient = pow(clamp((length(center - FRAGCOORD.xy) / CenterRadius) - CenterMinDist, 0.0, 1.0), CenterPow);
+    COLOR = zTextureSpec(SCREEN_TEXTURE, coord + effectScale * (DistortionScale * centergradient) * offset);
     
     // apply rainbow effect.
     highp float hue = 1. + mixNoise(coord, 10.);
     highp vec3 color = hsv2rgb_smooth(vec3(hue,1.0,1.0));
-    COLOR.xyz = mix(COLOR.xyz, color, MaxColorMix * effectScale * effectScale);
+    highp float centercolor = pow(clamp((length(center - FRAGCOORD.xy) / CenterColorRadius) - CenterColorMinDist, 0.0, 1.0), CenterColorPow);
+    highp float coloration = pow((COLOR.x + COLOR.y + COLOR.z) * BaseColorMult, BaseColorPow) * centercolor;
+    COLOR.xyz = mix(COLOR.xyz, color, MaxColorMix * effectScale * effectScale * coloration);
 }