VST 3 Interfaces  VST 3.6.7
SDK for developing VST Plug-in
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Groups Pages
Remote Representation of Parameters Support

Extended Plug-in interface IEditController for a component.

Introduction

Since VST 3.5 a new interface is provided: Steinberg::Vst::IXmlRepresentationController

A Representation based on XML is a way to export and structure, group Plug-ins parameters for a specific remote (could be hardware or software rack (like quickcontrols)).
It allows to describe more precisely each parameter (what is the best matching to a knob, different titles lengths matching limited remote display,...).
See an Example.


This Representation is implemented as XML text following the Document Type Definition (DTD): http://dtd.steinberg.net/VST-Remote-1.1.dtd

Example

Here an example of what should be passed in the stream of getXmlRepresentationStream:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE vstXML PUBLIC "-//Steinberg//DTD VST Remote 1.1//EN" "http://dtd.steinberg.net/VST-Remote-1.1.dtd">
<vstXML version="1.0">
<plugin classID="341FC5898AAA46A7A506BC0799E882AE" name="Chorus" vendor="Steinberg Media Technologies" />
<originator>My name</originator>
<date>2010-12-31</date>
<comment>This is an example for 4 Cells per Page for the Remote named ProductRemote
from company HardwareCompany.</comment>
<!-- ===================================== -->
<representation name="ProductRemote" vendor="HardwareCompany" version="1.0">
<page name="Root">
<cell>
<layer type="knob" parameterID="0">
<titleDisplay>
<name>Mix dry/wet</name>
<name>Mix</name>
</titleDisplay>
</layer>
</cell>
<cell>
<layer type="display"></layer>
</cell>
<cell>
<layer type="knob" parameterID="3">
<titleDisplay>
<name>Delay</name>
<name>Dly</name>
</titleDisplay>
</layer>
</cell>
<cell>
<layer type="knob" parameterID="15">
<titleDisplay>
<name>Spatial</name>
<name>Spat</name>
</titleDisplay>
</layer>
</cell>
</page>
<page name="Page 2">
<cell>
<layer type="LED" ledStyle="spread" parameterID="2">
<titleDisplay>
<name>Width +</name>
<name>Widt</name>
</titleDisplay>
</layer>
<!--this is the switch for shape A/B-->
<layer type="switch" switchStyle="pushIncLooped" parameterID="4"></layer>
</cell>
<cell>
<layer type="display"></layer>
</cell>
<cell>
<layer type="LED" ledStyle="singleDot" parameterID="17">
<titleDisplay>
<name>Sync Note +</name>
<name>Note</name>
</titleDisplay>
</layer>
<!--this is the switch for sync to tempo on /off-->
<layer type="switch" switchStyle="pushIncLooped" parameterID="16"></layer>
</cell>
<cell>
<layer type="knob" parameterID="1">
<titleDisplay>
<name>Rate</name>
</titleDisplay>
</layer>
</cell>
</page>
</representation>
</vstXML>



Graphical overview

representation.jpg



Example of implementation using helper class

See Steinberg::Vst::XmlRepresentationHelper.



Location table for VST XMLs Representation

When a host needs to use a VST XMLs Representation (for internal use like Quick-Controls assignment to get the most important parameters sorted per Page of a Plug-in), the host will check the presence in a specific location for a given remote and for this given Plug-in a Representation XML file with the remote name as filename (check below about how the path is defined). If this is not found the host will ask the Plug-in by using Steinberg::Vst::IXmlRepresentationController (if implemented).

Explanation:



For Mac platform:

-------------------------------------------------------------------------------------
Priority  Type      Path
-------------------------------------------------------------------------------------
1         user      $USER/Library/Audio/VST XMLs/$COMPANY/$PLUGIN-NAME/     
2         shared    Library/Audio/VST XMLs/$COMPANY/$PLUGIN-NAME/
3         factory   $PLUGIN-PATH/Contents/Resources/VST XMLs/ 
-------------------------------------------------------------------------------------



For Windows Vista/7/8/10 platform:

-------------------------------------------------------------------------------------
Priority  Type      Path
-------------------------------------------------------------------------------------
1         user      Users/$USERNAME/AppData/Roaming]/VST XMLs/$COMPANY/$PLUGIN-NAME/
2         shared    [ProgramData]/VST XMLs/$COMPANY/$PLUGIN-NAME/
3         factory   [$APPFOLDER]/VST XMLs/$COMPANY/$PLUGIN-NAME/
-------------------------------------------------------------------------------------



For Windows XP/2000 platform:

-------------------------------------------------------------------------------------
Priority  Type      Path
-------------------------------------------------------------------------------------
1         user      [Documents and Settings/$USERNAME/Application Data]/VST XMLs/$COMPANY/$PLUGIN-NAME/
2         shared    [Documents and Settings/$ALLUSERS/Application Data]/VST XMLs/$COMPANY/$PLUGIN-NAME/
3         factory   [$APPFOLDER]/VST XMLs/$COMPANY/$PLUGIN-NAME/
-------------------------------------------------------------------------------------


Back to Contents

Empty

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