Skip to content

Instantly share code, notes, and snippets.

Created April 14, 2017 13:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/07496ce1500fb80a9b08c77c278f017a to your computer and use it in GitHub Desktop.
Save anonymous/07496ce1500fb80a9b08c77c278f017a to your computer and use it in GitHub Desktop.
local EnhancedTimer = Object:extend()
local Timer = require 'libraries/hump/timer'
function EnhancedTimer:new()
self.timer = Timer()
self.tags = {}
end
function EnhancedTimer:update(dt)
if self.timer then self.timer:update(dt) end
end
function EnhancedTimer:after(tag, duration, func)
if type(tag) == 'string' then
self:cancel(tag)
self.tags[tag] = self.timer:after(duration, func)
return self.tags[tag]
else
return self.timer:after(tag, duration, func)
end
end
function EnhancedTimer:during(tag, duration, func, after)
if type(tag) == 'string' then
self:cancel(tag)
self.tags[tag] = self.timer:during(duration, func, after)
return self.tags[tag]
else
return self.timer:during(tag, duration, func, after)
end
end
function EnhancedTimer:every(tag, duration, func, count)
if type(tag) == 'string' then
self:cancel(tag)
self.tags[tag] = self.timer:every(duration, func, count)
return self.tags[tag]
else
return self.timer:every(tag, duration, func, count)
end
end
function EnhancedTimer:tween(tag, duration, table, tween_table, tween_function, after)
if type(tag) == 'string' then
self:cancel(tag)
self.tags[tag] = self.timer:tween(duration, table, tween_table, tween_function, after)
return self.tags[tag]
else
return self.timer:tween(tag, duration, table, tween_table, tween_function, after)
end
end
function EnhancedTimer:cancel(tag)
if tag then
if self.tags[tag] then
self.timer:cancel(self.tags[tag])
self.tags[tag] = nil
else self.timer:cancel(tag) end
end
end
function EnhancedTimer:clear()
self.timer:clear()
self.tags = {}
end
function EnhancedTimer:destroy()
self.timer:clear()
self.tags = {}
self.timer = nil
end
return EnhancedTimer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment