-
-
Notifications
You must be signed in to change notification settings - Fork 111
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 / Arpeggiator new Walk & Pattern note mode #3285
Merged
m-m-adams
merged 18 commits into
SynthstromAudible:community
from
soymonitus:monitus/arp_walk
Jan 25, 2025
Merged
Feature / Arpeggiator new Walk & Pattern note mode #3285
m-m-adams
merged 18 commits into
SynthstromAudible:community
from
soymonitus:monitus/arp_walk
Jan 25, 2025
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Programmed like the Arturia MiniFreak synth “Walk” mode
soymonitus
changed the title
Feature / Arpeggiator Walk mode (in Randomizer menu)
Feature / Arpeggiator new Walk & Pattern note mode
Jan 16, 2025
This is ready for review! |
Ok, after receiving some feedback in Discord, I added 3 different walk modes, with different probabilities so anyone can choose the desired "feel" depending on the context. This is now ready for review |
m-m-adams
approved these changes
Jan 25, 2025
Merged
via the queue into
SynthstromAudible:community
with commit Jan 25, 2025
147ba6c
6 checks passed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added two new note modes: Walk and Pattern
As in the docs:
-
Walk1 (WALK1)
is the "slow" walk and next note is selected this way:- 30% of probability to walk the sequence a step in reverse.
- 30% of probability to just repeat the same step of the sequence.
- 40% of probability to walk the sequence a step forward (as normal).
-
Walk2 (WALK2)
is the "normal" walk and next note is selected this way:- 25% of probability to walk the sequence a step in reverse.
- 25% of probability to just repeat the same step of the sequence.
- 50% of probability to walk the sequence a step forward (as normal).
-
Walk3 (WALK3)
is the "fast" walk and next note is selected this way:- 20% of probability to walk the sequence a step in reverse.
- 20% of probability to just repeat the same step of the sequence.
- 60% of probability to walk the sequence a step forward (as normal).
-
Pattern (PATT)
each time you select thisNote Mode
on the menu it will generate a new pattern for you.The pattern is like if you had selected
Played Order
and the Deluge had decided the order for you.Tip: as this mode is the last selectable one, if you try to scroll past the end of the menu, the Deluge
will interpret it as a re-selection of the
Pattern
mode and so it will generate a new pattern for you.Note: the pattern is saved to the song so you can recreate it after reloading the song.
Note: this mode is not available for Kit Rows.
This PR also does some refactoring and cleanup of the arpeggiator code, removing dead code that was doing nothing, and repacking duplicated code into common functions.
The tests for how long it takes a sequence of notes to cycle:
I did several test passes with a 4-note chord on 1-bar, with an arpeggio of 4 octaves (16th notes) (With notemode=up it takes 1 bar to reach the highest note)