uberpong/dev/lib/impact/timer.js
2012-06-21 10:13:21 +02:00

54 lines
889 B
JavaScript
Executable file

ig.module(
'impact.timer'
)
.defines(function(){
ig.Timer = ig.Class.extend({
target: 0,
base: 0,
last: 0,
init: function( seconds ) {
this.base = ig.Timer.time;
this.last = ig.Timer.time;
this.target = seconds || 0;
},
set: function( seconds ) {
this.target = seconds || 0;
this.base = ig.Timer.time;
},
reset: function() {
this.base = ig.Timer.time;
},
tick: function() {
var delta = ig.Timer.time - this.last;
this.last = ig.Timer.time;
return delta;
},
delta: function() {
return ig.Timer.time - this.base - this.target;
}
});
ig.Timer._last = 0;
ig.Timer.time = 0;
ig.Timer.timeScale = 1;
ig.Timer.maxStep = 0.05;
ig.Timer.step = function() {
var current = Date.now();
var delta = (current - ig.Timer._last) / 1000;
ig.Timer.time += Math.min(delta, ig.Timer.maxStep) * ig.Timer.timeScale;
ig.Timer._last = current;
};
});