procedural-3d-engine/data/shaders/computeparticles/particle.comp

76 lines
1.7 KiB
Text
Raw Normal View History

2016-02-16 15:07:25 +01:00
#version 450
#extension GL_ARB_separate_shader_objects : enable
#extension GL_ARB_shading_language_420pack : enable
struct Particle
{
vec2 pos;
vec2 vel;
2016-02-16 15:07:25 +01:00
};
// Binding 0 : Position storage buffer
layout(std140, binding = 0) buffer Pos
{
Particle particles[ ];
};
layout (local_size_x = 16, local_size_y = 16) in;
layout (binding = 1) uniform UBO
{
float deltaT;
float destX;
float destY;
int particleCount;
} ubo;
vec2 attraction(vec2 pos, vec2 attractPos)
2016-02-16 15:07:25 +01:00
{
vec2 delta = attractPos - pos;
2016-02-16 15:07:25 +01:00
const float damp = 0.5;
float dDampedDot = dot(delta, delta) + damp;
float invDist = 1.0f / sqrt(dDampedDot);
float invDistCubed = invDist*invDist*invDist;
return delta * invDistCubed * 0.0035;
}
vec2 repulsion(vec2 pos, vec2 attractPos)
{
vec2 delta = attractPos - pos;
float targetDistance = sqrt(dot(delta, delta));
return delta * (1.0 / (targetDistance * targetDistance * targetDistance)) * -0.000035;
2016-02-16 15:07:25 +01:00
}
void main()
{
// Current SSBO index
uint index = gl_GlobalInvocationID.x;
// Don't try to write beyond particle count
if (index >= ubo.particleCount)
return;
// Read position and velocity
vec2 vVel = particles[index].vel.xy;
vec2 vPos = particles[index].pos.xy;
vec2 destPos = vec2(ubo.destX, ubo.destY);
vec2 delta = destPos - vPos;
float targetDistance = sqrt(dot(delta, delta));
vVel += repulsion(vPos, destPos.xy) * 0.05;
2016-02-16 15:07:25 +01:00
// Move by velocity
vPos += vVel * ubo.deltaT;
// collide with boundary
if ((vPos.x < -1.0) || (vPos.x > 1.0) || (vPos.y < -1.0) || (vPos.y > 1.0))
vVel = (-vVel * 0.1) + attraction(vPos, destPos) * 12;
else
particles[index].pos.xy = vPos;
2016-02-16 15:07:25 +01:00
// Write back
particles[index].vel.xy = vVel;
2016-02-16 15:07:25 +01:00
}