mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 12:10:09 +02:00
69 lines
2.5 KiB
C++
69 lines
2.5 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/>.
|
|
|
|
#include "component-handler-proxy.h"
|
|
|
|
#include <iostream>
|
|
|
|
Vst3ComponentHandlerProxyImpl::Vst3ComponentHandlerProxyImpl(
|
|
Vst3Bridge& bridge,
|
|
Vst3ComponentHandlerProxy::ConstructArgs&& args)
|
|
: Vst3ComponentHandlerProxy(std::move(args)), bridge(bridge) {
|
|
// The lifecycle is thos object is managed together with that of the plugin
|
|
// object instance instance this belongs to
|
|
}
|
|
|
|
tresult PLUGIN_API
|
|
Vst3ComponentHandlerProxyImpl::queryInterface(const Steinberg::TUID _iid,
|
|
void** obj) {
|
|
// TODO: Successful queries should also be logged
|
|
const tresult result = Vst3ComponentHandlerProxy::queryInterface(_iid, obj);
|
|
if (result != Steinberg::kResultOk) {
|
|
std::cerr << "TODO: Implement unknown interface logging on Wine side"
|
|
<< std::endl;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
tresult PLUGIN_API
|
|
Vst3ComponentHandlerProxyImpl::beginEdit(Steinberg::Vst::ParamID id) {
|
|
return bridge.send_message(YaComponentHandler::BeginEdit{
|
|
.owner_instance_id = owner_instance_id(), .id = id});
|
|
}
|
|
|
|
tresult PLUGIN_API Vst3ComponentHandlerProxyImpl::performEdit(
|
|
Steinberg::Vst::ParamID id,
|
|
Steinberg::Vst::ParamValue valueNormalized) {
|
|
// TODO: Implement
|
|
std::cerr << "TODO: IComponentHandler::performEdit()" << std::endl;
|
|
return Steinberg::kNotImplemented;
|
|
}
|
|
|
|
tresult PLUGIN_API
|
|
Vst3ComponentHandlerProxyImpl::endEdit(Steinberg::Vst::ParamID id) {
|
|
// TODO: Implement
|
|
std::cerr << "TODO: IComponentHandler::endEdit()" << std::endl;
|
|
return Steinberg::kNotImplemented;
|
|
}
|
|
|
|
tresult PLUGIN_API
|
|
Vst3ComponentHandlerProxyImpl::restartComponent(int32 flags) {
|
|
// TODO: Implement
|
|
std::cerr << "TODO: IComponentHandler::restartComponent()" << std::endl;
|
|
return Steinberg::kNotImplemented;
|
|
}
|