Tone.js/Tone/source/oscillator/OscillatorNode.ts
2019-08-08 16:32:22 -04:00

127 lines
3.2 KiB
TypeScript

import { connect } from "../../core/Connect";
import { Param } from "../../core/context/Param";
import { Cents, Frequency, Seconds, Time } from "../../core/type/Units";
import { optionsFromArguments } from "../../core/util/Defaults";
import { OneShotSource, OneShotSourceOptions } from "../OneShotSource";
interface ToneOscillatorNodeOptions extends OneShotSourceOptions {
frequency: Frequency;
detune: Cents;
type: OscillatorType;
}
/**
* Wrapper around the native fire-and-forget OscillatorNode.
* Adds the ability to reschedule the stop method.
* ***[Tone.Oscillator](Oscillator) is better for most use-cases***
* @extends {Tone.AudioNode}
* @param {AudioBuffer|Tone.Buffer} buffer The buffer to play
* @param {Function} onload The callback to invoke when the
* buffer is done playing.
*/
export class ToneOscillatorNode extends OneShotSource<ToneOscillatorNodeOptions> {
readonly name = "ToneOscillatorNode";
/**
* The oscillator
*/
private _oscillator = this.context.createOscillator();
protected _internalChannels = [this._oscillator];
/**
* The frequency of the oscillator
*/
readonly frequency: Param<Frequency>;
/**
* The detune of the oscillator
*/
readonly detune: Param<Cents>;
constructor(options?: Partial<ToneOscillatorNodeOptions>);
constructor(
frequency: Frequency,
type: OscillatorType,
);
constructor() {
super(optionsFromArguments(ToneOscillatorNode.getDefaults(), arguments, ["frequency", "type"]));
const options = optionsFromArguments(ToneOscillatorNode.getDefaults(), arguments, ["frequency", "type"]);
connect(this._oscillator, this._gainNode);
this.type = options.type;
this.frequency = new Param({
context: this.context,
param : this._oscillator.frequency,
units : "frequency",
value : options.frequency,
});
this.detune = new Param({
context: this.context,
param : this._oscillator.detune,
units : "cents",
value : options.detune,
});
}
static getDefaults(): ToneOscillatorNodeOptions {
return Object.assign(OneShotSource.getDefaults(), {
detune: 0,
frequency: 440,
type: "sine" as OscillatorType,
});
}
/**
* Start the oscillator node at the given time
* @param time When to start the oscillator
*/
start(time?: Time): this {
this.log("start", time);
const computedTime = this.toSeconds(time);
this._startGain(computedTime);
this._oscillator.start(computedTime);
return this;
}
protected _stopSource(time?: Seconds): void {
this._oscillator.stop(time);
}
/**
* Sets an arbitrary custom periodic waveform given a PeriodicWave.
* @param periodicWave PeriodicWave should be created with context.createPeriodicWave
*/
setPeriodicWave(periodicWave: PeriodicWave): this {
this._oscillator.setPeriodicWave(periodicWave);
return this;
}
/**
* The oscillator type. Either 'sine', 'sawtooth', 'square', or 'triangle'
*/
get type(): OscillatorType {
return this._oscillator.type;
}
set type(type: OscillatorType) {
this._oscillator.type = type;
}
/**
* Clean up.
*/
dispose(): this {
super.dispose();
if (this.state === "started") {
this.stop();
}
this._oscillator.disconnect();
this.frequency.dispose();
this.detune.dispose();
return this;
}
}