Conversation
…/ None selector Agent-Logs-Url: https://github.com/huberp/phu-beat-sync-multi-scope/sessions/2d0c6b4e-bd8f-486c-92dd-4acb609ac4c5 Co-authored-by: huberp <4027454+huberp@users.noreply.github.com>
…k, dedup filter lambda Agent-Logs-Url: https://github.com/huberp/phu-beat-sync-multi-scope/sessions/2d0c6b4e-bd8f-486c-92dd-4acb609ac4c5 Co-authored-by: huberp <4027454+huberp@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add per-channel remote processing feature to Network UI
Implement per-channel remote processing (Remote: All / Selected… / None + chooser)
Apr 13, 2026
huberp
marked this pull request as ready for review
April 13, 2026 20:38
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.
Replaces the binary "Show Remote" toggle with a three-mode selector (All / Selected… / None) and a per-channel chooser popup. In Selected mode, only channels enabled in the
uint8_tbitmask are ingested — non-selected channels are never stored, never rendered, and do not contribute to RMS or cancellation computations.New component —
RemoteChannelChooserRemoteChannelChooserComponent: 8 rows (Ch 1–8), each with a toggle, colour swatch, and remote label pulled fromRemoteInstanceInfo(most-recently-seen instance wins per channel index).onMaskChangedcallback fires on every change;updateRemoteInfos()refreshes label/colour display.ScopeDisplayclearRemoteChannelsNotInMask(uint8_t enabledMask)— deactivates remote slots whose bit is not set, with safe range guard on the shift.PluginEditor— UI + logicremoteDisplayTogglewithremoteModeLabel+remoteModeCombo+remoteChooseButton(enabled only in Selected mode).timerCallback()now branches onRemoteMode:setReceiveEnabled(false), clear on transition.writeRemotePackets(); callsclearRemoteChannelsNotInMask()on mask change.CallOutBoxchooser; Choose… button reopens it.PluginProcessor— state persistencem_remoteMode(atomic int, 0/1/2) andm_remoteChannelMask(atomic uint8_t) with getters/setters.getStateInformation/setStateInformationso mode and mask survive DAW session save/reload.