2019-08-04 17:21:07 +00:00
|
|
|
import { connectSeries } from "../core/Connect";
|
|
|
|
import { Gain } from "../core/context/Gain";
|
2019-08-04 14:17:42 +00:00
|
|
|
import { Param } from "../core/context/Param";
|
2019-08-04 17:21:07 +00:00
|
|
|
import { optionsFromArguments } from "../core/util/Defaults";
|
2019-08-03 20:37:30 +00:00
|
|
|
import { Signal, SignalOptions } from "./Signal";
|
|
|
|
|
|
|
|
/**
|
2019-08-04 14:17:42 +00:00
|
|
|
* Add a signal and a number or two signals. When no value is
|
|
|
|
* passed into the constructor, Tone.Add will sum input and `addend`
|
|
|
|
* If a value is passed into the constructor, the it will be added to the input.
|
2019-08-03 20:37:30 +00:00
|
|
|
*
|
2019-08-04 14:17:42 +00:00
|
|
|
* @example
|
2019-10-25 20:54:33 +00:00
|
|
|
* import { Add, Signal } from "tone";
|
|
|
|
* const signal = new Signal(2);
|
|
|
|
* // add a signal and a scalar
|
|
|
|
* const add = new Add(2);
|
2019-08-03 20:37:30 +00:00
|
|
|
* signal.connect(add);
|
2019-10-25 20:54:33 +00:00
|
|
|
* // the output of add equals 4
|
2019-08-04 14:17:42 +00:00
|
|
|
* @example
|
2019-10-25 20:54:33 +00:00
|
|
|
* import { Add, Signal } from "tone";
|
|
|
|
* // Add two signal inputs
|
|
|
|
* const add = new Add();
|
|
|
|
* const sig0 = new Signal(3).connect(add);
|
|
|
|
* const sig1 = new Signal(4).connect(add.addend);
|
|
|
|
* // the output of add equals 7.
|
2019-09-16 14:15:23 +00:00
|
|
|
* @category Signal
|
2019-08-03 20:37:30 +00:00
|
|
|
*/
|
|
|
|
export class Add extends Signal {
|
|
|
|
|
|
|
|
override = false;
|
|
|
|
|
2019-09-04 23:18:44 +00:00
|
|
|
readonly name: string = "Add";
|
2019-08-03 20:37:30 +00:00
|
|
|
|
|
|
|
/**
|
2019-09-14 20:39:18 +00:00
|
|
|
* the summing node
|
2019-08-03 20:37:30 +00:00
|
|
|
*/
|
|
|
|
private _sum: Gain = new Gain({ context: this.context });
|
2019-08-04 14:17:42 +00:00
|
|
|
readonly input = this._sum;
|
|
|
|
readonly output = this._sum;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The value which is added to the input signal
|
|
|
|
*/
|
|
|
|
readonly addend: Param<number> = this._param;
|
2019-08-03 20:37:30 +00:00
|
|
|
|
2019-08-27 15:53:14 +00:00
|
|
|
/**
|
|
|
|
* @param value If no value is provided, Tone.Add will sum the first and second inputs.
|
|
|
|
*/
|
2019-08-03 20:37:30 +00:00
|
|
|
constructor(value?: number);
|
2019-08-27 15:53:14 +00:00
|
|
|
constructor(options?: Partial<SignalOptions<number>>);
|
2019-08-03 20:37:30 +00:00
|
|
|
constructor() {
|
|
|
|
super(Object.assign(optionsFromArguments(Add.getDefaults(), arguments, ["value"])));
|
|
|
|
|
|
|
|
connectSeries(this._constantSource, this._sum);
|
|
|
|
}
|
|
|
|
|
|
|
|
static getDefaults(): SignalOptions<number> {
|
|
|
|
return Object.assign(Signal.getDefaults(), {
|
|
|
|
value: 0,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
dispose(): this {
|
|
|
|
super.dispose();
|
2019-08-04 14:17:42 +00:00
|
|
|
this._sum.dispose();
|
2019-08-03 20:37:30 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|