mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-28 12:33:12 +00:00
f17249691d
now in the form Tone.Something instead of using `import { Something } from "tone"`. It makes the example runner on the docs page work much faster
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import { ToneAudioNode, ToneAudioNodeOptions } from "../../core/context/ToneAudioNode";
|
|
import { optionsFromArguments } from "../../core/util/Defaults";
|
|
|
|
interface SplitOptions extends ToneAudioNodeOptions {
|
|
channels: number;
|
|
}
|
|
|
|
/**
|
|
* Split splits an incoming signal into the number of given channels.
|
|
*
|
|
* @example
|
|
* const split = new Tone.Split();
|
|
* // stereoSignal.connect(split);
|
|
* @category Component
|
|
*/
|
|
export class Split extends ToneAudioNode<SplitOptions> {
|
|
readonly name: string = "Split";
|
|
|
|
/**
|
|
* The splitting node
|
|
*/
|
|
private _splitter: ChannelSplitterNode;
|
|
|
|
readonly input: ChannelSplitterNode;
|
|
readonly output: ChannelSplitterNode;
|
|
|
|
/**
|
|
* @param channels The number of channels to merge.
|
|
*/
|
|
constructor(channels?: number);
|
|
constructor(options?: Partial<SplitOptions>);
|
|
constructor() {
|
|
super(optionsFromArguments(Split.getDefaults(), arguments, ["channels"]));
|
|
const options = optionsFromArguments(Split.getDefaults(), arguments, ["channels"]);
|
|
|
|
this._splitter = this.input = this.output = this.context.createChannelSplitter(options.channels);
|
|
this._internalChannels = [this._splitter];
|
|
}
|
|
|
|
static getDefaults(): SplitOptions {
|
|
return Object.assign(ToneAudioNode.getDefaults(), {
|
|
channels: 2,
|
|
});
|
|
}
|
|
|
|
dispose(): this {
|
|
super.dispose();
|
|
this._splitter.disconnect();
|
|
return this;
|
|
}
|
|
}
|