-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.lua
101 lines (78 loc) · 2.54 KB
/
main.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
-- Example main file to show the fluidsystem functionality.
local fluidsystem = require("lovefluid") -- Require the fluidsystem.
local strayTime = 0
local timestep = 0.018
local fluid = {}
-- Create a box variable and assign the needed fluidsystem data to it.
local box = {x = 480, y = 710, mass = 1000}
fluidsystem.assignBoxCollider(box, 64, 64, 0, true)
function love.load()
-- Parameter table for the fluidsystem.
parameters = {}
fluid = fluidsystem.new(parameters)
fluid:addCollider(box)
collectgarbage("setstepmul", 200)
collectgarbage("setpause", 105)
love.keyboard.setKeyRepeat("+")
love.keyboard.setKeyRepeat("kp+")
end
function love.update(dt)
love.window.setTitle("LOVEFluid Simulation Example - FPS: " .. love.timer.getFPS())
strayTime = strayTime + dt
-- This while loop makes updates occur in set increments.
while strayTime >= timestep do
strayTime = strayTime - timestep
fluidsystem.update(timestep)
if love.mouse.isDown("l") then
local x, y = love.mouse.getPosition()
fluid:applyImpulse(x, y, 25)
end
end
collectgarbage()
end
function love.draw()
love.graphics.print("Press the left mouse button to apply force to the particles", 16, 20)
love.graphics.print("Press '+' or the right mouse button to create new particles", 16, 40)
love.graphics.print("Press 'delete' to remove all particles", 16, 60)
love.graphics.print("Toggle the shader by pressing 's' / Toggle Quadtrees by pressing 'q'", 16, 80)
love.graphics.print("Total particles: " ..#fluid.particles, 16, 100)
fluidsystem:draw()
-- Render where the collider box is supposed to be.
love.graphics.rectangle("fill", box.x, box.y, 256, 256)
end
function love.mousepressed(x, y, button)
if button == "l" then
fluid:applyImpulse(x, y, 250)
elseif button == "r" then
fluid:addParticle(x, y, math.random(-1000,1000) / 100, math.random(-1000,1000) / 100)
end
end
function love.keypressed(keycode)
if keycode == "+" or keycode == "kp+" then
fluid:addParticle(math.random(32, love.graphics.getWidth() - 32), math.random(32, love.graphics.getHeight() - 200), 0, 0)
end
if keycode == "delete" then
fluid:removeAllParticles()
end
if keycode == "s" then
if fluid.drawshader == true then
fluid.drawshader = false
else
fluid.drawshader = true
if #fluid.particles > 0 then
fluid:generateFluidshader()
end
end
end
if keycode == "q" then
if fluid.drawquads == true then
fluid.drawquads = false
else
fluid.drawquads = true
end
end
end
function love.resize(w, h)
fluid.w = love.graphics.getWidth()
fluid.h = love.graphics.getHeight()
end