-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathloop.lua
40 lines (31 loc) · 780 Bytes
/
loop.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
function love.run()
love.load(love.arg.parseGameArguments(arg), arg)
-- We don't want the first frame's dt to include time taken by love.load.
love.timer.step()
local dt
-- Main loop time.
return function()
prof.push("frame")
-- Process events.
love.event.pump()
for name, a,b,c,d,e,f in love.event.poll() do
if name == "quit" then
prof.pop("frame")
if not love.quit() then
return a or 0
end
end
love.handlers[name](a,b,c,d,e,f)
end
-- Update dt, as we'll be passing it to update
dt = love.timer.step()
-- Call update and draw
love.update(dt)
love.graphics.origin()
love.graphics.clear(love.graphics.getBackgroundColor())
love.draw()
prof.pop("frame")
love.graphics.present()
love.timer.sleep(0.001)
end
end