Forum
    • Categories
    • Register
    • Login

    Saving MIDI CC assignments in user presets?

    Scheduled Pinned Locked Moved Scripting
    15 Posts 3 Posters 43 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.
    • dannytaurusD
      dannytaurus
      last edited by dannytaurus

      HISE saves MIDI CC assignments in the .preset when a user saves.

      This seems contrary to a lot of other synths I've used.

      Feels like normally, I would set up some MIDI CCs on various knobs, then browse through presets and those CC assignments would stick across preset loads.

      This allows me to [1] set up a consistent 'performance' system, like mod wheel to filter cutoff, knob1 to filter res, etc, for all presets and [2] play through presets and have any existing CC automation produce predictable results.

      HISE saving MIDI CC assignments to the preset data means that, after setting up a bunch of CC assignments for one preset, when I load a new preset they will either [1] all disappear if the new preset has no saved assignments, or [2] change to different assignments.

      If anything, I'd prefer to have MIDI CC assignments saved globally, separate from the preset data, so they persist across not only presets but instances of the plugin.

      What do you all do about this?

      Meat Beats: https://meatbeats.com
      Klippr Video: https://klippr.video

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

        @dannytaurus This is a very good point and something I'm going to start adding to my instruments, don't know why I didn't think about it before.

        I'm pretty sure if can be achieved using the MidiAutomationHandler and storing the automation settings to a file which you load back in on init.

        https://docs.hise.audio/scripting/scripting-api/midiautomationhandler/index.html

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

        dannytaurusD 1 Reply Last reply Reply Quote 1
        • dannytaurusD
          dannytaurus @David Healey
          last edited by dannytaurus

          @David-Healey Scripting the saving and loading of MIDI CC assignments to a separate file is one step, but you also have to fight the saving and loading of the data in the presets.

          Claude came up with a (hacky) way to script around it but in the end I felt like a PR with a new preprocessor was better.

          https://github.com/christophhart/HISE/pull/995

          (I know there are already too many preprocessors, but this is mainly just for me, only upstreaming in case anyone else wants it.)

          So now I just turn this off (HISE_MIDI_AUTOMATION_IN_USER_PRESETS=0) and then I don't have to fight anything in script.

          Meat Beats: https://meatbeats.com
          Klippr Video: https://klippr.video

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

            @dannytaurus load them in the post load callback

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

            dannytaurusD 1 Reply Last reply Reply Quote 0
            • dannytaurusD
              dannytaurus @David Healey
              last edited by

              @David-Healey Unless you prevent saving/loading the CC data to presets, you're always doing more than you should have to.

              Without the preprocessor:

              1. Launch the plugin - load the CC mappings from separate file
              2. Load a preset - in post load callback you need to reassign CC mappings because they're overwritten by the load
              3. Assign some CC mappings - automatically save the new mappings to separate file here
              4. Save the preset - the CC mappings save with the preset, so maybe do a post save callback to remove the data
              5. Load the next preset, etc.

              With the preprocessor:

              1. Launch the plugin - load the CC mappings from separate file
              2. Load a preset - nothing to do
              3. Assign some CC mappings - automatically save the new mappings to separate file here
              4. Save the preset - nothing to do
              5. Load the next preset, etc.

              Meat Beats: https://meatbeats.com
              Klippr Video: https://klippr.video

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

                @dannytaurus said in Saving MIDI CC assignments in user presets?:

                Save the preset - the CC mappings save with the preset, so maybe do a post save callback to remove the data

                You don't need to do anything here because you're already loading the CCs from the file.

                So your preprocessor removes step 2 the rest is the same.

                I think AppConfig.h is autogenerated when you save the juicer file so probably shouldn't be tracked by git - I could be wrong.

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

                dannytaurusD 2 Replies Last reply Reply Quote 0
                • dannytaurusD
                  dannytaurus @David Healey
                  last edited by dannytaurus

                  @David-Healey said in Saving MIDI CC assignments in user presets?:

                  Save the preset - the CC mappings save with the preset, so maybe do a post save callback to remove the data

                  You don't need to do anything here because you're already loading the CCs from the file.

                  That's true, but if you leave the CC mappings in the preset file then it becomes lies on disk.

                  Likely to be confusing to someone looking at the preset XML.

                  Agree on the AppConfig.h, Claude forced it into the commit, I'll remove it.

                  Meat Beats: https://meatbeats.com
                  Klippr Video: https://klippr.video

                  1 Reply Last reply Reply Quote 1
                  • dannytaurusD
                    dannytaurus @David Healey
                    last edited by

                    @David-Healey Claude also found another case to consider - plugin launch.

                    Looking at it now.

                    Meat Beats: https://meatbeats.com
                    Klippr Video: https://klippr.video

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

                      @dannytaurus said in Saving MIDI CC assignments in user presets?:

                      Launch the plugin - load the CC mappings from separate file

                      Handled here, no?

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

                      dannytaurusD 2 Replies Last reply Reply Quote 0
                      • dannytaurusD
                        dannytaurus @David Healey
                        last edited by

                        @David-Healey Maybe, yes.

                        Meat Beats: https://meatbeats.com
                        Klippr Video: https://klippr.video

                        ustkU 1 Reply Last reply Reply Quote 0
                        • ustkU
                          ustk @dannytaurus
                          last edited by

                          @dannytaurus @David-Healey Can't the CC mapping simply be removed from the preset using the handler? Isn't the custom preset intended for this purpose in the first place? Never tried myself that being said...

                          Hise made me an F5 dude, any other app just suffers...

                          dannytaurusD 1 Reply Last reply Reply Quote 0
                          • dannytaurusD
                            dannytaurus @David Healey
                            last edited by

                            @David-Healey Apparently not.

                            There are 3 HISE restore points that run after onInit, so it still needs handling.

                            From Claude:

                            Fresh instance in a DAW: FrontendProcessor::restorePlugin runs compileAllScripts() (your onInit applies the file) and then restores the
                            MidiAutomation node from the embedded project state (FrontEndProcessor.cpp:458). The export always writes that node — even when empty, exportAsValueTree adds it unconditionally — so a fresh instance immediately clears the mappings you just loaded. Your file-load is defeated before the user ever touches the plugin.

                            Reopening a session: the host calls setStateInformation at some point after instantiation (host-dependent timing), and FrontEndProcessor.cpp:576 restores the session's stale mapping copy over whatever onInit applied.

                            In the editor: every project load stashes the project XML's <MidiAutomation/> and applies it after script compilation (MainController.cpp:562/577)
                            — same wipe while you're developing.

                            Meat Beats: https://meatbeats.com
                            Klippr Video: https://klippr.video

                            1 Reply Last reply Reply Quote 0
                            • dannytaurusD
                              dannytaurus @ustk
                              last edited by

                              @ustk Not sure. To be honest, I just want all the 'CC data in presets' code out of my fork.

                              Might just drop the preprocessor and remove it all directly.

                              I can't see a situation where I would ever want CC data in the presets. So a preprocessor is only useful for backwards compatibility, which I don't have any of 😜

                              Meat Beats: https://meatbeats.com
                              Klippr Video: https://klippr.video

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

                                I think this is what the custom user preset model is for: https://docs.hise.dev/scripting/scripting-api/userpresethandler/index.html#setusecustomuserpresetmodel

                                Haven't tried it myself.

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

                                ustkU 1 Reply Last reply Reply Quote 1
                                • ustkU
                                  ustk @David Healey
                                  last edited by

                                  @David-Healey Lol

                                  @ustk said in Saving MIDI CC assignments in user presets?:

                                  @dannytaurus @David-Healey Can't the CC mapping simply be removed from the preset using the handler? Isn't the custom preset intended for this purpose in the first place? Never tried myself that being said...

                                  Just checked and the answer is no, you can't manage what is written... But Claude came with a neat solution:

                                  // (processBeforeLoading, unpackComplexData)
                                  uph.setEnableUserPresetPreprocessing(true, false);
                                  
                                  uph.setPreCallback(function(presetData)
                                  {
                                      // presetData is a JS object; MidiAutomation is a top-level property.
                                      // Emptying it means applyJSON rebuilds an empty <MidiAutomation> node,
                                      // so the incoming preset never overwrites the current CC assignments.
                                      presetData.MidiAutomation = {}; // or just rewrite what you already saved
                                  });
                                  

                                  Hise made me an F5 dude, any other app just suffers...

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

                                  14

                                  Online

                                  2.4k

                                  Users

                                  13.8k

                                  Topics

                                  120.5k

                                  Posts