HISE C++ API + Interfase Designer
-
I've managed to update and compile the RawTest example from tutorials (just updated RawDataBase name to DataHolderBase)

But I still not getting this: Can I do the DSP portion in HISE C++ API and the UI portion of an instrument in the HISE Interfase Designer? (link parameters, listeners, use the preset browser, etc...)
-
That would be overcomplicating things. I think all you need is to add your custom HISE module and recompile HISE so that it can load it.
Given your track record, I assume you're talking about an additive synth, yes? :) In this case, all you need is to create a class for it, subclassing
hise::ModulatorSynthand give the class to the factory. I've recently added theMacroControlContainerand you might use this commit as starting point on where to add stuff and how to add it.Also, take a look at the SineSynth class, you might get close by copy & pasting it, then just exchange the inner workings.
-
@Christoph-Hart yes !! Additive synth but a lot more of other DSP weirdo things. Will try the HISE-source-killing way :)
Will take a look to that commit! Thanks a lot Christoph!