forked from Wizcorp/tina.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayer.js
259 lines (212 loc) · 7.08 KB
/
Player.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
var Playable = require('./Playable');
var DoublyList = require('./DoublyList');
/**
* @classdesc
* Manages the update of a list of playable with respect to a given elapsed time.
*/
function Player() {
Playable.call(this);
// A DoublyList, rather than an Array, is used to store playables.
// It allows for faster removal and is similar in speed for iterations.
// List of active playables handled by this player
this._activePlayables = new DoublyList();
// List of inactive playables handled by this player
this._inactivePlayables = new DoublyList();
// List of playables that are not handled by this player anymore and are waiting to be removed
this._playablesToRemove = new DoublyList();
// Whether to silence warnings
this._silent = true;
// Whether to trigger the debugger on warnings
this._debug = false;
}
Player.prototype = Object.create(Playable.prototype);
Player.prototype.constructor = Player;
module.exports = Player;
Player.prototype._add = function (playable) {
if (playable._handle === null) {
// Playable can be added
playable._handle = this._inactivePlayables.add(playable);
playable._player = this;
// this._onPlayableAdded(playable);
return true;
}
// Playable is already handled, either by this player or by another one
if (playable._handle.container === this._playablesToRemove) {
// Playable was being removed, removing from playables to remove
playable._handle = this._playablesToRemove.removeByReference(playable._handle);
playable._handle = playable._handle.object;
return true;
}
if (playable._handle.container === this._activePlayables) {
this._warn('[Player._add] Playable is already present, and active');
return false;
}
if (playable._handle.container === this._inactivePlayables) {
this._warn('[Player._add] Playable is already present, but inactive (could be starting)');
return false;
}
this._warn('[Player._add] Playable is used elsewhere');
return false;
};
Player.prototype._remove = function (playable) {
if (playable._handle === null) {
this._warn('[Player._remove] Playable is not being used');
return false;
}
// Playable is handled, either by this player or by another one
if (playable._handle.container === this._activePlayables) {
// Playable was active, adding to remove list
playable._handle = this._playablesToRemove.add(playable._handle);
return true;
}
if (playable._handle.container === this._inactivePlayables) {
// Playable was inactive, removing from inactive playables
playable._handle = this._inactivePlayables.removeByReference(playable._handle);
return true;
}
if (playable._handle.container === this._playablesToRemove) {
this._warn('[Player._remove] Playable is already being removed');
return false;
}
this._warn('[Player._remove] Playable is used elsewhere');
return false;
};
Player.prototype.remove = function (playable) {
if (playable._handle.container === this._activePlayables) {
playable.stop();
}
this._remove(playable);
this._onPlayableRemoved(playable);
return this;
};
Player.prototype.removeAll = function () {
// Stopping all active playables
var handle = this._activePlayables.first;
while (handle !== null) {
var next = handle.next;
handle.object.stop();
handle = next;
}
this._handlePlayablesToRemove();
return this;
};
Player.prototype.possess = function (playable) {
if (playable._handle === null) {
return false;
}
return (playable._handle.container === this._activePlayables) || (playable._handle.container === this._inactivePlayables);
};
Player.prototype._handlePlayablesToRemove = function () {
while (this._playablesToRemove.length > 0) {
// O(1) where O stands for "Oh yeah"
// Removing from list of playables to remove
var handle = this._playablesToRemove.pop();
// Removing from list of active playables
var playable = handle.object;
playable._handle = this._activePlayables.removeByReference(handle);
}
if ((this._activePlayables.length === 0) && (this._inactivePlayables.length === 0)) {
this._onAllPlayablesRemoved();
}
};
Player.prototype.clear = function () {
this._activePlayables.clear();
this._inactivePlayables.clear();
this._playablesToRemove.clear();
this._controls.clear();
return this;
};
Player.prototype._warn = function (warning) {
// jshint debug: true
if (this._silent === false) {
console.warn('[TINA]' + warning);
}
if (this._debug === true) {
debugger;
}
};
Player.prototype.silent = function (silent) {
this._silent = silent || false;
return this;
};
Player.prototype.debug = function (debug) {
this._debug = debug || false;
return this;
};
Player.prototype.stop = function () {
// Stopping all active playables
var handle = this._activePlayables.first;
while (handle !== null) {
var next = handle.next;
var playable = handle.object;
playable.stop();
handle = next;
}
this._handlePlayablesToRemove();
Playable.prototype.stop.call(this);
};
Player.prototype._activate = function (playable) {
if (playable._handle.container === this._inactivePlayables) {
this._inactivePlayables.removeByReference(playable._handle);
playable._handle = this._activePlayables.addBack(playable);
} else if (playable._handle.container === this._playablesToRemove) {
// Already in list of active playables
this._playablesToRemove.removeByReference(playable._handle);
playable._handle = playable._handle.object;
}
playable._active = true;
return true;
};
Player.prototype._reactivate = Player.prototype._activate;
Player.prototype._inactivate = function (playable) {
if (playable._handle === null) {
this._warn('[Player._inactivate] Cannot stop a playable that is not running');
return false;
}
if (playable._handle.container === this._activePlayables) {
// O(1)
this._activePlayables.removeByReference(playable._handle);
playable._handle = this._inactivePlayables.addBack(playable);
}
playable._active = false;
return true;
};
Player.prototype._updatePlayableList = function (dt) {
this._handlePlayablesToRemove();
var time0, time1;
if (dt > 0) {
time0 = this._time - dt;
time1 = this._time;
} else {
time0 = this._time;
time1 = this._time - dt;
}
// Activating playables
var handle = this._inactivePlayables.first;
while (handle !== null) {
var playable = handle.object;
// Fetching handle of next playable
handle = handle.next;
// Starting if player time within playable bounds
// console.log('Should playable be playing?', playable._startTime, time0, time1, dt)
if (playable._active && playable._overlaps(time0, time1)) {
this._activate(playable);
playable._start();
}
}
};
Player.prototype._update = function (dt, overflow) {
this._updatePlayableList(dt);
for (var handle = this._activePlayables.first; handle !== null; handle = handle.next) {
if (overflow === undefined) {
handle.object._moveTo(this._time, dt);
} else {
handle.object._moveTo(this._time, dt, overflow);
}
}
};
// Overridable methods
// Player.prototype._onPlayableAdded = function (/* playable */) {};
Player.prototype._onPlayableChanged = function (/* playable */) {};
Player.prototype._onPlayableRemoved = function (/* playable */) {};
Player.prototype._onAllPlayablesRemoved = function () {};