HISE Logo Forum
    • Categories
    • Register
    • Login

    Expansion - Access AdditionalSourcecode file

    Scheduled Pinned Locked Moved General Questions
    60 Posts 3 Posters 5.4k 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 @d.healey
      last edited by

      I think you've found a bug. Might be related to this issue - https://forum.hise.audio/topic/5121/confusing-convolution/21

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

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

        @Christoph-Hart Here is a minimal example that demonstrates the problem. I think this is related to the other problem some of us have been having with accessing files when using expansions.

        DataFileTest.zip

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

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

          @DanH I was playing around with this some more today and it seems to load the data file correct (not sure if this is due to a recent change), but the getDataFileList() function is still returning an empty array.

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

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

            @d-healey thanks. Would you mind sending me a snippet to look at please?

            DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
            https://dhplugins.com/ | https://dcbreaks.com/
            London, UK

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

              @DanH Yeah

              datafiletest.zip

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

              DanHD 1 Reply Last reply Reply Quote 1
              • DanHD
                DanH @d.healey
                last edited by

                @d-healey coming back to this finally - it's working as you explained, and thanks for the project. I'm not massively familiar with using jsons - how do I get the value of "Value" into HISE script so I can assign it to something?

                DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                https://dhplugins.com/ | https://dcbreaks.com/
                London, UK

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

                  @DanH From the JSON file you'll just get a standard Javascript object inside your script, so you can use it like any other object. If you want to view the contents you can use the script watch table or just Console.print(trace(objName));

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

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

                    @d-healey that's what I hoped would happen 😆

                    So if the JSON just contains:

                    {
                      "NumberData" : "10"
                    }
                    

                    then in my script I should just be able to go:

                    reg = MyNewNumber;
                    
                    MyNewNumber = NumberData;
                    

                    Or no?!

                    DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                    https://dhplugins.com/ | https://dcbreaks.com/
                    London, UK

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

                      @DanH

                      Off the top of my head...

                      var myObj = Engine.loadFromJSON("somefile");
                      
                      Console.print(myObj.NumberData);
                      

                      HISE Development for hire.
                      www.channelrobot.com

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

                        @Lindon Thanks! :)

                        DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                        https://dhplugins.com/ | https://dcbreaks.com/
                        London, UK

                        DanHD 1 Reply Last reply Reply Quote 0
                        • DanHD
                          DanH @DanH
                          last edited by

                          @d-healey @Lindon thanks both, that's working perfectly - in the case that the JSON file is missing how can I set "MyNewNumber" to a certain value? I'm already in an if / else statement. I can't seem to find a way out after calling

                          var myObj = Engine.loadFromJSON("somefile");
                          

                          DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                          https://dhplugins.com/ | https://dcbreaks.com/
                          London, UK

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

                            @DanH You can use if (!isDefined(myObj)) to check if it's there or not.

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

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

                              @d-healey ok trying. I'm not sure where to put "reg mrdata = cx.loadDataFile("maxrandomdata.json");" as if it goes before the if statement then I get an error, and if it goes in the else statement it gets ignored... I was trying:

                              if (cx.loadDataFile("maxrandomdata.json") == undefined)
                              

                              before you wrote that... Where I'm at now is below:

                              if (!isDefined(mrdata))
                                      {
                                          maxrandom = 35;
                                      }
                                      
                                      else
                                      {
                                          reg mrdata = cx.loadDataFile("maxrandomdata.json");
                                          maxrandom = mrdata.maxrandomnumber;
                                      }
                              

                              DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                              https://dhplugins.com/ | https://dcbreaks.com/
                              London, UK

                              d.healeyD LindonL 2 Replies Last reply Reply Quote 0
                              • d.healeyD
                                d.healey @DanH
                                last edited by

                                @DanH Make a minimal snippet, we need to see some context.

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

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

                                  @DanH

                                  var myObj = Engine.loadFromJSON("somefile");
                                  if (myObj)
                                  {
                                        Console.print(myObj.NumberData);
                                  }else{
                                      myObj = {NumberData : 444};
                                  }
                                  

                                  HISE Development for hire.
                                  www.channelrobot.com

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

                                    @d-healey there's some general expansion stuff at the top, head down to the end for this bit

                                    HiseSnippet 1477.3ocsW8uaaaCDVJIZXVaCaEaO.D9elLPhqy5O1.JJVhcbZLVicPbZ2JxJJnonrYiDofDcsMJ567dC1tSRVR1xIKyXUHHvj7tie22c73wKhTLdbrJxvr1UKB4Fles0vER8jNSnBoQuSLL+Vq.57HpzUEn4wZi1KBowwbWCSyceAJjYs8LR99qesM0mJY7hoLLdsRv3uTDHzEydwQ+lv2+TpK+JQPIoe7Q8XJYGkuZJ.ncsZYDRY2PGy6SQw1wxv7K55JzpngZJ.FCy8ZqbWLbhZlLU9WKhEi743fCMFBFJc5SU9tHhwYM5LQ36dwRGO1.rxEEzvtozvOXctvUjOeAc7cIKPJznLeXtypva2Uf2gkgWqRvaCPxrDj1KEROvZHKRDpKVAwyWY0Sp4QdTf1KCkTYM14c0r5n.Ij5lAza3mFACx0v4osZsOA9WimYaCTerl7AZDgOO7LHf6yiHOmzUNVH4MYQbvm5NOjJiEJY15NUTLc4XPwBqzbLWmq4KEw5D0JsdLWeruuZF2MWLzmicttjPmJ74sof6sOwlbe9JoahGGvcEfOrEp2UxhVDp4tuE.98R4MQJXVLRLW+1TuuzrMCmFOwo9oG24pAW9l5H83ohb3Dg7t4wF1YPshw3nzPtRHORK.prQSbwL7WBd4FbH2myfjW.gKyX.KzQEDpjv.m5UjDwYkIwfoScglGDWe+0Q16UBoS8+TVuA5hO7gqsLjTq6S0Sin9NoBP5ED5yCf8mnmvKLGIdlPylXaKj9P5Iwapjow4UxJHB8lHkuCaoqrO339S4Mr+ncMeEi5WX2qTuTQcAJHWXjD5AdyU74I4s0rqAv524jYzLP4Ih.tD8XhVQh3.AjLOaZTDB7bimnYrhLiSjbtKJMaBUNFByZb.EB1Ag5EjXcjPN1tlvyoBxd9Zb50sdaC6R4rq4G0qmEwqs54sNofKmrVei.O8SPD3dmIjXyThtC02eDT3141iEXvMhOlje0Rk5A4ZlaMIeFDTFoFolmlaTZBmoRWtGjHf3tRNQYAgemaZLAHi3.lVDeRpIVUlFqefOYLj4fAyWjEpAMJGlqkqSZ5Eadk5gU3+RUVx+ArCBujMvkpoj2GCNiqhGK+QLqBJ.fqIaBeDG8DQLA9K.SelFLBnfwjQv9eClx4AmzOfzi.6bRZVTDbPWOgpIm0aXWBihlD7d2rLZeN45QbFcZbRx4pa5AjYSDrI3tgROahBDODNZqKkJl+CvCbXya5CIUm.dAVF2ode9r9.HAt.cp5Mv75hXXUir76iar764KxsGPzO5IUKR+o03zLeZUVzlTYe49w76IHv7YYBFP2DKg7u4za9tj6gGVrMMgLuzQOC8rkkdRmBJhI0TjQw6Qv4Sxfvn6cPP2JNpLAbXNFB8MCgpUZmRPDODVXT6UHR6UXP6aIDd3idVYK7oR026qz7Av4Er5sMr95K44sw0xp7jzzxFVF6DM5tTzIkSKe2AJHzd1p87Yc687UtkTVZg0RBpj8jB8fPt71ZT0HqZL1eXFp.Q0IcG9cYcG1AKz0VM2P.sA98VUJ.aj.+Rcnejwq5gYRKMJX+htFf4Ng+AnC9zVPqYcBO9FsJLQ1rqCflx+OBg44a+QdGsHe.gcDbe.vfl33jNHLLcrxZJxt8fKeAo8wCGZe9f9CNX3a5e0Y1869pKGb1fK6CupnRGyPu5J2o9T8pMviuZIaA.Uqz0L1mHfU8hxup4+st5uuP7AVWfM2rYLtyFvHD69bfwr2B8MVc87fHWA.2y5z+3yyCeLtTMUC2bcNEZAByEfRBCgmCx3vtKkPUDL+XG7rP53V3XjAFxktIC9a3KawCwwlYKd3xEMBnrH06XomfvWa8kIy.XRl7PyZVmiiIGt7vhkUqlsLBfG98NFCc+CfimaVmeZKz4QagNOdKz4IagNOcKz4m2Bc9k6TG7M2GOUqBRON.SbQ2jhVllckTHyJIKz3e.x75wPB
                                    

                                    Thank you!

                                    DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                                    https://dhplugins.com/ | https://dcbreaks.com/
                                    London, UK

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

                                      As far as I'm aware this is no longer required, but the docs haven't been updated.

                                      expHandler.setAllowedExpansionTypes([expHandler.FileBased, 
                                                                           expHandler.Intermediate, 
                                                                           expHandler.Encrypted]);
                                      

                                      The only variable you should ever be declaring inside inline functions is local.
                                      https://docs.hise.audio/scripting/scripting-in-hise/hise-script-coding-standards.html#variables

                                      Don't do this:

                                      if (cx.loadDataFile("NewNumber.json") == undefined)

                                      It's inefficient because you'll have to read from disk more than once. Instead load it once and store it in a local variable, or if you are going to be using the data in other parts of your script you could use a reg variable in your on init callback or at the top of your namespace.

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

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

                                        @d-healey said in Expansion - Access AdditionalSourcecode file:

                                        Don't do this:

                                        if (cx.loadDataFile("NewNumber.json") == undefined)

                                        It's inefficient because you'll have to read from disk more than once. Instead load it once and store it in a local variable, or if you are going to be using the data in other parts of your script you could use a reg variable in your on init callback or at the top of your namespace.

                                        Thanks :)

                                        But if the file doesn't exist then I get the error which prevents the rest of the script from running. That's the wall that I'm hitting. Unless I misunderstand?

                                        To put this into context I've supplied an Expansion which doesn't have this file inside and I'd rather not update all the users if there's a way to get around it!

                                        I'm using this elsewhere which works fine (no errors) - was hoping the same would apply in my expansion callback:

                                        if(Engine.loadFromJSON("..//AnaData.js") == undefined)
                                        

                                        DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                                        https://dhplugins.com/ | https://dcbreaks.com/
                                        London, UK

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

                                          @DanH as I said:

                                          var myObj = Engine.loadFromJSON("somefile");
                                          if (myObj)
                                          {
                                                Console.print(myObj.NumberData);
                                          }else{
                                              myObj = {NumberData : 444};
                                          }
                                          
                                          

                                          HISE Development for hire.
                                          www.channelrobot.com

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

                                            @Lindon Thanks, but that will look in the appData folder for the file, whereas I'm in an active expansion.... Or am I getting confused?

                                            DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                                            https://dhplugins.com/ | https://dcbreaks.com/
                                            London, UK

                                            d.healeyD DanHD 2 Replies Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            56

                                            Online

                                            1.7k

                                            Users

                                            11.7k

                                            Topics

                                            101.8k

                                            Posts