JUCE
|
Implements a plugin format for VST3s. More...
Public Member Functions | |
VST3PluginFormat () | |
Constructor. More... | |
~VST3PluginFormat () override | |
Destructor. More... | |
String | getName () const override |
Returns the format name. More... | |
bool | canScanForPlugins () const override |
Returns true if this format needs to run a scan to find its list of plugins. More... | |
bool | isTrivialToScan () const override |
Should return true if this format is both safe and quick to scan - i.e. More... | |
void | findAllTypesForFile (OwnedArray< PluginDescription > &, const String &fileOrIdentifier) override |
This tries to create descriptions for all the plugin types available in a binary module file. More... | |
bool | fileMightContainThisPluginType (const String &fileOrIdentifier) override |
Should do a quick check to see if this file or directory might be a plugin of this format. More... | |
String | getNameOfPluginFromIdentifier (const String &fileOrIdentifier) override |
Returns a readable version of the name of the plugin that this identifier refers to. More... | |
bool | pluginNeedsRescanning (const PluginDescription &) override |
Returns true if this plugin's version or date has changed and it should be re-checked. More... | |
StringArray | searchPathsForPlugins (const FileSearchPath &, bool recursive, bool) override |
Searches a suggested set of directories for any plugins in this format. More... | |
bool | doesPluginStillExist (const PluginDescription &) override |
Checks whether this plugin could possibly be loaded. More... | |
FileSearchPath | getDefaultLocationsToSearch () override |
Returns the typical places to look for this kind of plugin. More... | |
Public Member Functions inherited from AudioPluginFormat | |
~AudioPluginFormat () override | |
Destructor. More... | |
std::unique_ptr< AudioPluginInstance > | createInstanceFromDescription (const PluginDescription &, double initialSampleRate, int initialBufferSize) |
Tries to recreate a type from a previously generated PluginDescription. More... | |
std::unique_ptr< AudioPluginInstance > | createInstanceFromDescription (const PluginDescription &, double initialSampleRate, int initialBufferSize, String &errorMessage) |
Same as above but with the possibility of returning an error message. More... | |
void | createPluginInstanceAsync (const PluginDescription &description, double initialSampleRate, int initialBufferSize, PluginCreationCallback) |
Tries to recreate a type from a previously generated PluginDescription. More... | |
Static Public Member Functions | |
static bool | setStateFromVSTPresetFile (AudioPluginInstance *, const MemoryBlock &) |
Attempts to reload a VST3 plugin's state from some preset file data. More... | |
static String | getFormatName () |
Additional Inherited Members | |
Public Types inherited from AudioPluginFormat | |
using | PluginCreationCallback = std::function< void(std::unique_ptr< AudioPluginInstance >, const String &)> |
A callback lambda that is passed to createPluginInstanceAsync() More... | |
Protected Member Functions inherited from AudioPluginFormat | |
AudioPluginFormat () | |
Implements a plugin format for VST3s.
VST3PluginFormat::VST3PluginFormat | ( | ) |
Constructor.
|
override |
Destructor.
|
static |
Attempts to reload a VST3 plugin's state from some preset file data.
|
static |
|
overridevirtual |
|
overridevirtual |
Returns true if this format needs to run a scan to find its list of plugins.
Implements AudioPluginFormat.
|
overridevirtual |
Should return true if this format is both safe and quick to scan - i.e.
if a file can be scanned within a few milliseconds on a background thread, without actually needing to load an executable.
Implements AudioPluginFormat.
References AudioPluginFormat::createPluginInstance(), AudioPluginFormat::doesPluginStillExist(), AudioPluginFormat::fileMightContainThisPluginType(), AudioPluginFormat::findAllTypesForFile(), AudioPluginFormat::getDefaultLocationsToSearch(), AudioPluginFormat::getNameOfPluginFromIdentifier(), JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR, AudioPluginFormat::pluginNeedsRescanning(), AudioPluginFormat::requiresUnblockedMessageThreadDuringCreation(), and AudioPluginFormat::searchPathsForPlugins().
|
overridevirtual |
This tries to create descriptions for all the plugin types available in a binary module file.
The file will be some kind of DLL or bundle.
Normally there will only be one type returned, but some plugins (e.g. VST shells) can use a single DLL to create a set of different plugin subtypes, so in that case, each subtype is returned as a separate object.
Implements AudioPluginFormat.
|
overridevirtual |
Should do a quick check to see if this file or directory might be a plugin of this format.
This is for searching for potential files, so it shouldn't actually try to load the plugin or do anything time-consuming.
Implements AudioPluginFormat.
|
overridevirtual |
Returns a readable version of the name of the plugin that this identifier refers to.
Implements AudioPluginFormat.
|
overridevirtual |
Returns true if this plugin's version or date has changed and it should be re-checked.
Implements AudioPluginFormat.
|
overridevirtual |
Searches a suggested set of directories for any plugins in this format.
The path might be ignored, e.g. by AUs, which are found by the OS rather than manually.
directoriesToSearch | This specifies which directories shall be searched for plug-ins. |
recursive | Should the search recursively traverse folders. |
allowPluginsWhichRequireAsynchronousInstantiation | If this is false then plug-ins which require asynchronous creation will be excluded. |
Implements AudioPluginFormat.
|
overridevirtual |
Checks whether this plugin could possibly be loaded.
It doesn't actually need to load it, just to check whether the file or component still exists.
Implements AudioPluginFormat.
|
overridevirtual |
Returns the typical places to look for this kind of plugin.
Note that if this returns no paths, it means that the format doesn't search in files or folders, e.g. AudioUnits.
Implements AudioPluginFormat.