Hi,
I’m still learning Juce and C++ so there maybe some mis-understandings on my part of various strategies for communicating between threads!
The situation is this, I’ve been constructing quite a complex midi plugin - there are modular elements, complex arpeggiation and various other things going on under the hood and I’m trying to settle on a strategy for communicating between the UI thread and the Audio thread.
The state of the UI is stored in a valueTree and my idea based on various things I’ve read on here is to create a ‘permanent’ proxy class that contains all the members of the valueTree and is updated as and when the valueTree is updated, but with primitive data types so that they can be read quickly on the audio thread. I would then copy that object to a second object of the same type, and pass a pointer to the copied object across to the audioThread using a FIFO queue.
I’m still figuring out the details, but before over-investing in the strategy I just wanted to see if others thought this was a viable approach?