HISE Logo Forum
    • Categories
    • Register
    • Login

    Change VoiceLimit and VoiceAmount with a Button

    Scheduled Pinned Locked Moved Unsolved Scripting
    26 Posts 2 Posters 1.0k 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.
    • d.healeyD
      d.healey @meto396
      last edited by

      @meto396

      @meto396 said in Change VoiceLimit and VoiceAmount with a Button:

      "duplicate const var declaration"

      Variable names must be unique. - but I'd go with the asSampler method anyway.

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

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

        @d-healey said in Change VoiceLimit and VoiceAmount with a Button:

        asSampler

        Does that mean I have to change everything in the CostumSampleImport script to asSampler if I reference the sampler as childSynth?

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

          @meto396

          Where you want to access a function that is part of the Sampler class (it shows up under the list of Sample functions in the API browser) you can use Sampler1.asSampler().myFunctionHere()

          If you're doing this many times within an inline function you might just store the reference in a local variable to reduce the amount of code you have to write. local s = Sampler1.asSampler(); for example.

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

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

            @d-healey like this?

            const var Button1 = Content.getComponent("Button1");
            
            inline function onButton1Control(component, value)
            {
                local s = Sampler1.asSampler();
            
                if(value == 0)
                {
                    s.setAttribute(s.VoiceLimit, 32);
                    s.setAttribute(s.VoiceAmount, 32);
                }
                else
                {
                    s.setAttribute(s.VoiceLimit, 256);
                    s.setAttribute(s.VoiceAmount, 256);
                }
            }
            
            Button1.setControlCallback(onButton1Control);
            
            d.healeyD 1 Reply Last reply Reply Quote 0
            • d.healeyD
              d.healey @meto396
              last edited by

              @meto396 We've already established how to solve that problem, you need to get it as a childSynth not a Sampler.

              It's the other places where you want it as a Sampler that you need to do that.

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

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

                @d-healey but when I use childsynth I get error after error because functions are not found

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

                  @meto396 Check out the snippet I posted above.

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

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

                    @d-healey I did already but this doesn't change my problems as soon as I change the getSampler to ChildSynth the whole code that works doesn't work anymore: screen1.png

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

                      @meto396 said in Change VoiceLimit and VoiceAmount with a Button:

                      the whole code that works doesn't work anymore

                      That's because those other parts (the line numbers in the error messages) need the Sampler reference, so that's where you use .asSampler()

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

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

                        @d-healey so all of them functions must be look like this?

                        Sampler1.asSampler().clearSampleMap();
                        
                        d.healeyD 1 Reply Last reply Reply Quote 0
                        • d.healeyD
                          d.healey @meto396
                          last edited by

                          @meto396 Correct

                          You can see in the API browser that function is part of the Sampler class

                          7f65115e-337c-49c7-85e7-ef816fea4781-image.png

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

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

                          36

                          Online

                          1.7k

                          Users

                          11.7k

                          Topics

                          102.2k

                          Posts