mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-15 16:17:58 +00:00
68 lines
1.6 KiB
TypeScript
68 lines
1.6 KiB
TypeScript
import { Gain } from "../core/context/Gain";
|
|
import { Param } from "../core/context/Param";
|
|
import { NormalRange } from "../core/type/Units";
|
|
import { readOnly } from "../core/util/Interface";
|
|
import { Effect, EffectOptions } from "./Effect";
|
|
|
|
export interface FeedbackEffectOptions extends EffectOptions {
|
|
/**
|
|
* The feedback from the output back to the input
|
|
* ```
|
|
* +---<--------<---+
|
|
* | |
|
|
* | +----------+ |
|
|
* +--> feedback +>-+
|
|
* +----------+
|
|
* ```
|
|
*/
|
|
feedback: NormalRange;
|
|
}
|
|
|
|
/**
|
|
* FeedbackEffect provides a loop between an audio source and its own output.
|
|
* This is a base-class for feedback effects.
|
|
*/
|
|
export abstract class FeedbackEffect<Options extends FeedbackEffectOptions> extends Effect<Options> {
|
|
|
|
readonly name: string = "FeedbackEffect";
|
|
|
|
/**
|
|
* the gain which controls the feedback
|
|
*/
|
|
private _feedbackGain: Gain<NormalRange>;
|
|
|
|
/**
|
|
* The amount of signal which is fed back into the effect input.
|
|
*/
|
|
feedback: Param<NormalRange>;
|
|
|
|
constructor(options: FeedbackEffectOptions) {
|
|
|
|
super(options);
|
|
|
|
this._feedbackGain = new Gain({
|
|
context: this.context,
|
|
gain: options.feedback,
|
|
units: "normalRange",
|
|
});
|
|
|
|
this.feedback = this._feedbackGain.gain;
|
|
readOnly(this, "feedback");
|
|
|
|
// the feedback loop
|
|
this.effectReturn.chain(this._feedbackGain, this.effectSend);
|
|
}
|
|
|
|
static getDefaults(): FeedbackEffectOptions {
|
|
return Object.assign(Effect.getDefaults(), {
|
|
feedback: 0.125,
|
|
});
|
|
}
|
|
|
|
dispose(): this {
|
|
super.dispose();
|
|
this._feedbackGain.dispose();
|
|
this.feedback.dispose();
|
|
return this;
|
|
}
|
|
}
|