2014-11-30 02:36:32 +00:00
|
|
|
define(["Tone/core/Tone", "Tone/source/Oscillator", "Tone/signal/Scale", "Tone/signal/Signal", "Tone/signal/AudioToGain"],
|
2014-08-23 17:49:50 +00:00
|
|
|
function(Tone){
|
2014-04-05 00:24:19 +00:00
|
|
|
|
2014-09-04 04:41:40 +00:00
|
|
|
"use strict";
|
|
|
|
|
2014-06-17 17:01:06 +00:00
|
|
|
/**
|
2014-08-23 17:49:50 +00:00
|
|
|
* @class The Low Frequency Oscillator produces an output signal
|
|
|
|
* which can be attached to an AudioParam or Tone.Signal
|
|
|
|
* for constant control over that parameter. the LFO can
|
|
|
|
* also be synced to the transport to start/stop/pause
|
2015-05-23 22:15:19 +00:00
|
|
|
* and change when the tempo changes. The LFO starts at
|
|
|
|
* it's minimal value.
|
2014-06-17 17:01:06 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
2015-02-02 17:49:13 +00:00
|
|
|
* @extends {Tone.Oscillator}
|
2015-05-23 23:01:05 +00:00
|
|
|
* @param {Tone.Type.Time} [frequency="4n"]
|
2014-12-02 06:42:08 +00:00
|
|
|
* @param {number} [outputMin=0]
|
|
|
|
* @param {number} [outputMax=1]
|
2015-02-27 21:53:10 +00:00
|
|
|
* @example
|
|
|
|
* var lfo = new Tone.LFO("4n", 400, 4000);
|
|
|
|
* lfo.connect(filter.frequency);
|
2014-06-17 17:01:06 +00:00
|
|
|
*/
|
2014-11-30 02:54:29 +00:00
|
|
|
Tone.LFO = function(){
|
|
|
|
|
2014-12-08 16:02:47 +00:00
|
|
|
var options = this.optionsObject(arguments, ["frequency", "min", "max"], Tone.LFO.defaults);
|
2014-08-20 20:50:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* the oscillator
|
|
|
|
* @type {Tone.Oscillator}
|
|
|
|
*/
|
2015-02-02 17:49:13 +00:00
|
|
|
this.oscillator = new Tone.Oscillator({
|
|
|
|
"frequency" : options.frequency,
|
|
|
|
"type" : options.type,
|
2015-05-23 22:15:19 +00:00
|
|
|
"phase" : options.phase + 90
|
2015-02-02 17:49:13 +00:00
|
|
|
});
|
2014-08-20 20:50:27 +00:00
|
|
|
|
2014-08-25 13:57:36 +00:00
|
|
|
/**
|
2015-02-02 17:49:13 +00:00
|
|
|
* the lfo's frequency
|
2014-08-25 13:57:36 +00:00
|
|
|
* @type {Tone.Signal}
|
|
|
|
*/
|
|
|
|
this.frequency = this.oscillator.frequency;
|
|
|
|
|
2015-02-11 19:37:48 +00:00
|
|
|
/**
|
|
|
|
* The amplitude of the LFO, which controls the output range between
|
|
|
|
* the min and max output. For example if the min is -10 and the max
|
|
|
|
* is 10, setting the amplitude to 0.5 would make the LFO modulate
|
|
|
|
* between -5 and 5.
|
|
|
|
* @type {Tone.Signal}
|
|
|
|
*/
|
|
|
|
this.amplitude = this.oscillator.volume;
|
2015-05-24 13:45:15 +00:00
|
|
|
this.amplitude.units = Tone.Type.NormalRange;
|
2015-02-11 19:37:48 +00:00
|
|
|
this.amplitude.value = options.amplitude;
|
|
|
|
|
2014-06-22 02:56:51 +00:00
|
|
|
/**
|
2014-11-30 02:36:32 +00:00
|
|
|
* @type {Tone.AudioToGain}
|
2014-08-20 20:50:27 +00:00
|
|
|
* @private
|
|
|
|
*/
|
2014-11-30 02:36:32 +00:00
|
|
|
this._a2g = new Tone.AudioToGain();
|
2014-08-20 20:50:27 +00:00
|
|
|
|
2014-11-30 02:36:32 +00:00
|
|
|
/**
|
|
|
|
* @type {Tone.Scale}
|
|
|
|
* @private
|
2014-08-20 20:50:27 +00:00
|
|
|
*/
|
2014-11-30 02:54:29 +00:00
|
|
|
this._scaler = this.output = new Tone.Scale(options.min, options.max);
|
2014-04-05 00:24:19 +00:00
|
|
|
|
2015-05-23 22:15:19 +00:00
|
|
|
/**
|
|
|
|
* the units of the LFO (used for converting)
|
|
|
|
* @type {string}
|
|
|
|
* @private
|
|
|
|
*/
|
2015-05-24 13:45:15 +00:00
|
|
|
this._units = Tone.Type.Default;
|
2015-05-23 22:15:19 +00:00
|
|
|
|
2014-04-06 00:47:59 +00:00
|
|
|
//connect it up
|
2014-12-01 02:32:09 +00:00
|
|
|
this.oscillator.chain(this._a2g, this._scaler);
|
2015-04-05 19:13:15 +00:00
|
|
|
this._readOnly(["amplitude", "frequency", "oscillator"]);
|
2014-06-17 17:01:06 +00:00
|
|
|
};
|
2014-04-05 00:24:19 +00:00
|
|
|
|
2015-02-02 17:49:13 +00:00
|
|
|
Tone.extend(Tone.LFO, Tone.Oscillator);
|
2014-04-05 00:24:19 +00:00
|
|
|
|
2014-11-30 02:54:29 +00:00
|
|
|
/**
|
|
|
|
* the default parameters
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @const
|
|
|
|
* @type {Object}
|
|
|
|
*/
|
|
|
|
Tone.LFO.defaults = {
|
|
|
|
"type" : "sine",
|
|
|
|
"min" : 0,
|
|
|
|
"max" : 1,
|
2015-02-02 17:49:13 +00:00
|
|
|
"phase" : 0,
|
2014-11-30 02:54:29 +00:00
|
|
|
"frequency" : "4n",
|
2015-02-11 19:37:48 +00:00
|
|
|
"amplitude" : 1
|
2014-11-30 02:54:29 +00:00
|
|
|
};
|
|
|
|
|
2014-06-17 17:01:06 +00:00
|
|
|
/**
|
2015-02-27 21:53:10 +00:00
|
|
|
* Start the LFO.
|
2015-05-23 23:01:05 +00:00
|
|
|
* @param {Tone.Type.Time} [time=now] the time the LFO will start
|
2015-02-02 17:49:13 +00:00
|
|
|
* @returns {Tone.LFO} `this`
|
2014-06-17 17:01:06 +00:00
|
|
|
*/
|
2014-04-06 00:47:59 +00:00
|
|
|
Tone.LFO.prototype.start = function(time){
|
|
|
|
this.oscillator.start(time);
|
2015-02-02 17:49:13 +00:00
|
|
|
return this;
|
2014-06-17 17:01:06 +00:00
|
|
|
};
|
2014-04-05 00:24:19 +00:00
|
|
|
|
2014-06-17 17:01:06 +00:00
|
|
|
/**
|
2015-02-27 21:53:10 +00:00
|
|
|
* Stop the LFO.
|
2015-05-23 23:01:05 +00:00
|
|
|
* @param {Tone.Type.Time} [time=now] the time the LFO will stop
|
2015-02-02 17:49:13 +00:00
|
|
|
* @returns {Tone.LFO} `this`
|
2014-06-17 17:01:06 +00:00
|
|
|
*/
|
2014-04-06 00:47:59 +00:00
|
|
|
Tone.LFO.prototype.stop = function(time){
|
|
|
|
this.oscillator.stop(time);
|
2015-02-02 17:49:13 +00:00
|
|
|
return this;
|
2014-06-17 17:01:06 +00:00
|
|
|
};
|
2014-04-05 00:24:19 +00:00
|
|
|
|
2014-06-17 17:01:06 +00:00
|
|
|
/**
|
|
|
|
* Sync the start/stop/pause to the transport
|
|
|
|
* and the frequency to the bpm of the transport
|
2014-08-20 20:50:27 +00:00
|
|
|
*
|
2015-05-23 23:01:05 +00:00
|
|
|
* @param {Tone.Type.Time} [delay=0] the time to delay the start of the
|
2014-08-20 20:50:27 +00:00
|
|
|
* LFO from the start of the transport
|
2015-02-02 17:49:13 +00:00
|
|
|
* @returns {Tone.LFO} `this`
|
2015-02-27 21:53:10 +00:00
|
|
|
* @example
|
|
|
|
* lfo.frequency.value = "8n";
|
|
|
|
* lfo.sync();
|
|
|
|
* // the rate of the LFO will always be an eighth note,
|
|
|
|
* // even as the tempo changes
|
2014-06-17 17:01:06 +00:00
|
|
|
*/
|
2014-08-20 20:50:27 +00:00
|
|
|
Tone.LFO.prototype.sync = function(delay){
|
2014-12-19 21:40:06 +00:00
|
|
|
this.oscillator.sync(delay);
|
|
|
|
this.oscillator.syncFrequency();
|
2015-02-02 17:49:13 +00:00
|
|
|
return this;
|
2014-06-17 17:01:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* unsync the LFO from transport control
|
2015-02-02 17:49:13 +00:00
|
|
|
* @returns {Tone.LFO} `this`
|
2014-06-17 17:01:06 +00:00
|
|
|
*/
|
|
|
|
Tone.LFO.prototype.unsync = function(){
|
2014-12-19 21:40:06 +00:00
|
|
|
this.oscillator.unsync();
|
|
|
|
this.oscillator.unsyncFrequency();
|
2015-02-02 17:49:13 +00:00
|
|
|
return this;
|
2014-06-17 17:01:06 +00:00
|
|
|
};
|
2014-04-05 00:24:19 +00:00
|
|
|
|
2014-09-01 16:52:32 +00:00
|
|
|
/**
|
2015-02-27 21:53:10 +00:00
|
|
|
* The miniumum output of the LFO.
|
2015-02-06 22:49:04 +00:00
|
|
|
* @memberOf Tone.LFO#
|
|
|
|
* @type {number}
|
|
|
|
* @name min
|
2015-02-02 17:49:13 +00:00
|
|
|
*/
|
2015-02-06 22:49:04 +00:00
|
|
|
Object.defineProperty(Tone.LFO.prototype, "min", {
|
|
|
|
get : function(){
|
2015-05-23 22:15:19 +00:00
|
|
|
return this._toUnits(this._scaler.min);
|
2015-02-06 22:49:04 +00:00
|
|
|
},
|
|
|
|
set : function(min){
|
2015-05-23 22:15:19 +00:00
|
|
|
min = this._fromUnits(min);
|
2015-02-06 22:49:04 +00:00
|
|
|
this._scaler.min = min;
|
|
|
|
}
|
|
|
|
});
|
2014-04-06 00:47:59 +00:00
|
|
|
|
2014-06-17 17:01:06 +00:00
|
|
|
/**
|
2015-02-27 21:53:10 +00:00
|
|
|
* The maximum output of the LFO.
|
2015-02-06 22:49:04 +00:00
|
|
|
* @memberOf Tone.LFO#
|
|
|
|
* @type {number}
|
|
|
|
* @name max
|
2014-06-17 17:01:06 +00:00
|
|
|
*/
|
2015-02-06 22:49:04 +00:00
|
|
|
Object.defineProperty(Tone.LFO.prototype, "max", {
|
|
|
|
get : function(){
|
2015-05-23 22:15:19 +00:00
|
|
|
return this._toUnits(this._scaler.max);
|
2015-02-06 22:49:04 +00:00
|
|
|
},
|
|
|
|
set : function(max){
|
2015-05-23 22:15:19 +00:00
|
|
|
max = this._fromUnits(max);
|
2015-02-06 22:49:04 +00:00
|
|
|
this._scaler.max = max;
|
|
|
|
}
|
|
|
|
});
|
2014-04-06 00:47:59 +00:00
|
|
|
|
2014-08-25 13:57:36 +00:00
|
|
|
/**
|
2015-02-27 21:53:10 +00:00
|
|
|
* The type of the oscillator: sine, square, sawtooth, triangle.
|
2015-02-06 22:49:04 +00:00
|
|
|
* @memberOf Tone.LFO#
|
|
|
|
* @type {string}
|
|
|
|
* @name type
|
|
|
|
*/
|
|
|
|
Object.defineProperty(Tone.LFO.prototype, "type", {
|
|
|
|
get : function(){
|
|
|
|
return this.oscillator.type;
|
|
|
|
},
|
|
|
|
set : function(type){
|
|
|
|
this.oscillator.type = type;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-02-27 21:53:10 +00:00
|
|
|
/**
|
|
|
|
* The phase of the LFO
|
2015-02-06 22:49:04 +00:00
|
|
|
* @memberOf Tone.LFO#
|
2015-03-07 19:17:16 +00:00
|
|
|
* @type {number}
|
2015-02-06 22:49:04 +00:00
|
|
|
* @name phase
|
2014-08-25 13:57:36 +00:00
|
|
|
*/
|
2015-02-06 22:49:04 +00:00
|
|
|
Object.defineProperty(Tone.LFO.prototype, "phase", {
|
|
|
|
get : function(){
|
2015-05-23 22:15:19 +00:00
|
|
|
return this.oscillator.phase - 90;
|
2015-02-06 22:49:04 +00:00
|
|
|
},
|
|
|
|
set : function(phase){
|
2015-05-23 22:15:19 +00:00
|
|
|
this.oscillator.phase = phase + 90;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The output units of the LFO
|
|
|
|
* @memberOf Tone.LFO#
|
|
|
|
* @type {string}
|
|
|
|
* @name units
|
|
|
|
*/
|
|
|
|
Object.defineProperty(Tone.LFO.prototype, "units", {
|
|
|
|
get : function(){
|
|
|
|
return this._units;
|
|
|
|
},
|
|
|
|
set : function(val){
|
|
|
|
var currentMin = this.min;
|
|
|
|
var currentMax = this.max;
|
|
|
|
//convert the min and the max
|
|
|
|
this._units = val;
|
|
|
|
this.min = currentMin;
|
|
|
|
this.max = currentMax;
|
2015-02-06 22:49:04 +00:00
|
|
|
}
|
|
|
|
});
|
2014-08-25 13:57:36 +00:00
|
|
|
|
2014-06-17 17:01:06 +00:00
|
|
|
/**
|
2015-05-23 22:15:19 +00:00
|
|
|
* Connect the output of a ToneNode to an AudioParam, AudioNode, or Tone Node.
|
|
|
|
* will get the units from the connected node.
|
|
|
|
* @param {Tone | AudioParam | AudioNode} node
|
|
|
|
* @param {number} [outputNum=0] optionally which output to connect from
|
|
|
|
* @param {number} [inputNum=0] optionally which input to connect to
|
|
|
|
* @returns {Tone.LFO} `this`
|
|
|
|
*/
|
|
|
|
Tone.LFO.prototype.connect = function(node){
|
|
|
|
if (node.constructor === Tone.Signal){
|
|
|
|
this.convert = node.convert;
|
|
|
|
this.units = node.units;
|
|
|
|
}
|
|
|
|
Tone.Signal.prototype.connect.apply(this, arguments);
|
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* private method borroed from Signal converts
|
|
|
|
* units from their destination value
|
|
|
|
* @function
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
Tone.LFO.prototype._fromUnits = Tone.Signal.prototype._fromUnits;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* private method borroed from Signal converts
|
|
|
|
* units to their destination value
|
2014-08-23 17:49:50 +00:00
|
|
|
* @function
|
2015-05-23 22:15:19 +00:00
|
|
|
* @private
|
2014-06-17 17:01:06 +00:00
|
|
|
*/
|
2015-05-23 22:15:19 +00:00
|
|
|
Tone.LFO.prototype._toUnits = Tone.Signal.prototype._toUnits;
|
2014-04-11 23:17:01 +00:00
|
|
|
|
2014-06-20 05:23:35 +00:00
|
|
|
/**
|
|
|
|
* disconnect and dispose
|
2015-02-02 17:49:13 +00:00
|
|
|
* @returns {Tone.LFO} `this`
|
2014-06-20 05:23:35 +00:00
|
|
|
*/
|
|
|
|
Tone.LFO.prototype.dispose = function(){
|
2014-09-06 22:55:11 +00:00
|
|
|
Tone.prototype.dispose.call(this);
|
2015-04-05 19:13:15 +00:00
|
|
|
this._writable(["amplitude", "frequency", "oscillator"]);
|
2014-06-20 05:23:35 +00:00
|
|
|
this.oscillator.dispose();
|
2014-11-30 02:36:32 +00:00
|
|
|
this.oscillator = null;
|
2014-06-21 19:53:27 +00:00
|
|
|
this._scaler.dispose();
|
2014-09-06 22:55:11 +00:00
|
|
|
this._scaler = null;
|
2014-11-30 02:36:32 +00:00
|
|
|
this._a2g.dispose();
|
|
|
|
this._a2g = null;
|
2014-08-25 13:57:36 +00:00
|
|
|
this.frequency = null;
|
2015-02-12 04:08:53 +00:00
|
|
|
this.amplitude = null;
|
2015-02-02 17:49:13 +00:00
|
|
|
return this;
|
2014-06-20 05:23:35 +00:00
|
|
|
};
|
|
|
|
|
2014-04-06 00:47:59 +00:00
|
|
|
return Tone.LFO;
|
|
|
|
});
|