Tone.js/Tone/signal/Min.js

68 lines
1.5 KiB
JavaScript
Raw Normal View History

define(["Tone/core/Tone", "Tone/signal/LessThan", "Tone/signal/IfThenElse", "Tone/signal/Signal"], function(Tone){
"use strict";
/**
2015-02-27 18:40:35 +00:00
* @class Outputs the lesser of two signals. If a number is given
2014-10-23 01:23:47 +00:00
* in the constructor, it will use a signal and a number.
*
* @constructor
2015-02-23 05:30:53 +00:00
* @extends {Tone.Signal}
* @param {number} min the minimum to compare to the incoming signal
2015-02-27 18:40:35 +00:00
* @example
* var min = new Tone.Min(2);
* var sig = new Tone.Signal(3).connect(min);
* //min outputs 2
* sig.value = 1;
* //min outputs 1
*/
Tone.Min = function(min){
Tone.call(this, 2, 0);
2014-10-23 01:23:47 +00:00
this.input[0] = this.context.createGain();
/**
* @type {Tone.Select}
* @private
*/
2014-10-23 01:23:47 +00:00
this._ifThenElse = this.output = new Tone.IfThenElse();
/**
2014-10-23 01:23:47 +00:00
* @type {Tone.Select}
* @private
*/
2014-10-23 01:23:47 +00:00
this._lt = new Tone.LessThan();
/**
2014-10-23 01:23:47 +00:00
* the min signal
* @type {Tone.Signal}
* @private
*/
2015-02-23 05:30:53 +00:00
this._value = this.input[1] = new Tone.Signal(min);
//connections
2014-12-01 02:32:09 +00:00
this.input[0].chain(this._lt, this._ifThenElse.if);
2014-10-23 01:23:47 +00:00
this.input[0].connect(this._ifThenElse.then);
2015-02-23 05:30:53 +00:00
this._value.connect(this._ifThenElse.else);
this._value.connect(this._lt, 0, 1);
};
2015-02-23 05:30:53 +00:00
Tone.extend(Tone.Min, Tone.Signal);
/**
* clean up
2015-02-02 03:56:33 +00:00
* @returns {Tone.Min} `this`
*/
Tone.Min.prototype.dispose = function(){
Tone.prototype.dispose.call(this);
2015-02-23 05:30:53 +00:00
this._value.dispose();
this._ifThenElse.dispose();
this._lt.dispose();
2015-02-23 05:30:53 +00:00
this._value = null;
this._ifThenElse = null;
this._lt = null;
2015-02-02 03:56:33 +00:00
return this;
};
return Tone.Min;
});