VST 3 Interfaces  VST 3.7
SDK for developing VST plug-in
[3.0.1] Parameter MIDI Mapping Support

How the mapping works between MIDI CCs and parameters.

MIDI Mapping interface: Vst::IMidiMapping.

  • [plug imp]

[extends IEditController]

  • [released: 3.0.1]
  • [optional]

MIDI controllers are not transmitted directly to a VST component. MIDI as hardware protocol has restrictions that can be avoided in software. Controller data in particular come along with unclear and often ignored semantics. On top of this they can interfere with regular parameter automation and the host is unaware of what happens in the plug-in when passing MIDI controllers directly.

So any functionality that is to be controlled by MIDI controllers must be exported as regular parameter. The host will transform incoming MIDI controller data using this interface and transmit them as regular parameter change. This allows the host to automate them in the same way as other parameters. CtrlNumber can be a typical MIDI controller value extended to some others values like pitchbend or aftertouch (see ControllerNumbers). If the mapping has changed, the plug-in must call IComponentHandler::restartComponent (kMidiCCAssignmentChanged) to inform the host about this change.

Example

//--------------------------------------
// in myeditcontroller.h
class MyEditController: public EditControllerEx1, public IMidiMapping
{
//...
//---IMidiMapping---------------------------
tresult PLUGIN_API getMidiControllerAssignment (int32 busIndex, int16 channel, CtrlNumber midiControllerNumber, ParamID& id) SMTG_OVERRIDE;
//---Interface---------
OBJ_METHODS (MyEditController, EditControllerEx1)
DEFINE_INTERFACES
DEF_INTERFACE (IMidiMapping)
END_DEFINE_INTERFACES (MyEditController)
REFCOUNT_METHODS (MyEditController)
};
//--------------------------------------
// in myeditcontroller.cpp
tresult PLUGIN_API MyEditController::getMidiControllerAssignment (int32 busIndex, int16 midiChannel, CtrlNumber midiControllerNumber, ParamID& tag)
{
// for my first Event bus and for MIDI channel 0 and for MIDI CC Volume only
if (busIndex == 0 && midiChannel == 0 && midiControllerNumber == kCtrlVolume)
{
tag = kGainId;
return kResultTrue;
}
return kResultFalse;
}



Back to Contents

Steinberg::Vst::kCtrlVolume
Channel Volume (formerly Main Volume)
Definition: ivstmidicontrollers.h:34
tresult
int32 tresult
int32
int int32
int16
short int16
Steinberg::Vst::CtrlNumber
int16 CtrlNumber
MIDI controller number (see ControllerNumbers for allowed values)
Definition: vsttypes.h:76
kResultFalse
kResultFalse
kResultTrue
kResultTrue
Steinberg::Vst::ParamID
uint32 ParamID
parameter identifier
Definition: vsttypes.h:74
SMTG_OVERRIDE
#define SMTG_OVERRIDE
Empty

Copyright ©2020 Steinberg Media Technologies GmbH. All Rights Reserved. This documentation is under this license.