mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-12 14:18:31 +00:00
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
import { Tone } from '@strudel.cycles/tone';
|
|
import { evalScope } from '@strudel.cycles/eval';
|
|
import { MiniRepl as _MiniRepl } from '@strudel.cycles/react';
|
|
import controls from '@strudel.cycles/core/controls.mjs';
|
|
import { loadWebDirt } from '@strudel.cycles/webdirt';
|
|
import { samples } from '@strudel.cycles/webaudio';
|
|
|
|
export const defaultSynth = new Tone.PolySynth().chain(new Tone.Gain(0.5), Tone.Destination).set({
|
|
oscillator: { type: 'triangle' },
|
|
envelope: {
|
|
release: 0.01,
|
|
},
|
|
});
|
|
|
|
samples(
|
|
{
|
|
bd: '808bd/BD0000.WAV',
|
|
sd: ['808sd/SD0010.WAV', '808sd/SD0050.WAV', '808sd/SD0000.WAV'],
|
|
hh: ['hh27/000_hh27closedhh.wav', 'hh/000_hh3closedhh.wav'],
|
|
},
|
|
'https://raw.githubusercontent.com/tidalcycles/Dirt-Samples/master/',
|
|
);
|
|
|
|
evalScope(
|
|
Tone,
|
|
controls,
|
|
import('@strudel.cycles/core'),
|
|
import('@strudel.cycles/tone'),
|
|
import('@strudel.cycles/tonal'),
|
|
import('@strudel.cycles/mini'),
|
|
import('@strudel.cycles/midi'),
|
|
import('@strudel.cycles/xen'),
|
|
import('@strudel.cycles/webaudio'),
|
|
import('@strudel.cycles/osc'),
|
|
import('@strudel.cycles/webdirt'),
|
|
);
|
|
|
|
loadWebDirt({
|
|
sampleMapUrl: '../EmuSP12.json',
|
|
sampleFolder: '../EmuSP12',
|
|
});
|
|
|
|
export function MiniRepl({ tune }) {
|
|
return <_MiniRepl tune={tune} defaultSynth={defaultSynth} hideOutsideView={true} />;
|
|
}
|