mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-29 04:53:10 +00:00
4364f2f843
the count is inferred by checking the input or output node
63 lines
1.7 KiB
TypeScript
63 lines
1.7 KiB
TypeScript
import { ToneAudioNode, ToneAudioNodeOptions } from "../../core/context/ToneAudioNode";
|
|
import { Positive } from "../../core/type/Units";
|
|
import { optionsFromArguments } from "../../core/util/Defaults";
|
|
|
|
interface MergeOptions extends ToneAudioNodeOptions {
|
|
channels: Positive;
|
|
}
|
|
|
|
/**
|
|
* Merge brings multiple mono input channels into a single multichannel output channel.
|
|
*
|
|
* @param channels The number of channels to merge.
|
|
* @example
|
|
* var merge = new Merge().toDestination();
|
|
* //routing a sine tone in the left channel
|
|
* //and noise in the right channel
|
|
* var osc = new Tone.Oscillator().connect(merge.left);
|
|
* var noise = new Tone.Noise().connect(merge.right);
|
|
* //starting our oscillators
|
|
* noise.start();
|
|
* osc.start();
|
|
*/
|
|
export class Merge extends ToneAudioNode<MergeOptions> {
|
|
|
|
readonly name = "Merge";
|
|
|
|
/**
|
|
* The merger node for the two channels.
|
|
*/
|
|
private _merger: ChannelMergerNode;
|
|
|
|
/**
|
|
* The output is the input channels combined into a sigle (multichannel) output
|
|
*/
|
|
readonly output: ChannelMergerNode;
|
|
|
|
/**
|
|
* Multiple input connections combine into a single output.
|
|
*/
|
|
readonly input: ChannelMergerNode;
|
|
|
|
constructor(channels?: Positive);
|
|
// tslint:disable-next-line: unified-signatures
|
|
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;
|
|
}
|
|
}
|