timer.lua 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. --[[
  2. Copyright (c) 2010-2013 Matthias Richter
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. Except as contained in this notice, the name(s) of the above copyright holders
  12. shall not be used in advertising or otherwise to promote the sale, use or
  13. other dealings in this Software without prior written authorization.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. THE SOFTWARE.
  21. ]]--
  22. local Timer = {}
  23. Timer.__index = Timer
  24. local function _nothing_() end
  25. function Timer:update(dt)
  26. local to_remove = {}
  27. for handle, delay in pairs(self.functions) do
  28. delay = delay - dt
  29. if delay <= 0 then
  30. to_remove[#to_remove+1] = handle
  31. end
  32. self.functions[handle] = delay
  33. handle.func(dt, delay)
  34. end
  35. for _,handle in ipairs(to_remove) do
  36. self.functions[handle] = nil
  37. handle.after(handle.after)
  38. end
  39. end
  40. function Timer:do_for(delay, func, after)
  41. local handle = {func = func, after = after or _nothing_}
  42. self.functions[handle] = delay
  43. return handle
  44. end
  45. function Timer:add(delay, func)
  46. return self:do_for(delay, _nothing_, func)
  47. end
  48. function Timer:addPeriodic(delay, func, count)
  49. local count, handle = count or math.huge -- exploit below: math.huge - 1 = math.huge
  50. handle = self:add(delay, function(f)
  51. if func(func) == false then return end
  52. count = count - 1
  53. if count > 0 then
  54. self.functions[handle] = delay
  55. end
  56. end)
  57. return handle
  58. end
  59. function Timer:cancel(handle)
  60. self.functions[handle] = nil
  61. end
  62. function Timer:clear()
  63. self.functions = {}
  64. end
  65. Timer.tween = setmetatable({
  66. -- helper functions
  67. out = function(f) -- 'rotates' a function
  68. return function(s, ...) return 1 - f(1-s, ...) end
  69. end,
  70. chain = function(f1, f2) -- concatenates two functions
  71. return function(s, ...) return (s < .5 and f1(2*s, ...) or 1 + f2(2*s-1, ...)) * .5 end
  72. end,
  73. -- useful tweening functions
  74. linear = function(s) return s end,
  75. quad = function(s) return s*s end,
  76. cubic = function(s) return s*s*s end,
  77. quart = function(s) return s*s*s*s end,
  78. quint = function(s) return s*s*s*s*s end,
  79. sine = function(s) return 1-math.cos(s*math.pi/2) end,
  80. expo = function(s) return 2^(10*(s-1)) end,
  81. circ = function(s) return 1 - math.sqrt(1-s*s) end,
  82. back = function(s,bounciness)
  83. bounciness = bounciness or 1.70158
  84. return s*s*((bounciness+1)*s - bounciness)
  85. end,
  86. bounce = function(s) -- magic numbers ahead
  87. local a,b = 7.5625, 1/2.75
  88. return math.min(a*s^2, a*(s-1.5*b)^2 + .75, a*(s-2.25*b)^2 + .9375, a*(s-2.625*b)^2 + .984375)
  89. end,
  90. elastic = function(s, amp, period)
  91. amp, period = amp and math.max(1, amp) or 1, period or .3
  92. return (-amp * math.sin(2*math.pi/period * (s-1) - math.asin(1/amp))) * 2^(10*(s-1))
  93. end,
  94. }, {
  95. -- register new tween
  96. __call = function(tween, self, len, subject, target, method, after, ...)
  97. -- recursively collects fields that are defined in both subject and target into a flat list
  98. local function tween_collect_payload(subject, target, out)
  99. for k,v in pairs(target) do
  100. local ref = subject[k]
  101. assert(type(v) == type(ref), 'Type mismatch in field "'..k..'".')
  102. if type(v) == 'table' then
  103. tween_collect_payload(ref, v, out)
  104. else
  105. local ok, delta = pcall(function() return (v-ref)*1 end)
  106. assert(ok, 'Field "'..k..'" does not support arithmetic operations')
  107. out[#out+1] = {subject, k, delta}
  108. end
  109. end
  110. return out
  111. end
  112. method = tween[method or 'linear'] -- see __index
  113. local payload, t, args = tween_collect_payload(subject, target, {}), 0, {...}
  114. local last_s = 0
  115. return self:do_for(len, function(dt)
  116. t = t + dt
  117. local s = method(math.min(1, t/len), unpack(args))
  118. local ds = s - last_s
  119. last_s = s
  120. for _, info in ipairs(payload) do
  121. local ref, key, delta = unpack(info)
  122. ref[key] = ref[key] + delta * ds
  123. end
  124. end, after)
  125. end,
  126. -- fetches function and generated compositions for method `key`
  127. __index = function(tweens, key)
  128. if type(key) == 'function' then return key end
  129. assert(type(key) == 'string', 'Method must be function or string.')
  130. if rawget(tweens, key) then return rawget(tweens, key) end
  131. local function construct(pattern, f)
  132. local method = rawget(tweens, key:match(pattern))
  133. if method then return f(method) end
  134. return nil
  135. end
  136. local out, chain = rawget(tweens,'out'), rawget(tweens,'chain')
  137. return construct('^in%-([^-]+)$', function(...) return ... end)
  138. or construct('^out%-([^-]+)$', out)
  139. or construct('^in%-out%-([^-]+)$', function(f) return chain(f, out(f)) end)
  140. or construct('^out%-in%-([^-]+)$', function(f) return chain(out(f), f) end)
  141. or error('Unknown interpolation method: ' .. key)
  142. end})
  143. -- the module
  144. local function new()
  145. local timer = setmetatable({functions = {}, tween = Timer.tween}, Timer)
  146. return setmetatable({
  147. new = new,
  148. update = function(...) return timer:update(...) end,
  149. do_for = function(...) return timer:do_for(...) end,
  150. add = function(...) return timer:add(...) end,
  151. addPeriodic = function(...) return timer:addPeriodic(...) end,
  152. cancel = function(...) return timer:cancel(...) end,
  153. clear = function(...) return timer:clear(...) end,
  154. tween = setmetatable({}, {
  155. __index = Timer.tween,
  156. __newindex = function(_,k,v) Timer.tween[k] = v end,
  157. __call = function(t,...) return timer:tween(...) end,
  158. })
  159. }, {__call = new})
  160. end
  161. return new()