mirror of
https://codeberg.org/uzu/strudel
synced 2026-07-23 13:42:56 -04:00
Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c6e5ca2710 | |||
| 3fff4609a0 | |||
| e2b5b92a0c | |||
| 1c3e07afd3 | |||
| c54fa7d266 | |||
| a25f763796 | |||
| 91ad3d729f | |||
| 4cb0488839 | |||
| 663229ecde | |||
| cdb623cb66 | |||
| 28d7e0e489 | |||
| aba594b72a | |||
| 5d7c6c3e4b | |||
| 820744dc27 | |||
| 5445f0812f | |||
| 98b7003504 | |||
| 9a8f8a051c | |||
| 3eb40ee7d3 |
@@ -413,32 +413,6 @@ export const { begin } = registerControl('begin');
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export const { end } = registerControl('end');
|
export const { end } = registerControl('end');
|
||||||
/**
|
|
||||||
* the offset of the sample buffer in seconds
|
|
||||||
*
|
|
||||||
* @memberof Pattern
|
|
||||||
* @name beginSeconds
|
|
||||||
* @param {number | Pattern} seconds
|
|
||||||
* @example
|
|
||||||
* samples('github:switchangel/pad')
|
|
||||||
* s("swpad!4").clip(1).beginSeconds("2 5 .2 3").fast(2)
|
|
||||||
* @example
|
|
||||||
* samples('github:switchangel/pad')
|
|
||||||
* $: s("swpad!16").beginseconds(time).dec(.1)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
export const { beginSeconds, beginseconds } = registerControl('beginSeconds', 'beginseconds');
|
|
||||||
/**
|
|
||||||
* The end of the sample buffer in seconds
|
|
||||||
*
|
|
||||||
* @memberof Pattern
|
|
||||||
* @name endSeconds
|
|
||||||
* @param {number | Pattern} seconds
|
|
||||||
* @example
|
|
||||||
* s("bd*2,oh*4").endSeconds("<.1 .05 .2 1>").fast(2)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
export const { endSeconds, endseconds } = registerControl('endSeconds', 'endseconds');
|
|
||||||
/**
|
/**
|
||||||
* Loops the sample.
|
* Loops the sample.
|
||||||
* Note that the tempo of the loop is not synced with the cycle tempo.
|
* Note that the tempo of the loop is not synced with the cycle tempo.
|
||||||
|
|||||||
@@ -5,8 +5,9 @@ let debounce = 1000,
|
|||||||
lastTime;
|
lastTime;
|
||||||
|
|
||||||
export function errorLogger(e, origin = 'cyclist') {
|
export function errorLogger(e, origin = 'cyclist') {
|
||||||
//TODO: add some kind of debug flag that enables this while in dev mode
|
if (process.env.NODE_ENV === 'development') {
|
||||||
// console.error(e);
|
console.error(e);
|
||||||
|
}
|
||||||
logger(`[${origin}] error: ${e.message}`);
|
logger(`[${origin}] error: ${e.message}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -152,9 +152,7 @@ export const itri2 = fastcat(isaw2, saw2);
|
|||||||
*
|
*
|
||||||
* @return {Pattern}
|
* @return {Pattern}
|
||||||
*/
|
*/
|
||||||
export const time = signal((x) => {
|
export const time = signal(id);
|
||||||
return x.valueOf();
|
|
||||||
});
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The mouse's x position value ranges from 0 to 1.
|
* The mouse's x position value ranges from 0 to 1.
|
||||||
|
|||||||
@@ -877,7 +877,7 @@ describe('Pattern', () => {
|
|||||||
.squeezeJoin()
|
.squeezeJoin()
|
||||||
.queryArc(3, 4)
|
.queryArc(3, 4)
|
||||||
.map((x) => x.value),
|
.map((x) => x.value),
|
||||||
).toStrictEqual([3]);
|
).toStrictEqual([Fraction(3)]);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
describe('ply', () => {
|
describe('ply', () => {
|
||||||
|
|||||||
@@ -45,6 +45,11 @@ export class MondoParser {
|
|||||||
}
|
}
|
||||||
// takes code string, returns list of matched tokens (if valid)
|
// takes code string, returns list of matched tokens (if valid)
|
||||||
tokenize(code, offset = 0) {
|
tokenize(code, offset = 0) {
|
||||||
|
code = code.trim();
|
||||||
|
// multilinebreak -> stack
|
||||||
|
code = code.replaceAll(/(\r?\n){2,}/g, ',');
|
||||||
|
// single line break -> pipe
|
||||||
|
code = code.replaceAll('\n', ' # ');
|
||||||
let tokens = [];
|
let tokens = [];
|
||||||
let locEnabled = offset !== -1;
|
let locEnabled = offset !== -1;
|
||||||
let trim = () => {
|
let trim = () => {
|
||||||
|
|||||||
+27
-17
@@ -4,21 +4,13 @@ OSC output for strudel patterns! Currently only tested with super collider / sup
|
|||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
OSC will only work if you run the REPL locally + the OSC server besides it:
|
Assuming you have [node.js](https://nodejs.org/) installed, you can run the osc bridge server via:
|
||||||
|
|
||||||
From the project root:
|
```sh
|
||||||
|
npx @strudel/osc
|
||||||
```js
|
|
||||||
npm run repl
|
|
||||||
```
|
```
|
||||||
|
|
||||||
and in a seperate shell:
|
You should see something like:
|
||||||
|
|
||||||
```js
|
|
||||||
npm run osc
|
|
||||||
```
|
|
||||||
|
|
||||||
This should give you
|
|
||||||
|
|
||||||
```log
|
```log
|
||||||
osc client running on port 57120
|
osc client running on port 57120
|
||||||
@@ -26,14 +18,32 @@ osc server running on port 57121
|
|||||||
websocket server running on port 8080
|
websocket server running on port 8080
|
||||||
```
|
```
|
||||||
|
|
||||||
Now open Supercollider (with the super dirt startup file)
|
### --port
|
||||||
|
|
||||||
Now open the REPL and type:
|
By default it will use port 57120 for the osc client, which is what [superdirt](https://github.com/musikinformatik/SuperDirt) uses. You can change it via the `--port` option:
|
||||||
|
|
||||||
```js
|
```sh
|
||||||
s("<bd sd> hh").osc()
|
npx @strudel/osc --port 7771 # classic dirt
|
||||||
```
|
```
|
||||||
|
|
||||||
or just [click here](https://strudel.cc/#cygiPGJkIHNkPiBoaCIpLm9zYygp)...
|
### --debug
|
||||||
|
|
||||||
|
To log all incoming osc messages, add the `--debug` flag:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npx @strudel/osc --debug
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage in Strudel
|
||||||
|
|
||||||
|
To test it in strudel, you have can use `all(osc)` to send all events through osc:
|
||||||
|
|
||||||
|
```js
|
||||||
|
$: s("bd*4")
|
||||||
|
|
||||||
|
all(osc)
|
||||||
|
```
|
||||||
|
|
||||||
|
[open in repl](https://strudel.cc/#JDogcygiYmQqNCIpCgphbGwob3NjKQ%3D%3D)
|
||||||
|
|
||||||
You can read more about [how to use Superdirt with Strudel the Tutorial](https://strudel.cc/learn/input-output/#superdirt-api)
|
You can read more about [how to use Superdirt with Strudel the Tutorial](https://strudel.cc/learn/input-output/#superdirt-api)
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ This program is free software: you can redistribute it and/or modify it under th
|
|||||||
|
|
||||||
import OSC from 'osc-js';
|
import OSC from 'osc-js';
|
||||||
|
|
||||||
import { logger, parseNumeral, Pattern, isNote, noteToMidi, ClockCollator } from '@strudel/core';
|
import { logger, parseNumeral, register, isNote, noteToMidi, ClockCollator } from '@strudel/core';
|
||||||
|
|
||||||
let connection; // Promise<OSC>
|
let connection; // Promise<OSC>
|
||||||
function connect() {
|
function connect() {
|
||||||
@@ -81,6 +81,4 @@ export async function oscTrigger(hap, currentTime, cps = 1, targetTime) {
|
|||||||
* @memberof Pattern
|
* @memberof Pattern
|
||||||
* @returns Pattern
|
* @returns Pattern
|
||||||
*/
|
*/
|
||||||
Pattern.prototype.osc = function () {
|
export const osc = register('osc', (pat) => pat.onTrigger(oscTrigger));
|
||||||
return this.onTrigger(oscTrigger);
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
{
|
{
|
||||||
"name": "@strudel/osc",
|
"name": "@strudel/osc",
|
||||||
"version": "1.2.4",
|
"version": "1.2.10",
|
||||||
"description": "OSC messaging for strudel",
|
"description": "OSC messaging for strudel",
|
||||||
"main": "osc.mjs",
|
"main": "osc.mjs",
|
||||||
|
"bin": "./server.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"main": "dist/index.mjs"
|
"main": "dist/index.mjs"
|
||||||
|
|||||||
+43
-2
@@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
/*
|
/*
|
||||||
server.js - <short description TODO>
|
server.js - <short description TODO>
|
||||||
Copyright (C) 2022 Strudel contributors - see <https://codeberg.org/uzu/strudel/src/branch/main/packages/osc/server.js>
|
Copyright (C) 2022 Strudel contributors - see <https://codeberg.org/uzu/strudel/src/branch/main/packages/osc/server.js>
|
||||||
@@ -6,6 +8,19 @@ This program is free software: you can redistribute it and/or modify it under th
|
|||||||
|
|
||||||
import OSC from 'osc-js';
|
import OSC from 'osc-js';
|
||||||
|
|
||||||
|
const args = process.argv.slice(2);
|
||||||
|
function getArgValue(flag) {
|
||||||
|
const i = args.indexOf(flag);
|
||||||
|
if (i !== -1) {
|
||||||
|
const nextIsFlag = args[i + 1]?.startsWith('--') ?? true;
|
||||||
|
if (nextIsFlag) return true;
|
||||||
|
return args[i + 1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let udpClientPort = Number(getArgValue('--port')) || 57120;
|
||||||
|
let debug = Number(getArgValue('--debug')) || 0;
|
||||||
|
|
||||||
const config = {
|
const config = {
|
||||||
receiver: 'ws', // @param {string} Where messages sent via 'send' method will be delivered to, 'ws' for Websocket clients, 'udp' for udp client
|
receiver: 'ws', // @param {string} Where messages sent via 'send' method will be delivered to, 'ws' for Websocket clients, 'udp' for udp client
|
||||||
udpServer: {
|
udpServer: {
|
||||||
@@ -17,7 +32,7 @@ const config = {
|
|||||||
},
|
},
|
||||||
udpClient: {
|
udpClient: {
|
||||||
host: 'localhost', // @param {string} Hostname of udp client for messaging
|
host: 'localhost', // @param {string} Hostname of udp client for messaging
|
||||||
port: 57120, // @param {number} Port of udp client for messaging
|
port: udpClientPort, // @param {number} Port of udp client for messaging
|
||||||
},
|
},
|
||||||
wsServer: {
|
wsServer: {
|
||||||
host: 'localhost', // @param {string} Hostname of WebSocket server
|
host: 'localhost', // @param {string} Hostname of WebSocket server
|
||||||
@@ -27,8 +42,34 @@ const config = {
|
|||||||
|
|
||||||
const osc = new OSC({ plugin: new OSC.BridgePlugin(config) });
|
const osc = new OSC({ plugin: new OSC.BridgePlugin(config) });
|
||||||
|
|
||||||
osc.open(); // start a WebSocket server on port 8080
|
if (debug) {
|
||||||
|
osc.on('*', (message) => {
|
||||||
|
const { address, args } = message;
|
||||||
|
let str = '';
|
||||||
|
for (let i = 0; i < args.length; i += 2) {
|
||||||
|
str += `${args[i]}: ${args[i + 1]} `;
|
||||||
|
}
|
||||||
|
console.log(`${address} ${str}`);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
osc.on('error', (message) => {
|
||||||
|
if (message.toString().includes('EADDRINUSE')) {
|
||||||
|
console.log(`------ ERROR -------
|
||||||
|
a server is already running on port 57121! to stop it:
|
||||||
|
1. run "lsof -ti :57121 | xargs kill -9" (macos / linux)
|
||||||
|
2. re-run the osc server
|
||||||
|
`);
|
||||||
|
} else {
|
||||||
|
console.log(message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
osc.open();
|
||||||
|
|
||||||
console.log('osc client running on port', config.udpClient.port);
|
console.log('osc client running on port', config.udpClient.port);
|
||||||
console.log('osc server running on port', config.udpServer.port);
|
console.log('osc server running on port', config.udpServer.port);
|
||||||
console.log('websocket server running on port', config.wsServer.port);
|
console.log('websocket server running on port', config.wsServer.port);
|
||||||
|
if (debug) {
|
||||||
|
console.log('debug logs enabled. incoming messages will appear below');
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
let log = (msg) => console.log(msg);
|
let log = (msg) => console.log(msg);
|
||||||
|
|
||||||
export function errorLogger(e, origin = 'cyclist') {
|
export function errorLogger(e, origin = 'superdough') {
|
||||||
//TODO: add some kind of debug flag that enables this while in dev mode
|
if (process.env.NODE_ENV === 'development') {
|
||||||
// console.error(e);
|
console.error(e);
|
||||||
|
}
|
||||||
logger(`[${origin}] error: ${e.message}`);
|
logger(`[${origin}] error: ${e.message}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -78,23 +78,13 @@ export const getSampleBufferSource = async (hapValue, bank, resolveUrl) => {
|
|||||||
const bufferSource = ac.createBufferSource();
|
const bufferSource = ac.createBufferSource();
|
||||||
bufferSource.buffer = buffer;
|
bufferSource.buffer = buffer;
|
||||||
bufferSource.playbackRate.value = playbackRate;
|
bufferSource.playbackRate.value = playbackRate;
|
||||||
const { s, loopBegin = 0, loopEnd = 1, begin, end, beginSeconds, endSeconds } = hapValue;
|
|
||||||
let offset = 0;
|
const { s, loopBegin = 0, loopEnd = 1, begin = 0, end = 1 } = hapValue;
|
||||||
let endTime = bufferSource.buffer.duration;
|
|
||||||
// "The computation of the offset into the sound is performed using the sound buffer's natural sample rate,
|
// "The computation of the offset into the sound is performed using the sound buffer's natural sample rate,
|
||||||
// rather than the current playback rate, so even if the sound is playing at twice its normal speed,
|
// rather than the current playback rate, so even if the sound is playing at twice its normal speed,
|
||||||
// the midway point through a 10-second audio buffer is still 5."
|
// the midway point through a 10-second audio buffer is still 5."
|
||||||
if (begin != null) {
|
const offset = begin * bufferSource.buffer.duration;
|
||||||
offset = begin * bufferSource.buffer.duration;
|
|
||||||
} else if (beginSeconds != null) {
|
|
||||||
offset = beginSeconds;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (end != null) {
|
|
||||||
endTime = end * bufferSource.buffer.duration;
|
|
||||||
} else if (endSeconds != null) {
|
|
||||||
endTime = endSeconds;
|
|
||||||
}
|
|
||||||
|
|
||||||
const loop = s.startsWith('wt_') ? 1 : hapValue.loop;
|
const loop = s.startsWith('wt_') ? 1 : hapValue.loop;
|
||||||
if (loop) {
|
if (loop) {
|
||||||
@@ -103,7 +93,7 @@ export const getSampleBufferSource = async (hapValue, bank, resolveUrl) => {
|
|||||||
bufferSource.loopEnd = loopEnd * bufferSource.buffer.duration - offset;
|
bufferSource.loopEnd = loopEnd * bufferSource.buffer.duration - offset;
|
||||||
}
|
}
|
||||||
const bufferDuration = bufferSource.buffer.duration / bufferSource.playbackRate.value;
|
const bufferDuration = bufferSource.buffer.duration / bufferSource.playbackRate.value;
|
||||||
const sliceDuration = (endTime - offset) / bufferSource.playbackRate.value;
|
const sliceDuration = (end - begin) * bufferDuration;
|
||||||
return { bufferSource, offset, bufferDuration, sliceDuration };
|
return { bufferSource, offset, bufferDuration, sliceDuration };
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -357,7 +347,6 @@ export async function onTriggerSample(t, value, onended, bank, resolveUrl) {
|
|||||||
out.disconnect();
|
out.disconnect();
|
||||||
onended();
|
onended();
|
||||||
};
|
};
|
||||||
|
|
||||||
let envEnd = holdEnd + release + 0.01;
|
let envEnd = holdEnd + release + 0.01;
|
||||||
bufferSource.stop(envEnd);
|
bufferSource.stop(envEnd);
|
||||||
const stop = (endTime) => {
|
const stop = (endTime) => {
|
||||||
|
|||||||
@@ -1051,112 +1051,6 @@ exports[`runs examples > example "begin" example index 0 1`] = `
|
|||||||
]
|
]
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`runs examples > example "beginSeconds" example index 0 1`] = `
|
|
||||||
[
|
|
||||||
"[ 0/1 → 1/8 | s:swpad clip:1 beginSeconds:2 ]",
|
|
||||||
"[ 1/8 → 1/4 | s:swpad clip:1 beginSeconds:5 ]",
|
|
||||||
"[ 1/4 → 3/8 | s:swpad clip:1 beginSeconds:0.2 ]",
|
|
||||||
"[ 3/8 → 1/2 | s:swpad clip:1 beginSeconds:3 ]",
|
|
||||||
"[ 1/2 → 5/8 | s:swpad clip:1 beginSeconds:2 ]",
|
|
||||||
"[ 5/8 → 3/4 | s:swpad clip:1 beginSeconds:5 ]",
|
|
||||||
"[ 3/4 → 7/8 | s:swpad clip:1 beginSeconds:0.2 ]",
|
|
||||||
"[ 7/8 → 1/1 | s:swpad clip:1 beginSeconds:3 ]",
|
|
||||||
"[ 1/1 → 9/8 | s:swpad clip:1 beginSeconds:2 ]",
|
|
||||||
"[ 9/8 → 5/4 | s:swpad clip:1 beginSeconds:5 ]",
|
|
||||||
"[ 5/4 → 11/8 | s:swpad clip:1 beginSeconds:0.2 ]",
|
|
||||||
"[ 11/8 → 3/2 | s:swpad clip:1 beginSeconds:3 ]",
|
|
||||||
"[ 3/2 → 13/8 | s:swpad clip:1 beginSeconds:2 ]",
|
|
||||||
"[ 13/8 → 7/4 | s:swpad clip:1 beginSeconds:5 ]",
|
|
||||||
"[ 7/4 → 15/8 | s:swpad clip:1 beginSeconds:0.2 ]",
|
|
||||||
"[ 15/8 → 2/1 | s:swpad clip:1 beginSeconds:3 ]",
|
|
||||||
"[ 2/1 → 17/8 | s:swpad clip:1 beginSeconds:2 ]",
|
|
||||||
"[ 17/8 → 9/4 | s:swpad clip:1 beginSeconds:5 ]",
|
|
||||||
"[ 9/4 → 19/8 | s:swpad clip:1 beginSeconds:0.2 ]",
|
|
||||||
"[ 19/8 → 5/2 | s:swpad clip:1 beginSeconds:3 ]",
|
|
||||||
"[ 5/2 → 21/8 | s:swpad clip:1 beginSeconds:2 ]",
|
|
||||||
"[ 21/8 → 11/4 | s:swpad clip:1 beginSeconds:5 ]",
|
|
||||||
"[ 11/4 → 23/8 | s:swpad clip:1 beginSeconds:0.2 ]",
|
|
||||||
"[ 23/8 → 3/1 | s:swpad clip:1 beginSeconds:3 ]",
|
|
||||||
"[ 3/1 → 25/8 | s:swpad clip:1 beginSeconds:2 ]",
|
|
||||||
"[ 25/8 → 13/4 | s:swpad clip:1 beginSeconds:5 ]",
|
|
||||||
"[ 13/4 → 27/8 | s:swpad clip:1 beginSeconds:0.2 ]",
|
|
||||||
"[ 27/8 → 7/2 | s:swpad clip:1 beginSeconds:3 ]",
|
|
||||||
"[ 7/2 → 29/8 | s:swpad clip:1 beginSeconds:2 ]",
|
|
||||||
"[ 29/8 → 15/4 | s:swpad clip:1 beginSeconds:5 ]",
|
|
||||||
"[ 15/4 → 31/8 | s:swpad clip:1 beginSeconds:0.2 ]",
|
|
||||||
"[ 31/8 → 4/1 | s:swpad clip:1 beginSeconds:3 ]",
|
|
||||||
]
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`runs examples > example "beginSeconds" example index 1 1`] = `
|
|
||||||
[
|
|
||||||
"[ 0/1 → 1/16 | s:swpad beginSeconds:0 decay:0.1 ]",
|
|
||||||
"[ 1/16 → 1/8 | s:swpad beginSeconds:0.0625 decay:0.1 ]",
|
|
||||||
"[ 1/8 → 3/16 | s:swpad beginSeconds:0.125 decay:0.1 ]",
|
|
||||||
"[ 3/16 → 1/4 | s:swpad beginSeconds:0.1875 decay:0.1 ]",
|
|
||||||
"[ 1/4 → 5/16 | s:swpad beginSeconds:0.25 decay:0.1 ]",
|
|
||||||
"[ 5/16 → 3/8 | s:swpad beginSeconds:0.3125 decay:0.1 ]",
|
|
||||||
"[ 3/8 → 7/16 | s:swpad beginSeconds:0.375 decay:0.1 ]",
|
|
||||||
"[ 7/16 → 1/2 | s:swpad beginSeconds:0.4375 decay:0.1 ]",
|
|
||||||
"[ 1/2 → 9/16 | s:swpad beginSeconds:0.5 decay:0.1 ]",
|
|
||||||
"[ 9/16 → 5/8 | s:swpad beginSeconds:0.5625 decay:0.1 ]",
|
|
||||||
"[ 5/8 → 11/16 | s:swpad beginSeconds:0.625 decay:0.1 ]",
|
|
||||||
"[ 11/16 → 3/4 | s:swpad beginSeconds:0.6875 decay:0.1 ]",
|
|
||||||
"[ 3/4 → 13/16 | s:swpad beginSeconds:0.75 decay:0.1 ]",
|
|
||||||
"[ 13/16 → 7/8 | s:swpad beginSeconds:0.8125 decay:0.1 ]",
|
|
||||||
"[ 7/8 → 15/16 | s:swpad beginSeconds:0.875 decay:0.1 ]",
|
|
||||||
"[ 15/16 → 1/1 | s:swpad beginSeconds:0.9375 decay:0.1 ]",
|
|
||||||
"[ 1/1 → 17/16 | s:swpad beginSeconds:1 decay:0.1 ]",
|
|
||||||
"[ 17/16 → 9/8 | s:swpad beginSeconds:1.0625 decay:0.1 ]",
|
|
||||||
"[ 9/8 → 19/16 | s:swpad beginSeconds:1.125 decay:0.1 ]",
|
|
||||||
"[ 19/16 → 5/4 | s:swpad beginSeconds:1.1875 decay:0.1 ]",
|
|
||||||
"[ 5/4 → 21/16 | s:swpad beginSeconds:1.25 decay:0.1 ]",
|
|
||||||
"[ 21/16 → 11/8 | s:swpad beginSeconds:1.3125 decay:0.1 ]",
|
|
||||||
"[ 11/8 → 23/16 | s:swpad beginSeconds:1.375 decay:0.1 ]",
|
|
||||||
"[ 23/16 → 3/2 | s:swpad beginSeconds:1.4375 decay:0.1 ]",
|
|
||||||
"[ 3/2 → 25/16 | s:swpad beginSeconds:1.5 decay:0.1 ]",
|
|
||||||
"[ 25/16 → 13/8 | s:swpad beginSeconds:1.5625 decay:0.1 ]",
|
|
||||||
"[ 13/8 → 27/16 | s:swpad beginSeconds:1.625 decay:0.1 ]",
|
|
||||||
"[ 27/16 → 7/4 | s:swpad beginSeconds:1.6875 decay:0.1 ]",
|
|
||||||
"[ 7/4 → 29/16 | s:swpad beginSeconds:1.75 decay:0.1 ]",
|
|
||||||
"[ 29/16 → 15/8 | s:swpad beginSeconds:1.8125 decay:0.1 ]",
|
|
||||||
"[ 15/8 → 31/16 | s:swpad beginSeconds:1.875 decay:0.1 ]",
|
|
||||||
"[ 31/16 → 2/1 | s:swpad beginSeconds:1.9375 decay:0.1 ]",
|
|
||||||
"[ 2/1 → 33/16 | s:swpad beginSeconds:2 decay:0.1 ]",
|
|
||||||
"[ 33/16 → 17/8 | s:swpad beginSeconds:2.0625 decay:0.1 ]",
|
|
||||||
"[ 17/8 → 35/16 | s:swpad beginSeconds:2.125 decay:0.1 ]",
|
|
||||||
"[ 35/16 → 9/4 | s:swpad beginSeconds:2.1875 decay:0.1 ]",
|
|
||||||
"[ 9/4 → 37/16 | s:swpad beginSeconds:2.25 decay:0.1 ]",
|
|
||||||
"[ 37/16 → 19/8 | s:swpad beginSeconds:2.3125 decay:0.1 ]",
|
|
||||||
"[ 19/8 → 39/16 | s:swpad beginSeconds:2.375 decay:0.1 ]",
|
|
||||||
"[ 39/16 → 5/2 | s:swpad beginSeconds:2.4375 decay:0.1 ]",
|
|
||||||
"[ 5/2 → 41/16 | s:swpad beginSeconds:2.5 decay:0.1 ]",
|
|
||||||
"[ 41/16 → 21/8 | s:swpad beginSeconds:2.5625 decay:0.1 ]",
|
|
||||||
"[ 21/8 → 43/16 | s:swpad beginSeconds:2.625 decay:0.1 ]",
|
|
||||||
"[ 43/16 → 11/4 | s:swpad beginSeconds:2.6875 decay:0.1 ]",
|
|
||||||
"[ 11/4 → 45/16 | s:swpad beginSeconds:2.75 decay:0.1 ]",
|
|
||||||
"[ 45/16 → 23/8 | s:swpad beginSeconds:2.8125 decay:0.1 ]",
|
|
||||||
"[ 23/8 → 47/16 | s:swpad beginSeconds:2.875 decay:0.1 ]",
|
|
||||||
"[ 47/16 → 3/1 | s:swpad beginSeconds:2.9375 decay:0.1 ]",
|
|
||||||
"[ 3/1 → 49/16 | s:swpad beginSeconds:3 decay:0.1 ]",
|
|
||||||
"[ 49/16 → 25/8 | s:swpad beginSeconds:3.0625 decay:0.1 ]",
|
|
||||||
"[ 25/8 → 51/16 | s:swpad beginSeconds:3.125 decay:0.1 ]",
|
|
||||||
"[ 51/16 → 13/4 | s:swpad beginSeconds:3.1875 decay:0.1 ]",
|
|
||||||
"[ 13/4 → 53/16 | s:swpad beginSeconds:3.25 decay:0.1 ]",
|
|
||||||
"[ 53/16 → 27/8 | s:swpad beginSeconds:3.3125 decay:0.1 ]",
|
|
||||||
"[ 27/8 → 55/16 | s:swpad beginSeconds:3.375 decay:0.1 ]",
|
|
||||||
"[ 55/16 → 7/2 | s:swpad beginSeconds:3.4375 decay:0.1 ]",
|
|
||||||
"[ 7/2 → 57/16 | s:swpad beginSeconds:3.5 decay:0.1 ]",
|
|
||||||
"[ 57/16 → 29/8 | s:swpad beginSeconds:3.5625 decay:0.1 ]",
|
|
||||||
"[ 29/8 → 59/16 | s:swpad beginSeconds:3.625 decay:0.1 ]",
|
|
||||||
"[ 59/16 → 15/4 | s:swpad beginSeconds:3.6875 decay:0.1 ]",
|
|
||||||
"[ 15/4 → 61/16 | s:swpad beginSeconds:3.75 decay:0.1 ]",
|
|
||||||
"[ 61/16 → 31/8 | s:swpad beginSeconds:3.8125 decay:0.1 ]",
|
|
||||||
"[ 31/8 → 63/16 | s:swpad beginSeconds:3.875 decay:0.1 ]",
|
|
||||||
"[ 63/16 → 4/1 | s:swpad beginSeconds:3.9375 decay:0.1 ]",
|
|
||||||
]
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`runs examples > example "berlin" example index 0 1`] = `
|
exports[`runs examples > example "berlin" example index 0 1`] = `
|
||||||
[
|
[
|
||||||
"[ 0/1 → 1/16 | note:D3 ]",
|
"[ 0/1 → 1/16 | note:D3 ]",
|
||||||
@@ -3607,59 +3501,6 @@ exports[`runs examples > example "end" example index 0 1`] = `
|
|||||||
]
|
]
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`runs examples > example "endSeconds" example index 0 1`] = `
|
|
||||||
[
|
|
||||||
"[ 0/1 → 1/8 | s:oh endSeconds:0.1 ]",
|
|
||||||
"[ 0/1 → 1/4 | s:bd endSeconds:0.1 ]",
|
|
||||||
"[ 1/8 → 1/4 | s:oh endSeconds:0.1 ]",
|
|
||||||
"[ 1/4 → 3/8 | s:oh endSeconds:0.1 ]",
|
|
||||||
"[ 1/4 → 1/2 | s:bd endSeconds:0.1 ]",
|
|
||||||
"[ 3/8 → 1/2 | s:oh endSeconds:0.1 ]",
|
|
||||||
"[ 1/2 → 5/8 | s:oh endSeconds:0.05 ]",
|
|
||||||
"[ 1/2 → 3/4 | s:bd endSeconds:0.05 ]",
|
|
||||||
"[ 5/8 → 3/4 | s:oh endSeconds:0.05 ]",
|
|
||||||
"[ 3/4 → 7/8 | s:oh endSeconds:0.05 ]",
|
|
||||||
"[ 3/4 → 1/1 | s:bd endSeconds:0.05 ]",
|
|
||||||
"[ 7/8 → 1/1 | s:oh endSeconds:0.05 ]",
|
|
||||||
"[ 1/1 → 9/8 | s:oh endSeconds:0.2 ]",
|
|
||||||
"[ 1/1 → 5/4 | s:bd endSeconds:0.2 ]",
|
|
||||||
"[ 9/8 → 5/4 | s:oh endSeconds:0.2 ]",
|
|
||||||
"[ 5/4 → 11/8 | s:oh endSeconds:0.2 ]",
|
|
||||||
"[ 5/4 → 3/2 | s:bd endSeconds:0.2 ]",
|
|
||||||
"[ 11/8 → 3/2 | s:oh endSeconds:0.2 ]",
|
|
||||||
"[ 3/2 → 13/8 | s:oh endSeconds:1 ]",
|
|
||||||
"[ 3/2 → 7/4 | s:bd endSeconds:1 ]",
|
|
||||||
"[ 13/8 → 7/4 | s:oh endSeconds:1 ]",
|
|
||||||
"[ 7/4 → 15/8 | s:oh endSeconds:1 ]",
|
|
||||||
"[ 7/4 → 2/1 | s:bd endSeconds:1 ]",
|
|
||||||
"[ 15/8 → 2/1 | s:oh endSeconds:1 ]",
|
|
||||||
"[ 2/1 → 17/8 | s:oh endSeconds:0.1 ]",
|
|
||||||
"[ 2/1 → 9/4 | s:bd endSeconds:0.1 ]",
|
|
||||||
"[ 17/8 → 9/4 | s:oh endSeconds:0.1 ]",
|
|
||||||
"[ 9/4 → 19/8 | s:oh endSeconds:0.1 ]",
|
|
||||||
"[ 9/4 → 5/2 | s:bd endSeconds:0.1 ]",
|
|
||||||
"[ 19/8 → 5/2 | s:oh endSeconds:0.1 ]",
|
|
||||||
"[ 5/2 → 21/8 | s:oh endSeconds:0.05 ]",
|
|
||||||
"[ 5/2 → 11/4 | s:bd endSeconds:0.05 ]",
|
|
||||||
"[ 21/8 → 11/4 | s:oh endSeconds:0.05 ]",
|
|
||||||
"[ 11/4 → 23/8 | s:oh endSeconds:0.05 ]",
|
|
||||||
"[ 11/4 → 3/1 | s:bd endSeconds:0.05 ]",
|
|
||||||
"[ 23/8 → 3/1 | s:oh endSeconds:0.05 ]",
|
|
||||||
"[ 3/1 → 25/8 | s:oh endSeconds:0.2 ]",
|
|
||||||
"[ 3/1 → 13/4 | s:bd endSeconds:0.2 ]",
|
|
||||||
"[ 25/8 → 13/4 | s:oh endSeconds:0.2 ]",
|
|
||||||
"[ 13/4 → 27/8 | s:oh endSeconds:0.2 ]",
|
|
||||||
"[ 13/4 → 7/2 | s:bd endSeconds:0.2 ]",
|
|
||||||
"[ 27/8 → 7/2 | s:oh endSeconds:0.2 ]",
|
|
||||||
"[ 7/2 → 29/8 | s:oh endSeconds:1 ]",
|
|
||||||
"[ 7/2 → 15/4 | s:bd endSeconds:1 ]",
|
|
||||||
"[ 29/8 → 15/4 | s:oh endSeconds:1 ]",
|
|
||||||
"[ 15/4 → 31/8 | s:oh endSeconds:1 ]",
|
|
||||||
"[ 15/4 → 4/1 | s:bd endSeconds:1 ]",
|
|
||||||
"[ 31/8 → 4/1 | s:oh endSeconds:1 ]",
|
|
||||||
]
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`runs examples > example "euclid" example index 0 1`] = `
|
exports[`runs examples > example "euclid" example index 0 1`] = `
|
||||||
[
|
[
|
||||||
"[ 0/1 → 1/8 | note:c3 ]",
|
"[ 0/1 → 1/8 | note:c3 ]",
|
||||||
|
|||||||
Reference in New Issue
Block a user