You want a wavetable oscillator where:
Hand-Drawn Wavetables: Users can draw a waveform (e.g., via a UI element) to define a single-cycle waveform.
Random Generation: A function generates a random single-cycle waveform.
HISE Integration: The oscillator works within HISE, leveraging its synthesis and modulation capabilities.
HISE already has a built-in WavetableSynth module, but it relies on pre-converted .hwt files and doesn’t natively support real-time drawing or random generation in its UI. You’ll need to create a custom oscillator and possibly extend the UI to meet your needs.
HISE supports multiple DSP development paths:
SNEX: A C++-like scripting language native to HISE for real-time DSP, integrated with its scriptnode system.
RNBO: A Max/MSP-based code export tool from Cycling ’74, which generates C++ code deployable in HISE.
FAUST: A functional programming language for signal processing, which compiles to C++ and can be integrated into HISE.