Tone.js/Tone/component/LFO.js
Yotam Mann 71af6ca206 testing dispose methods for all classes.
a few classes were not being disposed correctly and leaving some
garbage attached.
2014-09-06 18:55:11 -04:00

162 lines
No EOL
3.8 KiB
JavaScript

define(["Tone/core/Tone", "Tone/source/Oscillator", "Tone/signal/Scale", "Tone/signal/Signal"],
function(Tone){
"use strict";
/**
* @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
* and change when the tempo changes.
*
* @constructor
* @extends {Tone}
* @param {number} rate
* @param {number=} outputMin
* @param {number=} outputMax
*/
Tone.LFO = function(rate, outputMin, outputMax){
/**
* the oscillator
* @type {Tone.Oscillator}
*/
this.oscillator = new Tone.Oscillator(this.defaultArg(rate, 1), "sine");
/**
* pointer to the oscillator's frequency
* @type {Tone.Signal}
*/
this.frequency = this.oscillator.frequency;
/**
* @type {Tone.Scale}
* @private
*/
this._scaler = new Tone.Scale(this.defaultArg(outputMin, 0), this.defaultArg(outputMax, 1));
/**
* alias for the output
* @type {Tone.Scale}
*/
this.output = this._scaler;
//connect it up
this.chain(this.oscillator, this.output);
};
Tone.extend(Tone.LFO);
/**
* start the LFO
* @param {Tone.Time=} [time=now] the time the LFO will start
*/
Tone.LFO.prototype.start = function(time){
this.oscillator.start(time);
};
/**
* stop the LFO
* @param {Tone.Time=} [time=now] the time the LFO will stop
*/
Tone.LFO.prototype.stop = function(time){
this.oscillator.stop(time);
};
/**
* Sync the start/stop/pause to the transport
* and the frequency to the bpm of the transport
*
* @param {Tone.Time=} [delay=0] the time to delay the start of the
* LFO from the start of the transport
*/
Tone.LFO.prototype.sync = function(delay){
Tone.Transport.syncSource(this.oscillator, delay);
Tone.Transport.syncSignal(this.oscillator.frequency);
};
/**
* unsync the LFO from transport control
*/
Tone.LFO.prototype.unsync = function(){
Tone.Transport.unsyncSource(this.oscillator);
Tone.Transport.unsyncSignal(this.oscillator.frequency);
};
/**
* set the frequency
* @param {number} rate
*/
Tone.LFO.prototype.setFrequency = function(rate){
this.oscillator.setFrequency(rate);
};
/**
* set the phase
* @param {number} phase
*/
Tone.LFO.prototype.setPhase = function(phase){
this.oscillator.setPhase(phase);
};
/**
* set the minimum output of the LFO
* @param {number} min
*/
Tone.LFO.prototype.setMin = function(min){
this._scaler.setOutputMin(min);
};
/**
* Set the maximum output of the LFO
* @param {number} min
*/
Tone.LFO.prototype.setMax = function(max){
this._scaler.setOutputMax(max);
};
/**
* Set the waveform of the LFO
* @param {string} type
*/
Tone.LFO.prototype.setType = function(type){
this.oscillator.setType(type);
};
/**
* set all of the parameters with an object
* @param {Object} params
*/
Tone.LFO.prototype.set = function(params){
if (!this.isUndef(params.frequency)) this.setFrequency(params.frequency);
if (!this.isUndef(params.type)) this.setType(params.type);
if (!this.isUndef(params.min)) this.setMin(params.min);
if (!this.isUndef(params.max)) this.setMax(params.max);
};
/**
* Override the connect method so that it 0's out the value
* if attached to an AudioParam or Tone.Signal.
*
* Borrowed from {@link Tone.Signal}
*
* @function
*/
Tone.LFO.prototype.connect = Tone.Signal.prototype.connect;
/**
* disconnect and dispose
*/
Tone.LFO.prototype.dispose = function(){
Tone.prototype.dispose.call(this);
this.oscillator.dispose();
this._scaler.dispose();
this._scaler = null;
this.oscillator = null;
this.frequency = null;
};
return Tone.LFO;
});