Tone.js/Tone/component/LFO.js

308 lines
7.5 KiB
JavaScript
Raw Normal View History

2015-08-28 03:03:42 +00:00
define(["Tone/core/Tone", "Tone/source/Oscillator", "Tone/signal/Scale",
"Tone/signal/Signal", "Tone/signal/AudioToGain", "Tone/core/Type"],
2014-08-23 17:49:50 +00:00
function(Tone){
2014-04-05 00:24:19 +00:00
"use strict";
2014-06-17 17:01:06 +00:00
/**
* @class LFO stands for low frequency oscillator. Tone.LFO produces an output signal
2014-08-23 17:49:50 +00:00
* which can be attached to an AudioParam or Tone.Signal
2015-06-20 23:25:49 +00:00
* in order to modulate that parameter with an oscillator. The LFO can
* also be synced to the transport to start/stop and change when the tempo changes.
2014-06-17 17:01:06 +00:00
*
* @constructor
2015-02-02 17:49:13 +00:00
* @extends {Tone.Oscillator}
2015-06-20 23:25:49 +00:00
* @param {Frequency|Object} [frequency] The frequency of the oscillation. Typically, LFOs will be
* in the frequency range of 0.1 to 10 hertz.
2015-08-28 03:03:42 +00:00
* @param {number=} min The minimum output value of the LFO.
2015-06-20 23:25:49 +00:00
* @param {number=} max The maximum value of the LFO.
2015-02-27 21:53:10 +00:00
* @example
2015-06-20 23:25:49 +00:00
* 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
/**
2015-06-20 23:25:49 +00:00
* The oscillator.
2014-08-20 20:50:27 +00:00
* @type {Tone.Oscillator}
* @private
2014-08-20 20:50:27 +00:00
*/
2015-08-28 03:03:42 +00:00
this._oscillator = new Tone.Oscillator({
2015-02-02 17:49:13 +00:00
"frequency" : options.frequency,
"type" : options.type,
});
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
2015-06-13 23:50:39 +00:00
* @type {Frequency}
* @signal
2014-08-25 13:57:36 +00:00
*/
2015-08-28 03:03:42 +00:00
this.frequency = this._oscillator.frequency;
2014-08-25 13:57:36 +00:00
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.
2015-06-13 23:50:39 +00:00
* @type {Number}
* @signal
2015-02-11 19:37:48 +00:00
*/
2015-08-28 03:03:42 +00:00
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;
2015-08-28 03:03:42 +00:00
/**
* The signal which is output when the LFO is stopped
* @type {Tone.Signal}
* @private
*/
this._stoppedSignal = new Tone.Signal(0, Tone.Type.AudioRange);
/**
* The value that the LFO outputs when it's stopped
* @type {AudioRange}
* @private
*/
this._stoppedValue = 0;
/**
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
/**
* the units of the LFO (used for converting)
* @type {string}
* @private
*/
2015-05-24 13:45:15 +00:00
this._units = Tone.Type.Default;
2014-04-06 00:47:59 +00:00
//connect it up
2015-08-28 03:03:42 +00:00
this._oscillator.chain(this._a2g, this._scaler);
this._stoppedSignal.connect(this._a2g);
this._readOnly(["amplitude", "frequency"]);
this.phase = options.phase;
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-06-14 00:20:36 +00:00
* @param {Time} [time=now] the time the LFO will start
* @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){
2015-08-28 03:03:42 +00:00
time = this.toSeconds(time);
this._stoppedSignal.setValueAtTime(0, 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-06-14 00:20:36 +00:00
* @param {Time} [time=now] the time the LFO will stop
* @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){
2015-08-28 03:03:42 +00:00
time = this.toSeconds(time);
this._stoppedSignal.setValueAtTime(this._stoppedValue, 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-06-14 00:20:36 +00:00
* @param {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
* @returns {Tone.LFO} this
2015-02-27 21:53:10 +00:00
* @example
* lfo.frequency.value = "8n";
* lfo.sync();
2015-06-20 23:25:49 +00:00
* //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){
2015-08-28 03:03:42 +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
* @returns {Tone.LFO} this
2014-06-17 17:01:06 +00:00
*/
Tone.LFO.prototype.unsync = function(){
2015-08-28 03:03:42 +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.
* @memberOf Tone.LFO#
* @type {number}
* @name min
2015-02-02 17:49:13 +00:00
*/
Object.defineProperty(Tone.LFO.prototype, "min", {
get : function(){
return this._toUnits(this._scaler.min);
},
set : function(min){
min = this._fromUnits(min);
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.
* @memberOf Tone.LFO#
* @type {number}
* @name max
2014-06-17 17:01:06 +00:00
*/
Object.defineProperty(Tone.LFO.prototype, "max", {
get : function(){
return this._toUnits(this._scaler.max);
},
set : function(max){
max = this._fromUnits(max);
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.
* @memberOf Tone.LFO#
* @type {string}
* @name type
*/
Object.defineProperty(Tone.LFO.prototype, "type", {
get : function(){
2015-08-28 03:03:42 +00:00
return this._oscillator.type;
},
set : function(type){
2015-08-28 03:03:42 +00:00
this._oscillator.type = type;
this._stoppedValue = this._oscillator._getInitialValue();
this._stoppedSignal.value = this._stoppedValue;
}
});
2015-02-27 21:53:10 +00:00
/**
2015-06-20 23:25:49 +00:00
* The phase of the LFO.
* @memberOf Tone.LFO#
* @type {number}
* @name phase
2014-08-25 13:57:36 +00:00
*/
Object.defineProperty(Tone.LFO.prototype, "phase", {
get : function(){
2015-08-28 03:03:42 +00:00
return this._oscillator.phase;
},
set : function(phase){
2015-08-28 03:03:42 +00:00
this._oscillator.phase = phase;
this._stoppedValue = this._oscillator._getInitialValue();
this._stoppedSignal.value = this._stoppedValue;
}
});
/**
2015-06-20 23:25:49 +00:00
* The output units of the LFO.
* @memberOf Tone.LFO#
2015-06-07 16:09:08 +00:00
* @type {Tone.Type}
* @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;
}
});
2014-08-25 13:57:36 +00:00
2014-06-17 17:01:06 +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
2015-06-20 23:25:49 +00:00
* @private
*/
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
* @private
2014-06-17 17:01:06 +00:00
*/
Tone.LFO.prototype._toUnits = Tone.Signal.prototype._toUnits;
2014-06-20 05:23:35 +00:00
/**
* disconnect and dispose
* @returns {Tone.LFO} this
2014-06-20 05:23:35 +00:00
*/
Tone.LFO.prototype.dispose = function(){
Tone.prototype.dispose.call(this);
2015-08-28 03:03:42 +00:00
this._writable(["amplitude", "frequency"]);
this._oscillator.dispose();
this._oscillator = null;
this._stoppedSignal.dispose();
this._stoppedSignal = null;
2014-06-21 19:53:27 +00:00
this._scaler.dispose();
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;
});