-
Notifications
You must be signed in to change notification settings - Fork 4
/
clock.js
70 lines (58 loc) · 1.57 KB
/
clock.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* The master clock.
* @constructor
* @struct
*/
export default function Clock(speed, ntsc) {
let tick = 1 / speed;
this.time = 0;
this.ntsc = ntsc;
this.cycleLength = tick;
this.tick = function() { this.time += tick; }
};
/** Makes a new NTSC clock. */
Clock.ntsc = function() { return new Clock(1789773, true); };
/** Makes a new PAL clock. */
Clock.pal = function() { return new Clock(1662607, false); };
// export default class Clock {
// /** @param {number} speed Clock speed, in Hz.
// * @param {boolean} ntsc */
// constructor(speed, ntsc) {
// /** @private {number} */
// this.tick_ = 1 / speed;
// /** @private {number} */
// this.time_ = 0;
// // /** @private {!Array<{u: (function(): number), d: number}>} */
// // this.units_ = [];
// this.ntsc_ = ntsc;
// }
// get ntsc() {
// return this.ntsc_;
// }
// get cycleLength() {
// return this.tick_;
// }
// get time() {
// return this.time_;
// }
// // /**
// // * Adds a unit, which is a tick function that returns a delay.
// // * @param {function(): number} unit
// // */
// // add(unit) {
// // this.units_.push({u: unit, d: 1});
// // }
// /** Ticks the clock. */
// tick() {
// // for (let u of this.units_) {
// // if (--u.d == 0) {
// // u.d = u.u() || 1;
// // }
// // }
// this.time_ += this.tick_;
// }
// /** Makes a new NTSC clock. */
// static ntsc() { return new Clock(1789773, true); }
// /** Makes a new PAL clock. */
// static pal() { return new Clock(1662607, false); }
// }