mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 05:38:34 +00:00
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
import { getDrawContext } from '@strudel/draw';
|
|
|
|
let latestOptions;
|
|
|
|
export async function initHydra(options = {}) {
|
|
// reset if options have changed since last init
|
|
if (latestOptions && JSON.stringify(latestOptions) !== JSON.stringify(options)) {
|
|
document.getElementById('hydra-canvas').remove();
|
|
}
|
|
latestOptions = options;
|
|
//load and init hydra
|
|
if (!document.getElementById('hydra-canvas')) {
|
|
const {
|
|
src = 'https://unpkg.com/hydra-synth',
|
|
feedStrudel = false,
|
|
contextType = 'webgl',
|
|
pixelRatio = 1,
|
|
pixelated = true,
|
|
...hydraConfig
|
|
} = {
|
|
detectAudio: false,
|
|
...options,
|
|
};
|
|
const { canvas } = getDrawContext('hydra-canvas', { contextType, pixelRatio, pixelated });
|
|
hydraConfig.canvas = canvas;
|
|
|
|
await import(/* @vite-ignore */ src);
|
|
const hydra = new Hydra(hydraConfig);
|
|
if (feedStrudel) {
|
|
const { canvas } = getDrawContext();
|
|
canvas.style.display = 'none';
|
|
hydra.synth.s0.init({ src: canvas });
|
|
}
|
|
}
|
|
}
|
|
|
|
export const H = (p) => () => p.queryArc(getTime(), getTime())[0].value;
|