move core repl + add package

This commit is contained in:
Felix Roos 2022-04-01 20:54:54 +02:00
parent 47a046ca1d
commit 7fb9c3bf1e
9 changed files with 8982 additions and 154 deletions

View file

@ -1,10 +1,13 @@
import ClockWorker from './clockworker.mjs';
class Scheduler {
metro;
constructor(interval = 0.2, lookahead = 0.2) {
this.metro = new Metro(
worker;
pattern;
constructor(audioContext, interval = 0.2) {
this.worker = new ClockWorker(
audioContext,
(begin, end, lookahead) => {
pattern.query(new State(new TimeSpan(begin - lookahead, end - lookahead))).forEach((e) => {
(begin, end) => {
this.pattern.query(new State(new TimeSpan(begin, end))).forEach((e) => {
if (!e.part.begin.equals(e.whole.begin)) {
return;
}
@ -16,13 +19,20 @@ class Scheduler {
});
},
interval,
lookahead,
);
}
start() {
this.metro.start();
if (!this.pattern) {
throw new Error('Scheduler: no pattern set! call .setPattern first.');
}
this.worker.start();
}
stop() {
this.metro.stop();
this.worker.stop();
}
setPattern(pat) {
this.pattern = pat;
}
}
export default Scheduler;