mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-08 12:30:12 +02:00
96 lines
3.4 KiB
C
96 lines
3.4 KiB
C
// yabridge: a Wine VST bridge
|
|
// Copyright (C) 2020 Robbert van der Helm
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
#pragma once
|
|
|
|
// This file contains important opcodes and structs missing from
|
|
// `vestige/aeffectx.h`
|
|
|
|
/**
|
|
* Glanced from https://www.kvraudio.com/forum/viewtopic.php?p=2744675#p2744675.
|
|
* These opcodes are used to retrieve names and specific properties for a
|
|
* plugin's inputs and outputs, if the plugin supports this. The index parameter
|
|
* is used to specify the index of the channel being queried, and the plugin
|
|
* gets passed an empty struct to describe the input/output through the data
|
|
* parameter. Finally the plugin returns a string containing the input or output
|
|
* name.
|
|
*/
|
|
[[maybe_unused]] constexpr int effGetInputProperties = 33;
|
|
[[maybe_unused]] constexpr int effGetOutputProperties = 34;
|
|
|
|
/**
|
|
* Found on
|
|
* https://github.com/falkTX/Carla/blob/07e876a743c5e15c358be170af2e523eadc7dbfa/source/utils/CarlaVstUtils.hpp#L75
|
|
* Used to assign names to MIDI keys, for some reason uses the `VstMidiKeyName`
|
|
* struct defined below rather than a simple string.
|
|
*/
|
|
[[maybe_unused]] constexpr int effGetMidiKeyName = 66;
|
|
|
|
/**
|
|
* Events used to tell a plugin to use a specific speaker arrangement (is this
|
|
* used outside of things like Dolby Atmos?), or to query its preferred speaker
|
|
* arrangement. Found on the same list as above.
|
|
*/
|
|
[[maybe_unused]] constexpr int effSetSpeakerArrangement = 42;
|
|
[[maybe_unused]] constexpr int effGetSpeakerArrangement = 69;
|
|
|
|
/**
|
|
* The struct that's being passed through the data parameter during the
|
|
* `effGetInputProperties` and `effGetOutputProperties` opcodes. Reverse
|
|
* engineered by attaching gdb to Bitwig. The actual fields are missing but for
|
|
* this application we don't need them.
|
|
*/
|
|
struct VstIOProperties {
|
|
char data[128];
|
|
};
|
|
|
|
/**
|
|
* The struct that's passed during `effGetMidiKeyName`. Will be used to write
|
|
* the name of a key to (i.e. the name of a sample for drum machines). Again,
|
|
* not sure about the exact contents of this struct, but at least the size is
|
|
* right!
|
|
*/
|
|
struct VstMidiKeyName {
|
|
char data[80];
|
|
};
|
|
|
|
/**
|
|
* Contains information about a speaker, used during
|
|
* `eff{Get,Set}SpeakerArrangement`.
|
|
*/
|
|
struct VstSpeaker {
|
|
char data[112];
|
|
};
|
|
|
|
/**
|
|
* Contains information about a speaker setup, either for input or output. Used
|
|
* during `eff{Get,Set}SpeakerArrangement`. Reverse engineered from Renoise by
|
|
* attaching gdb and dumping both the `value` and `data` pointers when the host
|
|
* calls opcode 42.
|
|
*
|
|
* Use the `DynamicSpeakerArrangement` class to serialize and construct these
|
|
* objects.
|
|
*/
|
|
struct VstSpeakerArrangement {
|
|
int flags;
|
|
int num_speakers;
|
|
/**
|
|
* Variable length array of speakers. Similar to how `VstEvents` works, but
|
|
* with an array of objects instead of an array of pointers to objects.
|
|
*/
|
|
VstSpeaker speakers[2];
|
|
};
|