mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 21:58:31 +00:00
23 lines
808 B
JavaScript
23 lines
808 B
JavaScript
import OSC from './node_modules/osc-js/lib/osc.js';
|
|
import { Pattern, isPattern } from '@strudel.cycles/core/strudel.mjs';
|
|
|
|
const comm = new OSC();
|
|
comm.open();
|
|
// TODO - get startTime from scheduler
|
|
const startTime = Date.now();
|
|
const latency = 0.1;
|
|
|
|
Pattern.prototype.osc = function () {
|
|
return this._withEvent((event) => {
|
|
const onTrigger = (time, event) => {
|
|
const keyvals = Object.entries(event.value).flat();
|
|
const ts = Math.floor(startTime + ((time + latency) * 1000));
|
|
const message = new OSC.Message('/dirt/play', ...keyvals);
|
|
const bundle = new OSC.Bundle([message], ts);
|
|
bundle.timestamp(ts); // workaround for https://github.com/adzialocha/osc-js/issues/60
|
|
comm.send(bundle);
|
|
};
|
|
return event.setContext({ ...event.context, onTrigger });
|
|
});
|
|
};
|