forked from xtk/X
-
Notifications
You must be signed in to change notification settings - Fork 0
/
X.js
352 lines (283 loc) · 8.75 KB
/
X.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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
/*
*
* xxxxxxx xxxxxxx
* x:::::x x:::::x
* x:::::x x:::::x
* x:::::xx:::::x
* x::::::::::x
* x::::::::x
* x::::::::x
* x::::::::::x
* x:::::xx:::::x
* x:::::x x:::::x
* x:::::x x:::::x
* THE xxxxxxx xxxxxxx TOOLKIT
*
* http://www.goXTK.com
*
* Copyright (c) 2012 The X Toolkit Developers <[email protected]>
*
* The X Toolkit (XTK) is licensed under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
* "Free software" is a matter of liberty, not price.
* "Free" as in "free speech", not as in "free beer".
* - Richard M. Stallman
*
*
*/
// entry point
// namespace
goog.provide('X');
goog.provide('X.counter');
/**
* The XTK namespace.
*
* @const
*/
var X = X || {};
/**
* Can be used to check if the XTK library was compiled.
*
* <pre>
* if (X.DEV === undefined) {
* // xtk was compiled
* }
* </pre>
*
* @type {boolean}
*/
X.DEV = true;
/**
* Timer functionality which can be used in developer mode to clock certain
* things.
*
* <pre>
* X.TIMER(this._classname+'.functionname');
*
* ... stuff is happening
* </pre>
*
* @param {string} what The title of this timer.
*/
X.TIMER = function(what) {
if (eval('X.DEV === undefined')) {
return;
}
window.console.time(what);
};
/**
* Timer functionality which can be used in developer mode to clock certain
* things.
*
* <pre>
* ... stuff was happening
*
* X.TIMERSTOP(this._classname+'.functionname');
* </pre>
*
* @param {string} what The title of this timer.
*/
X.TIMERSTOP = function(what) {
if (eval('X.DEV === undefined')) {
return;
}
window.console.timeEnd(what);
};
/**
* The counter class, keeping track of instance ids.
*
* @constructor
*/
X.counter = function() {
this._counter = 0;
/**
* Get a unique id.
*
* @return {number} A unique id
*/
this.uniqueId = function() {
// return a unique id
return this._counter++;
};
};
window["X.counter"] = new X.counter();
/**
* Injection mechanism for mixins (from
* http://ejohn.org/blog/javascript-getters-and-setters/) which means copying
* properties, getters/setters and functions from a source object to a target.
* Works best on instances.
*
* @param {Object} a The target object.
* @param {Object} b The source object.
* @return {Object} The altered object.
*/
function inject(a, b) {
for ( var i in b ) { // iterate over all properties
// get getter and setter functions
var g = b.__lookupGetter__(i), s = b.__lookupSetter__(i);
if (i in a) { continue; }
if (g || s) { // if there is a getter or setter
if (g) {
a.__defineGetter__(i, g); // copy getter to new object but only if it is not defined yet
}
if (s) {
a.__defineSetter__(i, s); // copy setter to new object but only if it is not defined yet
}
} else {
a[i] = b[i]; // just copy the value; nothing special
}
}
return a; // return the altered object
}
// make sure we don't overwrite a $ sign to ensure compatibility with jQuery
var $ = window.$;
//
// BROWSER COMPATIBILITY FIXES GO HERE
//
//
// 1. Safari does not support the .bind(this) functionality which is crucial for
// XTK's event mechanism. This hack fixes this.
//
function bind_shim() {
if (!Function.prototype.bind) {
Function.prototype.bind = function(oThis) {
if (typeof this !== "function") {
// closest thing possible to the ECMAScript 5 internal IsCallable function
throw new TypeError(
"Function.prototype.bind - what is trying to be bound is not callable");
}
var fSlice = Array.prototype.slice, aArgs = fSlice.call(arguments, 1), fToBind = this;
/**
* @constructor
*/
var fNOP = function() {
};
var fBound = function() {
return fToBind.apply(this instanceof fNOP ? this : oThis || window, aArgs
.concat(fSlice.call(arguments)));
};
fNOP.prototype = this.prototype;
fBound.prototype = new fNOP();
return fBound;
};
}
}
// http://paulirish.com/2011/requestanimationframe-for-smart-animating/
// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating
// requestAnimationFrame polyfill by Erik Mšller
// fixes from Paul Irish and Tino Zijdel
//
// from: https://gist.github.com/1579671
function requestAnimationFrame_shim() {
(function() {
var lastTime = 0;
var vendors = ['ms', 'moz', 'webkit', 'o'];
for ( var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];
window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] ||
window[vendors[x] + 'CancelRequestAnimationFrame'];
}
if (!window.requestAnimationFrame) {
window.requestAnimationFrame = function(callback, element) {
var currTime = Date.now(); // changed this to avoid new object each time
var timeToCall = Math.max(0, 16 - (currTime - lastTime));
var id = window.setTimeout(function() {
callback(currTime + timeToCall);
}, timeToCall);
lastTime = currTime + timeToCall;
return id;
};
}
if (!window.cancelAnimationFrame) {
window.cancelAnimationFrame = function(id) {
clearTimeout(id);
};
}
}());
}
function arrayBufferSlice_shim() {
// Copyright 2012 Google Inc. All Rights Reserved.
// Author: [email protected] (Aaron Jacobs)
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Attach a slice() method to ArrayBuffer, since our C++ implementation
// doesn't
// have one. A JS version is much easier to implement, though it won't be as
// fast.
// Don't attempt to replace an already-working slice method.
if (!('slice' in ArrayBuffer.prototype)) {
/**
* Slice an array buffer, as defined here:
* http://www.khronos.org/registry/typedarray/specs/latest/
*
* @param {number} start The start index, inclusive. If negative, this is
* interpreted as an index from the end of the array.
* @param {number=} opt_end The end index, exclusive. If negative, this is
* interpreted as an index from the end of the array. If missing,
* this defaults to the length of the array.
* @return {!ArrayBuffer} A copy of the sliced data.
* @suppress {duplicate}
*/
ArrayBuffer.prototype.slice = function(start, opt_end) {
// Handle missing start arguments.
if (start === undefined) {
throw new Error('Not enough arguments.');
}
// Handle missing end arguments.
var end = opt_end || this.byteLength;
// Interpret negative values as indices from the end of the array. Convert
// them to indices from the beginning.
if (start < 0) {
start = this.byteLength + start;
}
if (end < 0) {
end = this.byteLength + end;
}
// Handle negative-length slices.
if (end < start) {
start = 0;
end = 0;
}
// Clamp the range.
if (start < 0) {
start = 0;
}
if (end < 0) {
end = 0;
}
if (start > this.byteLength) {
start = this.byteLength;
}
if (end > this.byteLength) {
end = this.byteLength;
}
// Create a new buffer, and copy data into it.
var result = new ArrayBuffer(end - start);
var inBytes = new Uint8Array(this);
var outBytes = new Uint8Array(result);
for ( var inIndex = start, outIndex = 0; inIndex < end; ++inIndex, ++outIndex) {
outBytes[outIndex] = inBytes[inIndex];
}
return result;
};
}
}
// install the shims, if necessary
bind_shim();
requestAnimationFrame_shim();
arrayBufferSlice_shim();
goog.exportSymbol('$', $);
goog.exportSymbol('Function.prototype.bind', Function.prototype.bind);
goog.exportSymbol('window.requestAnimationFrame', window.requestAnimationFrame);
goog.exportSymbol('window.cancelAnimationFrame', window.cancelAnimationFrame);