Tone.js/Tone/instrument/PolySynth.js

265 lines
7.6 KiB
JavaScript
Raw Normal View History

define(["Tone/core/Tone", "Tone/instrument/Synth", "Tone/source/Source"],
2014-08-25 17:26:26 +00:00
function(Tone){
"use strict";
2014-08-25 17:26:26 +00:00
/**
2015-06-14 04:32:17 +00:00
* @class Tone.PolySynth handles voice creation and allocation for any
2015-06-20 22:03:49 +00:00
* instruments passed in as the second paramter. PolySynth is
* not a synthesizer by itself, it merely manages voices of
* one of the other types of synths, allowing any of the
* monophonic synthesizers to be polyphonic.
2014-08-25 17:26:26 +00:00
*
* @constructor
2014-09-20 23:24:04 +00:00
* @extends {Tone.Instrument}
2015-06-20 22:03:49 +00:00
* @param {number|Object} [polyphony=4] The number of voices to create
* @param {function} [voice=Tone.Synth] The constructor of the voices
* uses Tone.Synth by default.
2015-02-28 04:24:51 +00:00
* @example
* //a polysynth composed of 6 Voices of Synth
* var synth = new Tone.PolySynth(6, Tone.Synth).toMaster();
2015-06-14 04:32:17 +00:00
* //set the attributes using the set interface
* synth.set("detune", -1200);
2015-06-16 02:36:20 +00:00
* //play a chord
* synth.triggerAttackRelease(["C4", "E4", "A4"], "4n");
2014-08-25 17:26:26 +00:00
*/
Tone.PolySynth = function(){
2014-09-20 23:24:04 +00:00
Tone.Instrument.call(this);
2014-08-25 17:26:26 +00:00
2015-02-20 06:00:32 +00:00
var options = this.optionsObject(arguments, ["polyphony", "voice"], Tone.PolySynth.defaults);
options = this.defaultArg(options, Tone.Instrument.defaults);
2014-08-25 17:26:26 +00:00
2016-03-03 18:01:11 +00:00
//max polyphony
options.polyphony = Math.min(Tone.PolySynth.MAX_POLYPHONY, options.polyphony);
2014-08-25 17:26:26 +00:00
/**
* the array of voices
* @type {Array}
*/
2014-12-08 16:03:20 +00:00
this.voices = new Array(options.polyphony);
2014-08-25 17:26:26 +00:00
/**
* The queue of voices with data about last trigger
* and the triggered note
2014-08-25 17:26:26 +00:00
* @private
* @type {Array}
*/
this._triggers = new Array(options.polyphony);
2014-08-25 17:26:26 +00:00
/**
* The detune in cents
* @type {Cents}
* @signal
*/
this.detune = new Tone.Signal(options.detune, Tone.Type.Cents);
this._readOnly("detune");
2014-08-25 17:26:26 +00:00
//create the voices
for (var i = 0; i < options.polyphony; i++){
2015-02-20 06:00:32 +00:00
var v = new options.voice(arguments[2], arguments[3]);
2014-12-08 16:03:20 +00:00
this.voices[i] = v;
2014-08-25 17:26:26 +00:00
v.connect(this.output);
if (v.hasOwnProperty("detune")){
this.detune.connect(v.detune);
}
this._triggers[i] = {
release : -1,
note : null,
voice : v
};
2014-08-25 17:26:26 +00:00
}
//set the volume initially
this.volume.value = options.volume;
2014-08-25 17:26:26 +00:00
};
2014-09-20 23:24:04 +00:00
Tone.extend(Tone.PolySynth, Tone.Instrument);
2014-08-25 17:26:26 +00:00
/**
* the defaults
* @const
* @static
* @type {Object}
*/
Tone.PolySynth.defaults = {
"polyphony" : 4,
"volume" : 0,
"detune" : 0,
"voice" : Tone.Synth
2014-08-25 17:26:26 +00:00
};
2015-02-20 06:00:32 +00:00
/**
2015-06-20 22:03:49 +00:00
* Trigger the attack portion of the note
* @param {Frequency|Array} notes The notes to play. Accepts a single
* Frequency or an array of frequencies.
* @param {Time} [time=now] The start time of the note.
* @param {number} [velocity=1] The velocity of the note.
* @returns {Tone.PolySynth} this
2015-06-20 22:03:49 +00:00
* @example
* //trigger a chord immediately with a velocity of 0.2
* poly.triggerAttack(["Ab3", "C4", "F5"], undefined, 0.2);
2014-08-25 17:26:26 +00:00
*/
2015-06-20 22:03:49 +00:00
Tone.PolySynth.prototype.triggerAttack = function(notes, time, velocity){
2015-06-26 05:21:59 +00:00
if (!Array.isArray(notes)){
notes = [notes];
}
time = this.toSeconds(time);
2015-06-26 05:21:59 +00:00
for (var i = 0; i < notes.length; i++){
var val = notes[i];
//trigger the oldest voice
var oldest = this._triggers[0];
var oldestIndex = 0;
for (var j = 1; j < this._triggers.length; j++){
if (this._triggers[j].release < oldest.release){
oldest = this._triggers[j];
oldestIndex = j;
}
}
oldest.release = Infinity;
oldest.note = JSON.stringify(val);
oldest.voice.triggerAttack(val, time, velocity);
2014-08-25 17:26:26 +00:00
}
2015-02-02 18:30:36 +00:00
return this;
2014-09-04 02:35:27 +00:00
};
/**
2015-06-20 22:03:49 +00:00
* Trigger the attack and release after the specified duration
2014-09-04 02:35:27 +00:00
*
2015-06-20 22:03:49 +00:00
* @param {Frequency|Array} notes The notes to play. Accepts a single
* Frequency or an array of frequencies.
2015-06-14 00:20:36 +00:00
* @param {Time} duration the duration of the note
* @param {Time} [time=now] if no time is given, defaults to now
2014-12-02 06:42:08 +00:00
* @param {number} [velocity=1] the velocity of the attack (0-1)
* @returns {Tone.PolySynth} this
2015-06-20 22:03:49 +00:00
* @example
* //trigger a chord for a duration of a half note
* poly.triggerAttackRelease(["Eb3", "G4", "C5"], "2n");
* @example
* //can pass in an array of durations as well
* poly.triggerAttackRelease(["Eb3", "G4", "C5"], ["2n", "4n", "4n"]);
2014-09-04 02:35:27 +00:00
*/
2015-06-20 22:03:49 +00:00
Tone.PolySynth.prototype.triggerAttackRelease = function(notes, duration, time, velocity){
2014-09-04 02:35:27 +00:00
time = this.toSeconds(time);
2015-06-26 05:21:59 +00:00
this.triggerAttack(notes, time, velocity);
if (this.isArray(duration) && this.isArray(notes)){
for (var i = 0; i < notes.length; i++){
var d = duration[Math.min(i, duration.length - 1)];
this.triggerRelease(notes[i], time + this.toSeconds(d));
}
} else {
this.triggerRelease(notes, time + this.toSeconds(duration));
}
2015-02-02 18:30:36 +00:00
return this;
2014-08-25 17:26:26 +00:00
};
/**
2015-06-20 22:03:49 +00:00
* Trigger the release of the note. Unlike monophonic instruments,
* a note (or array of notes) needs to be passed in as the first argument.
* @param {Frequency|Array} notes The notes to play. Accepts a single
* Frequency or an array of frequencies.
* @param {Time} [time=now] When the release will be triggered.
* @returns {Tone.PolySynth} this
2015-06-20 22:03:49 +00:00
* @example
* poly.triggerRelease(["Ab3", "C4", "F5"], "+2n");
2014-08-25 17:26:26 +00:00
*/
2015-06-20 22:03:49 +00:00
Tone.PolySynth.prototype.triggerRelease = function(notes, time){
if (!Array.isArray(notes)){
notes = [notes];
}
time = this.toSeconds(time);
2015-06-20 22:03:49 +00:00
for (var i = 0; i < notes.length; i++){
//get the voice
2015-06-20 22:03:49 +00:00
var stringified = JSON.stringify(notes[i]);
for (var v = 0; v < this._triggers.length; v++){
var desc = this._triggers[v];
if (desc.note === stringified && desc.release > time){
desc.voice.triggerRelease(time);
desc.release = time;
}
}
2014-08-25 17:26:26 +00:00
}
2015-02-02 18:30:36 +00:00
return this;
2014-08-25 17:26:26 +00:00
};
/**
2015-06-20 22:03:49 +00:00
* Set a member/attribute of the voices.
2015-04-24 23:34:26 +00:00
* @param {Object|string} params
* @param {number=} value
2015-06-14 00:20:36 +00:00
* @param {Time=} rampTime
* @returns {Tone.PolySynth} this
2015-06-20 22:03:49 +00:00
* @example
* poly.set({
* "filter" : {
* "type" : "highpass"
* },
* "envelope" : {
* "attack" : 0.25
* }
* });
2014-08-25 17:26:26 +00:00
*/
2015-04-24 23:34:26 +00:00
Tone.PolySynth.prototype.set = function(params, value, rampTime){
2014-12-08 16:03:20 +00:00
for (var i = 0; i < this.voices.length; i++){
2015-04-24 23:34:26 +00:00
this.voices[i].set(params, value, rampTime);
2014-08-25 17:26:26 +00:00
}
2015-02-02 18:30:36 +00:00
return this;
2014-08-25 17:26:26 +00:00
};
2015-02-20 06:00:32 +00:00
/**
2015-06-20 22:03:49 +00:00
* Get the synth's attributes. Given no arguments get
* will return all available object properties and their corresponding
* values. Pass in a single attribute to retrieve or an array
* of attributes. The attribute strings can also include a "."
* to access deeper properties.
2015-02-20 06:00:32 +00:00
* @param {Array=} params the parameters to get, otherwise will return
* all available.
*/
Tone.PolySynth.prototype.get = function(params){
return this.voices[0].get(params);
};
/**
* Trigger the release portion of all the currently active voices.
* @param {Time} [time=now] When the notes should be released.
* @return {Tone.PolySynth} this
*/
Tone.PolySynth.prototype.releaseAll = function(time){
time = this.toSeconds(time);
for (var i = 0; i < this._triggers.length; i++){
var desc = this._triggers[i];
if (desc.release > time){
desc.release = time;
desc.voice.triggerRelease(time);
}
}
return this;
};
2014-08-25 17:26:26 +00:00
/**
2015-06-20 22:03:49 +00:00
* Clean up.
* @returns {Tone.PolySynth} this
2014-08-25 17:26:26 +00:00
*/
Tone.PolySynth.prototype.dispose = function(){
2014-09-20 23:24:04 +00:00
Tone.Instrument.prototype.dispose.call(this);
2014-12-08 16:03:20 +00:00
for (var i = 0; i < this.voices.length; i++){
this.voices[i].dispose();
this.voices[i] = null;
2014-08-25 17:26:26 +00:00
}
this._writable("detune");
this.detune.dispose();
this.detune = null;
2014-12-08 16:03:20 +00:00
this.voices = null;
this._triggers = null;
2015-02-02 18:30:36 +00:00
return this;
2014-08-25 17:26:26 +00:00
};
2016-03-03 18:01:11 +00:00
/**
* The maximum number of notes that can be allocated
* to a polysynth.
* @type {Number}
* @static
*/
Tone.PolySynth.MAX_POLYPHONY = 20;
2014-08-25 17:26:26 +00:00
return Tone.PolySynth;
});