Tone.js/Tone/effect/StereoEffect.js

107 lines
2.2 KiB
JavaScript
Raw Normal View History

2015-02-02 17:48:04 +00:00
define(["Tone/core/Tone", "Tone/effect/Effect", "Tone/component/Split",
"Tone/component/Merge", "Tone/component/CrossFade"],
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);
/**
* the drywet knob to control the amount of effect
2015-02-02 17:48:04 +00:00
* @type {Tone.CrossFade}
* @private
*/
this._dryWet = new Tone.CrossFade(options.wet);
2015-02-10 16:40:27 +00:00
/**
* The wet control, i.e. how much of the effected
* will pass through to the output.
2015-06-13 23:50:39 +00:00
* @type {NormalRange}
* @signal
2015-02-10 16:40:27 +00:00
*/
this.wet = this._dryWet.fade;
/**
* then split it
* @type {Tone.Split}
* @private
*/
this._split = new Tone.Split();
/**
* the effects send LEFT
* @type {GainNode}
2015-02-27 21:53:10 +00:00
* @private
*/
this.effectSendL = this._split.left;
/**
* the effects send RIGHT
* @type {GainNode}
2015-02-27 21:53:10 +00:00
* @private
*/
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
this.input.connect(this._split);
//dry wet connections
this.input.connect(this._dryWet, 0, 0);
this._merge.connect(this._dryWet, 0, 1);
this._dryWet.connect(this.output);
2015-04-18 14:54:08 +00:00
this._readOnly(["wet"]);
};
Tone.extend(Tone.StereoEffect, Tone.Effect);
/**
* clean up
* @returns {Tone.StereoEffect} this
*/
Tone.StereoEffect.prototype.dispose = function(){
Tone.prototype.dispose.call(this);
this._dryWet.dispose();
this._dryWet = null;
this._split.dispose();
this._split = null;
this._merge.dispose();
this._merge = null;
this.effectSendL = null;
this.effectSendR = null;
this.effectReturnL = null;
this.effectReturnR = null;
2015-04-18 14:54:08 +00:00
this._writable(["wet"]);
2015-02-10 16:40:27 +00:00
this.wet = null;
2015-02-02 18:22:16 +00:00
return this;
};
return Tone.StereoEffect;
});