Add chain handler with 25 endpoints for rack device chains#199
Open
bimsonz wants to merge 1 commit intoideoforms:masterfrom
Open
Add chain handler with 25 endpoints for rack device chains#199bimsonz wants to merge 1 commit intoideoforms:masterfrom
bimsonz wants to merge 1 commit intoideoforms:masterfrom
Conversation
New ChainHandler with full chain manipulation support for Drum Racks, Instrument Racks, and Audio Effect Racks. Chain properties (get/set): name, mute, solo, color, color_index. Chain read-only: has_audio_input, has_audio_output, has_midi_input, has_midi_output, is_auto_colored, muted_via_solo. Chain mixer: volume and panning via chain.mixer_device. Chain device discovery: num_devices, device names/types/class_names. Chain device parameters: bulk get (name/value/min/max/is_quantized) and single get/set for parameters within chain devices. Sidechain routing: query available sources, set routing by parameter. Depends on feat/master-return-tracks for _resolve_track() and _has_chains() in handler base class.
This file contains hidden or 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
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.
Summary
New
ChainHandlerwith complete chain manipulation support for Drum Racks, Instrument Racks, and Audio Effect Racks.Endpoints (25)
Chain properties (get/set): name, mute, solo, color, color_index
Chain read-only: has_audio_input, has_audio_output, has_midi_input, has_midi_output, is_auto_colored, muted_via_solo
Chain mixer: volume and panning via
chain.mixer_deviceChain device discovery: num_devices, device names/types/class_names/can_have_chains
Chain device parameters: bulk get (name/value/min/max/is_quantized) and single get/set
Sidechain routing: query available sources, set routing by parameter name
Addressing
All endpoints use
(track_id, device_id, chain_index, ...)addressing. Chain device params add a 4th index:(track_id, device_id, chain_index, chain_device_id, ...).Files changed
abletonosc/chain.py— new 209-line handlerabletonosc/__init__.py— ChainHandler importmanager.py— ChainHandler registration + reloadDependencies
Requires #197 for
_resolve_track()and_has_chains()in the handler base class.