forked from Wizcorp/tina.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayable.js
243 lines (197 loc) · 5.82 KB
/
Playable.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
/** @class */
function Playable() {
// Player component handling this playable
this._player = null;
// Handle of the playable within its player
this._handle = null;
// An inactive playable cannot run even within its time boundaries when its parent is running
this._active = true;
// Starting time, is global (relative to its player time)
this._startTime = 0;
// Current time, is local (relative to starting time)
// i.e this._time === 0 implies this._player._time === this._startTime
this._time = 0;
// Playing speed of the playable
this._speed = 1;
// Callbacks
this._onStart = null;
this._onPause = null;
this._onResume = null;
this._onUpdate = null;
this._onStop = null;
}
module.exports = Playable;
Object.defineProperty(Playable.prototype, 'speed', {
get: function () { return this._speed; },
set: function (speed) {
this.setSpeed(speed);
}
});
Object.defineProperty(Playable.prototype, 'time', {
get: function () { return this._time; },
set: function (time) {
this.goTo(time);
}
});
Playable.prototype.onStart = function (onStart) { this._onStart = onStart; return this; };
Playable.prototype.onUpdate = function (onUpdate) { this._onUpdate = onUpdate; return this; };
Playable.prototype.onStop = function (onStop) { this._onStop = onStop; return this; };
Playable.prototype.onPause = function (onPause) { this._onPause = onPause; return this; };
Playable.prototype.onResume = function (onResume) { this._onResume = onResume; return this; };
Playable.prototype.tweener = function (tweener) {
if (tweener === null || tweener === undefined) {
console.warn('[Playable.tweener] Given tweener is invalid:', tweener);
return this;
}
this._player = tweener;
return this;
};
Playable.prototype.setSpeed = function (speed) {
if (speed < 0) {
console.warn('[Playable.speed] This playable cannot have negative speed');
return;
}
if (speed === 0) {
if (this._speed !== 0) {
// Setting timeStart as if new speed was 1
this._startTime += this._time / this._speed - this._time;
}
} else {
if (this._speed === 0) {
// If current speed is 0,
// it corresponds to a virtual speed of 1
// when it comes to determing where the starting time is
this._startTime += this._time - this._time / speed;
} else {
this._startTime += this._time / this._speed - this._time / speed;
}
}
this._speed = speed;
if (this._player !== null) {
this._player._onPlayableChanged(this);
}
};
Playable.prototype.goTo = function (timePosition, iteration) {
if (this._iterations === 1) {
if(this._speed === 0) {
// Speed is virtually 1
this._startTime += this._time - timePosition;
} else {
// Offsetting starting time with respect to current time and speed
this._startTime += (this._time - timePosition) / this._speed;
}
} else {
iteration = iteration || 0;
if(this._speed === 0) {
// Speed is virtually 1
this._startTime += this._time - timePosition - iteration * this._duration;
} else {
// Offsetting starting time with respect to current time and speed
this._startTime += (this._time - timePosition - iteration * this._duration) / this._speed;
}
}
this._time = timePosition;
if (this._player !== null) {
this._player._onPlayableChanged(this);
}
return this;
};
Playable.prototype.goToBeginning = function () {
return this.goTo(0, 0);
};
Playable.prototype.getDuration = function () {
return Infinity;
};
Playable.prototype._getEndTime = function () {
return Infinity;
};
Playable.prototype._setStartTime = function (startTime) {
this._startTime = startTime;
};
Playable.prototype._getStartTime = function () {
return this._startTime;
};
Playable.prototype._isWithin = function (time) {
return this._startTime < time;
};
Playable.prototype._overlaps = function (time0, time1) {
return (time0 - this._startTime) * (time1 - this._startTime) <= 0;
};
Playable.prototype.rewind = function () {
this.goTo(0, 0);
return this;
};
Playable.prototype.delay = function (delay) {
return this.start(-delay);
};
Playable.prototype.start = function (timeOffset) {
if (this._player === null) {
this._player = TINA._startDefaultTweener();
}
if (this._validate() === false) {
// Did not pass validation
return this;
}
if (timeOffset === undefined || timeOffset === null) {
timeOffset = 0;
}
this._time = timeOffset;
this._startTime = this._player._time - timeOffset;
if (this._player._reactivate(this) === false) {
// Could not be added to player
return this;
}
return this;
};
Playable.prototype._start = function () {
if (this._onStart !== null) {
this._onStart();
}
};
Playable.prototype.stop = function () {
if (this._player === null) {
return this;
}
// Stopping playable without performing any additional update nor completing
if (this._player._remove(this) === false) {
// Could not be removed
return this;
}
if (this._onStop !== null) {
this._onStop();
}
return this;
};
Playable.prototype.resume = function () {
if (this._player === null || this._player._reactivate(this) === false) {
// Could not be resumed
return this;
}
// Resetting starting time so that the playable starts off where it left off
this._startTime = this._player._time - (this._time + (this._duration * this._currentIterations)) / this._speed;
if (this._onResume !== null) {
this._onResume();
}
return this;
};
Playable.prototype.pause = function () {
if (this._player === null || this._player._inactivate(this) === false) {
// Could not be paused
return this;
}
if (this._onPause !== null) {
this._onPause();
}
return this;
};
Playable.prototype._moveTo = function (time, dt) {
dt *= this._speed;
this._time = (time - this._startTime) * this._speed;
this._update(dt);
if (this._onUpdate !== null) {
this._onUpdate(this._time, dt);
}
};
// Overridable methods
Playable.prototype._update = function () {};
Playable.prototype._validate = function () {};