HISE Logo Forum
    • Categories
    • Register
    • Login

    Macro Modulators...seem to be broken

    Scheduled Pinned Locked Moved Bug Reports
    11 Posts 3 Posters 131 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
      last edited by Lindon

      So if I put an LFO in Macro1 like this:
      24744710-133c-417e-b385-2e17d2659250-image.png

      Set the tempo to 1/8D or faster....

      Then assign it to a gain knob on my interface (so I should get some consistent vibrato effect)....

      The LFO seems to cycle once(ish - well about 3 times on my machine) and then it pauses, then cycles correctly...

      It seems to do it for every note on and note off...

      .

      HISE Development for hire.
      www.channelrobot.com

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

        @Lindon anyone else?

        HISE Development for hire.
        www.channelrobot.com

        1 Reply Last reply Reply Quote 0
        • S
          Soundavid
          last edited by

          @Lindon Use a MIDI Processor in the Macro Modulation Source to ignore the note on Callback. I Used something like this:

          function onNoteOn()
          {
          	for(i = 0; i < 127; i++)
          	{
          		if (Message.getNoteNumber() == i)
          		{
          			Message.ignoreEvent(true);
          		}
          
          	
          	}
          }
          
          d.healeyD LindonL 2 Replies Last reply Reply Quote 0
          • d.healeyD
            d.healey @Soundavid
            last edited by

            @Soundavid You don't need that loop. Just Message.ignoreEvent(true); is enough to ignore all events.

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

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

              @Soundavid said in Macro Modulators...seem to be broken:

              @Lindon Use a MIDI Processor in the Macro Modulation Source to ignore the note on Callback. I Used something like this:

              function onNoteOn()
              {
              	for(i = 0; i < 127; i++)
              	{
              		if (Message.getNoteNumber() == i)
              		{
              			Message.ignoreEvent(true);
              		}
              
              	
              	}
              }
              

              well that renders the retrigger option as completely useless, so thats not a solution...

              HISE Development for hire.
              www.channelrobot.com

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

                @Lindon can get it to do this both in HISE and in the compiled plugin....

                HISE Development for hire.
                www.channelrobot.com

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

                  @d-healey said in Macro Modulators...seem to be broken:

                  Message.ignoreEvent(true);

                  Tried it with this, still does it so this isn't making any difference. its very odd...its nearly random, it seems to be (possibly) a choking CPU, I can get it to start doing it if I play alot of notes, then play a single note after, and once it starts it only stops if you stop playing altogether for at least 10 seconds...

                  recompile and it stops doing it...

                  HISE Development for hire.
                  www.channelrobot.com

                  1 Reply Last reply Reply Quote 0
                  • S
                    Soundavid @d.healey
                    last edited by

                    @d-healey I did that because I didn't want to ignore the MIDI CC Messages.

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

                      @Soundavid onNoteOn is only triggered by MIDI note on messages. onController is for CC messages.

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

                      S 1 Reply Last reply Reply Quote 0
                      • S
                        Soundavid @d.healey
                        last edited by

                        @d-healey Im sure I did this with a purpose but I don't remember why 🤔

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

                          @Lindon Not if you use a Global Modulation Module in the Macro Modulation Source and take the LFO from a Global Modulator Container. I Remember fixing this issue using that approach.

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

                          7

                          Online

                          2.0k

                          Users

                          12.9k

                          Topics

                          111.6k

                          Posts