HISE Logo Forum
    • Categories
    • Register
    • Login

    Viewport

    Scheduled Pinned Locked Moved Scripting
    73 Posts 9 Posters 6.8k 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.
    • DalartD
      Dalart @Christoph Hart
      last edited by

      @Christoph-Hart Thank You !
      I cant wait to test it out and try to learn how it works =)

      1 Reply Last reply Reply Quote 0
      • DalartD
        Dalart @Christoph Hart
        last edited by

        @Christoph-Hart said in Viewport:

        Yes I will include a snippet for this in the new fancy documentation I am working on right now.

        Is there an ETA for the new documentation and examples or are they on github already somewhere ?

        1 Reply Last reply Reply Quote 0
        • Dan KorneffD
          Dan Korneff
          last edited by

          Is there an API for the Viewport yet?
          Trying to figure out how to view the contents of a folder.... ultimately, midi files so I can load them into the new midi player.

          Dan Korneff - Producer / Mixer / Audio Nerd

          1 Reply Last reply Reply Quote 1
          • DalartD
            Dalart
            last edited by

            Im also still interested in how to view / sort the samplemaps into folders as talked about in this thread.

            1 Reply Last reply Reply Quote 0
            • ulrikU
              ulrik
              last edited by ulrik

              @Dalart @dustbro the "Registers & Chords" is a viewport

              Skärmavbild 2019-08-28 kl. 23.13.36.png

              I populated it using array
              this array

              const var ArtList = ["Stradella", "Freebass", "Tenor (Bass)", "Master (Bass)", "Alto (Bass)",
              "Low Shift (Bass)", "Master Shift (Bass)", "High Shift (Bass)",
              "Bassoon (Treble)", "Bandoneon (Treble)", "Master (Treble)", "Violin (Treble)", "Clarinet (Treble)",
              "Major (Chord)", "Minor (Chord)", "Seventh (Chord)", "Diminished (Chord)"];
              

              and making the array readable in the VP

              inline function onArtVpControl(component, value)
              {
                  ArtVp.set("items", ArtVpList.join("\n"));
                  uaccVp.setValue(uaccUserList[value]-1);
              };
              

              and accessing the value from another array called uaccUserList and sending it to the "uaccVp" which is an ComboBox

              So the "ArtVp" is the ViewPort now populated with the array "ArtVpList" and clicking on any of the items in the ArtVp will get you a value, the same value as the index of the array, if I remember right, maybe the value starts with 1 (and the first index in an array is 0)

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

              Dan KorneffD 1 Reply Last reply Reply Quote 2
              • Dan KorneffD
                Dan Korneff @ulrik
                last edited by

                @ulrik How do you populate it with the contents of a folder?

                Dan Korneff - Producer / Mixer / Audio Nerd

                ulrikU 1 Reply Last reply Reply Quote 0
                • ulrikU
                  ulrik @Dan Korneff
                  last edited by

                  @dustbro if you mean without having the folder content already in an array? I don't know. :(

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

                  ulrikU 1 Reply Last reply Reply Quote 0
                  • ulrikU
                    ulrik @ulrik
                    last edited by ulrik

                    @ulrik I found this line in "ScriptingApi.h" from the source code

                    /** Returns a list of the sounds selected in the samplemap. */
                    		var createListFromGUISelection();
                    

                    and

                    /** Returns an array with all available sample maps. */
                    		var getSampleMapList() const;
                    

                    maybe this has something to do with it?

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

                    ulrikU 1 Reply Last reply Reply Quote 0
                    • ulrikU
                      ulrik @ulrik
                      last edited by ulrik

                      @dustbro This will get you an array of all sampleMaps, then you can populate the ViewPort with the array.

                      const var list = Sampler.getSampleMapList();
                      

                      I don't know about getting midi files from the folder, sorry.

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

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

                        @Christoph-Hart yes it would seem we need a generalised way to get the contents(a list of files) from a named folder - by type(e.g. *.wav, *.mid)

                        Of course it would be nicest if this was a FloatingTile with a content type of FileList

                        HISE Development for hire.
                        www.channelrobot.com

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

                          Nah, I won't do more FloatingTiles unless absolutely necessary - the overhead of adding the text colour for the directory name is killing me.

                          What I can do is adding two simple function calls:

                          /** Returns the folder that contains the application data of your plugin. */
                          Engine.getAppDataFolder()
                          
                          /** Returns a list of filenames in the given folder (non-recursively). */
                          Engine.getDirectoryContent(String filename)
                          

                          This way you could create a file browser for yourself by grabbing the list and throw it to a viewports items property. But I won't add more Norton Commander features to HISE, from there you're on your own (but file filtering can easily be done using standard Javascript methods).

                          LindonL Dan KorneffD 2 Replies Last reply Reply Quote 2
                          • LindonL
                            Lindon @Christoph Hart
                            last edited by

                            @Christoph-Hart sounds good I assume this:

                            Engine.getDirectoryContent(*.mid)
                            

                            would work? - of course as you say I could filter with javascript but then what would be the point in having "filename"

                            HISE Development for hire.
                            www.channelrobot.com

                            1 Reply Last reply Reply Quote 0
                            • Dan KorneffD
                              Dan Korneff @Christoph Hart
                              last edited by

                              @Christoph-Hart said in Viewport:

                              /** Returns the folder that contains the application data of your plugin. */
                              Engine.getAppDataFolder()

                              /** Returns a list of filenames in the given folder (non-recursively). */
                              Engine.getDirectoryContent(String filename)

                              Have these been added yet?

                              Dan Korneff - Producer / Mixer / Audio Nerd

                              C 1 Reply Last reply Reply Quote 2
                              • C
                                coreyu21 @Dan Korneff
                                last edited by

                                @dustbro agreed, have these function calls been integrated yet?

                                1 Reply Last reply Reply Quote 0
                                • M
                                  mwplugs @Christoph Hart
                                  last edited by

                                  @Christoph-Hart is there any example of this being done simply by having the samplemaps in categorized folders. seems much more simple than to have all this regex going on just to display simple lists. also cant the samplemap list in the containing folders and the category folder names themselves simply by calling to the directory? is there any example of this?

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

                                    There's no easy solution for this because every project has another hierarchy.

                                    inline function createTwoLevelHierarchy()
                                    {
                                        local allList = Sampler.getSampleMapList();
                                        local obj = {};
                                        
                                        for(id in allList)
                                        {
                                            local tokens = id.split("/");
                                            local key = tokens[0];
                                            local value = tokens[1];
                                            
                                            if(obj[key])
                                                obj[key].push(value);
                                            else
                                                obj[key] = [value];
                                        }
                                        
                                        return obj;
                                    }
                                    
                                    const var sorted = createTwoLevelHierarchy();
                                    

                                    This code creates an object with a two level hierarchy and can be used to populate two lists.

                                    M 2 Replies Last reply Reply Quote 0
                                    • M
                                      mwplugs @Christoph Hart
                                      last edited by

                                      @Christoph-Hart said in Viewport:

                                      inline function createTwoLevelHierarchy()
                                      {
                                      local allList = Sampler.getSampleMapList();
                                      local obj = {};

                                      for(id in allList)
                                      {
                                          local tokens = id.split("/");
                                          local key = tokens[0];
                                          local value = tokens[1];
                                          
                                          if(obj[key])
                                              obj[key].push(value);
                                          else
                                              obj[key] = [value];
                                      }
                                      
                                      return obj;
                                      

                                      }

                                      const var sorted = createTwoLevelHierarchy();

                                      ok so i need to create a viewport called what? or two? im trying to interpret this. sorry

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

                                        @mwplugs What Christoph has provided is a function to generate an object obj that contains the IDs of all of your sample maps and their folders. It's up to you to create a way to display them on your GUI (using viewports if you want).

                                        You can see the contents of obj by right-clicking on the variable you save it to (sorted in his example) in the watch table.

                                        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
                                          mwplugs @d.healey
                                          last edited by

                                          @d-healey ok i see that nice

                                          so how do i get these into arrays or whatever

                                          using two viewports? i see this is being created

                                          {
                                            "Brass": [
                                              "FreshHornStaccato"
                                            ],
                                            "Guitar": [
                                              "AcousticCampfire"
                                            ],
                                            "Keys": [
                                              "DeepFuzzVibe",
                                              "HorrorPianoFuzz"
                                            ],
                                            "Piano": [
                                              "CloudyJazzPno",
                                              "GoldenPiano",
                                              "RustyPiano"
                                            ],
                                            "Strings": [
                                              "ChamberTremelo",
                                              "ChamberViolinPizz",
                                              "ChamberViolinSpiccati",
                                              "ChamberViolinTremble",
                                              "MidMedSoloString",
                                              "MovieStringStacc",
                                              "SoloViolinLeg",
                                              "ViolinPizz1",
                                              "ViolinStaccato",
                                              "ViolinStaccatoB"
                                            ],
                                            "Vox": [
                                              "WhooMaleVox"
                                            ]
                                          }
                                          

                                          now how do i get the left viewport to pull the categories and the right to list the samplemaps? thanks

                                          1 Reply Last reply Reply Quote 0
                                          • M
                                            mwplugs
                                            last edited by

                                            haha 2 days trying to figure out this simple thing i have no idea how to make this "sorted" object an array for the viewports :/

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

                                            51

                                            Online

                                            1.7k

                                            Users

                                            11.7k

                                            Topics

                                            101.8k

                                            Posts