HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. nadir_222
    N
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 6
    • Groups 0

    nadir_222

    @nadir_222

    0
    Reputation
    1
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    nadir_222 Unfollow Follow

    Latest posts made by nadir_222

    • RE: Fft based processing

      @HISEnberg
      current version of RNBO fft processing works but at least on my laptop performs worse compared to doing the same stuff with max pfft~ or pure data.

      I made some experiments where i could replace something that requires 4x overlap + hann window with 2x overlap and a custom window function so I would definetly recommend experimenting with that.

      But I hope they'll adress that with an update someday

      posted in C++ Development
      N
      nadir_222
    • RE: Scrambled Parameter IDs // Radio Group to Index Number

      @d-healey I managed to figure it out, maybe not the most elegant solution but it works.
      Screenshot 2024-09-26 12.08.09.png

      posted in General Questions
      N
      nadir_222
    • RE: Scrambled Parameter IDs // Radio Group to Index Number

      @d-healey my idea would be to move what I have in RNBO for converting the individual button states to an index to HISE.
      Screenshot 2024-09-25 17.40.55.png
      where "param" would be replaced with button names and "out" controls a parameter on my hardcoded master FX.
      Not sure how to do this though because like inline function can only take one component.

      posted in General Questions
      N
      nadir_222
    • RE: Scrambled Parameter IDs // Radio Group to Index Number

      hi david,

      thanks for the quick response!
      but I think you misunderstood me due to me poorly naming parameters.
      Ill attach a screenshot from one of the tests ive done.
      i named the paramters in my hardcoded fx 'one', 'two', 'one_1' etc.

      whats basically happening is that if i set the parameter ID in property editor of Button named "one" to parameter ID "one" it actually ends up controlling a paramter ID named "two_1".
      as you can see in the screenshot these are two steps apart in how the hardcoded master FX list the parameters.
      Screenshot 2024-09-25 14.52.53.png

      posted in General Questions
      N
      nadir_222
    • RE: Scrambled Parameter IDs // Radio Group to Index Number

      ok after some further analysis, there is an offset by 2 it was just hard to tell.
      This leads me to believe that the maximum amount of parameters for a hardcoded master FX is 20.

      So this just leaves the last part of my post:

      is there a wave to convert the values of buttons within a radio group to a single index number and then assign it to a ParameterID?

      posted in General Questions
      N
      nadir_222
    • Scrambled Parameter IDs // Radio Group to Index Number

      hi there,

      I'm working on a project where i need two multitoggles for my hardcoded master FX, so at first I used the combobox (with two parameters that take and index number) but then wanted to do a customized version with its own design and all options visible with no pop up.

      I achieved this by using nine buttons each and two radio groups (this time with nine parameters each with on/off which gets parsed back to an index number within my code) which works fine.

      However when I added more parameters HISE seems to have a problem with assigning Parameter IDs to UI elements .

      For example if I assign Button1 to ParameterID 'one' it controls ParameterID 'four' etc (note that it appears to be random not offset by a particular number). This didnt happen when I still had 19 parameters but started happening when I reached 21 paramters.

      So I'm wondering if theres a limit for number of parameters for hardcoded master FX or if thats a known bug and if theres a solution for it.
      Or if I can somehow parse the values from each button in a radio group to an index number in HISE and link it with a parameter in my hardcoded master FX.

      thanks in advance

      best regards
      Jan

      posted in General Questions
      N
      nadir_222