mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 21:58:31 +00:00
70 lines
2.0 KiB
JavaScript
70 lines
2.0 KiB
JavaScript
// moved from sandbox: https://codesandbox.io/s/vanilla-codemirror-strudel-2wb7yw?file=/index.html:114-186
|
|
|
|
import { StrudelMirror } from '@strudel/codemirror';
|
|
import { initStrudel } from './strudel';
|
|
import { funk42 } from './tunes';
|
|
import { pianoroll, getDrawOptions, Drawer } from '@strudel.cycles/core';
|
|
import './style.css';
|
|
import { initAudioOnFirstClick } from '@strudel.cycles/webaudio';
|
|
|
|
const initAudio = initAudioOnFirstClick();
|
|
|
|
const editor = new StrudelMirror({
|
|
root: document.getElementById('editor'),
|
|
initialCode: funk42,
|
|
onEvaluate,
|
|
onStop,
|
|
});
|
|
|
|
async function drawFirstFrame(editor, repl) {
|
|
const { evaluate } = repl;
|
|
const pattern = await evaluate(editor.code, false);
|
|
const initialHaps = pattern.queryArc(0, drawTime[1]);
|
|
drawPianoroll(initialHaps, 0);
|
|
return repl;
|
|
}
|
|
|
|
const repl = initStrudel().then(async (repl) => {
|
|
await drawFirstFrame(editor, repl);
|
|
return repl;
|
|
});
|
|
|
|
const canvas = document.getElementById('roll');
|
|
canvas.width = canvas.width * 2;
|
|
canvas.height = canvas.height * 2;
|
|
|
|
async function onEvaluate() {
|
|
const { evaluate, scheduler } = await repl;
|
|
await initAudio;
|
|
editor.flash();
|
|
if (!scheduler.started) {
|
|
scheduler.stop();
|
|
await evaluate(editor.code);
|
|
drawer.start(scheduler);
|
|
} else {
|
|
await evaluate(editor.code);
|
|
drawer.invalidate(); // this is a bit mystic
|
|
}
|
|
}
|
|
|
|
async function onStop() {
|
|
const { scheduler } = await repl;
|
|
scheduler.stop();
|
|
drawer.stop();
|
|
}
|
|
|
|
const drawTime = [-2, 2];
|
|
function drawPianoroll(haps, time) {
|
|
pianoroll({ ctx, time, haps, ...getDrawOptions(drawTime, { fold: 0 }) });
|
|
}
|
|
|
|
const ctx = canvas.getContext('2d');
|
|
let drawer = new Drawer((haps, time) => {
|
|
const currentFrame = haps.filter((hap) => time >= hap.whole.begin && time <= hap.whole.end);
|
|
editor.highlight(currentFrame);
|
|
drawPianoroll(haps, time);
|
|
}, drawTime);
|
|
|
|
document.getElementById('play').addEventListener('click', () => onEvaluate());
|
|
document.getElementById('stop').addEventListener('click', async () => onStop());
|