Table of ContentsControl ChangesThe code that sends out Control Changes in Rosegarden is pretty convoluted. This document points out the key areas of interest. Hopefully this will ease future maintenance. Note that code related to sending out Bank Selects and Program Changes can be found along with the code related to Control Changes. This will be pointed out below. Allow Reset All Controllers (CC 121)This preference sends a CC 121 at file load and at playback in the middle of a Segment. The 121 happens prior to sending any other controllers to set up the channel. The user can turn this on and off in the MIDI preferences: Edit > Preferences... > MIDI > General tab
The MIDI preferences are displayed by the [Sequencer_Options] allowresetallcontrollers=true Force Channel SetupsThis is a preference that is only available via the Rosegarden.conf file. [Sequencer_Options] forceChannelSetups=false When set to true, channel setups will be sent out every time play is pressed. If outside of a Segment, the channel setups will be based on the track values in the Instrument Parameters panel (MIPP). The default for this preference is false. Manage Controllers dialogTo get there: Studio > Manage MIDI Devices > pick a playback device > Controllers…
The
A better name for this class might be “ Controllers can be added, modified and deleted here. Deleting a controller here will prevent it from ever being sent out at composition load time, and playback time. MIDI Instrument Parameters
The Controller Rulers
The View > Rulers > Add Control Ruler > ... Or for the pitchbend ruler: View > Rulers > Show Pitch Bend Ruler Controller Sequence dialog
The These dialogs are accessible from both the Matrix and Notation editors: Controllers > Insert Controller Sequence... Controllers > Insert Pitch Bend Sequence... Both of these dialogs require that a note be selected in order to launch them. The menu items will be disabled if no note is selected. Also, for the controller sequence dialog, a controller ruler must be enabled and selected. Control Changes at Composition LoadCall diagram. “>” means “calls”. - RosegardenMainWindow::setDocument() > RosegardenDocument::initialiseStudio() > RosegardenDocument::sendChannelSetups() (added January 2021) > Instrument::sendChannelSetup() RosegardenMainWindow::setDocument()
RosegardenDocument::initialiseStudio()
RosegardenDocument::sendChannelSetups()
Instrument::sendChannelSetup()
Control Changes at Playback- InternalSegmentMapper::makeReady() > InternalSegmentMapper::getControllers() > InternalSegmentMapper::getControllerValue() > ControllerContextMap::getControllerValue() > ChannelManager::makeReady() InternalSegmentMapper::makeReady()
InternalSegmentMapper::getControllers()
ControllerContextMap
ChannelManager::makeReady()
Control Changes at MIDI File ExportIf changes are made to the way CCs are sent, MIDI export needs to be regression tested to make sure nothing breaks. - MidiFile::convertToMidi() > MappedBufMetaIterator::fetchFixedChannelSetup(inserter) > InternalSegmentMapper::insertChannelSetup(inserter) > ChannelManager::insertChannelSetup(TrackId, RealTime, ...) |