scratch-vm
Version:
Virtual Machine for Scratch 3.0
40 lines (33 loc) • 935 B
JavaScript
const Timer = require('../util/timer');
class Clock {
constructor (runtime) {
this._projectTimer = new Timer({now: () => runtime.currentMSecs});
this._projectTimer.start();
this._pausedTime = null;
this._paused = false;
/**
* Reference to the owning Runtime.
* @type{!Runtime}
*/
this.runtime = runtime;
}
projectTimer () {
if (this._paused) {
return this._pausedTime / 1000;
}
return this._projectTimer.timeElapsed() / 1000;
}
pause () {
this._paused = true;
this._pausedTime = this._projectTimer.timeElapsed();
}
resume () {
this._paused = false;
const dt = this._projectTimer.timeElapsed() - this._pausedTime;
this._projectTimer.startTime += dt;
}
resetProjectTimer () {
this._projectTimer.start();
}
}
module.exports = Clock;