1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- class Clock {
- constructor( autoStart ) {
- this.autoStart = ( autoStart !== undefined ) ? autoStart : true;
- this.startTime = 0;
- this.oldTime = 0;
- this.elapsedTime = 0;
- this.running = false;
- }
- start() {
- this.startTime = ( typeof performance === 'undefined' ? Date : performance ).now(); // see #10732
- this.oldTime = this.startTime;
- this.elapsedTime = 0;
- this.running = true;
- }
- stop() {
- this.getElapsedTime();
- this.running = false;
- this.autoStart = false;
- }
- getElapsedTime() {
- this.getDelta();
- return this.elapsedTime;
- }
- getDelta() {
- let diff = 0;
- if ( this.autoStart && ! this.running ) {
- this.start();
- return 0;
- }
- if ( this.running ) {
- const newTime = ( typeof performance === 'undefined' ? Date : performance ).now();
- diff = ( newTime - this.oldTime ) / 1000;
- this.oldTime = newTime;
- this.elapsedTime += diff;
- }
- return diff;
- }
- }
- export { Clock };
|