dat.gui/elements/controller-base/controller-base.js

82 lines
1.2 KiB
JavaScript
Raw Normal View History

2014-08-27 00:01:15 +00:00
/*
[ ] onChange( )
[ ] onFinishChange( )
*/
Polymer('controller-base', {
ready: function() {
this.update();
},
update: function() {},
init: function() {},
// Observers
// -------------------------------
watch: function( object, path ) {
this.object = object;
this.path = path;
2014-09-01 03:54:59 +00:00
this.bind('value', new PathObserver(this.object, this.path));
2014-08-15 16:32:49 +00:00
2014-08-27 00:01:15 +00:00
},
valueChanged: function() {
this.update();
2014-09-07 20:18:36 +00:00
this.fire( 'change', this.value );
2014-08-27 00:01:15 +00:00
},
// Helpers
// -------------------------------
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;
2014-09-07 20:18:36 +00:00
return this;
},
onChange: function( v ) {
2014-08-27 00:01:15 +00:00
2014-09-07 20:18:36 +00:00
this.addEventListener( 'change', function( e ) {
v( e.detail );
} );
return this;
},
2014-08-27 00:01:15 +00:00
});