2013-10-25 05:25:42 +08:00
|
|
|
/*
|
2014-06-06 03:11:37 +08:00
|
|
|
* Cylon - Utils
|
2013-10-25 05:25:42 +08:00
|
|
|
* cylonjs.com
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013 The Hybrid Group
|
|
|
|
* Licensed under the Apache 2.0 license.
|
|
|
|
*/
|
|
|
|
|
2014-06-06 03:11:37 +08:00
|
|
|
var Utils = module.exports = {
|
2014-05-14 09:24:41 +08:00
|
|
|
// Public: Alias to setInterval, combined with Number monkeypatches below to
|
|
|
|
// create an artoo-like syntax.
|
|
|
|
//
|
|
|
|
// interval - interval to run action on
|
|
|
|
// action - action to perform at interval
|
|
|
|
//
|
|
|
|
// Examples
|
|
|
|
//
|
2014-06-06 00:32:20 +08:00
|
|
|
// every((5).seconds(), function() {
|
|
|
|
// console.log('Hello world (and again in 5 seconds)!');
|
|
|
|
// });
|
2014-05-14 09:24:41 +08:00
|
|
|
//
|
|
|
|
// Returns an interval
|
|
|
|
every: function every(interval, action) {
|
|
|
|
return setInterval(action, interval);
|
|
|
|
},
|
|
|
|
|
|
|
|
// Public: Alias to setTimeout, combined with Number monkeypatches below to
|
|
|
|
// create an artoo-like syntax.
|
|
|
|
//
|
|
|
|
// interval - interval to run action on
|
|
|
|
// action - action to perform at interval
|
|
|
|
//
|
|
|
|
// Examples
|
|
|
|
//
|
2014-06-06 00:32:20 +08:00
|
|
|
// after((10).seconds(), function() {
|
|
|
|
// console.log('Hello world from ten seconds ago!');
|
|
|
|
// });
|
2014-05-14 09:24:41 +08:00
|
|
|
//
|
|
|
|
// Returns an interval
|
|
|
|
after: function after(delay, action) {
|
|
|
|
return setTimeout(action, delay);
|
|
|
|
},
|
|
|
|
|
|
|
|
// Public: Alias to the `every` function, but passing 0
|
|
|
|
// Examples
|
|
|
|
//
|
2014-06-06 00:32:20 +08:00
|
|
|
// constantly(function() {
|
|
|
|
// console.log('hello world (and again and again)!');
|
|
|
|
// });
|
2014-05-14 09:24:41 +08:00
|
|
|
//
|
|
|
|
// Returns an interval
|
|
|
|
constantly: function constantly(action) {
|
|
|
|
return every(0, action);
|
|
|
|
},
|
|
|
|
|
|
|
|
// Public: Sleep - do nothing for some duration of time.
|
|
|
|
//
|
|
|
|
// ms - number of ms to sleep for
|
|
|
|
//
|
2014-06-06 00:32:20 +08:00
|
|
|
// Examples
|
|
|
|
//
|
|
|
|
// sleep((1).second());
|
|
|
|
//
|
2014-05-14 09:24:41 +08:00
|
|
|
// Returns a function
|
|
|
|
sleep: function sleep(ms) {
|
|
|
|
var start = Date.now();
|
|
|
|
|
|
|
|
while(Date.now() < start + ms) {
|
|
|
|
var i = 0;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// Public: Function to use for class inheritance. Copy of a CoffeeScript helper
|
|
|
|
// function.
|
|
|
|
//
|
|
|
|
// Example
|
|
|
|
//
|
2014-06-06 00:32:20 +08:00
|
|
|
// var Sphero = function Sphero() {};
|
|
|
|
//
|
|
|
|
// subclass(Sphero, ParentClass);
|
|
|
|
//
|
|
|
|
// // Sphero is now a subclass of Parent, and can access parent methods
|
|
|
|
// // through Sphero.__super__
|
2014-05-14 09:24:41 +08:00
|
|
|
//
|
|
|
|
// Returns subclass
|
|
|
|
subclass: function subclass(child, parent) {
|
2014-06-06 07:30:05 +08:00
|
|
|
var ctor = function() {
|
|
|
|
this.constructor = child;
|
|
|
|
};
|
2014-05-14 09:24:41 +08:00
|
|
|
|
|
|
|
for (var key in parent) {
|
2014-06-06 03:11:37 +08:00
|
|
|
if (Object.hasOwnProperty.call(parent, key)) {
|
|
|
|
child[key] = parent[key];
|
|
|
|
}
|
2014-05-14 09:24:41 +08:00
|
|
|
}
|
2014-04-02 03:31:13 +08:00
|
|
|
|
2014-05-14 09:24:41 +08:00
|
|
|
ctor.prototype = parent.prototype;
|
|
|
|
child.prototype = new ctor();
|
|
|
|
child.__super__ = parent.prototype;
|
|
|
|
return child;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Public: Proxies a list of methods from one object to another. It will not
|
|
|
|
// overwrite existing methods unless told to.
|
|
|
|
//
|
|
|
|
// methods - array of functions to proxy
|
|
|
|
// target - object to proxy the functions to
|
|
|
|
// base - (optional) object that proxied functions will be declared on. Defaults
|
|
|
|
// to this
|
|
|
|
// force - (optional) boolean - whether or not to force method assignment
|
|
|
|
//
|
|
|
|
// Returns base
|
|
|
|
proxyFunctionsToObject: function proxyFunctionsToObject(methods, target, base, force) {
|
2014-06-06 07:30:05 +08:00
|
|
|
if (base == null) {
|
|
|
|
base = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (force == null) {
|
|
|
|
force = false;
|
|
|
|
}
|
2014-05-14 09:24:41 +08:00
|
|
|
|
|
|
|
var fn = function(method) {
|
|
|
|
return base[method] = function() {
|
|
|
|
var args = arguments.length >= 1 ? [].slice.call(arguments, 0) : [];
|
|
|
|
return target[method].apply(target, args);
|
2014-03-11 03:00:48 +08:00
|
|
|
};
|
2014-05-14 09:24:41 +08:00
|
|
|
};
|
2014-03-11 03:00:48 +08:00
|
|
|
|
2014-05-14 09:24:41 +08:00
|
|
|
for (var i = 0; i < methods.length; i++) {
|
|
|
|
var method = methods[i];
|
2014-06-06 07:30:05 +08:00
|
|
|
|
|
|
|
if (!force && typeof(base[method]) === 'function') {
|
|
|
|
continue;
|
2014-03-11 03:00:48 +08:00
|
|
|
}
|
2014-04-02 03:31:13 +08:00
|
|
|
|
2014-05-14 09:24:41 +08:00
|
|
|
fn(method);
|
|
|
|
}
|
|
|
|
return base;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Public: Proxies a list of methods for test stubbing.
|
|
|
|
//
|
|
|
|
// methods - array of functions to proxy
|
|
|
|
// base - (optional) object that proxied functions will be declared on. Defaults
|
|
|
|
// to this
|
|
|
|
//
|
|
|
|
// Returns base
|
|
|
|
proxyTestStubs: function proxyTestStubs(methods, base) {
|
2014-06-06 07:30:05 +08:00
|
|
|
if (base == null) {
|
|
|
|
base = this;
|
|
|
|
}
|
2014-05-14 09:24:41 +08:00
|
|
|
|
|
|
|
methods.forEach(function(method) {
|
2014-06-06 07:30:05 +08:00
|
|
|
base[method] = function() {
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2014-05-14 09:24:41 +08:00
|
|
|
base.commandList.push(method);
|
|
|
|
});
|
|
|
|
|
|
|
|
return base;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Public: Binds an argument to a caller
|
|
|
|
//
|
|
|
|
// fn - function to bind
|
|
|
|
// me - value for 'this' scope inside the function
|
|
|
|
//
|
|
|
|
// Examples
|
|
|
|
//
|
|
|
|
// var me = { hello: "Hello World" };
|
|
|
|
// var proxy = { boundMethod: function() { return this.hello; } };
|
2014-06-06 00:32:20 +08:00
|
|
|
//
|
2014-05-14 09:24:41 +08:00
|
|
|
// proxy.boundMethod = bind(proxy.boundMethod, me);
|
|
|
|
// proxy.boundMethod();
|
2014-06-06 00:32:20 +08:00
|
|
|
//
|
2014-05-14 09:24:41 +08:00
|
|
|
// //=> "Hello World"
|
|
|
|
//
|
|
|
|
// Returns a function wrapper
|
|
|
|
bind: function bind(fn, me) {
|
2014-06-06 07:30:05 +08:00
|
|
|
return function() {
|
|
|
|
return fn.apply(me, arguments);
|
|
|
|
};
|
2014-05-14 09:24:41 +08:00
|
|
|
},
|
|
|
|
|
2014-06-06 03:11:37 +08:00
|
|
|
// Public: Adds necessary utils to global namespace, along with base class
|
|
|
|
// extensions.
|
2014-05-14 09:24:41 +08:00
|
|
|
//
|
|
|
|
// Examples
|
|
|
|
//
|
2014-06-06 03:11:37 +08:00
|
|
|
// Number.prototype.seconds // undefined
|
|
|
|
// after // undefined
|
|
|
|
//
|
2014-06-06 00:32:20 +08:00
|
|
|
// Utils.bootstrap();
|
2014-06-06 03:11:37 +08:00
|
|
|
//
|
|
|
|
// Number.prototype.seconds // [function]
|
|
|
|
// (after === Utils.after) // true
|
2014-05-14 09:24:41 +08:00
|
|
|
//
|
|
|
|
// Returns Cylon.Utils
|
|
|
|
bootstrap: function bootstrap() {
|
2014-06-06 03:11:37 +08:00
|
|
|
global.every = this.every;
|
|
|
|
global.after = this.after;
|
|
|
|
global.constantly = this.constantly;
|
|
|
|
|
|
|
|
addCoreExtensions();
|
2014-03-11 03:00:48 +08:00
|
|
|
|
2014-05-14 09:24:41 +08:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-06-06 03:11:37 +08:00
|
|
|
var addCoreExtensions = function addCoreExtensions() {
|
|
|
|
// Public: Monkey-patches Number to have Rails-like //seconds() function.
|
|
|
|
// Warning, due to the way the Javascript parser works, applying functions on
|
|
|
|
// numbers is kind of weird. See examples for details.
|
|
|
|
//
|
|
|
|
// Examples
|
|
|
|
//
|
|
|
|
// 2.seconds()
|
|
|
|
// //=> SyntaxError: Unexpected token ILLEGAL
|
|
|
|
//
|
|
|
|
// 10..seconds()
|
|
|
|
// //=> 10000
|
|
|
|
//
|
|
|
|
// (5).seconds()
|
|
|
|
// //=> 5000
|
|
|
|
// // This is the preferred way to represent numbers when calling these
|
|
|
|
// // methods on them
|
|
|
|
//
|
|
|
|
// Returns an integer representing time in milliseconds
|
|
|
|
Number.prototype.seconds = function() {
|
|
|
|
return this * 1000;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Public: Alias for Number::seconds, see comments for that method
|
|
|
|
//
|
|
|
|
// Examples
|
|
|
|
//
|
|
|
|
// 1.second()
|
|
|
|
// //=> 1000
|
|
|
|
//
|
|
|
|
// Returns an integer representing time in milliseconds
|
|
|
|
Number.prototype.second = function() {
|
|
|
|
return this.seconds(this);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Public: Convert value from old scale (start, end) to (0..1) scale
|
|
|
|
//
|
|
|
|
// start - low point of scale to convert value from
|
|
|
|
// end - high point of scale to convert value from
|
|
|
|
//
|
|
|
|
// Examples
|
|
|
|
//
|
|
|
|
// (5).fromScale(0, 10)
|
|
|
|
// //=> 0.5
|
|
|
|
//
|
|
|
|
// Returns an integer representing the scaled value
|
|
|
|
Number.prototype.fromScale = function(start, end) {
|
|
|
|
return (this - Math.min(start, end)) / (Math.max(start, end) - Math.min(start, end));
|
|
|
|
};
|
|
|
|
|
|
|
|
// Public: Convert value from (0..1) scale to new (start, end) scale
|
|
|
|
//
|
|
|
|
// start - low point of scale to convert value to
|
|
|
|
// end - high point of scale to convert value to
|
|
|
|
//
|
|
|
|
// Examples
|
|
|
|
//
|
|
|
|
// (0.5).toScale(0, 10)
|
|
|
|
// //=> 5
|
|
|
|
//
|
|
|
|
// Returns an integer representing the scaled value
|
|
|
|
Number.prototype.toScale = function(start, end) {
|
|
|
|
var i = this * (Math.max(start, end) - Math.min(start, end)) + Math.min(start, end);
|
|
|
|
|
|
|
|
if (i < Math.min(start, end)) {
|
|
|
|
return Math.min(start, end);
|
|
|
|
} else if (i > Math.max(start,end)){
|
|
|
|
return Math.max(start, end);
|
|
|
|
} else {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
Utils.bootstrap();
|