Add software chromatic quantization for whole-tone layouts #15
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.
Summary
Adds software-side chromatic (12-TET) quantization for whole-tone layouts, allowing semitones to be hit between whole-tone pads.
Depends on PR #13 (pitch bend scaling) - merge that first.
Demo video and discussion: #14
Why This Is Needed
Without any quantization, every note has slight microtonal errors from human imprecision - making chords sound slightly off and unintentional. At this pad scale, you can only realistically aim for semitones or whole tones, not microtones.
Hardware quantization (LinnStrument Quantize=ON) only snaps to pad centers (whole tones on whole-tone layouts), completely missing the semitones between pads. It also removes the ability to do vibrato/tremolo.
This software quantization snaps to ALL 12 chromatic semitones while preserving vibrato through movement detection.
New Settings
chromatic_quantize(bool): Enable 12-TET semitone snappingwhole_tone_bias(float, -1.0 to 1.0): Adjust zone balance for mechanical surface compensation0.0= equal zones (50/50)0.4375recommended for speed bump surfacequantize_hold_threshold(float, 0 to 1): Movement sensitivity for vibrato detection0.0= always snap (no vibrato passthrough)0.5= balanced (recommended default)1.0= never snap (all microtones pass through)Requirements
Must disable ALL LinnStrument quantization settings:
This software quantization then handles semitone snapping with proper support for notes between pads, while preserving intentional vibrato (which hardware quantization removes).