Tone.js/Tone/signal/Zero.ts
Yotam Mann 56db8b3a7a simplifying _internalChannels
channelCount/Mode/Interpretation check the input/output nodes, which removes the need for many classes to have _internalChannels
2019-08-03 12:00:14 -04:00

43 lines
1.1 KiB
TypeScript

import { Gain } from "../core/context/Gain";
import { connect, disconnect, ToneAudioNodeOptions } from "../core/context/ToneAudioNode";
import { optionsFromArguments } from "../core/util/Defaults";
import { SignalOperator } from "./SignalOperator";
/**
* Tone.Zero outputs 0's at audio-rate. The reason this has to be
* it's own class is that many browsers optimize out Tone.Signal
* with a value of 0 and will not process nodes further down the graph.
*/
export class Zero extends SignalOperator<ToneAudioNodeOptions> {
readonly name = "Zero";
/**
* The gain node which connects the constant source to the output
*/
private _gain = new Gain({ context : this.context });
/**
* Only outputs 0
*/
output = this._gain;
/**
* no input node
*/
input = undefined;
constructor() {
super(Object.assign(optionsFromArguments(Zero.getDefaults(), arguments)));
connect(this.context.getConstant(0), this._gain);
}
/**
* clean up
*/
dispose(): this {
super.dispose();
disconnect(this.context.getConstant(0), this._gain);
return this;
}
}