mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-18 00:54:19 +00:00
143 lines
4.4 KiB
C++
143 lines
4.4 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE library - "Jules' Utility Class Extensions"
|
|
Copyright 2004-9 by Raw Material Software Ltd.
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
JUCE can be redistributed and/or modified under the terms of the GNU General
|
|
Public License (Version 2), as published by the Free Software Foundation.
|
|
A copy of the license is included in the JUCE distribution, or can be found
|
|
online at www.gnu.org/licenses.
|
|
|
|
JUCE 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.
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
To release a closed-source product which uses JUCE, commercial licenses are
|
|
available: visit www.rawmaterialsoftware.com/juce for more information.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#include "../../core/juce_StandardHeader.h"
|
|
|
|
BEGIN_JUCE_NAMESPACE
|
|
|
|
#include "juce_AudioPluginFormatManager.h"
|
|
#include "juce_PluginDescription.h"
|
|
#include "../../text/juce_LocalisedStrings.h"
|
|
|
|
#include "formats/juce_VSTPluginFormat.h"
|
|
#include "formats/juce_AudioUnitPluginFormat.h"
|
|
#include "formats/juce_DirectXPluginFormat.h"
|
|
#include "formats/juce_LADSPAPluginFormat.h"
|
|
|
|
|
|
//==============================================================================
|
|
AudioPluginFormatManager::AudioPluginFormatManager() throw()
|
|
{
|
|
}
|
|
|
|
AudioPluginFormatManager::~AudioPluginFormatManager() throw()
|
|
{
|
|
clearSingletonInstance();
|
|
}
|
|
|
|
juce_ImplementSingleton_SingleThreaded (AudioPluginFormatManager);
|
|
|
|
//==============================================================================
|
|
void AudioPluginFormatManager::addDefaultFormats()
|
|
{
|
|
#ifdef JUCE_DEBUG
|
|
// you should only call this method once!
|
|
for (int i = formats.size(); --i >= 0;)
|
|
{
|
|
#if JUCE_PLUGINHOST_VST && ! (JUCE_MAC && JUCE_64BIT)
|
|
jassert (dynamic_cast <VSTPluginFormat*> (formats[i]) == 0);
|
|
#endif
|
|
|
|
#if JUCE_PLUGINHOST_AU && JUCE_MAC
|
|
jassert (dynamic_cast <AudioUnitPluginFormat*> (formats[i]) == 0);
|
|
#endif
|
|
|
|
#if JUCE_PLUGINHOST_DX && JUCE_WIN32
|
|
jassert (dynamic_cast <DirectXPluginFormat*> (formats[i]) == 0);
|
|
#endif
|
|
|
|
#if JUCE_PLUGINHOST_LADSPA && JUCE_LINUX
|
|
jassert (dynamic_cast <LADSPAPluginFormat*> (formats[i]) == 0);
|
|
#endif
|
|
}
|
|
#endif
|
|
|
|
#if JUCE_PLUGINHOST_AU && JUCE_MAC
|
|
formats.add (new AudioUnitPluginFormat());
|
|
#endif
|
|
|
|
#if JUCE_PLUGINHOST_VST && ! (JUCE_MAC && JUCE_64BIT)
|
|
formats.add (new VSTPluginFormat());
|
|
#endif
|
|
|
|
#if JUCE_PLUGINHOST_DX && JUCE_WIN32
|
|
formats.add (new DirectXPluginFormat());
|
|
#endif
|
|
|
|
#if JUCE_PLUGINHOST_LADSPA && JUCE_LINUX
|
|
formats.add (new LADSPAPluginFormat());
|
|
#endif
|
|
}
|
|
|
|
int AudioPluginFormatManager::getNumFormats() throw()
|
|
{
|
|
return formats.size();
|
|
}
|
|
|
|
AudioPluginFormat* AudioPluginFormatManager::getFormat (const int index) throw()
|
|
{
|
|
return formats [index];
|
|
}
|
|
|
|
void AudioPluginFormatManager::addFormat (AudioPluginFormat* const format) throw()
|
|
{
|
|
formats.add (format);
|
|
}
|
|
|
|
AudioPluginInstance* AudioPluginFormatManager::createPluginInstance (const PluginDescription& description,
|
|
String& errorMessage) const
|
|
{
|
|
AudioPluginInstance* result = 0;
|
|
|
|
for (int i = 0; i < formats.size(); ++i)
|
|
{
|
|
result = formats.getUnchecked(i)->createInstanceFromDescription (description);
|
|
|
|
if (result != 0)
|
|
break;
|
|
}
|
|
|
|
if (result == 0)
|
|
{
|
|
if (! doesPluginStillExist (description))
|
|
errorMessage = TRANS ("This plug-in file no longer exists");
|
|
else
|
|
errorMessage = TRANS ("This plug-in failed to load correctly");
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
bool AudioPluginFormatManager::doesPluginStillExist (const PluginDescription& description) const
|
|
{
|
|
for (int i = 0; i < formats.size(); ++i)
|
|
if (formats.getUnchecked(i)->getName() == description.pluginFormatName)
|
|
return formats.getUnchecked(i)->doesPluginStillExist (description);
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
END_JUCE_NAMESPACE
|