-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: Register multiple onStepCallback subscribers, each with independent shuffle templates #41
Comments
Hey @grayxr , Yes it makes total sense, i will review your PR and get back asap. Thanks for the development work on your side! Are you running this multi shuffle schema on your sequencer? any videos for me to take a look? |
Hey @midilab - yes here is a demo video (sorry for the rotated video) By applying the step microtiming on steps, the hi-hat track gets its own shuffle template. I made it also so that it merges in any shuffle from the pattern shuffle template as well, but only to steps which are not overridden with their own microtiming offsets. |
This looks nice, 1 have a 2 track classic arpeggiator that would be good to add some variation to. Are there any examples of basic shuffle operation? Cheers, Paul |
This does indeed sound very cool. I'm going to have to do some serious thinking about how to restructure my project in order to take advantage of this :D |
Hey all, good to see this development going on! I'll try to test the Add track-based callback with shuffle per track PR over the next weekend. I was just working on adding grooves to my clocking device. I have a switch that toggles between quarter notes (4, 8 ,16) and triplet (3, 6, 12) speeds. Adding shuffle with the onStepCallback works fine for the quarter note speeds, but is harder to work with when manipulating triplets. It would be great to have a version of the onStepCallback based on 24 steps instead of 16. This way we can easily manipulate triplets. What do you think? |
I've finally gotten around to giving this a try in my project, and think I've got the basics working (only one track atm but planning to make that configurable, as well as making an editor for the shuffle template and possibly also smooth modulation of shuffle). I used the more recent Will report back when I've got further into it. |
So, I've been playing with this some more, have it so I can assign different shuffle tracks to my drum tracks, and have an editor inside my app to tweak the pattern on the fly... I'm not sure if I'm using the shuffle pattern template stuff correctly (apologies if this is documented somewhere and I've missed it?). Is the idea that each step of the shuffle pattern corresponds to one step of the bar, and that the step value is the offset for the tick? e.g., If that's how its meant to work then I'm not sure that I'm seeing 'late' shuffles working correctly. Also at times I seem to be able to glitch the entire shuffle pattern into playing at the wrong times -- I think maybe this happens when two shuffled steps overlap or are maybe too close to each other? I've tried with both @grayxr 's @grayxr and @midilab , could you let me know if there is anything I'm misunderstanding about how the shuffle patterns are meant to work? Which branch should I ideally be using, @grayxr ? |
The shuffle works based on output ppqn setup, and it is between each step that things happen: Here it is the calculus for min and max values for each output_ppqn If you are using PPQN_96 as output_ppqn (the default), then you have a range of -23 to 23 to use as shuffle. Going outside this range will cause overflow on shuffle counting. Another example: The higher the output PPQN resolution, the more possibilities you'll have to fine-tune your shuffles. A MPC60 or TR909 groove signature for PPQN_96 setup: // MPC60 groove signatures?
// Same as 909
uint8_t current_shuffle = 0;
uint8_t template_size = 2;
int8_t shuffle_50[2] = {0, 0};
int8_t shuffle_54[2] = {0, 2};
int8_t shuffle_58[2] = {0, 4};
int8_t shuffle_62[2] = {0, 6};
int8_t shuffle_66[2] = {0, 8};
int8_t shuffle_71[2] = {0, 10};
int8_t shuffle_75[2] = {0, 12};
String shuffle_name[7] = {"50%", "54%", "58%", "62%", "66%", "71%", "75%"};
int8_t* shuffle_templates[7] = {shuffle_50, shuffle_54, shuffle_58, shuffle_62, shuffle_66, shuffle_71, shuffle_75};
uClock.setShuffleTemplate(shuffle_templates[current_shuffle], template_size); a better view of shuffle with length incresase before shuffled note: By the way @grayxr , im planing to review the PR this next week probrably to add it to the new release. |
Thanks @midilab ... I'll have to test again. I could definitely hear a shuffle effect with +3 as the shuffle pattern, a larger effect than I'd expect if its only an 8th of a step different. But could not hear a difference with -3. I'll try connecting a scope to see if I can get a visual indicator on what is happening. Regarding longer note lengths and your image, to get my drum sequencer working with the shuffle I have to keep the note length short and send the 'note off' if the note duration has exceeded the expected length -- its not possible for me to join the two notes together like that as if there is no gap between the "note off" and "note on" then the CV gate output will never go off. If that makes sense! So that is a way that modular requirements differ from midi outputs. Fortunately as they're all percussive hits anyway the note duration does not matter so much. |
Check what is your PPQN output resolution and the max and min range for shuffle tick, maybe 3 its almost nothing to perceive if it is set the output PPQN to 96... try the values and template i've show you as example (MPC60/TR-909 swing signature tempalte).
For that you can use uClock.getShuffleLength(). i dont know how it works on multi track shuffle because i didnt test or validade this pull request code yet. But on main branch uClock.getShuffleLength() returns the difference of length genrated for current step when it is +tick or -tick so you have fine control of how to short or increase the lentgh for the groove as show in the image. SO you take the getShuffleLength() return and sum to your current note length to avoid exceed the length adn create the perfect swing feel specially for melodic and basses tracks, not much for drums since its a trigger most of the times not related with length of on/off gate. A example of use getShuffleLength() on aciduino: void Aciduino::onStepCallback(uint32_t step)
{
// sequencer tick
aciduino.seq.onStep(step, uClock.getShuffleLength());
} That way each step call has the difference length created by the shuffle schema to sum with current step lentgh. You simply call current_stepLength += uClock.getShuffleLength();, and it adapts the length for the neighboring step or adjusts the shuffle size to avoid note overlap. This also helps create the swing effect or increases/decreases the length of notes. |
Right now, a single callback for getting shuffle-enabled 16th steps is handled via
onStepCallback
. This is well and good. However, when using uClock in a multi-track system, you may want to disengage a track from being shuffled so that it's played on the straight beat instead.Also, for doing microtiming adjustments on 16th steps for each individual track, one option could be to just not use the
onStepCallback
and instead process everything in the 96ppqn callback function, and track the 16th steps inside there. But I think this would be more intense on the CPU having to do more work inside the 96ppqn callback, which also might make the clock a bit less tight.So, what if instead we could generate/register multiple 16th step handlers, for any number of tracks? And each handler could have its own shuffle settings. This way, you could have the main clock processing freed up from having to do all of this extra stuff, and you could have separate track-style instances of 16th step handlers, each with their own shuffle settings to allow for microtiming adjustments.
Seems like if you also want to enable live pattern recording (tapping in steps live while a pattern is playing) then that would best be handled in the 96ppqn callback so you could determine where the nearest step is (plus/minus any microtiming adjustment) with
some quantization algorithm.
Let me know if this makes sense.
The text was updated successfully, but these errors were encountered: