| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /**
- * @author alteredq / http://alteredqualia.com/
- */
- function Clock( autoStart ) {
- this.autoStart = ( autoStart !== undefined ) ? autoStart : true;
- this.startTime = 0;
- this.oldTime = 0;
- this.elapsedTime = 0;
- this.running = false;
- }
- Object.assign( Clock.prototype, {
- start: function () {
- this.startTime = ( typeof performance === 'undefined' ? Date : performance ).now(); // see #10732
- this.oldTime = this.startTime;
- this.elapsedTime = 0;
- this.running = true;
- },
- stop: function () {
- this.getElapsedTime();
- this.running = false;
- this.autoStart = false;
- },
- getElapsedTime: function () {
- this.getDelta();
- return this.elapsedTime;
- },
- getDelta: function () {
- 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 };
|