<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[HELP! I modeled a Roland D-50 in HISE&#x2F;Faust, but...]]></title><description><![CDATA[<p dir="auto">Ahoi!</p>
<p dir="auto">This has been a couple of hard all-nighters, and it finally somewhat works<br />
<a href="https://www.youtube.com/watch?v=rT4RH9pRJxQ" rel="nofollow ugc">https://www.youtube.com/watch?v=rT4RH9pRJxQ</a></p>
<p dir="auto">BUT:</p>
<p dir="auto">Every time changes the preset in HISE, the Hardcoded Master FX reverb drops out and is somehow reset although nothing writes to it, at least not in any of my scripts. What I've traced so far in the HISE source:</p>
<p dir="auto">UserPresetHandler.cpp: alls allNotesOff(false), then killAndCallOnLoadingThread meaning all voices are killed before the preset loads.<br />
With no voices left, EffectProcessorChain::killMasterEffects() soft-bypasses the master effects</p>
<p dir="auto">Is there a supported way to keep a master FX's internal state across a user preset load?<br />
Does moving the effect out of the synth's FX chain (into the plugin-level master chain) avoid the voice-kill path, or does the same reset apply there?<br />
Ideally I'd like the reverb to ring out across a patch change, which is what the hardware I'm modelling does.</p>
]]></description><link>https://forum.hise.audio/topic/15003/help-i-modeled-a-roland-d-50-in-hise-faust-but</link><generator>RSS for Node</generator><lastBuildDate>Sat, 15 Aug 2026 19:58:48 GMT</lastBuildDate><atom:link href="https://forum.hise.audio/topic/15003.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 15 Aug 2026 14:44:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to HELP! I modeled a Roland D-50 in HISE&#x2F;Faust, but... on Sat, 15 Aug 2026 16:40:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/3773">@Morphoice</a><br />
Ah, no but that <strong>is</strong> a reason to reset everything!<br />
Under many conditions, changing parameter values all at once can produce monstruous audio. Like, if the DSP effect has feedback, if you don't clear all the buffers, the audio from before the switch, could blow up under the new parameters. There are scenarios that can sound really horrible or blow out your speakers. I mean, let's say the new preset has different reverb parameters, you'll get all the reverb knobs yanked while it's still playing, and get all that washy doppler... Of course that's not a <em>horrible</em> situation, but you can imagine that certain DSP would produce really loud nightmares. Which is why it's quite sane for Hise to send reset() on a preset change, to clear out all the buffers and start from silence. It's the safest thing to do.</p>
<p dir="auto">But I agree that creatively, there are situations where this is not what you want. But you can understand why Hise went with the blanket solution.</p>
]]></description><link>https://forum.hise.audio/post/122559</link><guid isPermaLink="true">https://forum.hise.audio/post/122559</guid><dc:creator><![CDATA[griffinboy]]></dc:creator><pubDate>Sat, 15 Aug 2026 16:40:07 GMT</pubDate></item><item><title><![CDATA[Reply to HELP! I modeled a Roland D-50 in HISE&#x2F;Faust, but... on Sat, 15 Aug 2026 15:53:18 GMT]]></title><description><![CDATA[<p dir="auto">basically though, a preset change is just changing all the Faust nodes knobs... so there wouldn't really be a reason to reset anything... so maybe a custom preset loader might work</p>
]]></description><link>https://forum.hise.audio/post/122557</link><guid isPermaLink="true">https://forum.hise.audio/post/122557</guid><dc:creator><![CDATA[Morphoice]]></dc:creator><pubDate>Sat, 15 Aug 2026 15:53:18 GMT</pubDate></item><item><title><![CDATA[Reply to HELP! I modeled a Roland D-50 in HISE&#x2F;Faust, but... on Sat, 15 Aug 2026 15:08:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/3773">@Morphoice</a></p>
<p dir="auto">Hise calls reset() during those changes, so i'm afraid it's Hise actually telling the dsp to clear the buffers! Reverb can't be continuous unless you do some really hacky stuff, like leaving the reset() function empty and using prepare() to cut off tails instead (lots of Daws call prepare() before audio rendering and so that can be used as the reset function)  but it just dawned on me that Hise might also might be calling prepare() too when you change presets... not sure.</p>
<p dir="auto">But If I were you, I wouldn't use any hacky methods like that, because not all Daws will work the same. This seems like a tricky situation! I'm not sure if there is a Hise feature that makes sense, that could be proposed? The fix would have to be in the Hise engine, but it's a bit of an odd feature. So I'm not sure if Christoph would be enthusiastic about it. Maybe worth asking him about this scenario.</p>
<p dir="auto">I'd probably investigate <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/449">@ustk</a> 's suggestion first, to make a custom preset system.</p>
]]></description><link>https://forum.hise.audio/post/122556</link><guid isPermaLink="true">https://forum.hise.audio/post/122556</guid><dc:creator><![CDATA[griffinboy]]></dc:creator><pubDate>Sat, 15 Aug 2026 15:08:07 GMT</pubDate></item><item><title><![CDATA[Reply to HELP! I modeled a Roland D-50 in HISE&#x2F;Faust, but... on Sat, 15 Aug 2026 14:57:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/3773">@Morphoice</a> I think you'll need to store the base64 state of the module in question in the preLoadCallback and restore it in the post CB.</p>
<p dir="auto">But I'm afraid continuous sounding reverb isn't possible, because the audio engine cuts during preset change. And I remember <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> saying it's not possible to change this because it would cause too many race condition issues during the switch phase...</p>
<p dir="auto">Unless...</p>
<p dir="auto">You run your own preset system which would only perform parameter value changes... Like undo/redo, AB comparison, or random buttons generally do...</p>
]]></description><link>https://forum.hise.audio/post/122554</link><guid isPermaLink="true">https://forum.hise.audio/post/122554</guid><dc:creator><![CDATA[ustk]]></dc:creator><pubDate>Sat, 15 Aug 2026 14:57:57 GMT</pubDate></item></channel></rss>