We have a sequencing plugin that only has a few parameters and lots of non-parameter state. We signal changes to non-parameter state to the host with updateHostDisplay(ChangeDetails().withNonParameterStateChanged(true)).
We have an issue with some users reporting that our plugin occasionally loses state when they save and reopen their DAW projects. Unfortunately, we have not been able to reproduce the issue but our best guess is that the host for some reason skips the call to getStateInformation when the project is saved, even though we have called updateHostDisplay.
I wonder if anyone has experience with similar issues, and how they may have solved the problem?
I have read about people adding a “dummy” parameter that they update whenever non-parameter state is changed, which seems like a crude solution - although I imagine it’s effective. Only problem is that there does not seem to be a reliable way to hide this dummy parameter in the host (i.e. make it non-automatable).
It turns out that updateHostDisplay(ChangeDetails().withNonParameterStateChanged(true)) does absolutely nothing in the VST2 and AU wrappers… now that explains a lot. As an added bonus, it also crashes Reason 12
After a full day of research and testing I’m inclined to agree with @leehu that the only viable solution is to create a dummy parameter.
I also found that, although most hosts actually do seem to respect the isAutomatable()property these days, a few of them also disregard non-automatable parameters completely. So trying to tuck the dummy parameter away by making it non-automatable renders the solution ineffective in some hosts.
It may be ugly, but an automatable dummy parameter seems to be the only solution that works consistently across all formats and hosts. Ugh.