Forum
    • Categories
    • Register
    • Login

    Builder InterfaceTypes

    Scheduled Pinned Locked Moved General Questions
    48 Posts 5 Posters 945 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 @David Healey
      last edited by

      @David-Healey this is a minimalist test project...

      HISE Development for hire.
      www.channelrobot.com

      David HealeyD 1 Reply Last reply Reply Quote 0
      • David HealeyD
        David Healey @Lindon
        last edited by

        @Lindon Can you send it to me?

        Free HISE Bootcamp Full Course for beginners.
        YouTube Channel - Public HISE tutorials
        My Patreon - HISE tutorials

        LindonL 1 Reply Last reply Reply Quote 0
        • LindonL
          Lindon @David Healey
          last edited by

          @David-Healey yep hold on I will have to do some rebuilding...

          HISE Development for hire.
          www.channelrobot.com

          LindonL 1 Reply Last reply Reply Quote 0
          • LindonL
            Lindon @Lindon
            last edited by

            @David-Healey - OK how do you want it - its literally an init HISEScript and a .js file with the script in it...

            HISE Development for hire.
            www.channelrobot.com

            David HealeyD LindonL 2 Replies Last reply Reply Quote 0
            • David HealeyD
              David Healey @Lindon
              last edited by

              @Lindon If you can post it publicly just dump it here. Or a dm/email

              Free HISE Bootcamp Full Course for beginners.
              YouTube Channel - Public HISE tutorials
              My Patreon - HISE tutorials

              1 Reply Last reply Reply Quote 0
              • LindonL
                Lindon @Lindon
                last edited by

                So I am back here again with the lack of documentation.

                I want to create a container.... @dannytaurus kindly pointed me at part of the solution

                so I have:

                //holding container
                builder.create(builder.SynthChain.?????,"MasterContainer",0,builder.ChainIndexes.Direct); 
                

                I've tried reading the docs (ha ha ha ha ha..) I've tried the autocomplete....no answers

                can someone point out the correct syntax, and where I can in future find it?

                HISE Development for hire.
                www.channelrobot.com

                LindonL 1 Reply Last reply Reply Quote 0
                • LindonL
                  Lindon @Lindon
                  last edited by

                  @Lindon and of course the forum woo kicks in as soon as I post: here - for those looking ids the solution:

                  builder.create(builder.SoundGenerators.SynthChain ,"MasterContainer",0,builder.ChainIndexes.Direct); 
                  

                  HISE Development for hire.
                  www.channelrobot.com

                  LindonL 1 Reply Last reply Reply Quote 2
                  • LindonL
                    Lindon @Lindon
                    last edited by Lindon

                    @Lindon ..and then Im straight back here with this:

                    trying to make a script processor - the autocomplete gives me this:

                    	   theKeySwitchFilters[i] = builder.create(
                    	   				builder.MidiProcessors.ScriptProcessor,
                    					articulationNames[i] + "KeySwitchFilter",         // the ID
                    					theSamplerContainers[i],                  // the parent (root)
                    					builder.ChainIndexes.Direct               // the slot type		
                    	   				);
                    

                    and the complier gives me this:

                    Interface:! StdBuilderElements.js (22): Couldn't create module with ID ScriptProcessor 
                    

                    Anyone???

                    HISE Development for hire.
                    www.channelrobot.com

                    LindonL David HealeyD 2 Replies Last reply Reply Quote 0
                    • LindonL
                      Lindon @Lindon
                      last edited by Lindon

                      @Lindon and a search thru the forum gives me this answer:

                      	   theKeySwitchFilters[i] = builder.create(
                      
                      	   				builder.MidiProcessors.ScriptProcessor,
                      					articulationNames[i] + "KeySwitchFilter",         // the ID
                      					theSamplerContainers[i],                  // the parent (root)
                      					builder.ChainIndexes.Midi              // the slot type		
                      	   				);
                      

                      HISE Development for hire.
                      www.channelrobot.com

                      1 Reply Last reply Reply Quote 0
                      • David HealeyD
                        David Healey @Lindon
                        last edited by David Healey

                        @Lindon
                        Shouldn't the chain index be Midi rather than Direct?

                        Free HISE Bootcamp Full Course for beginners.
                        YouTube Channel - Public HISE tutorials
                        My Patreon - HISE tutorials

                        LindonL 1 Reply Last reply Reply Quote 0
                        • LindonL
                          Lindon @David Healey
                          last edited by

                          @David-Healey yep as you see above - meanwhile where is all this documentation hidden?

                          HISE Development for hire.
                          www.channelrobot.com

                          David HealeyD 1 Reply Last reply Reply Quote 0
                          • David HealeyD
                            David Healey @Lindon
                            last edited by

                            @Lindon Only doc I'm aware of: https://docs.hise.audio/scripting/scripting-api/builder/index.html

                            And the auto-complete, and this thread.

                            Free HISE Bootcamp Full Course for beginners.
                            YouTube Channel - Public HISE tutorials
                            My Patreon - HISE tutorials

                            LindonL 1 Reply Last reply Reply Quote 0
                            • LindonL
                              Lindon @David Healey
                              last edited by

                              @David-Healey so how did you know this?

                              @Lindon
                              Shouldn't the chain index be Midi rather than Direct?
                              
                              

                              HISE Development for hire.
                              www.channelrobot.com

                              David HealeyD 2 Replies Last reply Reply Quote 0
                              • David HealeyD
                                David Healey @Lindon
                                last edited by David Healey

                                @Lindon I posted it higher up in this thread when you asked a related question 😁

                                Now how did Dave of the past know this... according to my previous post it's in the auto complete.

                                Free HISE Bootcamp Full Course for beginners.
                                YouTube Channel - Public HISE tutorials
                                My Patreon - HISE tutorials

                                1 Reply Last reply Reply Quote 0
                                • David HealeyD David Healey referenced this topic
                                • David HealeyD
                                  David Healey @Lindon
                                  last edited by

                                  @Lindon Do you find the HISE crashes often when using the builder? I stopped using it because I was getting crashes with almost every compile.

                                  Free HISE Bootcamp Full Course for beginners.
                                  YouTube Channel - Public HISE tutorials
                                  My Patreon - HISE tutorials

                                  LindonL 1 Reply Last reply Reply Quote 0
                                  • LindonL
                                    Lindon @David Healey
                                    last edited by

                                    @David-Healey not at the moment...seems to work OK

                                    HISE Development for hire.
                                    www.channelrobot.com

                                    David HealeyD 1 Reply Last reply Reply Quote 0
                                    • David HealeyD
                                      David Healey @Lindon
                                      last edited by

                                      @Lindon I'm connecting to a lot of external scripts, that might be the issue

                                      Free HISE Bootcamp Full Course for beginners.
                                      YouTube Channel - Public HISE tutorials
                                      My Patreon - HISE tutorials

                                      LindonL 1 Reply Last reply Reply Quote 0
                                      • LindonL
                                        Lindon @David Healey
                                        last edited by

                                        @David-Healey yeah maybe , meanwhile the feckinn autocomplete is a pile of doggy do...

                                        HISE Development for hire.
                                        www.channelrobot.com

                                        David HealeyD 1 Reply Last reply Reply Quote 0
                                        • David HealeyD
                                          David Healey @Lindon
                                          last edited by

                                          @Lindon said in Builder InterfaceTypes:

                                          autocomplete is a pile of doggy do...

                                          💩

                                          What's it done?

                                          Free HISE Bootcamp Full Course for beginners.
                                          YouTube Channel - Public HISE tutorials
                                          My Patreon - HISE tutorials

                                          LindonL 1 Reply Last reply Reply Quote 0
                                          • LindonL
                                            Lindon @David Healey
                                            last edited by Lindon

                                            @David-Healey it works sometimes and the on others fails completely - only showing me the list of variables I'm using in my script.... its really really crap.

                                            HISE Development for hire.
                                            www.channelrobot.com

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

                                            19

                                            Online

                                            2.3k

                                            Users

                                            13.6k

                                            Topics

                                            118.6k

                                            Posts