2015-02-02 17:48:04 +00:00
|
|
|
define(["Tone/core/Tone", "Tone/effect/Effect", "Tone/component/Split",
|
|
|
|
"Tone/component/Merge", "Tone/component/CrossFade"],
|
2014-09-01 16:52:13 +00:00
|
|
|
function(Tone){
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @class Creates an effect with an effectSendL/R and effectReturnL/R
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @extends {Tone.Effect}
|
|
|
|
*/
|
|
|
|
Tone.StereoEffect = function(){
|
|
|
|
|
|
|
|
Tone.call(this);
|
|
|
|
//get the defaults
|
2015-02-02 17:48:04 +00:00
|
|
|
var options = this.optionsObject(arguments, ["wet"], Tone.Effect.defaults);
|
2014-09-01 16:52:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* the drywet knob to control the amount of effect
|
|
|
|
*
|
2015-02-02 17:48:04 +00:00
|
|
|
* @type {Tone.CrossFade}
|
2014-09-01 16:52:13 +00:00
|
|
|
*/
|
2015-02-02 17:48:04 +00:00
|
|
|
this.dryWet = new Tone.CrossFade();
|
2014-09-01 16:52:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* then split it
|
|
|
|
* @type {Tone.Split}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._split = new Tone.Split();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* the effects send LEFT
|
|
|
|
* @type {GainNode}
|
|
|
|
*/
|
|
|
|
this.effectSendL = this._split.left;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* the effects send RIGHT
|
|
|
|
* @type {GainNode}
|
|
|
|
*/
|
|
|
|
this.effectSendR = this._split.right;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* the stereo effect merger
|
|
|
|
* @type {Tone.Merge}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._merge = new Tone.Merge();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* the effect return LEFT
|
|
|
|
* @type {GainNode}
|
|
|
|
*/
|
|
|
|
this.effectReturnL = this._merge.left;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* the effect return RIGHT
|
|
|
|
* @type {GainNode}
|
|
|
|
*/
|
|
|
|
this.effectReturnR = this._merge.right;
|
|
|
|
|
|
|
|
//connections
|
2014-11-03 16:45:33 +00:00
|
|
|
this.input.connect(this._split);
|
2014-09-01 16:52:13 +00:00
|
|
|
//dry wet connections
|
2015-02-02 17:48:04 +00:00
|
|
|
this.input.connect(this.dryWet, 0, 0);
|
|
|
|
this._merge.connect(this.dryWet, 0, 1);
|
2014-09-01 16:52:13 +00:00
|
|
|
this.dryWet.connect(this.output);
|
|
|
|
//setup values
|
2015-02-02 17:48:04 +00:00
|
|
|
this.setWet(options.wet);
|
2014-09-01 16:52:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Tone.extend(Tone.StereoEffect, Tone.Effect);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clean up
|
|
|
|
*/
|
|
|
|
Tone.StereoEffect.prototype.dispose = function(){
|
|
|
|
Tone.prototype.dispose.call(this);
|
|
|
|
this.dryWet.dispose();
|
2014-11-03 16:45:33 +00:00
|
|
|
this.dryWet = null;
|
2014-09-01 16:52:13 +00:00
|
|
|
this._split.dispose();
|
|
|
|
this._split = null;
|
2014-11-03 16:45:33 +00:00
|
|
|
this._merge.dispose();
|
2014-09-01 16:52:13 +00:00
|
|
|
this._merge = null;
|
|
|
|
this.effectSendL = null;
|
|
|
|
this.effectSendR = null;
|
|
|
|
this.effectReturnL = null;
|
|
|
|
this.effectReturnR = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
return Tone.StereoEffect;
|
|
|
|
});
|