mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-25 04:28:30 +00:00
add extend to eval to control scope
This commit is contained in:
parent
54d41410fb
commit
2f13e425c6
@ -1,53 +1,13 @@
|
|||||||
import shapeshifter from './shapeshifter.mjs';
|
import shapeshifter from './shapeshifter.mjs';
|
||||||
import * as strudel from '@strudel/core/strudel.mjs';
|
|
||||||
import '@strudel/tone/tone.mjs';
|
|
||||||
import '@strudel/midi/midi.mjs';
|
|
||||||
import '@strudel/tonal/voicings.mjs';
|
|
||||||
import '@strudel/tonal/tonal.mjs';
|
|
||||||
import '@strudel/xen/xen.mjs';
|
|
||||||
import '@strudel/xen/tune.mjs';
|
|
||||||
import '@strudel/core/euclid.mjs';
|
|
||||||
import euclid from '@strudel/core/euclid.mjs';
|
|
||||||
import '@strudel/tone/pianoroll.mjs';
|
|
||||||
import '@strudel/tone/draw.mjs';
|
|
||||||
import * as uiHelpers from '@strudel/tone/ui.mjs';
|
|
||||||
import * as drawHelpers from '@strudel/tone/draw.mjs';
|
|
||||||
import gist from '@strudel/core/gist.js';
|
|
||||||
import { mini } from '@strudel/mini/mini.mjs';
|
|
||||||
import { Tone } from '@strudel/tone';
|
|
||||||
import * as toneHelpers from '@strudel/tone/tone.mjs';
|
|
||||||
import * as voicingHelpers from '@strudel/tonal/voicings.mjs';
|
|
||||||
|
|
||||||
// this will add all methods from definedMethod to strudel + connect all the partial application stuff
|
export const extend = (...args) => {
|
||||||
const bootstrapped = { ...strudel, ...strudel.Pattern.prototype.bootstrap() };
|
// TODO: find a way to make args available to eval without adding it to global scope...
|
||||||
// console.log('bootstrapped',bootstrapped.transpose(2).transpose);
|
// sadly, "with" does not work in strict mode
|
||||||
|
Object.assign(window, ...args);
|
||||||
function hackLiteral(literal, names, func) {
|
};
|
||||||
names.forEach((name) => {
|
|
||||||
Object.defineProperty(literal.prototype, name, {
|
|
||||||
get: function () {
|
|
||||||
return func(String(this));
|
|
||||||
},
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// with this, you can do 'c2 [eb2 g2]'.mini.fast(2) or 'c2 [eb2 g2]'.m.fast(2),
|
|
||||||
hackLiteral(String, ['mini', 'm'], bootstrapped.mini); // comment out this line if you panic
|
|
||||||
hackLiteral(String, ['pure', 'p'], bootstrapped.pure); // comment out this line if you panic
|
|
||||||
|
|
||||||
// this will add everything to global scope, which is accessed by eval
|
|
||||||
Object.assign(globalThis, Tone, bootstrapped, toneHelpers, voicingHelpers, drawHelpers, uiHelpers, {
|
|
||||||
gist,
|
|
||||||
euclid,
|
|
||||||
mini,
|
|
||||||
Tone,
|
|
||||||
});
|
|
||||||
|
|
||||||
export const evaluate = async (code) => {
|
export const evaluate = async (code) => {
|
||||||
const shapeshifted = shapeshifter(code); // transform syntactically correct js code to semantically usable code
|
const shapeshifted = shapeshifter(code); // transform syntactically correct js code to semantically usable code
|
||||||
drawHelpers.cleanup();
|
|
||||||
uiHelpers.cleanup();
|
|
||||||
let evaluated = await eval(shapeshifted);
|
let evaluated = await eval(shapeshifted);
|
||||||
if (!isPattern(evaluated)) {
|
if (!isPattern(evaluated)) {
|
||||||
console.log('evaluated', evaluated);
|
console.log('evaluated', evaluated);
|
||||||
|
|||||||
@ -1,16 +1,41 @@
|
|||||||
import React, { useCallback, useLayoutEffect, useRef, useState } from 'react';
|
import React, { useCallback, useLayoutEffect, useRef, useState } from 'react';
|
||||||
import CodeMirror, { markEvent, markParens } from './CodeMirror';
|
import CodeMirror, { markEvent, markParens } from './CodeMirror';
|
||||||
import cx from './cx';
|
import cx from './cx';
|
||||||
import { evaluate } from '@strudel/eval';
|
import { evaluate, extend } from '@strudel/eval';
|
||||||
import logo from './logo.svg';
|
import logo from './logo.svg';
|
||||||
import playStatic from './static.mjs';
|
import playStatic from './static.mjs';
|
||||||
import { defaultSynth } from '@strudel/tone';
|
import { defaultSynth } from '@strudel/tone';
|
||||||
import * as tunes from './tunes.mjs';
|
import * as tunes from './tunes.mjs';
|
||||||
import useRepl from './useRepl.mjs';
|
import useRepl from './useRepl.mjs';
|
||||||
import { useWebMidi } from './useWebMidi';
|
import { useWebMidi } from './useWebMidi';
|
||||||
import './App.css'
|
import './App.css';
|
||||||
|
// eval stuff start
|
||||||
|
import * as strudel from '@strudel/core/strudel.mjs';
|
||||||
|
import gist from '@strudel/core/gist.js';
|
||||||
|
import { mini } from '@strudel/mini/mini.mjs';
|
||||||
|
import { Tone } from '@strudel/tone';
|
||||||
|
import * as toneHelpers from '@strudel/tone/tone.mjs';
|
||||||
|
import * as voicingHelpers from '@strudel/tonal/voicings.mjs';
|
||||||
|
import * as uiHelpers from '@strudel/tone/ui.mjs';
|
||||||
|
import * as drawHelpers from '@strudel/tone/draw.mjs';
|
||||||
|
import euclid from '@strudel/core/euclid.mjs';
|
||||||
|
import '@strudel/tone/tone.mjs';
|
||||||
|
import '@strudel/midi/midi.mjs';
|
||||||
|
import '@strudel/tonal/voicings.mjs';
|
||||||
|
import '@strudel/tonal/tonal.mjs';
|
||||||
|
import '@strudel/xen/xen.mjs';
|
||||||
|
import '@strudel/xen/tune.mjs';
|
||||||
|
import '@strudel/core/euclid.mjs';
|
||||||
|
import '@strudel/tone/pianoroll.mjs';
|
||||||
|
import '@strudel/tone/draw.mjs';
|
||||||
|
|
||||||
// TODO: use https://www.npmjs.com/package/@monaco-editor/react
|
extend(Tone, strudel, strudel.Pattern.prototype.bootstrap(), toneHelpers, voicingHelpers, drawHelpers, uiHelpers, {
|
||||||
|
gist,
|
||||||
|
euclid,
|
||||||
|
mini,
|
||||||
|
Tone,
|
||||||
|
});
|
||||||
|
// eval stuff end
|
||||||
|
|
||||||
const [_, codeParam] = window.location.href.split('#');
|
const [_, codeParam] = window.location.href.split('#');
|
||||||
let decoded;
|
let decoded;
|
||||||
@ -118,6 +143,8 @@ function App() {
|
|||||||
const _code = getRandomTune();
|
const _code = getRandomTune();
|
||||||
console.log('tune', _code); // uncomment this to debug when random code fails
|
console.log('tune', _code); // uncomment this to debug when random code fails
|
||||||
setCode(_code);
|
setCode(_code);
|
||||||
|
drawHelpers.cleanup();
|
||||||
|
uiHelpers.cleanup();
|
||||||
const parsed = await evaluate(_code);
|
const parsed = await evaluate(_code);
|
||||||
setPattern(parsed.pattern);
|
setPattern(parsed.pattern);
|
||||||
}}
|
}}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user