mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
27 lines
660 B
CoffeeScript
27 lines
660 B
CoffeeScript
Dropper = class Dropper
|
|
lostFrames: 0.0
|
|
dropCounter: 0
|
|
|
|
constructor: ->
|
|
@listener = (e) => @tick(e)
|
|
|
|
tick: ->
|
|
unless @tickedOnce
|
|
@tickedOnce = true # Can't get measured FPS on the 0th frame.
|
|
return
|
|
|
|
--@dropCounter if @dropCounter > 0
|
|
|
|
# Track number of frames we've lost since the last tick.
|
|
fps = createjs.Ticker.getFPS()
|
|
actual = createjs.Ticker.getMeasuredFPS(1)
|
|
@lostFrames += (fps - actual) / fps
|
|
|
|
# If lostFrames > 1, drop that number for the next tick.
|
|
@dropCounter += parseInt @lostFrames
|
|
@lostFrames = @lostFrames % 1
|
|
|
|
drop: ->
|
|
return @dropCounter > 0
|
|
|
|
module.exports = new Dropper()
|