HISE Logo Forum
    • Categories
    • Register
    • Login

    Sliderpack triggers onControl callback when it shouldn't

    Scheduled Pinned Locked Moved Bug Reports
    16 Posts 5 Posters 666 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • LindonL
      Lindon @d.healey
      last edited by

      Confirmed - happening here on windows too. Seems to be a bug.

      HISE Development for hire.
      www.channelrobot.com

      Christoph HartC 1 Reply Last reply Reply Quote 0
      • Christoph HartC
        Christoph Hart @Lindon
        last edited by

        If you comment out that line:

        Link Preview Image
        HISE/hi_scripting/scripting/api/ScriptingApiContent.cpp at 4c64ee1944780c039c7566bf085f51ecaa45a931 · christophhart/HISE

        The open source framework for sample based instruments - HISE/hi_scripting/scripting/api/ScriptingApiContent.cpp at 4c64ee1944780c039c7566bf085f51ecaa45a931 · christophhart/HISE

        favicon

        GitHub (github.com)

        it will not fire the callback anymore unless you explicitly call changed() on the slider pack, but then we're back to square one I guess.

        d.healeyD 1 Reply Last reply Reply Quote 0
        • d.healeyD
          d.healey @Christoph Hart
          last edited by d.healey

          @Christoph-Hart said in Sliderpack triggers onControl callback when it shouldn't:

          it will not fire the callback anymore unless you explicitly call changed() on the slider pack, but then we're back to square one I guess.

          Yes that won't solve it.

          The other controls work like this.

          If you move the control with the mouse it triggers its callback.
          If you set the value of the control from another script processor it triggers the callback.
          If you set the value from within the same script processor it does not trigger the callback but the control's value visually changes.

          Libre Wave - Freedom respecting instruments and effects
          My Patreon - HISE tutorials
          YouTube Channel - Public HISE tutorials

          d.healeyD 1 Reply Last reply Reply Quote 0
          • d.healeyD
            d.healey @d.healey
            last edited by d.healey

            @Christoph-Hart Think I might have found the fix

            Link Preview Image
            HISE/hi_scripting/scripting/api/ScriptingApiContent.cpp at 4c64ee1944780c039c7566bf085f51ecaa45a931 · christophhart/HISE

            The open source framework for sample based instruments - HISE/hi_scripting/scripting/api/ScriptingApiContent.cpp at 4c64ee1944780c039c7566bf085f51ecaa45a931 · christophhart/HISE

            favicon

            GitHub (github.com)

            Change sendNotification to dontSendNotification

            Link Preview Image
            Prevent sliderpack callback triggering when setting value via script. by davidhealey · Pull Request #258 · christophhart/HISE

            favicon

            GitHub (github.com)

            Libre Wave - Freedom respecting instruments and effects
            My Patreon - HISE tutorials
            YouTube Channel - Public HISE tutorials

            d.healeyD 1 Reply Last reply Reply Quote 0
            • d.healeyD
              d.healey @d.healey
              last edited by

              @d-healey Bugger, it no longer moves the sliders on the sliderpack.

              Libre Wave - Freedom respecting instruments and effects
              My Patreon - HISE tutorials
              YouTube Channel - Public HISE tutorials

              d.healeyD 1 Reply Last reply Reply Quote 0
              • d.healeyD
                d.healey @d.healey
                last edited by

                @d-healey Hmmm I think this is beyond my skill level...

                Libre Wave - Freedom respecting instruments and effects
                My Patreon - HISE tutorials
                YouTube Channel - Public HISE tutorials

                Christoph HartC 1 Reply Last reply Reply Quote 0
                • Christoph HartC
                  Christoph Hart @d.healey
                  last edited by

                  Well, this is more complicated than I thought it was, the implementation should follow a discussion about what we're trying to achieve here. So if I understand it correctly, the control callback shall not be executed when you call setValueAtIndex() to be consistent with the other UI elements (so if you want it to be executed, call changed() afterwards), but if you change a slider on the user interface it should fire.

                  What happens if you exchange the entire data set for the slider pack? Should it fire a callback then or does it still rely on calling changed()?

                  d.healeyD 1 Reply Last reply Reply Quote 1
                  • d.healeyD
                    d.healey @Christoph Hart
                    last edited by

                    @Christoph-Hart I think it's always best to have more control so I say you should have to call changed.

                    Libre Wave - Freedom respecting instruments and effects
                    My Patreon - HISE tutorials
                    YouTube Channel - Public HISE tutorials

                    d.healeyD 1 Reply Last reply Reply Quote 0
                    • d.healeyD
                      d.healey @d.healey
                      last edited by

                      I've opened a github issue for this one.

                      Libre Wave - Freedom respecting instruments and effects
                      My Patreon - HISE tutorials
                      YouTube Channel - Public HISE tutorials

                      ulrikU clevername27C 2 Replies Last reply Reply Quote 0
                      • ulrikU
                        ulrik @d.healey
                        last edited by

                        @d-healey confirmed on MacOS as well

                        Hise Develop branch
                        MacOs 15.3.1, Xcode 16.2
                        http://musikboden.se

                        1 Reply Last reply Reply Quote 1
                        • clevername27C
                          clevername27 @d.healey
                          last edited by

                          @d-healey said in Sliderpack triggers onControl callback when it shouldn't:

                          github issue

                          I seem to be running into the same situation - when I call .setAllValues, the callback triggers. I noticed that the GitHub issue is closed — are my expectations simply incorrect?

                          A related question – my sliderpack callback is being triggered, and when I query the value for the slider index, the value is -1. What does that mean?

                          Thanks.

                          d.healeyD 1 Reply Last reply Reply Quote 0
                          • d.healeyD
                            d.healey @clevername27
                            last edited by

                            @clevername27 said in Sliderpack triggers onControl callback when it shouldn't:

                            when I call .setAllValues, the callback triggers.

                            Here's a workaround

                            for (i = 0; i < mySliderPack.getNumSliders(); i++)
                                mySliderPack.setSliderAtIndex(i, value);
                            

                            @clevername27 said in Sliderpack triggers onControl callback when it shouldn't:

                            when I query the value for the slider index, the value is -1. What does that mean?

                            I guess that must be something unique to the setAllValues function triggering the callback

                            Libre Wave - Freedom respecting instruments and effects
                            My Patreon - HISE tutorials
                            YouTube Channel - Public HISE tutorials

                            clevername27C 1 Reply Last reply Reply Quote 1
                            • clevername27C
                              clevername27 @d.healey
                              last edited by

                              @d-healey Ah, right - that makes sense, because it's everything. Thanks, man!!!!

                              d.healeyD 1 Reply Last reply Reply Quote 0
                              • d.healeyD
                                d.healey @clevername27
                                last edited by

                                @clevername27 Look what I just found

                                4db5f456-f24d-4d92-ba65-bad3671c7041-image.png

                                Libre Wave - Freedom respecting instruments and effects
                                My Patreon - HISE tutorials
                                YouTube Channel - Public HISE tutorials

                                clevername27C 1 Reply Last reply Reply Quote 1
                                • clevername27C
                                  clevername27 @d.healey
                                  last edited by

                                  @d-healey Brill!

                                  1 Reply Last reply Reply Quote 0
                                  • First post
                                    Last post

                                  54

                                  Online

                                  1.7k

                                  Users

                                  11.7k

                                  Topics

                                  101.8k

                                  Posts