2014-08-24 19:47:59 +00:00
|
|
|
define(["Tone/core/Tone", "Tone/signal/Signal"], function(Tone){
|
2014-04-16 20:47:25 +00:00
|
|
|
|
2014-09-04 04:41:40 +00:00
|
|
|
"use strict";
|
|
|
|
|
2014-06-17 00:05:54 +00:00
|
|
|
/**
|
2014-07-04 17:47:56 +00:00
|
|
|
* @class Multiply the incoming signal by some factor
|
2014-06-17 00:05:54 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @extends {Tone}
|
2014-06-17 15:42:38 +00:00
|
|
|
* @param {number=} value constant value to multiple
|
2014-06-17 00:05:54 +00:00
|
|
|
*/
|
2014-04-16 23:56:18 +00:00
|
|
|
Tone.Multiply = function(value){
|
2014-06-17 15:42:38 +00:00
|
|
|
/**
|
|
|
|
* the input node is the same as the output node
|
|
|
|
* it is also the GainNode which handles the scaling of incoming signal
|
|
|
|
*
|
|
|
|
* @type {GainNode}
|
|
|
|
*/
|
2014-06-30 21:11:46 +00:00
|
|
|
this.input = this.output = this.context.createGain();
|
|
|
|
|
2014-06-17 15:42:38 +00:00
|
|
|
//apply the inital scale factor
|
|
|
|
this.input.gain.value = this.defaultArg(value, 1);
|
2014-06-15 21:38:59 +00:00
|
|
|
};
|
2014-04-16 20:47:25 +00:00
|
|
|
|
|
|
|
Tone.extend(Tone.Multiply);
|
|
|
|
|
2014-06-17 00:05:54 +00:00
|
|
|
/**
|
|
|
|
* set the constant multiple
|
|
|
|
*
|
|
|
|
* @param {number} value
|
|
|
|
*/
|
2014-04-16 23:56:18 +00:00
|
|
|
Tone.Multiply.prototype.setValue = function(value){
|
|
|
|
this.input.gain.value = value;
|
2014-06-15 21:38:59 +00:00
|
|
|
};
|
2014-04-16 20:47:25 +00:00
|
|
|
|
2014-08-24 17:19:49 +00:00
|
|
|
/**
|
|
|
|
* borrows the method from {@link Tone.Signal}
|
|
|
|
*
|
|
|
|
* @function
|
|
|
|
*/
|
|
|
|
Tone.Multiply.prototype.connect = Tone.Signal.prototype.connect;
|
|
|
|
|
2014-06-20 04:38:14 +00:00
|
|
|
/**
|
|
|
|
* clean up
|
|
|
|
*/
|
|
|
|
Tone.Multiply.prototype.dispose = function(){
|
2014-09-06 22:55:11 +00:00
|
|
|
Tone.prototype.dispose.call(this);
|
2014-06-20 04:38:14 +00:00
|
|
|
};
|
|
|
|
|
2014-04-16 20:47:25 +00:00
|
|
|
return Tone.Multiply;
|
2014-06-15 21:38:59 +00:00
|
|
|
});
|