mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-14 07:08:30 +00:00
35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
import {draw, queryEvents, getDrawContext} from "./draw.js";
|
|
import {Pattern} from "../_snowpack/link/strudel.js";
|
|
import * as Tone from "../_snowpack/pkg/tone.js";
|
|
Pattern.prototype.pianoroll = function() {
|
|
const ctx = getDrawContext();
|
|
const w = window.innerWidth;
|
|
const h = window.innerHeight;
|
|
const s = 10;
|
|
const maxMidi = 90;
|
|
const height = h / maxMidi;
|
|
let events;
|
|
queryEvents(this, (_events) => events = _events, s);
|
|
const clear = () => ctx.clearRect(0, 0, w, h);
|
|
const drawEvents = (events2) => {
|
|
events2.forEach((event) => {
|
|
const t = Tone.getTransport().seconds;
|
|
const isActive = event.whole.begin <= t && event.whole.end >= t;
|
|
ctx.fillStyle = isActive ? "#FFCA28" : "#88ABF8";
|
|
const x = Math.round(event.whole.begin / s * w);
|
|
const width = Math.round((event.whole.end - event.whole.begin) / s * w);
|
|
const y = Math.round(h - Number(event.value) / maxMidi * h);
|
|
const offset = t / s * w;
|
|
const margin = 0;
|
|
ctx.fillRect(x - offset + margin, y, width, height);
|
|
});
|
|
};
|
|
draw((t) => {
|
|
clear();
|
|
ctx.fillStyle = "#2A3236";
|
|
ctx.fillRect(0, 0, w, h);
|
|
drawEvents(events);
|
|
});
|
|
return this;
|
|
};
|