Tone.js/test/helper/Offline.ts

50 lines
1.6 KiB
TypeScript
Raw Normal View History

2019-05-23 18:00:49 +00:00
import { TestAudioBuffer } from "@tonejs/plot";
import { OfflineContext } from "Tone/core/context/OfflineContext";
2019-06-24 17:41:38 +00:00
import { getContext, setContext } from "Tone/core/Global";
import { Seconds } from "Tone/core/type/Units";
import { isArray, isFunction } from "Tone/core/util/TypeCheck";
2019-05-23 18:00:49 +00:00
type ReturnFunction = (time: Seconds) => void;
2019-04-12 14:37:47 +00:00
export async function Offline(
2019-09-27 21:51:34 +00:00
callback: (context: OfflineContext) => void | ReturnFunction | ReturnFunction[] | Promise<void | ReturnFunction> | void,
2019-06-18 01:49:38 +00:00
duration = 0.1, channels = 1, sampleRate: number = 44100,
2019-06-24 17:41:38 +00:00
): Promise<TestAudioBuffer> {
const originalContext = getContext();
2019-06-18 01:49:38 +00:00
const offline = new OfflineContext(channels, duration + 1 / sampleRate, sampleRate);
setContext(offline);
2019-05-23 18:00:49 +00:00
let retFunction = callback(offline);
if (retFunction instanceof Promise) {
retFunction = await retFunction;
}
if (isFunction(retFunction)) {
const fn = retFunction;
offline.on("tick", () => fn(offline.now()));
} else if (isArray(retFunction)) {
// each element in the array is a timing callback
retFunction.forEach(fn => {
offline.on("tick", () => fn(offline.now()));
});
2019-05-23 18:00:49 +00:00
}
setContext(originalContext);
2019-05-23 18:00:49 +00:00
const buffer = await offline.render();
return new TestAudioBuffer(buffer.get() as AudioBuffer);
2019-05-23 18:00:49 +00:00
}
export function whenBetween(value: Seconds, start: Seconds, stop: Seconds, callback: () => void): void {
if (value >= start && value < stop) {
callback();
}
}
// invoked only once
export function atTime(when: Seconds, callback: (time: Seconds) => void): (time: Seconds) => void {
let wasInvoked = false;
return (time) => {
if (time >= when && !wasInvoked) {
callback(time);
wasInvoked = true;
}
};
2019-04-12 14:37:47 +00:00
}