diff --git a/include/control-surfaces-softube-console1.html b/include/control-surfaces-softube-console1.html index d9945e7..5eb7eb3 100644 --- a/include/control-surfaces-softube-console1.html +++ b/include/control-surfaces-softube-console1.html @@ -46,6 +46,12 @@ saved, the connections will be made automatically in this and other future sessions.

+

Checkboxes

+

The checkbox "Swap Solo and Mute" does exactly that. In Ardour and Mixbus, these buttons are arranged exactly the other way round than in Console1. Since this can be irritating, the assignment can be reversed here. +

+

Work in Progress
+The checkbox "Create Plugin Mapping Stubs" automatically creates mapping files for external plugins - if they does not already exists. See the last section "External Plugins" for further information. +

Harrison Mixbus & Mixbus 32c

A lot of functionality is developed to be used with Harrison Mixbus @@ -184,8 +190,8 @@ Depth for the gate - Shift+Sustain - Filter frequency for the gate + Shift+Punch + Sidechain filter frequency Hard Gate @@ -356,5 +362,74 @@ the next send below by the send 2 encoder (High Mid) Shape Send 12 - + + +

External Plugins

+
+ This is work in progress. But things described here are already working but might be unstable!
+ Pressing Group will set Console1 into external plugin mode. External plugins are all plugins in case of Ardour and in case of Mixbus all plugins which are not a fixed part of the mixerstrips. +
+ + + + + + + + + + + + + +
GroupSet or unset the Console 1 into "External Plugin Mode" +
1-20Select the plugin at position [selected number]. Pressing repeatedly then shows or hides the plugin.The LED of the selected channel stay on permanently, the channel LED of the plugin number stays in 'blinking mode'.
MuteDisables the plugin
+

All other assignements needs to be done with the mapping files. A stub of such a mapping file can be automatically created when the checkbox "Create Plugin Mapping Stubs" in the "Control Protocol Settings" dialog is enabled.

+

The mapping files are created in a subdirectory "c1mappings" of the Ardour/Mixbus settings directory

+

This is the example of a mapping file for the a-compressor. The file name is created from the unique URL of the plugin. In this case its urn:ardour:a-comp.xml +

+<?xml version="1.0" encoding="UTF-8"?>
+<c1plugin-mapping 
+        ID="urn:ardour:a-comp" 
+        NAME="ACE Compressor">
+        <param-mapping id="0">
+                <name>Attack</name>
+                <mapping shift="false">COMP_ATTACK</mapping>
+        </param-mapping>
+
+        <param-mapping id="1">
+                <name>Release</name>
+                <mapping shift="false">COMP_RELEASE</mapping>
+        </param-mapping>
+
+        <param-mapping id="2">
+                <name>Knee</name>
+                <mapping shift="false"></mapping>
+        </param-mapping>
+
+        <param-mapping id="3">
+                <name>Ratio</name>
+                <mapping shift="false">COMP_RATIO</mapping>
+        </param-mapping>
+
+        <param-mapping id="4">
+                <name>Threshold</name>
+                <mapping shift="false">COMP_THRESH</mapping>
+        </param-mapping>
+
+        <param-mapping id="5">
+                <name>Makeup</name>
+                <mapping shift="false">COMP_PAR</mapping>
+        </param-mapping>
+
+        <param-mapping id="6">
+                <name>Sidechain</name>
+                <mapping shift="false"></mapping>
+        </param-mapping>
+</c1plugin-mapping>
+
+
+

+

It is planned to allow creating the mapping file for the plugins inside the setup dialog. This, however, might take some time. +

diff --git a/source/images/c1_settings.png b/source/images/c1_settings.png index 554ac5f..65a8438 100644 Binary files a/source/images/c1_settings.png and b/source/images/c1_settings.png differ