dat.gui/gui.js

230 lines
4.9 KiB
JavaScript
Raw Normal View History

var GUI = function() {
2011-01-23 23:43:02 +00:00
var _this = this;
2011-01-23 22:35:19 +00:00
var controllers = [];
var listening = [];
var autoListen = true;
var listenInterval;
this.autoListenIntervalTime = 1000/60;
var createListenInterval = function() {
listenInterval = setInterval(function() {
_this.listen();
}, this.autoListenIntervalTime);
}
this.__defineSetter__("autoListen", function(v) {
autoListen = v;
if (!autoListen) {
clearInterval(listenInterval);
} else {
if (listening.length > 0) createListenInterval();
}
});
this.__defineGetter__("autoListen", function(v) {
return autoListen;
});
this.listenTo = function(controller) {
// TODO: check for duplicates
if (listening.length == 0) {
createListenInterval();
}
listening.push(controller);
};
this.unlistenTo = function(controller) {
// TODO
};
this.listen = function(whoToListenTo) {
var arr = whoToListenTo || listening;
for (var i in arr) {
arr[i].updateDisplay();
}
};
this.listenAll = function() {
this.listen(controllers);
}
this.autoListen = true;
2011-01-23 23:43:02 +00:00
2011-01-23 21:39:07 +00:00
this.add = function() {
2011-01-23 22:57:12 +00:00
// We need to call GUI.start() before .add()
2011-01-23 22:35:19 +00:00
if (!started) {
error("Make sure to call GUI.start() in the window.onload function");
return;
}
2011-01-23 21:39:07 +00:00
var object = arguments[0];
2011-01-23 22:35:19 +00:00
var propertyName = arguments[1];
2011-01-23 21:39:07 +00:00
2011-01-23 22:57:12 +00:00
// Have we already added this?
if (alreadyControlled(object, propertyName)) {
2011-01-26 01:55:59 +00:00
error("Controller for \"" + propertyName+"\" already added.");
return;
2011-01-23 22:57:12 +00:00
}
2011-01-23 22:35:19 +00:00
var value = object[propertyName];
// Does this value exist? Is it accessible?
if (value == undefined) {
error(object + " either has no property \""+propertyName+"\", or the property is inaccessible.");
return;
}
2011-01-23 21:39:07 +00:00
var type = typeof value;
2011-01-23 21:47:42 +00:00
var handler = addHandlers[type];
2011-01-23 22:35:19 +00:00
// Do we know how to deal with this data type?
if (handler == undefined) {
2011-01-24 00:03:32 +00:00
error("Cannot create controller for data type \""+type+"\"");
2011-01-23 22:35:19 +00:00
return;
}
var args = [_this];
for (var j = 0; j < arguments.length; j++) {
args.push(arguments[j]);
}
var controllerObject = construct(handler, args);
2011-01-23 22:35:19 +00:00
// Were we able to make the controller?
2011-01-23 22:57:12 +00:00
if (!controllerObject) {
2011-01-23 22:35:19 +00:00
error("Error creating controller for \""+propertyName+"\".");
return;
2011-01-23 21:39:07 +00:00
}
2011-01-23 22:35:19 +00:00
// Success.
2011-01-23 22:57:12 +00:00
controllerContainer.appendChild(controllerObject.domElement);
controllers.push(controllerObject);
2011-01-23 22:35:19 +00:00
2011-01-24 02:59:29 +00:00
return controllerObject;
2011-01-23 21:23:53 +00:00
}
2011-01-23 21:47:42 +00:00
var addHandlers = {
2011-01-26 22:55:56 +00:00
"number": NumberController,
"string": StringController,
"boolean": BooleanController,
"function": FunctionController
2011-01-23 21:47:42 +00:00
};
var alreadyControlled = function(object, propertyName) {
for (var i in controllers) {
if (controllers[i].object == object &&
controllers[i].propertyName == propertyName) {
return true;
}
}
2011-01-23 22:57:12 +00:00
return false;
};
2011-01-23 22:35:19 +00:00
var error = function(str) {
2011-01-23 22:37:28 +00:00
if (typeof console.log == 'function') {
console.error("[GUI ERROR] " + str);
}
2011-01-23 22:57:12 +00:00
};
2011-01-24 00:47:26 +00:00
var construct = function(constructor, args) {
function F() {
return constructor.apply(this, args);
}
F.prototype = constructor.prototype;
return new F();
};
2011-01-23 23:43:02 +00:00
// GUI ... GUI
this.domElement = null;
2011-01-23 23:43:02 +00:00
var controllerContainer;
var started = false;
var open = false;
2011-01-23 23:56:22 +00:00
// TODO: obtain this dynamically?
2011-01-24 00:21:36 +00:00
var domElementMarginTop = 300;
2011-01-23 23:56:22 +00:00
2011-01-23 23:43:02 +00:00
this.start = function() {
this.domElement = document.createElement('div');
this.domElement.setAttribute('id', 'guidat');
2011-01-23 23:43:02 +00:00
controllerContainer = document.createElement('div');
controllerContainer.setAttribute('id', 'guidat-controllers');
toggleButton = document.createElement('a');
toggleButton.setAttribute('id', 'guidat-toggle');
toggleButton.setAttribute('href', '#');
toggleButton.innerHTML = "Show Controls";
toggleButton.addEventListener('click', function(e) {
_this.toggle();
e.preventDefault();
}, false);
this.domElement.appendChild(controllerContainer);
this.domElement.appendChild(toggleButton);
2011-01-23 23:43:02 +00:00
this.domElement.style.marginTop = -domElementMarginTop+"px";
2011-01-23 23:56:22 +00:00
document.body.appendChild(this.domElement);
2011-01-23 23:43:02 +00:00
started = true;
};
this.toggle = function() {
if (open) {
2011-01-24 02:59:29 +00:00
this.hide();
2011-01-23 23:43:02 +00:00
} else {
2011-01-24 02:59:29 +00:00
this.show();
2011-01-23 23:43:02 +00:00
}
};
2011-01-23 22:35:19 +00:00
2011-01-24 02:59:29 +00:00
this.show = function() {
this.domElement.style.marginTop = 0+"px";
2011-01-24 02:59:29 +00:00
toggleButton.innerHTML = "Hide Controls";
open = true;
}
this.hide = function() {
this.domElement.style.marginTop = -domElementMarginTop+"px";
2011-01-24 02:59:29 +00:00
toggleButton.innerHTML = "Show Controls";
open = false;
}
2011-01-23 21:54:09 +00:00
};
// Util functions
GUI.makeUnselectable = function(elem) {
elem.onselectstart = function() { return false; };
elem.style.MozUserSelect = "none";
elem.style.KhtmlUserSelect = "none";
elem.unselectable = "on";
}
GUI.makeSelectable = function(elem) {
elem.onselectstart = function() { };
elem.style.MozUserSelect = "auto";
elem.style.KhtmlUserSelect = "auto";
elem.unselectable = "off";
}
GUI.map = function(v, i1, i2, o1, o2) {
var v = o1 + (o2 - o1) * ((v - i1) / (i2 - i1));
if (v < o1) v = o1;
else if (v > o2) v = o2;
return v;
}