mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-14 21:03:55 +00:00
68 lines
1.7 KiB
TypeScript
68 lines
1.7 KiB
TypeScript
import { Panner } from "../component/channel/Panner.js";
|
|
import { optionsFromArguments } from "../core/util/Defaults.js";
|
|
import { LFOEffect, LFOEffectOptions } from "./LFOEffect.js";
|
|
import { Frequency } from "../core/type/Units.js";
|
|
|
|
export interface AutoPannerOptions extends LFOEffectOptions {
|
|
channelCount: number;
|
|
}
|
|
|
|
/**
|
|
* AutoPanner is a {@link Panner} with an {@link LFO} connected to the pan amount.
|
|
* [Related Reading](https://www.ableton.com/en/blog/autopan-chopper-effect-and-more-liveschool/).
|
|
*
|
|
* @example
|
|
* // create an autopanner and start it
|
|
* const autoPanner = new Tone.AutoPanner("4n").toDestination().start();
|
|
* // route an oscillator through the panner and start it
|
|
* const oscillator = new Tone.Oscillator().connect(autoPanner).start();
|
|
* @category Effect
|
|
*/
|
|
export class AutoPanner extends LFOEffect<AutoPannerOptions> {
|
|
readonly name: string = "AutoPanner";
|
|
|
|
/**
|
|
* The filter node
|
|
*/
|
|
readonly _panner: Panner;
|
|
|
|
/**
|
|
* @param frequency Rate of left-right oscillation.
|
|
*/
|
|
constructor(frequency?: Frequency);
|
|
constructor(options?: Partial<AutoPannerOptions>);
|
|
constructor() {
|
|
super(
|
|
optionsFromArguments(AutoPanner.getDefaults(), arguments, [
|
|
"frequency",
|
|
])
|
|
);
|
|
const options = optionsFromArguments(
|
|
AutoPanner.getDefaults(),
|
|
arguments,
|
|
["frequency"]
|
|
);
|
|
|
|
this._panner = new Panner({
|
|
context: this.context,
|
|
channelCount: options.channelCount,
|
|
});
|
|
// connections
|
|
this.connectEffect(this._panner);
|
|
this._lfo.connect(this._panner.pan);
|
|
this._lfo.min = -1;
|
|
this._lfo.max = 1;
|
|
}
|
|
|
|
static getDefaults(): AutoPannerOptions {
|
|
return Object.assign(LFOEffect.getDefaults(), {
|
|
channelCount: 1,
|
|
});
|
|
}
|
|
|
|
dispose(): this {
|
|
super.dispose();
|
|
this._panner.dispose();
|
|
return this;
|
|
}
|
|
}
|