65 lines
1.9 KiB
TypeScript
65 lines
1.9 KiB
TypeScript
|
|
/**
|
||
|
|
* ElysiamorfMode — granular / morphing synth (xy_pad input, 40 outputs).
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { Component } from 'solid-js';
|
||
|
|
import { ModeShell } from './ModeShell';
|
||
|
|
import { useModeRuntime } from './mode-runtime';
|
||
|
|
import { XYPad } from '../primitives/XYPad';
|
||
|
|
import { OutputDisplay } from '../primitives/OutputDisplay';
|
||
|
|
import { SliderBank } from '../primitives/SliderBank';
|
||
|
|
import { LossPlot } from '../primitives/LossPlot';
|
||
|
|
import { paramsToSliderConfig, outputsToSliderValues } from './mode-helpers';
|
||
|
|
import { ElysiamorfSchema } from './generated/elysiamorf_schema';
|
||
|
|
|
||
|
|
export const ElysiamorfMode: Component = () => {
|
||
|
|
const schema = ElysiamorfSchema;
|
||
|
|
const runtime = useModeRuntime(schema);
|
||
|
|
const sliderConfig = paramsToSliderConfig(schema.params);
|
||
|
|
const sliderValues = () => outputsToSliderValues(runtime.processedOutputs(), schema.params);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<ModeShell
|
||
|
|
schema={schema}
|
||
|
|
runtime={runtime}
|
||
|
|
drawerTitle="Elysiamorf params"
|
||
|
|
drawerContent={() => (
|
||
|
|
<SliderBank
|
||
|
|
title="Live morph params"
|
||
|
|
sliders={sliderConfig}
|
||
|
|
values={sliderValues}
|
||
|
|
onChange={() => {
|
||
|
|
/* read-only */
|
||
|
|
}}
|
||
|
|
/>
|
||
|
|
)}
|
||
|
|
primaryInput={() => (
|
||
|
|
<>
|
||
|
|
<XYPad
|
||
|
|
size={280}
|
||
|
|
ariaLabel="Elysiamorf pad"
|
||
|
|
onMove={(x, y) => runtime.setInput(x, y)}
|
||
|
|
position={runtime.pipedInput}
|
||
|
|
/>
|
||
|
|
<span style={{ 'font-size': 'var(--fs-xs)', color: 'var(--fg-mute)' }}>
|
||
|
|
Drag to morph through grain space.
|
||
|
|
</span>
|
||
|
|
</>
|
||
|
|
)}
|
||
|
|
outputArea={() => (
|
||
|
|
<>
|
||
|
|
<OutputDisplay
|
||
|
|
values={runtime.processedOutputs}
|
||
|
|
width={360}
|
||
|
|
height={120}
|
||
|
|
color="#ffb060"
|
||
|
|
/>
|
||
|
|
<LossPlot history={runtime.training.lossHistory} width={360} height={70} />
|
||
|
|
</>
|
||
|
|
)}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default ElysiamorfMode;
|