mirror of
https://codeberg.org/uzu/strudel
synced 2026-07-21 20:55:12 -04:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c87e55dc8d | |||
| 50de3d36d0 | |||
| 9c83cc9b9e | |||
| 63808e9ebb |
@@ -10,7 +10,7 @@ function getExports(code) {
|
||||
let ast;
|
||||
try {
|
||||
ast = parse(code, {
|
||||
ecmaVersion: 'latest',
|
||||
ecmaVersion: 11,
|
||||
sourceType: 'module',
|
||||
});
|
||||
} catch (err) {
|
||||
@@ -49,7 +49,9 @@ function getExports(code) {
|
||||
}
|
||||
|
||||
function isDocumented(name, docs) {
|
||||
return docs.find((d) => d.name === name || d.synonyms?.includes(name));
|
||||
return docs.find(
|
||||
(d) => d.name === name || d.tags?.find((t) => t.title === 'synonyms' && t.value.split(', ').includes(name)),
|
||||
);
|
||||
}
|
||||
|
||||
async function getUndocumented(path, docs) {
|
||||
|
||||
@@ -3289,7 +3289,6 @@ export const striate = register('striate', function (n, pat) {
|
||||
/**
|
||||
* Makes the sample fit the given number of cycles by changing the speed.
|
||||
* @name loopAt
|
||||
* @synonyms loopat
|
||||
* @memberof Pattern
|
||||
* @returns Pattern
|
||||
* @example
|
||||
@@ -3422,7 +3421,6 @@ export const fit = register('fit', (pat) =>
|
||||
* given by a global clock and this function will be
|
||||
* deprecated/removed.
|
||||
* @name loopAtCps
|
||||
* @synonyms loopatcps
|
||||
* @memberof Pattern
|
||||
* @returns Pattern
|
||||
* @example
|
||||
|
||||
@@ -10,27 +10,11 @@ import Fraction from './fraction.mjs';
|
||||
|
||||
import { id, keyAlias, getCurrentKeyboardState } from './util.mjs';
|
||||
|
||||
/**
|
||||
* A `signal` consisting of a constant value. Similar to `pure`, except that function
|
||||
* creates a pattern with one event per cycle, whereas this pattern doesn't have an intrinsic
|
||||
* structure.
|
||||
*
|
||||
* @param {*} value The constant value of the resulting pattern
|
||||
* @returns Pattern
|
||||
*/
|
||||
export function steady(value) {
|
||||
// A continuous value
|
||||
return new Pattern((state) => [new Hap(undefined, state.span, value)]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a "signal", an unstructured pattern consisting of a single value that changes
|
||||
* over time.
|
||||
*
|
||||
*
|
||||
* @param {*} func
|
||||
* @returns Pattern
|
||||
*/
|
||||
export const signal = (func) => {
|
||||
const query = (state) => [new Hap(undefined, state.span, func(state.span.begin))];
|
||||
return new Pattern(query);
|
||||
@@ -39,7 +23,7 @@ export const signal = (func) => {
|
||||
/**
|
||||
* A sawtooth signal between 0 and 1.
|
||||
*
|
||||
* @type {Pattern}
|
||||
* @return {Pattern}
|
||||
* @example
|
||||
* note("<c3 [eb3,g3] g2 [g3,bb3]>*8")
|
||||
* .clip(saw.slow(2))
|
||||
@@ -173,7 +157,6 @@ export const time = signal(id);
|
||||
/**
|
||||
* The mouse's x position value ranges from 0 to 1.
|
||||
* @name mousex
|
||||
* @synonyms mouseX
|
||||
* @return {Pattern}
|
||||
* @example
|
||||
* n(mousex.segment(4).range(0,7)).scale("C:minor")
|
||||
@@ -183,7 +166,6 @@ export const time = signal(id);
|
||||
/**
|
||||
* The mouse's y position value ranges from 0 to 1.
|
||||
* @name mousey
|
||||
* @synonyms mouseY
|
||||
* @return {Pattern}
|
||||
* @example
|
||||
* n(mousey.segment(4).range(0,7)).scale("C:minor")
|
||||
@@ -233,6 +215,10 @@ const timeToRandsPrime = (seed, n) => {
|
||||
|
||||
const timeToRands = (t, n) => timeToRandsPrime(timeToIntSeed(t), n);
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* A discrete pattern of numbers from 0 to n-1
|
||||
* @example
|
||||
@@ -403,22 +389,16 @@ export const chooseInWith = (pat, xs) => {
|
||||
|
||||
/**
|
||||
* Chooses randomly from the given list of elements.
|
||||
* @synonyms chooseOut
|
||||
* @param {...any} xs values / patterns to choose from.
|
||||
* @returns {Pattern} - a continuous pattern.
|
||||
* @example
|
||||
* note("c2 g2!2 d2 f1").s(choose("sine", "triangle", "bd:6"))
|
||||
*/
|
||||
export const choose = (...xs) => chooseWith(rand, xs);
|
||||
export const chooseOut = choose;
|
||||
|
||||
/**
|
||||
* As with {choose}, but the structure comes from the chosen values, rather
|
||||
* than the pattern you're using to choose with.
|
||||
* @param {...any} xs
|
||||
* @returns
|
||||
*/
|
||||
// todo: doc
|
||||
export const chooseIn = (...xs) => chooseInWith(rand, xs);
|
||||
export const chooseOut = choose;
|
||||
|
||||
/**
|
||||
* Chooses from the given list of values (or patterns of values), according
|
||||
@@ -516,7 +496,6 @@ function _perlin(t) {
|
||||
const v = interp(t - ta)(timeToRand(ta))(timeToRand(tb));
|
||||
return v;
|
||||
}
|
||||
|
||||
export const perlinWith = (tpat) => {
|
||||
return tpat.fmap(_perlin);
|
||||
};
|
||||
@@ -562,15 +541,6 @@ export const perlin = perlinWith(time.fmap((v) => Number(v)));
|
||||
*/
|
||||
export const berlin = berlinWith(time.fmap((v) => Number(v)));
|
||||
|
||||
/**
|
||||
* Removes events from a pattern given a signal of numbers and a cutoff
|
||||
* value for interpreting that pattern as true or false.
|
||||
* @param {number} withPat - A numeric pattern for comparing the main pattern
|
||||
* against. Values higher than the cutoff will let events through and lower
|
||||
* values will remove events from the main pattern
|
||||
* @param {number} cutoff - The threshold value to use when interpreting the
|
||||
* `withPat`
|
||||
*/
|
||||
export const degradeByWith = register(
|
||||
'degradeByWith',
|
||||
(withPat, x, pat) => pat.fmap((a) => (_) => a).appLeft(withPat.filterValues((v) => v > x)),
|
||||
|
||||
@@ -284,12 +284,12 @@ export async function onTriggerSample(t, value, onended, bank, resolveUrl) {
|
||||
// destructure adsr here, because the default should be different for synths and samples
|
||||
let [attack, decay, sustain, release] = getADSRValues([value.attack, value.decay, value.sustain, value.release]);
|
||||
|
||||
const { bufferSource, sliceDuration, offset } = await getSampleBufferSource(value, bank, resolveUrl);
|
||||
const sbs = await getSampleBufferSource(value, bank, resolveUrl);
|
||||
const { bufferSource, sliceDuration, offset, bufferDuration } = sbs;
|
||||
|
||||
// asny stuff above took too long?
|
||||
// any stuff above took too long?
|
||||
if (ac.currentTime > t) {
|
||||
logger(`[sampler] still loading sound "${s}:${n}"`, 'highlight');
|
||||
// console.warn('sample still loading:', s, n);
|
||||
return;
|
||||
}
|
||||
if (!bufferSource) {
|
||||
@@ -301,13 +301,16 @@ export async function onTriggerSample(t, value, onended, bank, resolveUrl) {
|
||||
let vibratoOscillator = getVibratoOscillator(bufferSource.detune, value, t);
|
||||
|
||||
const time = t + nudge;
|
||||
|
||||
bufferSource.start(time, offset);
|
||||
|
||||
const envGain = ac.createGain();
|
||||
const node = bufferSource.connect(envGain);
|
||||
|
||||
const clipDeltaSeconds = 1.5;
|
||||
|
||||
// if none of these controls is set, the duration of the sound will be set to the duration of the sample slice
|
||||
if (clip == null && loop == null && value.release == null) {
|
||||
if (clip == null && loop == null && value.release == null && bufferDuration < clipDeltaSeconds) {
|
||||
duration = sliceDuration;
|
||||
}
|
||||
let holdEnd = t + duration;
|
||||
|
||||
+171
-250
@@ -32,12 +32,7 @@
|
||||
"/packages/codemirror/keybindings.mjs": [
|
||||
"keybindings"
|
||||
],
|
||||
"/packages/codemirror/themes/theme-helper.mjs": [
|
||||
"createTheme"
|
||||
],
|
||||
"/packages/codemirror/themes/strudel-theme.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/strudel-theme.mjs": [],
|
||||
"/packages/codemirror/themes/bluescreen.mjs": [
|
||||
"settings"
|
||||
],
|
||||
@@ -53,103 +48,7 @@
|
||||
"/packages/codemirror/themes/algoboy.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/CutiePi.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/sonic-pink.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/red-text.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/green-text.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/archBtw.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/fruitDaw.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/bluescreenlight.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/androidstudio.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/atomone.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/aura.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/darcula.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/dracula.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/duotoneDark.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/eclipse.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/githubDark.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/githubLight.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/gruvboxDark.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/gruvboxLight.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/materialDark.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/materialLight.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/nord.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/monokai.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/solarizedDark.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/solarizedLight.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/sublime.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/tokyoNight.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/tokioNightStorm.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/tokyoNightDay.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/vscodeDark.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/vscodeLight.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/xcodeLight.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/bbedit.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes/noctisLilac.mjs": [
|
||||
"/packages/codemirror/themes/terminal.mjs": [
|
||||
"settings"
|
||||
],
|
||||
"/packages/codemirror/themes.mjs": [
|
||||
@@ -162,12 +61,7 @@
|
||||
"activateTheme"
|
||||
],
|
||||
"/packages/codemirror/slider.mjs": [
|
||||
"sliderValues",
|
||||
"SliderWidget",
|
||||
"setSliderWidgets",
|
||||
"updateSliderWidgets",
|
||||
"sliderPlugin",
|
||||
"sliderWithID"
|
||||
"acorn parse error: SyntaxError: undefined"
|
||||
],
|
||||
"/packages/codemirror/widget.mjs": [
|
||||
"addWidget",
|
||||
@@ -184,59 +78,6 @@
|
||||
"StrudelMirror"
|
||||
],
|
||||
"/packages/codemirror/index.mjs": [],
|
||||
"/packages/core/logger.mjs": [
|
||||
"logKey",
|
||||
"errorLogger",
|
||||
"logger"
|
||||
],
|
||||
"/packages/core/util.mjs": [
|
||||
"isNoteWithOctave",
|
||||
"isNote",
|
||||
"tokenizeNote",
|
||||
"noteToMidi",
|
||||
"midiToFreq",
|
||||
"freqToMidi",
|
||||
"valueToMidi",
|
||||
"getEventOffsetMs",
|
||||
"_mod",
|
||||
"averageArray",
|
||||
"nanFallback",
|
||||
"getSoundIndex",
|
||||
"getPlayableNoteValue",
|
||||
"getFrequency",
|
||||
"rotate",
|
||||
"pipe",
|
||||
"compose",
|
||||
"flatten",
|
||||
"id",
|
||||
"constant",
|
||||
"listRange",
|
||||
"curry",
|
||||
"parseNumeral",
|
||||
"mapArgs",
|
||||
"numeralArgs",
|
||||
"parseFractional",
|
||||
"fractionalArgs",
|
||||
"splitAt",
|
||||
"zipWith",
|
||||
"pairs",
|
||||
"clamp",
|
||||
"sol2note",
|
||||
"uniq",
|
||||
"uniqsort",
|
||||
"uniqsortr",
|
||||
"unicodeToBase64",
|
||||
"base64ToUnicode",
|
||||
"code2hash",
|
||||
"hash2code",
|
||||
"objectMap",
|
||||
"cycleToSeconds",
|
||||
"ClockCollator",
|
||||
"getPerformanceTimeSeconds",
|
||||
"keyAlias",
|
||||
"getCurrentKeyboardState",
|
||||
"stringifyValues"
|
||||
],
|
||||
"/packages/core/fraction.mjs": [
|
||||
"gcd",
|
||||
"lcm"
|
||||
@@ -250,6 +91,45 @@
|
||||
"/packages/core/state.mjs": [
|
||||
"State"
|
||||
],
|
||||
"/packages/core/logger.mjs": [
|
||||
"logKey",
|
||||
"logger"
|
||||
],
|
||||
"/packages/core/util.mjs": [
|
||||
"isNoteWithOctave",
|
||||
"isNote",
|
||||
"tokenizeNote",
|
||||
"noteToMidi",
|
||||
"midiToFreq",
|
||||
"freqToMidi",
|
||||
"valueToMidi",
|
||||
"_mod",
|
||||
"nanFallback",
|
||||
"getSoundIndex",
|
||||
"getPlayableNoteValue",
|
||||
"getFrequency",
|
||||
"rotate",
|
||||
"pipe",
|
||||
"compose",
|
||||
"flatten",
|
||||
"constant",
|
||||
"listRange",
|
||||
"curry",
|
||||
"parseNumeral",
|
||||
"mapArgs",
|
||||
"numeralArgs",
|
||||
"parseFractional",
|
||||
"fractionalArgs",
|
||||
"splitAt",
|
||||
"zipWith",
|
||||
"clamp",
|
||||
"sol2note",
|
||||
"unicodeToBase64",
|
||||
"base64ToUnicode",
|
||||
"code2hash",
|
||||
"hash2code",
|
||||
"objectMap"
|
||||
],
|
||||
"/packages/core/value.mjs": [
|
||||
"unionWithObj",
|
||||
"valued",
|
||||
@@ -258,8 +138,10 @@
|
||||
],
|
||||
"/packages/core/drawLine.mjs": [],
|
||||
"/packages/core/pattern.mjs": [
|
||||
"calculateSteps",
|
||||
"setStringParser",
|
||||
"polyrhythm",
|
||||
"pr",
|
||||
"pm",
|
||||
"nothing",
|
||||
"isPattern",
|
||||
"reify",
|
||||
@@ -267,12 +149,8 @@
|
||||
"stackRight",
|
||||
"stackCentre",
|
||||
"stackBy",
|
||||
"bind",
|
||||
"innerBind",
|
||||
"outerBind",
|
||||
"squeezeBind",
|
||||
"stepBind",
|
||||
"polyBind",
|
||||
"fastcat",
|
||||
"_polymeterListSteps",
|
||||
"set",
|
||||
"keep",
|
||||
"keepif",
|
||||
@@ -296,51 +174,96 @@
|
||||
"func",
|
||||
"compressSpan",
|
||||
"compressspan",
|
||||
"fastgap",
|
||||
"focusSpan",
|
||||
"focusspan",
|
||||
"density",
|
||||
"sparsity",
|
||||
"zoomArc",
|
||||
"zoomarc",
|
||||
"inv",
|
||||
"juxby",
|
||||
"echowith",
|
||||
"stutWith",
|
||||
"stutwith",
|
||||
"iterback",
|
||||
"slowchunk",
|
||||
"slowChunk",
|
||||
"chunkback",
|
||||
"fastchunk",
|
||||
"bypass",
|
||||
"hsla",
|
||||
"hsl",
|
||||
"_retime",
|
||||
"_slices",
|
||||
"_fitslice",
|
||||
"_match",
|
||||
"_polymeterListSteps",
|
||||
"shrinklist",
|
||||
"s_cat",
|
||||
"s_alt",
|
||||
"s_polymeter",
|
||||
"s_taper",
|
||||
"s_taperlist",
|
||||
"s_add",
|
||||
"s_sub",
|
||||
"s_expand",
|
||||
"s_extend",
|
||||
"s_contract",
|
||||
"s_tour",
|
||||
"s_zip",
|
||||
"steps",
|
||||
"_morph"
|
||||
"loopat",
|
||||
"loopatcps"
|
||||
],
|
||||
"/packages/core/controls.mjs": [
|
||||
"createParam",
|
||||
"isControlName",
|
||||
"registerControl",
|
||||
"sound",
|
||||
"src",
|
||||
"att",
|
||||
"fmi",
|
||||
"fmrelease",
|
||||
"fmvelocity",
|
||||
"analyze",
|
||||
"fft",
|
||||
"dec",
|
||||
"sus",
|
||||
"rel",
|
||||
"hold",
|
||||
"duck",
|
||||
"bandf",
|
||||
"bp",
|
||||
"bandq",
|
||||
"loopb",
|
||||
"loope",
|
||||
"ch",
|
||||
"phaserrate",
|
||||
"phasr",
|
||||
"ph",
|
||||
"phs",
|
||||
"phc",
|
||||
"phd",
|
||||
"phasdp",
|
||||
"cutoff",
|
||||
"ctf",
|
||||
"lp",
|
||||
"lpe",
|
||||
"hpe",
|
||||
"bpe",
|
||||
"lpa",
|
||||
"hpa",
|
||||
"bpa",
|
||||
"lpd",
|
||||
"hpd",
|
||||
"bpd",
|
||||
"lps",
|
||||
"hps",
|
||||
"bps",
|
||||
"lpr",
|
||||
"hpr",
|
||||
"bpr",
|
||||
"fanchor",
|
||||
"vibrato",
|
||||
"v",
|
||||
"vmod",
|
||||
"hcutoff",
|
||||
"hp",
|
||||
"hresonance",
|
||||
"resonance",
|
||||
"delayfb",
|
||||
"dfb",
|
||||
"delayt",
|
||||
"dt",
|
||||
"lock",
|
||||
"det",
|
||||
"fadeTime",
|
||||
"fadeOutTime",
|
||||
"fadeInTime",
|
||||
"patt",
|
||||
"pdec",
|
||||
"psustain",
|
||||
"psus",
|
||||
"prel",
|
||||
"gate",
|
||||
"gat",
|
||||
"activeLabel",
|
||||
@@ -368,13 +291,26 @@
|
||||
"offset",
|
||||
"octaves",
|
||||
"mode",
|
||||
"rlp",
|
||||
"rdim",
|
||||
"rfade",
|
||||
"ir",
|
||||
"size",
|
||||
"sz",
|
||||
"rsize",
|
||||
"dist",
|
||||
"compressorKnee",
|
||||
"compressorRatio",
|
||||
"compressorAttack",
|
||||
"compressorRelease",
|
||||
"waveloss",
|
||||
"density",
|
||||
"expression",
|
||||
"sustainpedal",
|
||||
"tremolodepth",
|
||||
"tremdp",
|
||||
"tremolorate",
|
||||
"tremr",
|
||||
"fshift",
|
||||
"fshiftnote",
|
||||
"fshiftphase",
|
||||
@@ -400,15 +336,27 @@
|
||||
"binshift",
|
||||
"hbrick",
|
||||
"lbrick",
|
||||
"midichan",
|
||||
"control",
|
||||
"ccn",
|
||||
"ccv",
|
||||
"polyTouch",
|
||||
"midibend",
|
||||
"miditouch",
|
||||
"ctlNum",
|
||||
"frameRate",
|
||||
"frames",
|
||||
"hours",
|
||||
"midicmd",
|
||||
"minutes",
|
||||
"progNum",
|
||||
"seconds",
|
||||
"songPtr",
|
||||
"uid",
|
||||
"val",
|
||||
"cps",
|
||||
"legato",
|
||||
"dur",
|
||||
"zrand",
|
||||
"curve",
|
||||
"deltaSlide",
|
||||
@@ -420,40 +368,44 @@
|
||||
"zmod",
|
||||
"zcrush",
|
||||
"zdelay",
|
||||
"tremolo",
|
||||
"zzfx",
|
||||
"colour",
|
||||
"createParams",
|
||||
"ad",
|
||||
"ds",
|
||||
"ar",
|
||||
"midimap",
|
||||
"ctlNum",
|
||||
"polyTouch",
|
||||
"getControlName"
|
||||
"ar"
|
||||
],
|
||||
"/packages/core/euclid.mjs": [
|
||||
"bjork",
|
||||
"e",
|
||||
"euclidrot"
|
||||
],
|
||||
"/packages/core/zyklus.mjs": [],
|
||||
"/packages/core/signal.mjs": [
|
||||
"randrun",
|
||||
"steady",
|
||||
"signal",
|
||||
"isaw",
|
||||
"isaw2",
|
||||
"saw2",
|
||||
"sine2",
|
||||
"cosine2",
|
||||
"square2",
|
||||
"tri2",
|
||||
"time",
|
||||
"_brandBy",
|
||||
"_irand",
|
||||
"pickSqueeze",
|
||||
"pickmodSqueeze",
|
||||
"__chooseWith",
|
||||
"chooseIn",
|
||||
"chooseOut",
|
||||
"randcat",
|
||||
"wrandcat",
|
||||
"perlinWith",
|
||||
"berlinWith",
|
||||
"degradeByWith",
|
||||
"_keyDown"
|
||||
"degradeByWith"
|
||||
],
|
||||
"/packages/core/pick.mjs": [],
|
||||
"/packages/core/speak.mjs": [
|
||||
"speak"
|
||||
],
|
||||
"/packages/core/evaluate.mjs": [
|
||||
"strudelScope",
|
||||
"evalScope",
|
||||
"evaluate"
|
||||
],
|
||||
@@ -488,18 +440,13 @@
|
||||
"isTauri"
|
||||
],
|
||||
"/packages/desktopbridge/midibridge.mjs": [],
|
||||
"/packages/desktopbridge/oscbridge.mjs": [
|
||||
"oscTriggerTauri"
|
||||
],
|
||||
"/packages/desktopbridge/oscbridge.mjs": [],
|
||||
"/packages/desktopbridge/index.mjs": [],
|
||||
"/packages/draw/draw.mjs": [
|
||||
"getDrawContext",
|
||||
"cleanupDraw",
|
||||
"Framer",
|
||||
"Drawer",
|
||||
"getComputedPropertyValue",
|
||||
"getTheme",
|
||||
"setTheme"
|
||||
"Drawer"
|
||||
],
|
||||
"/packages/draw/animate.mjs": [
|
||||
"x",
|
||||
@@ -520,19 +467,16 @@
|
||||
"convertHexToNumber"
|
||||
],
|
||||
"/packages/draw/pianoroll.mjs": [
|
||||
"__pianoroll",
|
||||
"getDrawOptions",
|
||||
"getPunchcardPainter",
|
||||
"drawPianoroll"
|
||||
],
|
||||
"/packages/draw/spiral.mjs": [],
|
||||
"/packages/draw/pitchwheel.mjs": [],
|
||||
"/packages/draw/index.mjs": [],
|
||||
"/packages/midi/midi.mjs": [
|
||||
"WebMidi",
|
||||
"enableWebMidi",
|
||||
"midicontrolMap",
|
||||
"midisoundMap"
|
||||
"midin"
|
||||
],
|
||||
"/packages/midi/index.mjs": [],
|
||||
"/packages/mini/krill-parser.js": [],
|
||||
@@ -552,11 +496,12 @@
|
||||
"/packages/repl/prebake.mjs": [
|
||||
"prebake"
|
||||
],
|
||||
"/packages/repl/repl-component.mjs": [],
|
||||
"/packages/repl/repl-component.mjs": [
|
||||
"acorn parse error: SyntaxError: undefined"
|
||||
],
|
||||
"/packages/repl/index.mjs": [],
|
||||
"/packages/soundfonts/gm.mjs": [],
|
||||
"/packages/soundfonts/fontloader.mjs": [
|
||||
"setSoundfontUrl",
|
||||
"getFontBufferSource",
|
||||
"getFontPitch",
|
||||
"registerSoundfonts"
|
||||
@@ -577,7 +522,6 @@
|
||||
"vowelFormant"
|
||||
],
|
||||
"/packages/superdough/logger.mjs": [
|
||||
"errorLogger",
|
||||
"logger",
|
||||
"setLogger"
|
||||
],
|
||||
@@ -590,19 +534,10 @@
|
||||
"valueToMidi",
|
||||
"nanFallback",
|
||||
"_mod",
|
||||
"getSoundIndex",
|
||||
"cycleToSeconds",
|
||||
"secondsToCycle"
|
||||
],
|
||||
"/packages/superdough/noise.mjs": [
|
||||
"getNoiseBuffer",
|
||||
"getNoiseOscillator",
|
||||
"getNoiseMix"
|
||||
"getSoundIndex"
|
||||
],
|
||||
"/packages/superdough/helpers.mjs": [
|
||||
"noises",
|
||||
"gainNode",
|
||||
"getWorklet",
|
||||
"getParamADSR",
|
||||
"getCompressor",
|
||||
"getADSRValues",
|
||||
@@ -615,8 +550,6 @@
|
||||
],
|
||||
"/packages/superdough/sampler.mjs": [
|
||||
"getCachedBuffer",
|
||||
"getSampleInfo",
|
||||
"getSampleBuffer",
|
||||
"getSampleBufferSource",
|
||||
"loadBuffer",
|
||||
"reverseBuffer",
|
||||
@@ -626,32 +559,18 @@
|
||||
"onTriggerSample"
|
||||
],
|
||||
"/packages/superdough/superdough.mjs": [
|
||||
"DEFAULT_MAX_POLYPHONY",
|
||||
"setMaxPolyphony",
|
||||
"setMultiChannelOrbits",
|
||||
"soundMap",
|
||||
"registerSound",
|
||||
"applyGainCurve",
|
||||
"setGainCurve",
|
||||
"getSound",
|
||||
"getAudioDevices",
|
||||
"setDefault",
|
||||
"resetDefaults",
|
||||
"setDefaultValue",
|
||||
"getDefaultValue",
|
||||
"setDefaultValues",
|
||||
"resetDefaultValues",
|
||||
"setVersionDefaults",
|
||||
"resetLoadedSounds",
|
||||
"setDefaultAudioContext",
|
||||
"getAudioContext",
|
||||
"getAudioContextCurrentTime",
|
||||
"getWorklet",
|
||||
"initAudio",
|
||||
"initAudioOnFirstClick",
|
||||
"initializeAudioOutput",
|
||||
"connectToDestination",
|
||||
"panic",
|
||||
"getLfo",
|
||||
"analysers",
|
||||
"analysersData",
|
||||
"getAnalyserById",
|
||||
@@ -660,13 +579,17 @@
|
||||
"superdough",
|
||||
"superdoughTrigger"
|
||||
],
|
||||
"/packages/superdough/noise.mjs": [
|
||||
"getNoiseOscillator",
|
||||
"getNoiseMix"
|
||||
],
|
||||
"/packages/superdough/synth.mjs": [
|
||||
"registerSynthSounds",
|
||||
"waveformN",
|
||||
"getOscillator"
|
||||
],
|
||||
"/packages/superdough/zzfx_fork.mjs": [
|
||||
"buildSamples"
|
||||
"acorn parse error: SyntaxError: undefined"
|
||||
],
|
||||
"/packages/superdough/zzfx.mjs": [
|
||||
"getZZFX",
|
||||
@@ -717,7 +640,6 @@
|
||||
],
|
||||
"/packages/transpiler/transpiler.mjs": [
|
||||
"registerWidgetType",
|
||||
"registerLanguage",
|
||||
"transpiler",
|
||||
"getWidgetID"
|
||||
],
|
||||
@@ -732,7 +654,6 @@
|
||||
"drawTimeScope",
|
||||
"drawFrequencyScope"
|
||||
],
|
||||
"/packages/webaudio/spectrum.mjs": [],
|
||||
"/packages/webaudio/index.mjs": [],
|
||||
"/packages/xen/xen.mjs": [
|
||||
"edo",
|
||||
|
||||
Reference in New Issue
Block a user