2019-07-25 17:32:34 +00:00
|
|
|
import { ToneAudioNode, ToneAudioNodeOptions } from "../../core/context/ToneAudioNode";
|
2019-07-30 19:35:27 +00:00
|
|
|
import { Positive } from "../../core/type/Units";
|
2019-07-25 17:32:34 +00:00
|
|
|
import { optionsFromArguments } from "../../core/util/Defaults";
|
2019-07-25 14:45:27 +00:00
|
|
|
|
|
|
|
interface MergeOptions extends ToneAudioNodeOptions {
|
|
|
|
channels: Positive;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Merge brings multiple mono input channels into a single multichannel output channel.
|
|
|
|
*
|
|
|
|
* @example
|
2020-04-17 02:24:18 +00:00
|
|
|
* const merge = new Tone.Merge().toDestination();
|
2019-10-23 03:04:52 +00:00
|
|
|
* // routing a sine tone in the left channel
|
2020-04-17 02:24:18 +00:00
|
|
|
* const osc = new Tone.Oscillator().connect(merge, 0, 0).start();
|
2019-10-23 03:04:52 +00:00
|
|
|
* // and noise in the right channel
|
2020-04-17 02:24:18 +00:00
|
|
|
* const noise = new Tone.Noise().connect(merge, 0, 1).start();;
|
2019-09-16 14:15:23 +00:00
|
|
|
* @category Component
|
2019-07-25 14:45:27 +00:00
|
|
|
*/
|
|
|
|
export class Merge extends ToneAudioNode<MergeOptions> {
|
|
|
|
|
2019-09-04 23:18:44 +00:00
|
|
|
readonly name: string = "Merge";
|
2019-07-25 14:45:27 +00:00
|
|
|
|
|
|
|
/**
|
2019-11-04 23:59:46 +00:00
|
|
|
* The merger node for the channels.
|
2019-07-25 14:45:27 +00:00
|
|
|
*/
|
|
|
|
private _merger: ChannelMergerNode;
|
|
|
|
|
|
|
|
/**
|
2019-11-04 23:59:46 +00:00
|
|
|
* The output is the input channels combined into a single (multichannel) output
|
2019-07-25 14:45:27 +00:00
|
|
|
*/
|
2019-08-03 01:47:57 +00:00
|
|
|
readonly output: ChannelMergerNode;
|
2019-07-25 14:45:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Multiple input connections combine into a single output.
|
|
|
|
*/
|
2019-08-03 01:47:57 +00:00
|
|
|
readonly input: ChannelMergerNode;
|
2019-07-25 14:45:27 +00:00
|
|
|
|
2019-08-27 17:02:31 +00:00
|
|
|
/**
|
|
|
|
* @param channels The number of channels to merge.
|
|
|
|
*/
|
2019-07-25 14:45:27 +00:00
|
|
|
constructor(channels?: Positive);
|
|
|
|
constructor(options?: Partial<MergeOptions>);
|
|
|
|
constructor() {
|
|
|
|
super(optionsFromArguments(Merge.getDefaults(), arguments, ["channels"]));
|
|
|
|
const options = optionsFromArguments(Merge.getDefaults(), arguments, ["channels"]);
|
|
|
|
|
|
|
|
this._merger = this.output = this.input = this.context.createChannelMerger(options.channels);
|
|
|
|
}
|
|
|
|
|
|
|
|
static getDefaults(): MergeOptions {
|
|
|
|
return Object.assign(ToneAudioNode.getDefaults(), {
|
|
|
|
channels: 2,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
dispose(): this {
|
|
|
|
super.dispose();
|
|
|
|
this._merger.disconnect();
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|