2015-01-20 12:30:31 +00:00
|
|
|
define(["Tone/core/Tone", "Tone/component/LFO", "Tone/effect/StereoXFeedbackEffect"],
|
2014-09-01 16:52:13 +00:00
|
|
|
function(Tone){
|
|
|
|
|
|
|
|
"use strict";
|
2014-08-23 19:19:01 +00:00
|
|
|
|
|
|
|
/**
|
2015-07-04 16:40:33 +00:00
|
|
|
* @class Tone.Chorus is a stereo chorus effect with feedback composed of
|
|
|
|
* a left and right delay with a Tone.LFO applied to the delayTime of each channel.
|
2015-07-04 19:25:37 +00:00
|
|
|
* Inspiration from [Tuna.js](https://github.com/Dinahmoe/tuna/blob/master/tuna.js).
|
|
|
|
* Read more on the chorus effect on [SoundOnSound](http://www.soundonsound.com/sos/jun04/articles/synthsecrets.htm).
|
2014-08-23 19:19:01 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
2014-09-01 16:52:13 +00:00
|
|
|
* @extends {Tone.StereoXFeedbackEffect}
|
2015-06-22 05:20:57 +00:00
|
|
|
* @param {Frequency|Object} [frequency] The frequency of the LFO.
|
2015-08-31 19:47:25 +00:00
|
|
|
* @param {Milliseconds} [delayTime] The delay of the chorus effect in ms.
|
2015-06-22 05:20:57 +00:00
|
|
|
* @param {NormalRange} [depth] The depth of the chorus.
|
2015-02-27 21:53:10 +00:00
|
|
|
* @example
|
2015-07-04 16:40:33 +00:00
|
|
|
* var chorus = new Tone.Chorus(4, 2.5, 0.5);
|
|
|
|
* var synth = new Tone.PolySynth(4, Tone.MonoSynth).connect(chorus);
|
|
|
|
* synth.triggerAttackRelease(["C3","E3","G3"], "8n");
|
2014-08-23 19:19:01 +00:00
|
|
|
*/
|
2014-08-25 14:23:37 +00:00
|
|
|
Tone.Chorus = function(){
|
2014-08-23 19:19:01 +00:00
|
|
|
|
2015-02-10 16:40:27 +00:00
|
|
|
var options = this.optionsObject(arguments, ["frequency", "delayTime", "depth"], Tone.Chorus.defaults);
|
2014-09-01 16:52:13 +00:00
|
|
|
Tone.StereoXFeedbackEffect.call(this, options);
|
2014-08-23 19:19:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* the depth of the chorus
|
|
|
|
* @type {number}
|
|
|
|
* @private
|
|
|
|
*/
|
2014-08-25 14:23:37 +00:00
|
|
|
this._depth = options.depth;
|
2014-08-23 19:19:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* the delayTime
|
|
|
|
* @type {number}
|
|
|
|
* @private
|
|
|
|
*/
|
2014-08-25 14:23:37 +00:00
|
|
|
this._delayTime = options.delayTime / 1000;
|
2014-08-23 19:19:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* the lfo which controls the delayTime
|
|
|
|
* @type {Tone.LFO}
|
|
|
|
* @private
|
|
|
|
*/
|
2015-08-26 14:00:15 +00:00
|
|
|
this._lfoL = new Tone.LFO({
|
|
|
|
"frequency" : options.frequency,
|
|
|
|
"min" : 0,
|
|
|
|
"max" : 1,
|
|
|
|
});
|
2014-09-01 16:52:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* another LFO for the right side with a 180 degree phase diff
|
|
|
|
* @type {Tone.LFO}
|
|
|
|
* @private
|
|
|
|
*/
|
2015-08-26 14:00:15 +00:00
|
|
|
this._lfoR = new Tone.LFO({
|
|
|
|
"frequency" : options.frequency,
|
|
|
|
"min" : 0,
|
|
|
|
"max" : 1,
|
|
|
|
"phase" : 180
|
|
|
|
});
|
2014-09-01 16:52:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* delay for left
|
|
|
|
* @type {DelayNode}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._delayNodeL = this.context.createDelay();
|
2014-08-23 19:19:01 +00:00
|
|
|
|
|
|
|
/**
|
2014-09-01 16:52:13 +00:00
|
|
|
* delay for right
|
2014-08-23 19:19:01 +00:00
|
|
|
* @type {DelayNode}
|
|
|
|
* @private
|
|
|
|
*/
|
2014-09-01 16:52:13 +00:00
|
|
|
this._delayNodeR = this.context.createDelay();
|
2014-08-23 19:19:01 +00:00
|
|
|
|
2015-02-10 16:40:27 +00:00
|
|
|
/**
|
2015-06-22 05:20:57 +00:00
|
|
|
* The frequency of the LFO which modulates the delayTime.
|
2015-06-13 23:50:39 +00:00
|
|
|
* @type {Frequency}
|
|
|
|
* @signal
|
2015-02-10 16:40:27 +00:00
|
|
|
*/
|
|
|
|
this.frequency = this._lfoL.frequency;
|
|
|
|
|
2014-08-23 19:19:01 +00:00
|
|
|
//connections
|
2015-08-26 14:00:15 +00:00
|
|
|
this.effectSendL.chain(this._delayNodeL, this.effectReturnL);
|
|
|
|
this.effectSendR.chain(this._delayNodeR, this.effectReturnR);
|
2015-06-29 01:07:27 +00:00
|
|
|
//and pass through to make the detune apparent
|
2015-08-26 14:00:15 +00:00
|
|
|
this.effectSendL.connect(this.effectReturnL);
|
|
|
|
this.effectSendR.connect(this.effectReturnR);
|
2014-09-01 16:52:13 +00:00
|
|
|
//lfo setup
|
|
|
|
this._lfoL.connect(this._delayNodeL.delayTime);
|
|
|
|
this._lfoR.connect(this._delayNodeR.delayTime);
|
|
|
|
//start the lfo
|
|
|
|
this._lfoL.start();
|
|
|
|
this._lfoR.start();
|
|
|
|
//have one LFO frequency control the other
|
|
|
|
this._lfoL.frequency.connect(this._lfoR.frequency);
|
|
|
|
//set the initial values
|
2015-02-10 16:40:27 +00:00
|
|
|
this.depth = this._depth;
|
|
|
|
this.frequency.value = options.frequency;
|
|
|
|
this.type = options.type;
|
2015-04-18 14:54:08 +00:00
|
|
|
this._readOnly(["frequency"]);
|
2014-08-23 19:19:01 +00:00
|
|
|
};
|
|
|
|
|
2014-09-01 16:52:13 +00:00
|
|
|
Tone.extend(Tone.Chorus, Tone.StereoXFeedbackEffect);
|
2014-08-23 19:19:01 +00:00
|
|
|
|
2014-08-25 14:23:37 +00:00
|
|
|
/**
|
|
|
|
* @static
|
|
|
|
* @type {Object}
|
|
|
|
*/
|
|
|
|
Tone.Chorus.defaults = {
|
2015-03-05 16:06:27 +00:00
|
|
|
"frequency" : 1.5,
|
2014-08-25 14:23:37 +00:00
|
|
|
"delayTime" : 3.5,
|
2014-09-01 16:52:13 +00:00
|
|
|
"depth" : 0.7,
|
2014-12-04 02:37:58 +00:00
|
|
|
"feedback" : 0.1,
|
2014-09-05 04:36:55 +00:00
|
|
|
"type" : "sine"
|
2014-08-25 14:23:37 +00:00
|
|
|
};
|
|
|
|
|
2014-08-23 19:19:01 +00:00
|
|
|
/**
|
2015-06-22 05:20:57 +00:00
|
|
|
* The depth of the effect. A depth of 1 makes the delayTime
|
|
|
|
* modulate between 0 and 2*delayTime (centered around the delayTime).
|
2015-02-10 16:40:27 +00:00
|
|
|
* @memberOf Tone.Chorus#
|
2015-06-22 05:20:57 +00:00
|
|
|
* @type {NormalRange}
|
2015-02-10 16:40:27 +00:00
|
|
|
* @name depth
|
2014-09-05 04:36:55 +00:00
|
|
|
*/
|
2015-02-10 16:40:27 +00:00
|
|
|
Object.defineProperty(Tone.Chorus.prototype, "depth", {
|
|
|
|
get : function(){
|
|
|
|
return this._depth;
|
|
|
|
},
|
|
|
|
set : function(depth){
|
|
|
|
this._depth = depth;
|
|
|
|
var deviation = this._delayTime * depth;
|
2015-04-24 17:46:12 +00:00
|
|
|
this._lfoL.min = Math.max(this._delayTime - deviation, 0);
|
2015-02-10 16:40:27 +00:00
|
|
|
this._lfoL.max = this._delayTime + deviation;
|
2015-04-24 17:46:12 +00:00
|
|
|
this._lfoR.min = Math.max(this._delayTime - deviation, 0);
|
2015-02-10 16:40:27 +00:00
|
|
|
this._lfoR.max = this._delayTime + deviation;
|
|
|
|
}
|
|
|
|
});
|
2014-09-05 04:36:55 +00:00
|
|
|
|
2015-01-20 12:30:31 +00:00
|
|
|
/**
|
2015-06-22 05:20:57 +00:00
|
|
|
* The delayTime in milliseconds of the chorus. A larger delayTime
|
|
|
|
* will give a more pronounced effect. Nominal range a delayTime
|
|
|
|
* is between 2 and 20ms.
|
2015-02-10 16:40:27 +00:00
|
|
|
* @memberOf Tone.Chorus#
|
2015-08-31 19:47:25 +00:00
|
|
|
* @type {Milliseconds}
|
2015-02-10 16:40:27 +00:00
|
|
|
* @name delayTime
|
2015-01-20 12:30:31 +00:00
|
|
|
*/
|
2015-02-10 16:40:27 +00:00
|
|
|
Object.defineProperty(Tone.Chorus.prototype, "delayTime", {
|
|
|
|
get : function(){
|
|
|
|
return this._delayTime * 1000;
|
|
|
|
},
|
|
|
|
set : function(delayTime){
|
|
|
|
this._delayTime = delayTime / 1000;
|
|
|
|
this.depth = this._depth;
|
|
|
|
}
|
|
|
|
});
|
2015-01-20 12:30:31 +00:00
|
|
|
|
2014-08-23 19:19:01 +00:00
|
|
|
/**
|
2015-06-22 05:20:57 +00:00
|
|
|
* The oscillator type of the LFO.
|
2015-02-10 16:40:27 +00:00
|
|
|
* @memberOf Tone.Chorus#
|
|
|
|
* @type {string}
|
|
|
|
* @name type
|
2014-08-23 19:19:01 +00:00
|
|
|
*/
|
2015-02-10 16:40:27 +00:00
|
|
|
Object.defineProperty(Tone.Chorus.prototype, "type", {
|
|
|
|
get : function(){
|
|
|
|
return this._lfoL.type;
|
|
|
|
},
|
|
|
|
set : function(type){
|
|
|
|
this._lfoL.type = type;
|
|
|
|
this._lfoR.type = type;
|
|
|
|
}
|
|
|
|
});
|
2014-08-23 19:19:01 +00:00
|
|
|
|
|
|
|
/**
|
2015-06-22 05:20:57 +00:00
|
|
|
* Clean up.
|
2015-06-14 00:54:29 +00:00
|
|
|
* @returns {Tone.Chorus} this
|
2014-08-23 19:19:01 +00:00
|
|
|
*/
|
|
|
|
Tone.Chorus.prototype.dispose = function(){
|
2014-09-01 16:52:13 +00:00
|
|
|
Tone.StereoXFeedbackEffect.prototype.dispose.call(this);
|
|
|
|
this._lfoL.dispose();
|
|
|
|
this._lfoL = null;
|
2015-02-10 16:40:27 +00:00
|
|
|
this._lfoR.dispose();
|
2014-09-01 16:52:13 +00:00
|
|
|
this._lfoR = null;
|
2015-02-10 16:40:27 +00:00
|
|
|
this._delayNodeL.disconnect();
|
2014-09-01 16:52:13 +00:00
|
|
|
this._delayNodeL = null;
|
2015-02-10 16:40:27 +00:00
|
|
|
this._delayNodeR.disconnect();
|
2014-09-01 16:52:13 +00:00
|
|
|
this._delayNodeR = null;
|
2015-04-18 14:54:08 +00:00
|
|
|
this._writable("frequency");
|
2015-02-10 16:40:27 +00:00
|
|
|
this.frequency = null;
|
2015-02-02 18:22:16 +00:00
|
|
|
return this;
|
2014-08-23 19:19:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return Tone.Chorus;
|
|
|
|
});
|