Add a proxy class for IInfoListener

This commit is contained in:
Robbert van der Helm
2021-01-12 16:15:35 +01:00
parent 6905c65af8
commit 9c63eb6fcd
4 changed files with 102 additions and 0 deletions
+2
View File
@@ -129,6 +129,7 @@ vst3_plugin_sources = [
'src/common/serialization/vst3/plugin/edit-controller.cpp',
'src/common/serialization/vst3/plugin/edit-controller-2.cpp',
'src/common/serialization/vst3/plugin/edit-controller-host-editing.cpp',
'src/common/serialization/vst3/plugin/info-listener.cpp',
'src/common/serialization/vst3/plugin/keyswitch-controller.cpp',
'src/common/serialization/vst3/plugin/midi-mapping.cpp',
'src/common/serialization/vst3/plugin/note-expression-controller.cpp',
@@ -206,6 +207,7 @@ if with_vst3
'src/common/serialization/vst3/plugin/edit-controller.cpp',
'src/common/serialization/vst3/plugin/edit-controller-2.cpp',
'src/common/serialization/vst3/plugin/edit-controller-host-editing.cpp',
'src/common/serialization/vst3/plugin/info-listener.cpp',
'src/common/serialization/vst3/plugin/keyswitch-controller.cpp',
'src/common/serialization/vst3/plugin/midi-mapping.cpp',
'src/common/serialization/vst3/plugin/note-expression-controller.cpp',
+1
View File
@@ -29,6 +29,7 @@ VST3 plugin interfaces are implemented as follows:
| `YaEditController` | `Vst3PluginProxy` | `IEditController` |
| `YaEditController2` | `Vst3PluginProxy` | `IEditController2` |
| `YaEditControllerHostEditing` | `Vst3PluginProxy` | `IEditControllerHostEditing` |
| `YaInfoListener` | `Vst3PluginProxy` | `IInfoListener` |
| `YaKeyswitchController` | `Vst3PluginProxy` | `IKeyswitchController` |
| `YaMidiMapping` | `Vst3PluginProxy` | `IMidiMapping` |
| `YaNoteExpressionController` | `Vst3PluginProxy` | `INoteExpressionController` |
@@ -0,0 +1,28 @@
// yabridge: a Wine VST bridge
// Copyright (C) 2020-2021 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/>.
#include "info-listener.h"
YaInfoListener::ConstructArgs::ConstructArgs() {}
YaInfoListener::ConstructArgs::ConstructArgs(
Steinberg::IPtr<Steinberg::FUnknown> object)
: supported(
Steinberg::FUnknownPtr<Steinberg::Vst::ChannelContext::IInfoListener>(
object)) {}
YaInfoListener::YaInfoListener(const ConstructArgs&& args)
: arguments(std::move(args)) {}
@@ -0,0 +1,71 @@
// yabridge: a Wine VST bridge
// Copyright (C) 2020-2021 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
#include <pluginterfaces/vst/ivstchannelcontextinfo.h>
#include "../../common.h"
#include "../base.h"
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
/**
* Wraps around `IInfoListener` for serialization purposes. This is instantiated
* as part of `Vst3PluginProxy`.
*/
class YaInfoListener : public Steinberg::Vst::ChannelContext::IInfoListener {
public:
/**
* These are the arguments for creating a `YaInfoListener`.
*/
struct ConstructArgs {
ConstructArgs();
/**
* Check whether an existing implementation implements `IInfoListener`
* and read arguments from it.
*/
ConstructArgs(Steinberg::IPtr<Steinberg::FUnknown> object);
/**
* Whether the object supported this interface.
*/
bool supported;
template <typename S>
void serialize(S& s) {
s.value1b(supported);
}
};
/**
* Instantiate this instance with arguments read from another interface
* implementation.
*/
YaInfoListener(const ConstructArgs&& args);
inline bool supported() const { return arguments.supported; }
virtual tresult PLUGIN_API
setChannelContextInfos(Steinberg::Vst::IAttributeList* list) override = 0;
protected:
ConstructArgs arguments;
};
#pragma GCC diagnostic pop