2021-01-12 18:13:28 +00:00
|
|
|
// Copyright 2020 The Tint Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
// vertex shader
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-09-20 23:02:48 +00:00
|
|
|
[[location(0)]] var<in> a_particlePos : vec2<f32>;
|
|
|
|
[[location(1)]] var<in> a_particleVel : vec2<f32>;
|
|
|
|
[[location(2)]] var<in> a_pos : vec2<f32>;
|
|
|
|
[[builtin(position)]] var<out> gl_Position : vec4<f32>;
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-09-22 14:53:03 +00:00
|
|
|
[[stage(vertex)]]
|
|
|
|
fn vert_main() -> void {
|
2020-09-22 19:42:13 +00:00
|
|
|
var angle : f32 = -atan2(a_particleVel.x, a_particleVel.y);
|
2020-03-02 20:47:43 +00:00
|
|
|
var pos : vec2<f32> = vec2<f32>(
|
2020-09-22 19:42:13 +00:00
|
|
|
(a_pos.x * cos(angle)) - (a_pos.y * sin(angle)),
|
|
|
|
(a_pos.x * sin(angle)) + (a_pos.y * cos(angle)));
|
2020-05-01 19:02:35 +00:00
|
|
|
gl_Position = vec4<f32>(pos + a_particlePos, 0.0, 1.0);
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
2021-01-12 18:13:28 +00:00
|
|
|
// fragment shader
|
2020-09-20 23:02:48 +00:00
|
|
|
[[location(0)]] var<out> fragColor : vec4<f32>;
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-09-22 14:53:03 +00:00
|
|
|
[[stage(fragment)]]
|
2020-03-02 20:47:43 +00:00
|
|
|
fn frag_main() -> void {
|
|
|
|
fragColor = vec4<f32>(1.0, 1.0, 1.0, 1.0);
|
|
|
|
}
|
|
|
|
|
2021-01-12 18:13:28 +00:00
|
|
|
// compute shader
|
2020-10-19 15:31:47 +00:00
|
|
|
[[block]] struct Particle {
|
2020-09-20 19:14:28 +00:00
|
|
|
[[offset(0)]] pos : vec2<f32>;
|
|
|
|
[[offset(8)]] vel : vec2<f32>;
|
2020-03-02 20:47:43 +00:00
|
|
|
};
|
|
|
|
|
2020-10-19 15:31:47 +00:00
|
|
|
[[block]] struct SimParams {
|
2020-09-20 19:14:28 +00:00
|
|
|
[[offset(0)]] deltaT : f32;
|
|
|
|
[[offset(4)]] rule1Distance : f32;
|
|
|
|
[[offset(8)]] rule2Distance : f32;
|
|
|
|
[[offset(12)]] rule3Distance : f32;
|
|
|
|
[[offset(16)]] rule1Scale : f32;
|
|
|
|
[[offset(20)]] rule2Scale : f32;
|
|
|
|
[[offset(24)]] rule3Scale : f32;
|
2020-03-02 20:47:43 +00:00
|
|
|
};
|
|
|
|
|
2020-10-19 15:31:47 +00:00
|
|
|
[[block]] struct Particles {
|
2020-09-20 21:28:18 +00:00
|
|
|
[[offset(0)]] particles : [[stride(16)]] array<Particle, 5>;
|
2020-03-02 20:47:43 +00:00
|
|
|
};
|
|
|
|
|
2021-01-15 12:22:16 +00:00
|
|
|
[[binding(0), group(0)]] var<uniform> params : [[access(read)]] SimParams;
|
2021-01-18 21:06:34 +00:00
|
|
|
[[binding(1), group(0)]] var<storage> particlesA : [[access(read_write)]] Particles;
|
|
|
|
[[binding(2), group(0)]] var<storage> particlesB : [[access(read_write)]] Particles;
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-09-20 23:02:48 +00:00
|
|
|
[[builtin(global_invocation_id)]] var<in> gl_GlobalInvocationID : vec3<u32>;
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2021-01-12 18:13:28 +00:00
|
|
|
// https://github.com/austinEng/Project6-Vulkan-Flocking/blob/master/data/shaders/computeparticles/particle.comp
|
2020-09-22 14:53:03 +00:00
|
|
|
[[stage(compute)]]
|
|
|
|
fn comp_main() -> void {
|
2020-03-02 20:47:43 +00:00
|
|
|
var index : u32 = gl_GlobalInvocationID.x;
|
2020-09-23 14:40:54 +00:00
|
|
|
if (index >= 5u) {
|
2020-03-02 20:47:43 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var vPos : vec2<f32> = particlesA.particles[index].pos;
|
|
|
|
var vVel : vec2<f32> = particlesA.particles[index].vel;
|
|
|
|
|
2020-05-01 19:02:35 +00:00
|
|
|
var cMass : vec2<f32> = vec2<f32>(0.0, 0.0);
|
|
|
|
var cVel : vec2<f32> = vec2<f32>(0.0, 0.0);
|
|
|
|
var colVel : vec2<f32> = vec2<f32>(0.0, 0.0);
|
2020-03-02 20:47:43 +00:00
|
|
|
var cMassCount : i32 = 0;
|
|
|
|
var cVelCount : i32 = 0;
|
|
|
|
|
|
|
|
var pos : vec2<f32>;
|
|
|
|
var vel : vec2<f32>;
|
2020-09-23 14:51:03 +00:00
|
|
|
for(var i : u32 = 0u; i < 5u; i = i + 1) {
|
2020-03-02 20:47:43 +00:00
|
|
|
if (i == index) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = particlesA.particles[i].pos.xy;
|
|
|
|
vel = particlesA.particles[i].vel.xy;
|
|
|
|
|
2020-09-22 19:42:13 +00:00
|
|
|
if (distance(pos, vPos) < params.rule1Distance) {
|
2020-03-02 20:47:43 +00:00
|
|
|
cMass = cMass + pos;
|
|
|
|
cMassCount = cMassCount + 1;
|
|
|
|
}
|
2020-09-22 19:42:13 +00:00
|
|
|
if (distance(pos, vPos) < params.rule2Distance) {
|
2020-03-02 20:47:43 +00:00
|
|
|
colVel = colVel - (pos - vPos);
|
|
|
|
}
|
2020-09-22 19:42:13 +00:00
|
|
|
if (distance(pos, vPos) < params.rule3Distance) {
|
2020-03-02 20:47:43 +00:00
|
|
|
cVel = cVel + vel;
|
|
|
|
cVelCount = cVelCount + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (cMassCount > 0) {
|
2020-05-01 19:05:43 +00:00
|
|
|
cMass =
|
2020-09-30 14:00:10 +00:00
|
|
|
(cMass / vec2<f32>(f32(cMassCount), f32(cMassCount))) - vPos;
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
if (cVelCount > 0) {
|
2020-09-30 14:00:10 +00:00
|
|
|
cVel = cVel / vec2<f32>(f32(cVelCount), f32(cVelCount));
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vVel = vVel + (cMass * params.rule1Scale) + (colVel * params.rule2Scale) +
|
|
|
|
(cVel * params.rule3Scale);
|
|
|
|
|
2021-01-12 18:13:28 +00:00
|
|
|
// clamp velocity for a more pleasing simulation
|
2020-09-22 19:42:13 +00:00
|
|
|
vVel = normalize(vVel) * clamp(length(vVel), 0.0, 0.1);
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2021-01-12 18:13:28 +00:00
|
|
|
// kinematic update
|
2020-03-02 20:47:43 +00:00
|
|
|
vPos = vPos + (vVel * params.deltaT);
|
|
|
|
|
2021-01-12 18:13:28 +00:00
|
|
|
// Wrap around boundary
|
2020-03-02 20:47:43 +00:00
|
|
|
if (vPos.x < -1.0) {
|
|
|
|
vPos.x = 1.0;
|
|
|
|
}
|
|
|
|
if (vPos.x > 1.0) {
|
|
|
|
vPos.x = -1.0;
|
|
|
|
}
|
|
|
|
if (vPos.y < -1.0) {
|
|
|
|
vPos.y = 1.0;
|
|
|
|
}
|
|
|
|
if (vPos.y > 1.0) {
|
|
|
|
vPos.y = -1.0;
|
|
|
|
}
|
|
|
|
|
2021-01-12 18:13:28 +00:00
|
|
|
// Write back
|
2020-03-02 20:47:43 +00:00
|
|
|
particlesB.particles[index].pos = vPos;
|
|
|
|
particlesB.particles[index].vel = vVel;
|
|
|
|
}
|