I'm currently working on a synthesizer and I have a satisfactorily working one, but now I'm interested in improving the GUI. All the code is currently written in C++. The synth is controlled with a MIDI controller and 2 trill squares so right now all the GUI is is the current position of the two squares (p5js sketch). I'm interested in extending the GUI in two directions:
More informative block diagram/signal chain - display fft of base waveform, (animated) filter frequency responses, ADSR envelope, all in a block diagram that demonstrates how different modules are connected and visualizes their effect.
"Advanced" controls - currently the timbre of the synth is dictated by 4 parameters, but I wanted to add toggle-able controls as an "advanced" mode - allow access to all ADSR parameters, filter resonances, and frequency modulation parameters.
Having both of these would be nice, but if I had to prioritize one, it would probably be the first one for now.
From what I've seen in the examples and BELA library, there seem to be 2 ways I could go about this: javascript sketches or a PureData patch (integrated with my C++ code). Up until now 95% of my experience with BELA has been using c++, and I have little experience with both MSP/PureData and Processing/Javascript. Given that, I'd just like some advice to point me into a direction and I'll figure out the rest. Any help is appreciated.