Tone.js/Tone/effect/Chorus.js

214 lines
5.5 KiB
JavaScript
Raw Normal View History

2015-01-20 12:30:31 +00:00
define(["Tone/core/Tone", "Tone/component/LFO", "Tone/effect/StereoXFeedbackEffect"],
function(Tone){
"use strict";
2014-08-23 19:19:01 +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
* @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
* 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
*/
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);
Tone.StereoXFeedbackEffect.call(this, options);
2014-08-23 19:19:01 +00:00
/**
* the depth of the chorus
* @type {number}
* @private
*/
this._depth = options.depth;
2014-08-23 19:19:01 +00:00
/**
* the delayTime
* @type {number}
* @private
*/
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,
});
/**
* 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
});
/**
* delay for left
* @type {DelayNode}
* @private
*/
this._delayNodeL = this.context.createDelay();
2014-08-23 19:19:01 +00:00
/**
* delay for right
2014-08-23 19:19:01 +00:00
* @type {DelayNode}
* @private
*/
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);
//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);
//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"]);
2015-12-07 01:53:36 +00:00
this.spread = options.spread;
2014-08-23 19:19:01 +00:00
};
Tone.extend(Tone.Chorus, Tone.StereoXFeedbackEffect);
2014-08-23 19:19:01 +00:00
/**
* @static
* @type {Object}
*/
Tone.Chorus.defaults = {
2015-03-05 16:06:27 +00:00
"frequency" : 1.5,
"delayTime" : 3.5,
"depth" : 0.7,
2014-12-04 02:37:58 +00:00
"feedback" : 0.1,
2015-12-07 01:53:36 +00:00
"type" : "sine",
"spread" : 180
};
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;
this._lfoL.min = Math.max(this._delayTime - deviation, 0);
2015-02-10 16:40:27 +00:00
this._lfoL.max = this._delayTime + deviation;
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-12-07 01:53:36 +00:00
/**
* Amount of stereo spread. When set to 0, both LFO's will be panned centrally.
* When set to 180, LFO's will be panned hard left and right respectively.
* @memberOf Tone.Chorus#
* @type {Degrees}
* @name spread
*/
Object.defineProperty(Tone.Chorus.prototype, "spread", {
get : function(){
return this._lfoR.phase - this._lfoL.phase; //180
},
set : function(spread){
this._lfoL.phase = 90 - (spread/2);
this._lfoR.phase = (spread/2) + 90;
}
});
2014-08-23 19:19:01 +00:00
/**
2015-06-22 05:20:57 +00:00
* Clean up.
* @returns {Tone.Chorus} this
2014-08-23 19:19:01 +00:00
*/
Tone.Chorus.prototype.dispose = function(){
Tone.StereoXFeedbackEffect.prototype.dispose.call(this);
this._lfoL.dispose();
this._lfoL = null;
2015-02-10 16:40:27 +00:00
this._lfoR.dispose();
this._lfoR = null;
2015-02-10 16:40:27 +00:00
this._delayNodeL.disconnect();
this._delayNodeL = null;
2015-02-10 16:40:27 +00:00
this._delayNodeR.disconnect();
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;
});