Tone.js/Tone/core/Global.ts
Yotam Mann f17249691d feat: updating all examples
now in the form Tone.Something instead of using `import { Something } from "tone"`. It makes the example runner on the docs page work much faster
2020-04-16 22:24:18 -04:00

73 lines
2.1 KiB
TypeScript

import { version } from "../version";
import { AnyAudioContext, hasAudioContext, theWindow } from "./context/AudioContext";
import { Context } from "./context/Context";
import { DummyContext } from "./context/DummyContext";
import { BaseContext } from "./context/BaseContext";
import { OfflineContext } from "./context/OfflineContext";
import { isAudioContext, isOfflineAudioContext } from "./util/AdvancedTypeCheck";
/**
* This dummy context is used to avoid throwing immediate errors when importing in Node.js
*/
const dummyContext = new DummyContext();
/**
* The global audio context which is getable and assignable through
* getContext and setContext
*/
let globalContext: BaseContext = dummyContext;
/**
* Returns the default system-wide [[Context]]
* @category Core
*/
export function getContext(): BaseContext {
if (globalContext === dummyContext && hasAudioContext) {
setContext(new Context());
}
return globalContext;
}
/**
* Set the default audio context
* @category Core
*/
export function setContext(context: BaseContext | AnyAudioContext): void {
if (isAudioContext(context)) {
globalContext = new Context(context);
} else if (isOfflineAudioContext(context)) {
globalContext = new OfflineContext(context);
} else {
globalContext = context;
}
}
/**
* Most browsers will not play _any_ audio until a user
* clicks something (like a play button). Invoke this method
* on a click or keypress event handler to start the audio context.
* More about the Autoplay policy
* [here](https://developers.google.com/web/updates/2017/09/autoplay-policy-changes#webaudio)
* @example
* document.querySelector("button").addEventListener("click", async () => {
* await Tone.start();
* console.log("context started");
* });
* @category Core
*/
export function start(): Promise<void> {
return globalContext.resume();
}
/**
* Log Tone.js + version in the console.
*/
if (theWindow && !theWindow.TONE_SILENCE_LOGGING) {
let prefix = "v";
if (version === "dev") {
prefix = "";
}
const printString = ` * Tone.js ${prefix}${version} * `;
// eslint-disable-next-line no-console
console.log(`%c${printString}`, "background: #000; color: #fff");
}