VST3: use a dedicated connection list
This commit is contained in:
parent
1d6d4dc7b8
commit
debcda25b4
@ -170,6 +170,8 @@ private:
|
||||
|
||||
boost::shared_ptr<ARDOUR::VST3PluginModule> _module;
|
||||
|
||||
std::vector <Vst::IConnectionPoint*> _connections;
|
||||
|
||||
FUID _fuid;
|
||||
IPluginFactory* _factory;
|
||||
Vst::IComponent* _component;
|
||||
|
@ -1195,14 +1195,23 @@ VST3PI::disconnect_components ()
|
||||
tresult
|
||||
VST3PI::connect (Vst::IConnectionPoint* other)
|
||||
{
|
||||
return other ? kResultTrue : kInvalidArgument;
|
||||
if (!other) {
|
||||
return kInvalidArgument;
|
||||
}
|
||||
_connections.push_back (other);
|
||||
return kResultTrue;
|
||||
}
|
||||
|
||||
tresult
|
||||
VST3PI::disconnect (Vst::IConnectionPoint* other)
|
||||
{
|
||||
std::vector <Vst::IConnectionPoint*>::const_iterator i = std::find (_connections.begin(), _connections.end(), other);
|
||||
if (i != _connections.end()) {
|
||||
_connections.erase (i);
|
||||
return kResultTrue;
|
||||
}
|
||||
return kInvalidArgument;
|
||||
}
|
||||
|
||||
tresult
|
||||
VST3PI::notify (Vst::IMessage* msg)
|
||||
@ -1210,15 +1219,12 @@ VST3PI::notify (Vst::IMessage* msg)
|
||||
#ifndef NDEBUG
|
||||
std::cerr << "VST3PI::notify\n";
|
||||
#endif
|
||||
FUnknownPtr<Vst::IConnectionPoint> componentCP (_component);
|
||||
FUnknownPtr<Vst::IConnectionPoint> controllerCP (_controller);
|
||||
// XXX this bounces the message back..
|
||||
// we likely need a proxy here
|
||||
if (componentCP) {
|
||||
componentCP->notify (msg);
|
||||
}
|
||||
if (controllerCP) {
|
||||
controllerCP->notify (msg);
|
||||
for (std::vector <Vst::IConnectionPoint*>::const_iterator i = _connections.begin(); i != _connections.end(); ++i) {
|
||||
/* TODO delegate to GUI thread if available
|
||||
* see ./libs/pbd/pbd/event_loop.h ir->call_slot ()
|
||||
* and HostMessage()
|
||||
*/
|
||||
(*i)->notify (msg);
|
||||
}
|
||||
return kResultTrue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user