2023-05-06 03:41:40 -04:00
|
|
|
#version 120
|
|
|
|
|
2024-04-18 00:22:26 -04:00
|
|
|
#include "/module/common.glsl"
|
|
|
|
|
2024-04-14 13:59:53 -04:00
|
|
|
float renderRes = pixelSize;
|
2024-04-14 13:28:52 -04:00
|
|
|
|
2024-04-08 22:28:38 -04:00
|
|
|
#define dithering // whether or not to apply dithering
|
|
|
|
#define colorMode 0 // hsv/rgb [0 1]
|
2023-05-08 14:36:17 -04:00
|
|
|
|
2024-04-11 13:00:28 -04:00
|
|
|
#define hueSteps 4 // the number of hues to use [2 4 8 16 32 64]
|
2023-05-08 14:36:17 -04:00
|
|
|
#define satSteps 4 // the number of saturations to use [2 4 8 16 32 64]
|
|
|
|
#define valSteps 4 // the number of lightnesses to use [2 4 8 16 32 64]
|
|
|
|
|
|
|
|
#define rgbSteps 4 // the number of rgb values to use [2 4 8 16 32 64]
|
|
|
|
|
2023-05-06 03:41:40 -04:00
|
|
|
uniform sampler2D gcolor;
|
2024-04-04 18:31:27 -04:00
|
|
|
uniform float viewWidth, viewHeight;
|
2023-05-06 03:41:40 -04:00
|
|
|
|
|
|
|
varying vec2 texcoord;
|
|
|
|
|
2024-04-14 13:28:52 -04:00
|
|
|
#include "/module/dof.frag"
|
2024-04-20 20:47:00 -04:00
|
|
|
#include "/module/interlace.frag"
|
2024-04-14 13:28:52 -04:00
|
|
|
|
2023-05-06 03:41:40 -04:00
|
|
|
// All components are in the range [0…1], including hue.
|
|
|
|
vec3 rgb2hsv(vec3 c)
|
|
|
|
{
|
|
|
|
vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0);
|
|
|
|
vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g));
|
|
|
|
vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r));
|
|
|
|
|
|
|
|
float d = q.x - min(q.w, q.y);
|
|
|
|
float e = 1.0e-10;
|
|
|
|
return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x);
|
|
|
|
}
|
|
|
|
|
|
|
|
// All components are in the range [0…1], including hue.
|
|
|
|
vec3 hsv2rgb(vec3 c)
|
|
|
|
{
|
|
|
|
vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
|
|
|
|
vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
|
|
|
|
return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const float steps = 4.0;
|
|
|
|
|
2023-05-08 14:36:17 -04:00
|
|
|
uniform vec3 palette[8];
|
|
|
|
uniform int paletteSize;
|
|
|
|
|
2023-05-06 03:41:40 -04:00
|
|
|
const int indexMatrix4x4[16] = int[](0, 8, 2, 10,
|
|
|
|
12, 4, 14, 6,
|
|
|
|
3, 11, 1, 9,
|
|
|
|
15, 7, 13, 5);
|
|
|
|
|
|
|
|
const int indexMatrix2x2[4] = int[](0, 2,
|
|
|
|
3, 1);
|
|
|
|
|
|
|
|
const int indexMatrix8x8[64] = int[](0, 32, 8, 40, 2, 34, 10, 42,
|
|
|
|
48, 16, 56, 24, 50, 18, 58, 26,
|
|
|
|
12, 44, 4, 36, 14, 46, 6, 38,
|
|
|
|
60, 28, 52, 20, 62, 30, 54, 22,
|
|
|
|
3, 35, 11, 43, 1, 33, 9, 41,
|
|
|
|
51, 19, 59, 27, 49, 17, 57, 25,
|
|
|
|
15, 47, 7, 39, 13, 45, 5, 37,
|
|
|
|
63, 31, 55, 23, 61, 29, 53, 21);
|
|
|
|
|
|
|
|
float indexValue() {
|
2024-04-14 13:59:53 -04:00
|
|
|
#if defined(dof) && defined(dofRes)
|
|
|
|
vec2 coord = gl_FragCoord.xy / renderRes;
|
|
|
|
#elif pixelSize > 1
|
2024-04-08 19:32:18 -04:00
|
|
|
vec2 coord = gl_FragCoord.xy / pixelSize;
|
|
|
|
#else
|
|
|
|
vec2 coord = gl_FragCoord.xy;
|
|
|
|
#endif
|
|
|
|
int x = int(mod(coord.x, 4));
|
|
|
|
int y = int(mod(coord.y, 4));
|
2023-05-06 03:41:40 -04:00
|
|
|
return indexMatrix4x4[(x + y * 4)] / 16.0;
|
|
|
|
}
|
|
|
|
|
2023-05-08 14:36:17 -04:00
|
|
|
float hueDistance(float h1, float h2) {
|
|
|
|
float diff = abs((h1 - h2));
|
|
|
|
return min(abs((1.0 - diff)), diff);
|
|
|
|
}
|
|
|
|
vec3[2] closestColors(float hue) {
|
|
|
|
vec3 ret[2];
|
|
|
|
vec3 closest = vec3(-2, 0, 0);
|
|
|
|
vec3 secondClosest = vec3(-2, 0, 0);
|
|
|
|
vec3 temp;
|
|
|
|
for (int i = 0; i < paletteSize; ++i) {
|
|
|
|
temp = palette[i];
|
|
|
|
float tempDistance = hueDistance(temp.x, hue);
|
|
|
|
if (tempDistance < hueDistance(closest.x, hue)) {
|
|
|
|
secondClosest = closest;
|
|
|
|
closest = temp;
|
|
|
|
} else {
|
|
|
|
if (tempDistance < hueDistance(secondClosest.x, hue)) {
|
|
|
|
secondClosest = temp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret[0] = closest;
|
|
|
|
ret[1] = secondClosest;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
float lightnessStep(float l, float lightnessSteps) {
|
|
|
|
/* Quantize the lightness to one of `lightnessSteps` values */
|
|
|
|
return floor((0.5 + l * (lightnessSteps - 1.0))) / (lightnessSteps - 1.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
float dither(float color, float dithersteps) {
|
2023-05-06 03:41:40 -04:00
|
|
|
float d = indexValue();
|
2023-05-08 14:36:17 -04:00
|
|
|
|
|
|
|
float l1 = lightnessStep(max((color - 0.125), 0.0), dithersteps);
|
|
|
|
float l2 = lightnessStep(min((color + 0.124), 1.0), dithersteps);
|
|
|
|
float lightnessDiff = (color - l1) / (l2 - l1);
|
|
|
|
|
|
|
|
float resultColor = (lightnessDiff < d) ? l1 : l2;
|
|
|
|
return resultColor;
|
2023-05-06 03:41:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void main() {
|
2024-04-08 22:28:38 -04:00
|
|
|
// adjust texture coordinate based on pixel size if needed
|
2024-04-04 18:31:27 -04:00
|
|
|
vec2 newcoord = texcoord;
|
2024-04-14 13:28:52 -04:00
|
|
|
#ifdef dof
|
|
|
|
newcoord = depthOfField();
|
|
|
|
#elif pixelSize > 1
|
2024-04-04 18:31:27 -04:00
|
|
|
vec2 view = vec2(viewWidth, viewHeight) / float(pixelSize);
|
|
|
|
float offset = (ceil(pixelSize * 0.5) - 0.5) / float(pixelSize);
|
|
|
|
newcoord = (floor(newcoord * view) + offset) / view;
|
|
|
|
#endif
|
|
|
|
vec3 color = texture2D(gcolor, newcoord).rgb;
|
|
|
|
|
2024-04-08 22:28:38 -04:00
|
|
|
#if colorMode == 0
|
|
|
|
color = rgb2hsv(color).xyz;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
vec3 final;
|
|
|
|
#ifdef dithering
|
|
|
|
#if colorMode == 0
|
|
|
|
vec3 filtered = vec3(dither(color.x, hueSteps), dither(color.y, satSteps), dither(color.z, valSteps)).rgb;
|
|
|
|
final = hsv2rgb(filtered);
|
|
|
|
#else
|
|
|
|
final = vec3(dither(color.r, rgbSteps), dither(color.g, rgbSteps), dither(color.b, rgbSteps));
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#if colorMode == 0
|
|
|
|
vec3 filtered = vec3(lightnessStep(color.x, hueSteps), lightnessStep(color.y, satSteps), lightnessStep(color.z, valSteps)).rgb;
|
|
|
|
final = hsv2rgb(filtered);
|
|
|
|
#else
|
|
|
|
final = vec3(lightnessStep(color.r, rgbSteps), lightnessStep(color.g, rgbSteps), lightnessStep(color.b, rgbSteps)).rgb;
|
|
|
|
#endif
|
2023-05-08 14:36:17 -04:00
|
|
|
#endif
|
2024-04-20 20:47:00 -04:00
|
|
|
|
|
|
|
#ifdef interlacing
|
|
|
|
/* DRAWBUFFERS:01 */
|
|
|
|
// pull previous buffer
|
|
|
|
vec3 prev = texture2D(colortex1, texcoord).rgb;
|
|
|
|
// interlace alternates between odd and even lines on world time
|
|
|
|
if(mod(int(gl_FragCoord.y / pixelSize), 2) == mod(worldTime, 2))
|
|
|
|
gl_FragData[0] = vec4(prev, 1);
|
|
|
|
else
|
|
|
|
gl_FragData[0] = vec4(final, 1);
|
|
|
|
gl_FragData[1] = vec4(final, 1);
|
|
|
|
#else
|
|
|
|
gl_FragData[0] = vec4(final, 1.0);
|
|
|
|
#endif
|
2023-05-06 03:41:40 -04:00
|
|
|
}
|
|
|
|
|