dat.gui/elements/dat-gui-base/dat-gui-base.js
George Michael Brower ca14623507 controller- =
2014-09-09 15:53:30 -04:00

89 lines
1.3 KiB
JavaScript

/* globals Gui, Polymer, PathObserver */
// [ ] onFinishChange()
Polymer( 'dat-gui-base', {
ready: function() {
this.update();
},
update: function() {},
init: function() {},
// Observers
// -------------------------------
watch: function( object, path ) {
this.object = object;
this.path = path;
this.bind( 'value', new PathObserver( this.object, this.path ) );
},
valueChanged: function() {
this.fire( 'change', this.value );
this.update();
},
// Helpers
// -------------------------------
on: function( event, listener ) {
this.addEventListener( event, listener );
return this;
},
map: function( x, a, b, c, d ) {
return ( x - a ) / ( b - a ) * ( d - c ) + c;
},
// Legacy
// -------------------------------
listen: function() {
Gui.warn( 'controller.listen() is deprecated. All controllers are listened for free.' );
return this;
},
getValue: function() {
return this.value;
},
setValue: function( v ) {
this.value = v;
return this;
},
onChange: function( v ) {
this.addEventListener( 'change', function( e ) {
v( e.detail );
} );
return this;
},
} );