mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-25 04:28:30 +00:00
build working properly
This commit is contained in:
parent
f00a08ef9e
commit
bd16b403e3
@ -1,5 +1,4 @@
|
|||||||
// eslint-disable-next-line no-undef
|
// eslint-disable-next-line no-undef
|
||||||
importScripts('./neozyklus.js');
|
|
||||||
// TODO: swap below line with above one when firefox supports esm imports in service workers
|
// TODO: swap below line with above one when firefox supports esm imports in service workers
|
||||||
// see https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker?retiredLocale=de#browser_compatibility
|
// see https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker?retiredLocale=de#browser_compatibility
|
||||||
// import createClock from './zyklus.mjs';
|
// import createClock from './zyklus.mjs';
|
||||||
@ -58,7 +57,7 @@ const sendTick = (phase, duration, tick, time) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
//create clock method from zyklus
|
//create clock method from zyklus
|
||||||
const clock = this.createClock(getTime, sendTick, duration);
|
const clock = createClock(getTime, sendTick, duration);
|
||||||
let started = false;
|
let started = false;
|
||||||
|
|
||||||
const startClock = (id) => {
|
const startClock = (id) => {
|
||||||
@ -117,7 +116,7 @@ const processMessage = (message) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
this.onconnect = function (e) {
|
self.onconnect = function (e) {
|
||||||
// the incoming port
|
// the incoming port
|
||||||
const port = e.ports[0];
|
const port = e.ports[0];
|
||||||
|
|
||||||
@ -126,3 +125,50 @@ this.onconnect = function (e) {
|
|||||||
});
|
});
|
||||||
port.start(); // Required when using addEventListener. Otherwise called implicitly by onmessage setter.
|
port.start(); // Required when using addEventListener. Otherwise called implicitly by onmessage setter.
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// used to consistently schedule events, for use in a service worker - see <https://github.com/tidalcycles/strudel/blob/main/packages/core/clockworker.mjs>
|
||||||
|
function createClock(
|
||||||
|
getTime,
|
||||||
|
callback, // called slightly before each cycle
|
||||||
|
duration = 0.05, // duration of each cycle
|
||||||
|
interval = 0.1, // interval between callbacks
|
||||||
|
overlap = 0.1, // overlap between callbacks
|
||||||
|
) {
|
||||||
|
let tick = 0; // counts callbacks
|
||||||
|
let phase = 0; // next callback time
|
||||||
|
let precision = 10 ** 4; // used to round phase
|
||||||
|
let minLatency = 0.01;
|
||||||
|
const setDuration = (setter) => (duration = setter(duration));
|
||||||
|
overlap = overlap || interval / 2;
|
||||||
|
const onTick = () => {
|
||||||
|
const t = getTime();
|
||||||
|
const lookahead = t + interval + overlap; // the time window for this tick
|
||||||
|
if (phase === 0) {
|
||||||
|
phase = t + minLatency;
|
||||||
|
}
|
||||||
|
// callback as long as we're inside the lookahead
|
||||||
|
while (phase < lookahead) {
|
||||||
|
phase = Math.round(phase * precision) / precision;
|
||||||
|
phase >= t && callback(phase, duration, tick, t);
|
||||||
|
phase < t && console.log('TOO LATE', phase); // what if latency is added from outside?
|
||||||
|
phase += duration; // increment phase by duration
|
||||||
|
tick++;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
let intervalID;
|
||||||
|
const start = () => {
|
||||||
|
clear(); // just in case start was called more than once
|
||||||
|
onTick();
|
||||||
|
intervalID = setInterval(onTick, interval * 1000);
|
||||||
|
};
|
||||||
|
const clear = () => intervalID !== undefined && clearInterval(intervalID);
|
||||||
|
const pause = () => clear();
|
||||||
|
const stop = () => {
|
||||||
|
tick = 0;
|
||||||
|
phase = 0;
|
||||||
|
clear();
|
||||||
|
};
|
||||||
|
const getPhase = () => phase;
|
||||||
|
// setCallback
|
||||||
|
return { setDuration, start, stop, pause, duration, interval, getPhase, minLatency };
|
||||||
|
}
|
||||||
|
|||||||
@ -54,7 +54,6 @@ export class NeoCyclist {
|
|||||||
const time = this.getTime();
|
const time = this.getTime();
|
||||||
|
|
||||||
let {
|
let {
|
||||||
cycle,
|
|
||||||
phase,
|
phase,
|
||||||
num_cycles_at_cps_change,
|
num_cycles_at_cps_change,
|
||||||
cps,
|
cps,
|
||||||
|
|||||||
@ -1,46 +0,0 @@
|
|||||||
// used to consistently schedule events, for use in a service worker - see <https://github.com/tidalcycles/strudel/blob/main/packages/core/clockworker.mjs>
|
|
||||||
this.createClock = (
|
|
||||||
getTime,
|
|
||||||
callback, // called slightly before each cycle
|
|
||||||
duration = 0.05, // duration of each cycle
|
|
||||||
interval = 0.1, // interval between callbacks
|
|
||||||
overlap = 0.1, // overlap between callbacks
|
|
||||||
) => {
|
|
||||||
let tick = 0; // counts callbacks
|
|
||||||
let phase = 0; // next callback time
|
|
||||||
let precision = 10 ** 4; // used to round phase
|
|
||||||
let minLatency = 0.01;
|
|
||||||
const setDuration = (setter) => (duration = setter(duration));
|
|
||||||
overlap = overlap || interval / 2;
|
|
||||||
const onTick = () => {
|
|
||||||
const t = getTime();
|
|
||||||
const lookahead = t + interval + overlap; // the time window for this tick
|
|
||||||
if (phase === 0) {
|
|
||||||
phase = t + minLatency;
|
|
||||||
}
|
|
||||||
// callback as long as we're inside the lookahead
|
|
||||||
while (phase < lookahead) {
|
|
||||||
phase = Math.round(phase * precision) / precision;
|
|
||||||
phase >= t && callback(phase, duration, tick, t);
|
|
||||||
phase < t && console.log('TOO LATE', phase); // what if latency is added from outside?
|
|
||||||
phase += duration; // increment phase by duration
|
|
||||||
tick++;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
let intervalID;
|
|
||||||
const start = () => {
|
|
||||||
clear(); // just in case start was called more than once
|
|
||||||
onTick();
|
|
||||||
intervalID = setInterval(onTick, interval * 1000);
|
|
||||||
};
|
|
||||||
const clear = () => intervalID !== undefined && clearInterval(intervalID);
|
|
||||||
const pause = () => clear();
|
|
||||||
const stop = () => {
|
|
||||||
tick = 0;
|
|
||||||
phase = 0;
|
|
||||||
clear();
|
|
||||||
};
|
|
||||||
const getPhase = () => phase;
|
|
||||||
// setCallback
|
|
||||||
return { setDuration, start, stop, pause, duration, interval, getPhase, minLatency };
|
|
||||||
};
|
|
||||||
Loading…
x
Reference in New Issue
Block a user