mirror of
https://github.com/Rezmason/matrix.git
synced 2026-04-14 12:29:30 -07:00
469 lines
14 KiB
WebGPU Shading Language
469 lines
14 KiB
WebGPU Shading Language
// This shader module is the star of the show.
|
|
// It is where the cell states update and the symbols get drawn to the screen.
|
|
|
|
struct Config {
|
|
// common properties used for compute and rendering
|
|
animationSpeed : f32,
|
|
glyphSequenceLength : f32,
|
|
glyphTextureGridSize : vec2<i32>,
|
|
glyphHeightToWidth : f32,
|
|
gridSize : vec2<f32>,
|
|
showDebugView : i32,
|
|
|
|
// compute-specific properties
|
|
brightnessThreshold : f32,
|
|
brightnessOverride : f32,
|
|
brightnessDecay : f32,
|
|
baseBrightness : f32,
|
|
baseContrast : f32,
|
|
cursorBrightness : f32,
|
|
cycleSpeed : f32,
|
|
cycleFrameSkip : i32,
|
|
fallSpeed : f32,
|
|
hasSun : i32,
|
|
hasThunder : i32,
|
|
raindropLength : f32,
|
|
rippleScale : f32,
|
|
rippleSpeed : f32,
|
|
rippleThickness : f32,
|
|
cycleStyle : i32,
|
|
rippleType : i32,
|
|
|
|
// render-specific properties
|
|
forwardSpeed : f32,
|
|
glyphVerticalSpacing : f32,
|
|
glyphEdgeCrop : f32,
|
|
isPolar : i32,
|
|
density : f32,
|
|
slantScale : f32,
|
|
slantVec : vec2<f32>,
|
|
volumetric : i32,
|
|
loops : i32,
|
|
highPassThreshold : f32,
|
|
};
|
|
|
|
// The properties that change over time get their own buffer.
|
|
struct Time {
|
|
seconds : f32,
|
|
frames : i32,
|
|
};
|
|
|
|
// The properties related to the size of the canvas get their own buffer.
|
|
struct Scene {
|
|
screenSize : vec2<f32>,
|
|
camera : mat4x4<f32>,
|
|
transform : mat4x4<f32>,
|
|
};
|
|
|
|
struct Cell {
|
|
shine : vec4<f32>,
|
|
symbol : vec4<f32>,
|
|
};
|
|
|
|
// The array of cells that the compute shader updates, and the fragment shader draws.
|
|
struct CellData {
|
|
cells: array<Cell>,
|
|
};
|
|
|
|
// Shared bindings
|
|
@group(0) @binding(0) var<uniform> config : Config;
|
|
@group(0) @binding(1) var<uniform> time : Time;
|
|
|
|
// Compute-specific bindings
|
|
@group(0) @binding(2) var<storage, read_write> cells_RW : CellData;
|
|
|
|
// Render-specific bindings
|
|
@group(0) @binding(2) var<uniform> scene : Scene;
|
|
@group(0) @binding(3) var linearSampler : sampler;
|
|
@group(0) @binding(4) var msdfTexture : texture_2d<f32>;
|
|
@group(0) @binding(5) var<storage, read> cells_RO : CellData;
|
|
|
|
// Shader params
|
|
|
|
struct ComputeInput {
|
|
@builtin(global_invocation_id) id : vec3<u32>,
|
|
};
|
|
|
|
struct VertInput {
|
|
@builtin(vertex_index) index : u32,
|
|
};
|
|
|
|
struct VertOutput {
|
|
@builtin(position) Position : vec4<f32>,
|
|
@location(0) uv : vec2<f32>,
|
|
@location(1) quadDepth : f32,
|
|
};
|
|
|
|
struct FragOutput {
|
|
@location(0) color : vec4<f32>,
|
|
@location(1) highPassColor : vec4<f32>,
|
|
};
|
|
|
|
// Constants
|
|
|
|
const NUM_VERTICES_PER_QUAD : i32 = 6; // 2 * 3
|
|
const PI : f32 = 3.14159265359;
|
|
const TWO_PI : f32 = 6.28318530718;
|
|
const SQRT_2 : f32 = 1.4142135623730951;
|
|
const SQRT_5 : f32 = 2.23606797749979;
|
|
|
|
// Helper functions for generating randomness, borrowed from elsewhere
|
|
|
|
fn randomFloat( uv : vec2<f32> ) -> f32 {
|
|
let a = 12.9898;
|
|
let b = 78.233;
|
|
let c = 43758.5453;
|
|
let dt = dot( uv, vec2<f32>( a, b ) );
|
|
let sn = dt % PI;
|
|
return fract(sin(sn) * c);
|
|
}
|
|
|
|
fn randomVec2( uv : vec2<f32> ) -> vec2<f32> {
|
|
return fract(vec2<f32>(sin(uv.x * 591.32 + uv.y * 154.077), cos(uv.x * 391.32 + uv.y * 49.077)));
|
|
}
|
|
|
|
fn wobble(x : f32) -> f32 {
|
|
return x + 0.3 * sin(SQRT_2 * x) + 0.2 * sin(SQRT_5 * x);
|
|
}
|
|
|
|
// Compute shader core functions
|
|
|
|
// Rain time is the shader's key underlying concept.
|
|
// It's why glyphs that share a column are lit simultaneously, and are brighter toward the bottom.
|
|
fn getRainTime(simTime : f32, glyphPos : vec2<f32>) -> f32 {
|
|
var columnTimeOffset = randomFloat(vec2<f32>(glyphPos.x, 0.0)) * 1000.0;
|
|
var columnSpeedOffset = randomFloat(vec2<f32>(glyphPos.x + 0.1, 0.0)) * 0.5 + 0.5;
|
|
if (bool(config.loops)) {
|
|
columnSpeedOffset = 0.5;
|
|
}
|
|
var columnTime = columnTimeOffset + simTime * config.fallSpeed * columnSpeedOffset;
|
|
var rainTime = (glyphPos.y * 0.01 + columnTime) / config.raindropLength;
|
|
if (!bool(config.loops)) {
|
|
rainTime = wobble(rainTime);
|
|
}
|
|
return rainTime;
|
|
}
|
|
|
|
fn getBrightness(rainTime : f32) -> f32 {
|
|
return (1.0 - fract(rainTime)) * config.baseContrast + config.baseBrightness;
|
|
}
|
|
|
|
fn getCycleSpeed(brightness : f32) -> f32 {
|
|
var localCycleSpeed = 1.0;
|
|
if (config.cycleStyle == 0 && brightness > 0.0) {
|
|
localCycleSpeed = pow(1.0 - brightness, 4.0);
|
|
}
|
|
return config.animationSpeed * config.cycleSpeed * localCycleSpeed;
|
|
}
|
|
|
|
// Compute shader additional effects
|
|
|
|
fn applySunShowerBrightness(brightness : f32, screenPos : vec2<f32>) -> f32 {
|
|
if (brightness >= -4.0) {
|
|
return pow(fract(brightness * 0.5), 3.0) * screenPos.y * 1.5;
|
|
}
|
|
return brightness;
|
|
}
|
|
|
|
fn applyThunderBrightness(brightness : f32, simTime : f32, screenPos : vec2<f32>) -> f32 {
|
|
var thunderTime = simTime * 0.5;
|
|
var thunder = 1.0 - fract(wobble(thunderTime));
|
|
if (bool(config.loops)) {
|
|
thunder = 1.0 - fract(thunderTime + 0.3);
|
|
}
|
|
|
|
thunder = log(thunder * 1.5) * 4.0;
|
|
thunder = clamp(thunder, 0.0, 1.0);
|
|
thunder *= pow(screenPos.y, 2.0) * 3.0;
|
|
return brightness + thunder;
|
|
}
|
|
|
|
fn applyRippleEffect(effect : f32, simTime : f32, screenPos : vec2<f32>) -> f32 {
|
|
if (config.rippleType == -1) {
|
|
return effect;
|
|
}
|
|
|
|
var rippleTime = (simTime * 0.5 + sin(simTime) * 0.2) * config.rippleSpeed + 1.0; // TODO: clarify
|
|
if (bool(config.loops)) {
|
|
rippleTime = (simTime * 0.5) * config.rippleSpeed + 1.0;
|
|
}
|
|
|
|
var offset = randomVec2(vec2<f32>(floor(rippleTime), 0.0)) - 0.5;
|
|
if (bool(config.loops)) {
|
|
offset = vec2<f32>(0.0);
|
|
}
|
|
var ripplePos = screenPos * 2.0 - 1.0 + offset;
|
|
var rippleDistance : f32;
|
|
if (config.rippleType == 0) {
|
|
var boxDistance = abs(ripplePos) * vec2<f32>(1.0, config.glyphHeightToWidth);
|
|
rippleDistance = max(boxDistance.x, boxDistance.y);
|
|
} else if (config.rippleType == 1) {
|
|
rippleDistance = length(ripplePos);
|
|
}
|
|
|
|
var rippleValue = fract(rippleTime) * config.rippleScale - rippleDistance;
|
|
|
|
if (rippleValue > 0.0 && rippleValue < config.rippleThickness) {
|
|
return effect + 0.75;
|
|
}
|
|
|
|
return effect;
|
|
}
|
|
|
|
// Compute shader main functions
|
|
|
|
fn computeShine (simTime : f32, isFirstFrame : bool, glyphPos : vec2<f32>, screenPos : vec2<f32>, previous : vec4<f32>) -> vec4<f32> {
|
|
|
|
// Determine the glyph's local time.
|
|
var rainTime = getRainTime(simTime, glyphPos);
|
|
var rainTimeBelow = getRainTime(simTime, glyphPos + vec2<f32>(0., -1.));
|
|
var cursor = select(0.0, 1.0, fract(rainTime) < fract(rainTimeBelow));
|
|
|
|
// Rain time is the backbone of this effect.
|
|
|
|
// Determine the glyph's brightness.
|
|
var brightness = getBrightness(rainTime);
|
|
|
|
if (bool(config.hasSun)) {
|
|
brightness = applySunShowerBrightness(brightness, screenPos);
|
|
}
|
|
if (bool(config.hasThunder)) {
|
|
brightness = applyThunderBrightness(brightness, simTime, screenPos);
|
|
}
|
|
|
|
// Determine the glyph's effect— the amount the glyph lights up for other reasons
|
|
var effect = 0.0;
|
|
effect = applyRippleEffect(effect, simTime, screenPos); // Round or square ripples across the grid
|
|
|
|
|
|
// Blend the glyph's brightness with its previous brightness, so it winks on and off organically
|
|
if (!isFirstFrame) {
|
|
var previousBrightness = previous.r;
|
|
brightness = mix(previousBrightness, brightness, config.brightnessDecay);
|
|
}
|
|
|
|
var result = vec4<f32>(brightness, fract(rainTime), cursor, effect);
|
|
return result;
|
|
}
|
|
|
|
fn computeSymbol (simTime : f32, isFirstFrame : bool, glyphPos : vec2<f32>, screenPos : vec2<f32>, previous : vec4<f32>, shine : vec4<f32>) -> vec4<f32> {
|
|
|
|
var brightness = shine.r;
|
|
|
|
var previousSymbol = previous.r;
|
|
var previousAge = previous.g;
|
|
var resetGlyph = isFirstFrame;
|
|
if (bool(config.loops)) {
|
|
resetGlyph = resetGlyph || brightness < 0.0;
|
|
}
|
|
if (resetGlyph) {
|
|
previousAge = randomFloat(screenPos + 0.5);
|
|
previousSymbol = floor(config.glyphSequenceLength * randomFloat(screenPos));
|
|
}
|
|
var cycleSpeed = getCycleSpeed(brightness);
|
|
var age = previousAge;
|
|
var symbol = previousSymbol;
|
|
if (time.frames % config.cycleFrameSkip == 0) {
|
|
age += cycleSpeed * f32(config.cycleFrameSkip);
|
|
var advance = floor(age);
|
|
age = fract(age);
|
|
if (config.cycleStyle == 0) {
|
|
symbol = (symbol + advance) % config.glyphSequenceLength;
|
|
} else if (config.cycleStyle == 1 && advance > 0.) {
|
|
symbol = floor(config.glyphSequenceLength * randomFloat(screenPos + simTime));
|
|
}
|
|
}
|
|
|
|
var result = vec4<f32>(symbol, age, 0.0, 0.0);
|
|
return result;
|
|
}
|
|
|
|
@compute @workgroup_size(32, 1, 1) fn computeMain(input : ComputeInput) {
|
|
|
|
// Resolve the invocation ID to a cell coordinate
|
|
var row = i32(input.id.y);
|
|
var column = i32(input.id.x);
|
|
|
|
if (column >= i32(config.gridSize.x)) {
|
|
return;
|
|
}
|
|
|
|
var i = row * i32(config.gridSize.x) + column;
|
|
|
|
var simTime = time.seconds * config.animationSpeed;
|
|
var isFirstFrame = time.frames == 0;
|
|
|
|
// Update the cell
|
|
var glyphPos = vec2<f32>(f32(column), f32(row));
|
|
var screenPos = glyphPos / config.gridSize;
|
|
|
|
var cell = cells_RW.cells[i];
|
|
cell.shine = computeShine(simTime, isFirstFrame, glyphPos, screenPos, cell.shine);
|
|
cell.symbol = computeSymbol(simTime, isFirstFrame, glyphPos, screenPos, cell.symbol, cell.shine);
|
|
cells_RW.cells[i] = cell;
|
|
}
|
|
|
|
// Vertex shader
|
|
|
|
// Firefox Nightly (that is to say, Naga) currently has a bug that mixes up these values from ones in the uniforms.
|
|
// var<private> quadCorners : array<vec2<f32>, NUM_VERTICES_PER_QUAD> = array<vec2<f32>, NUM_VERTICES_PER_QUAD>(
|
|
// vec2<f32>(0.0, 0.0), vec2<f32>(1.0, 0.0), vec2<f32>(0.0, 1.0),
|
|
// vec2<f32>(1.0, 1.0), vec2<f32>(0.0, 1.0), vec2<f32>(1.0, 0.0)
|
|
// );
|
|
|
|
@vertex fn vertMain(input : VertInput) -> VertOutput {
|
|
|
|
var volumetric = bool(config.volumetric);
|
|
|
|
var quadGridSize = select(vec2<f32>(1.0), config.gridSize, volumetric);
|
|
|
|
// Convert the vertex index into its quad's position and its corner in its quad
|
|
var i = i32(input.index);
|
|
var quadIndex = i / NUM_VERTICES_PER_QUAD;
|
|
|
|
// var quadCorner = quadCorners[i % NUM_VERTICES_PER_QUAD];
|
|
var quadCorner = vec2<f32>(f32(i % 2), f32((i + 1) % 6 / 3));
|
|
|
|
var quadPosition = vec2<f32>(
|
|
f32(quadIndex % i32(quadGridSize.x)),
|
|
f32(quadIndex / i32(quadGridSize.x))
|
|
);
|
|
|
|
// Calculate the vertex's uv
|
|
var uv = (quadPosition + quadCorner) / quadGridSize;
|
|
|
|
// Determine the quad's depth. This is a static value for each column of quads.
|
|
var quadDepth = 0.0;
|
|
if (volumetric) {
|
|
var startDepth = randomFloat(vec2(quadPosition.x, 0.0));
|
|
quadDepth = fract(startDepth + time.seconds * config.animationSpeed * config.forwardSpeed);
|
|
}
|
|
|
|
// Calculate the vertex's world space position
|
|
var worldPosition = quadPosition * vec2<f32>(1.0, config.glyphVerticalSpacing);
|
|
worldPosition += quadCorner * vec2<f32>(config.density, 1.0);
|
|
worldPosition /= quadGridSize;
|
|
worldPosition = (worldPosition - 0.5) * 2.0;
|
|
|
|
// Convert the vertex's world space position to screen space
|
|
var screenPosition = vec4<f32>(worldPosition, quadDepth, 1.0);
|
|
if (volumetric) {
|
|
screenPosition.x /= config.glyphHeightToWidth;
|
|
screenPosition = scene.camera * scene.transform * screenPosition;
|
|
} else {
|
|
screenPosition = vec4<f32>(screenPosition.xy * scene.screenSize, screenPosition.zw);
|
|
}
|
|
|
|
return VertOutput(
|
|
screenPosition,
|
|
uv,
|
|
quadDepth
|
|
);
|
|
}
|
|
|
|
// Fragment shader core functions
|
|
|
|
fn median3(i : vec3<f32>) -> f32 {
|
|
return max(min(i.r, i.g), min(max(i.r, i.g), i.b));
|
|
}
|
|
|
|
fn getSymbolUV(symbol : i32) -> vec2<f32> {
|
|
var symbolX = symbol % config.glyphTextureGridSize.x;
|
|
var symbolY = symbol / config.glyphTextureGridSize.x;
|
|
return vec2<f32>(f32(symbolX), f32(symbolY));
|
|
}
|
|
|
|
// Fragment shader
|
|
|
|
@fragment fn fragMain(input : VertOutput) -> FragOutput {
|
|
|
|
var volumetric = bool(config.volumetric);
|
|
var uv = input.uv;
|
|
|
|
// For normal mode, derive the fragment's glyph and msdf UV from its screen space position
|
|
if (!volumetric) {
|
|
if (bool(config.isPolar)) {
|
|
// Curve space to make the letters appear to radiate from up above
|
|
uv -= 0.5;
|
|
uv *= 0.5;
|
|
uv.y -= 0.5;
|
|
var radius = length(uv);
|
|
var angle = atan2(uv.y, uv.x) / (2.0 * PI) + 0.5;
|
|
uv = vec2<f32>(fract(angle * 4.0 - 0.5), 1.5 * (1.0 - sqrt(radius)));
|
|
|
|
} else {
|
|
// Apply the slant and a scale to space so the viewport is still fully covered by the geometry
|
|
uv = vec2<f32>(
|
|
(uv.x - 0.5) * config.slantVec.x + (uv.y - 0.5) * config.slantVec.y,
|
|
(uv.y - 0.5) * config.slantVec.x - (uv.x - 0.5) * config.slantVec.y
|
|
) * config.slantScale + 0.5;
|
|
}
|
|
uv.y /= config.glyphHeightToWidth;
|
|
}
|
|
|
|
// Retrieve cell
|
|
var gridCoord : vec2<i32> = vec2<i32>(uv * config.gridSize);
|
|
var gridIndex = gridCoord.y * i32(config.gridSize.x) + gridCoord.x;
|
|
var cell = cells_RO.cells[gridIndex];
|
|
var symbolUV = getSymbolUV(i32(cell.symbol.r));
|
|
|
|
var brightness = cell.shine.r;
|
|
|
|
// Modes that don't fade glyphs set their actual brightness here
|
|
if (config.brightnessOverride > 0.0 && brightness > config.brightnessThreshold) {
|
|
brightness = config.brightnessOverride;
|
|
}
|
|
|
|
brightness = max(cell.shine.b * config.cursorBrightness, brightness);
|
|
brightness = max(cell.shine.a, brightness);
|
|
|
|
// In volumetric mode, distant glyphs are dimmer
|
|
if (volumetric) {
|
|
brightness *= min(1.0, input.quadDepth);
|
|
}
|
|
|
|
// resolve UV to cropped position of glyph in MSDF texture
|
|
var glyphUV = fract(uv * config.gridSize);
|
|
glyphUV.y = 1.0 - glyphUV.y; // WebGL -> WebGPU y-flip
|
|
glyphUV -= 0.5;
|
|
glyphUV *= clamp(1.0 - config.glyphEdgeCrop, 0.0, 1.0);
|
|
glyphUV += 0.5;
|
|
var msdfUV = (glyphUV + symbolUV) / vec2<f32>(config.glyphTextureGridSize);
|
|
|
|
// MSDF : calculate brightness of fragment based on distance to shape
|
|
var dist = textureSample(msdfTexture, linearSampler, msdfUV).rgb;
|
|
var sigDist = median3(dist) - 0.5;
|
|
var alpha = clamp(sigDist / fwidth(sigDist) + 0.5, 0.0, 1.0);
|
|
|
|
var output : FragOutput;
|
|
|
|
if (bool(config.showDebugView)) {
|
|
output.color = vec4<f32>(
|
|
vec3<f32>(
|
|
cell.shine.b,
|
|
vec2<f32>(
|
|
1.0 - (cell.shine.g * 3.0),
|
|
1.0 - (cell.shine.g * 10.0)
|
|
) * (1.0 - cell.shine.b)
|
|
) * alpha,
|
|
1.
|
|
);
|
|
} else {
|
|
output.color = vec4<f32>(brightness * alpha, 0., 0., 1.0);
|
|
}
|
|
|
|
var highPassColor = output.color;
|
|
if (highPassColor.r < config.highPassThreshold) {
|
|
highPassColor.r = 0.0;
|
|
}
|
|
if (highPassColor.g < config.highPassThreshold) {
|
|
highPassColor.g = 0.0;
|
|
}
|
|
if (highPassColor.b < config.highPassThreshold) {
|
|
highPassColor.b = 0.0;
|
|
}
|
|
output.highPassColor = highPassColor;
|
|
|
|
return output;
|
|
}
|