Custom Envelope?
-
@d-healey said in Custom Envelope?:
I think it's a very good feature request, along with the flex envelope.
I took the time to set up a mockup if you wanna post a feature request. @Morphoice let me know if it needs any changes, i tried to stick to the HISE styleguide and made sure we dont crop the envelope to soon so it allows to display the full handles and not crop them like on HISEs other displays.
-
@Straticah brilliant!
Knobs for all the curve slope ( with 50% being linear), although the strength of the slope would be open for discussion. Some synthesizers aren't taking it far enough.
To make it versatile for filters it would be nice to have an initial level, sort of like the Yamaha CS synths did it.And when we're at it it wouldn't hurt to have the abillity for the Attack Level and the Hold Level to be seperate levels to enable a forced countouring of the sound no matter of its note length. Especially useful for one shots like drums.
-
@Straticah You can already do this by extrapolating on the example that @Matt_SF posted (which apparently I created).
- use a panel so you can define your own control scheme
- have clearly defined separate stages: attack, hold, decay, sustain, release
- curve setting uses skew and is done on the graph
- timing can be done on the graph and using the knobs
- based on the curve, set the points in the hidden tables which are connected to the backend tables (or which references you just pulled)
Because you're using skew which is just Math.pow(input, skew), you can easily draw the correct envelope.
The great thing about scriptnode is that you can define as many stages as necessary, and using the new compare node, you can easily move between stages when they're finished, so that their size can be fully dynamic. You would do this by using ramps for stages, plugging the ramp output into a compare node which would return 1 when a ramp is 1, setting off another ramp. And there's your flex envelope.
-
@aaronventure said in Custom Envelope?:
@Straticah You can already do this by extrapolating on the example that @Matt_SF posted (which apparently I created).
Yes, here :
https://forum.hise.audio/topic/8685/merry-christmas-polyphonic-flex-envelope?_=1707308327466:)
Nice job BTW -
@aaronventure yeah there are some workarounds. A draggable and skewable envelope should be default in HISE and native (no code).
-
@Straticah I agree. the workaround is just a workaround, however ingenious and well done. But that does not compete with other plugins - usability is key in a world this short-lived... we should aim to get the best possible user experience, hence a good stylable and draggable envelope should be a priority feature
-
@Morphoice feel free to post a feature request with my draft. I didnt had much success in the past with my feature requests so far so id apprechiate if someone else does a post or suggests to christoph if you want/need that feature :)
@Straticah said in Custom Envelope?:
@d-healey said in Custom Envelope?:
I think it's a very good feature request, along with the flex envelope.
I took the time to set up a mockup if you wanna post a feature request. @Morphoice let me know if it needs any changes, i tried to stick to the HISE styleguide and made sure we dont crop the envelope to soon so it allows to display the full handles and not crop them like on HISEs other displays.
-
I think we have to keep the AHDSR envelope as it is and add a new module that gives you more flexibility with a performance tradeoff. The AHDSR envelope is optimized to the bone to be able to be used with hundreds of sampler voices without adding much if any CPU and a flexible envelope with dynamic loop points & adjustable curves is another beast but I second that this might be useful in hybrid synth scenarios or other use cases.
-
@Christoph-Hart said in Custom Envelope?:
I think we have to keep the AHDSR envelope as it
But can we get the bugs fixed? The decay/release curve? And what about an updated GUI tile with editable points - same functionality as the current AHDSR, just a more useful UI?
-
I'd appreciate this. I've been working on my own one that uses SIMD by splitting the buffer into batches of 4, and is more modelled on the serum style LFO / envelope table.
If we could get something optimized that operates like that I'd love it.