2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2003-09-08 15:38:34 +00:00
|
|
|
*
|
2021-12-26 17:47:58 +00:00
|
|
|
* 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.
|
2014-02-18 01:34:18 +00:00
|
|
|
*
|
2003-09-08 15:38:34 +00:00
|
|
|
* 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.
|
2014-02-18 01:34:18 +00:00
|
|
|
*
|
2003-09-08 15:38:34 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 17:47:58 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-09-08 15:38:34 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-04-15 21:20:16 +00:00
|
|
|
#ifndef BASE_PLUGINS_H
|
|
|
|
#define BASE_PLUGINS_H
|
2003-09-08 15:38:34 +00:00
|
|
|
|
2010-03-18 15:09:24 +00:00
|
|
|
#include "common/array.h"
|
2011-04-24 08:34:27 +00:00
|
|
|
#include "common/fs.h"
|
|
|
|
#include "common/str.h"
|
2010-09-15 07:44:08 +00:00
|
|
|
#include "backends/plugins/elf/version.h"
|
2003-09-08 15:38:34 +00:00
|
|
|
|
2019-02-21 00:05:46 +00:00
|
|
|
#define INCLUDED_FROM_BASE_PLUGINS_H
|
|
|
|
#include "base/internal_plugins.h"
|
|
|
|
#undef INCLUDED_FROM_BASE_PLUGINS_H
|
|
|
|
|
2008-05-13 11:00:25 +00:00
|
|
|
|
2008-05-12 00:26:29 +00:00
|
|
|
// Plugin versioning
|
2008-02-04 18:38:22 +00:00
|
|
|
|
2008-05-13 10:41:32 +00:00
|
|
|
/** Global Plugin API version */
|
2008-02-08 01:02:25 +00:00
|
|
|
#define PLUGIN_VERSION 1
|
|
|
|
|
2008-02-08 00:02:23 +00:00
|
|
|
enum PluginType {
|
2020-10-11 21:12:32 +00:00
|
|
|
PLUGIN_TYPE_ENGINE_DETECTION = 0,
|
2020-07-28 23:29:02 +00:00
|
|
|
PLUGIN_TYPE_ENGINE,
|
2008-06-13 14:30:47 +00:00
|
|
|
PLUGIN_TYPE_MUSIC,
|
2020-08-12 12:35:35 +00:00
|
|
|
PLUGIN_TYPE_DETECTION,
|
2012-04-25 19:57:18 +00:00
|
|
|
PLUGIN_TYPE_SCALER,
|
2008-02-08 00:02:23 +00:00
|
|
|
|
|
|
|
PLUGIN_TYPE_MAX
|
|
|
|
};
|
|
|
|
|
2008-02-08 01:02:25 +00:00
|
|
|
// TODO: Make the engine API version depend on ScummVM's version
|
2011-02-12 16:43:57 +00:00
|
|
|
// because of the backlinking (posibly from the checkout revision)
|
2020-10-11 21:12:32 +00:00
|
|
|
#define PLUGIN_TYPE_ENGINE_DETECTION_VERSION 1
|
2020-08-02 18:00:12 +00:00
|
|
|
#define PLUGIN_TYPE_ENGINE_VERSION 2
|
2008-06-13 14:30:47 +00:00
|
|
|
#define PLUGIN_TYPE_MUSIC_VERSION 1
|
2020-08-12 12:35:35 +00:00
|
|
|
#define PLUGIN_TYPE_DETECTION_VERSION 1
|
2012-04-25 19:57:18 +00:00
|
|
|
#define PLUGIN_TYPE_SCALER_VERSION 1
|
2008-02-08 01:02:25 +00:00
|
|
|
|
|
|
|
extern int pluginTypeVersions[PLUGIN_TYPE_MAX];
|
|
|
|
|
2003-09-08 15:38:34 +00:00
|
|
|
|
2008-05-12 00:26:29 +00:00
|
|
|
// Plugin linking
|
2003-09-08 17:13:40 +00:00
|
|
|
|
2010-09-06 20:34:00 +00:00
|
|
|
// see comments in backends/plugins/elf/elf-provider.cpp
|
2010-09-15 07:43:16 +00:00
|
|
|
#if defined(USE_ELF_LOADER) && defined(ELF_LOADER_CXA_ATEXIT)
|
|
|
|
#define PLUGIN_DYNAMIC_DSO_HANDLE \
|
|
|
|
uint32 __dso_handle __attribute__((visibility("hidden"))) = 0;
|
2010-09-06 20:34:00 +00:00
|
|
|
#else
|
2010-09-15 07:43:16 +00:00
|
|
|
#define PLUGIN_DYNAMIC_DSO_HANDLE
|
2010-09-06 20:34:00 +00:00
|
|
|
#endif
|
|
|
|
|
2010-09-15 07:44:08 +00:00
|
|
|
#ifdef USE_ELF_LOADER
|
|
|
|
#define PLUGIN_DYNAMIC_BUILD_DATE \
|
|
|
|
PLUGIN_EXPORT const char *PLUGIN_getBuildDate() { return gScummVMPluginBuildDate; }
|
|
|
|
#else
|
|
|
|
#define PLUGIN_DYNAMIC_BUILD_DATE
|
|
|
|
#endif
|
|
|
|
|
2003-09-18 18:23:53 +00:00
|
|
|
/**
|
2008-05-13 10:41:32 +00:00
|
|
|
* REGISTER_PLUGIN_STATIC is a convenience macro which is used to declare
|
|
|
|
* the plugin interface for static plugins. Code (such as game engines)
|
|
|
|
* which needs to implement a static plugin can simply invoke this macro
|
|
|
|
* with a plugin ID, plugin type and PluginObject subclass, and the correct
|
|
|
|
* wrapper code will be inserted.
|
2003-09-18 18:23:53 +00:00
|
|
|
*
|
2008-05-13 10:41:32 +00:00
|
|
|
* @see REGISTER_PLUGIN_DYNAMIC
|
2003-09-18 18:23:53 +00:00
|
|
|
*/
|
2008-05-06 03:00:26 +00:00
|
|
|
#define REGISTER_PLUGIN_STATIC(ID,TYPE,PLUGINCLASS) \
|
2008-02-08 01:45:46 +00:00
|
|
|
PluginType g_##ID##_type = TYPE; \
|
2008-02-04 18:38:22 +00:00
|
|
|
PluginObject *g_##ID##_getObject() { \
|
|
|
|
return new PLUGINCLASS(); \
|
2006-04-08 12:06:07 +00:00
|
|
|
} \
|
2022-03-07 11:42:19 +00:00
|
|
|
void dummyFuncToAllowTrailingSemicolon_##ID##_()
|
2008-05-06 03:00:26 +00:00
|
|
|
|
|
|
|
#ifdef DYNAMIC_MODULES
|
|
|
|
|
2008-05-13 10:41:32 +00:00
|
|
|
/**
|
|
|
|
* REGISTER_PLUGIN_DYNAMIC is a convenience macro which is used to declare
|
|
|
|
* the plugin interface for dynamically loadable plugins. Code (such as game engines)
|
|
|
|
* which needs to implement a dynamic plugin can simply invoke this macro
|
|
|
|
* with a plugin ID, plugin type and PluginObject subclass, and the correct
|
|
|
|
* wrapper code will be inserted.
|
|
|
|
*
|
|
|
|
* @see REGISTER_PLUGIN_STATIC
|
|
|
|
*/
|
2008-05-06 03:00:26 +00:00
|
|
|
#define REGISTER_PLUGIN_DYNAMIC(ID,TYPE,PLUGINCLASS) \
|
2003-09-18 18:23:53 +00:00
|
|
|
extern "C" { \
|
2010-09-15 07:43:16 +00:00
|
|
|
PLUGIN_DYNAMIC_DSO_HANDLE \
|
2010-09-15 07:44:08 +00:00
|
|
|
PLUGIN_DYNAMIC_BUILD_DATE \
|
2008-02-08 01:45:46 +00:00
|
|
|
PLUGIN_EXPORT int32 PLUGIN_getVersion() { return PLUGIN_VERSION; } \
|
|
|
|
PLUGIN_EXPORT int32 PLUGIN_getType() { return TYPE; } \
|
|
|
|
PLUGIN_EXPORT int32 PLUGIN_getTypeVersion() { return TYPE##_VERSION; } \
|
2008-02-04 18:38:22 +00:00
|
|
|
PLUGIN_EXPORT PluginObject *PLUGIN_getObject() { \
|
|
|
|
return new PLUGINCLASS(); \
|
2008-02-03 18:56:47 +00:00
|
|
|
} \
|
2006-04-08 12:06:07 +00:00
|
|
|
} \
|
2022-03-07 11:42:19 +00:00
|
|
|
void dummyFuncToAllowTrailingSemicolon_##ID##_()
|
2008-05-06 03:00:26 +00:00
|
|
|
|
|
|
|
#endif // DYNAMIC_MODULES
|
2003-09-18 18:23:53 +00:00
|
|
|
|
|
|
|
|
2008-05-12 00:26:29 +00:00
|
|
|
// Abstract plugins
|
|
|
|
|
|
|
|
/**
|
2011-06-19 22:59:48 +00:00
|
|
|
* Abstract base class for the plugin objects which handle plugins
|
2010-12-29 15:25:21 +00:00
|
|
|
* instantiation. Subclasses for this may be used for engine plugins and other
|
|
|
|
* types of plugins. An existing PluginObject refers to an executable file
|
|
|
|
* loaded in memory and ready to run. The plugin, on the other hand, is just
|
|
|
|
* a handle to the file/object, whether it's loaded in memory or not.
|
2008-05-12 00:26:29 +00:00
|
|
|
*/
|
|
|
|
class PluginObject {
|
|
|
|
public:
|
|
|
|
virtual ~PluginObject() {}
|
|
|
|
|
|
|
|
/** Returns the name of the plugin. */
|
|
|
|
virtual const char *getName() const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Abstract base class for the plugin system.
|
|
|
|
* Subclasses for this can be used to wrap both static and dynamic
|
2010-12-29 15:25:21 +00:00
|
|
|
* plugins. This class refers to a plugin which may or may not be loaded in
|
|
|
|
* memory.
|
2008-05-12 00:26:29 +00:00
|
|
|
*/
|
|
|
|
class Plugin {
|
|
|
|
protected:
|
|
|
|
PluginObject *_pluginObject;
|
|
|
|
PluginType _type;
|
|
|
|
|
|
|
|
public:
|
2013-09-30 01:26:44 +00:00
|
|
|
Plugin() : _pluginObject(0), _type(PLUGIN_TYPE_MAX) {}
|
2008-05-12 00:26:29 +00:00
|
|
|
virtual ~Plugin() {
|
|
|
|
//if (isLoaded())
|
|
|
|
//unloadPlugin();
|
|
|
|
}
|
|
|
|
|
2018-04-15 12:00:56 +00:00
|
|
|
// virtual bool isLoaded() const = 0; // TODO
|
|
|
|
virtual bool loadPlugin() = 0; // TODO: Rename to load() ?
|
|
|
|
virtual void unloadPlugin() = 0; // TODO: Rename to unload() ?
|
2008-05-12 00:26:29 +00:00
|
|
|
|
2010-12-29 15:25:21 +00:00
|
|
|
/**
|
|
|
|
* The following functions query information from the plugin object once
|
|
|
|
* it's loaded into memory.
|
|
|
|
**/
|
2008-05-12 00:26:29 +00:00
|
|
|
PluginType getType() const;
|
|
|
|
const char *getName() const;
|
2010-12-29 15:25:21 +00:00
|
|
|
|
2017-11-11 05:06:42 +00:00
|
|
|
template <class T>
|
|
|
|
T &get() const {
|
|
|
|
T *pluginObject = dynamic_cast<T *>(_pluginObject);
|
|
|
|
if (!pluginObject) {
|
|
|
|
error("Invalid cast of plugin %s", getName());
|
|
|
|
}
|
|
|
|
return *pluginObject;
|
|
|
|
}
|
|
|
|
|
2010-12-29 15:25:21 +00:00
|
|
|
/**
|
|
|
|
* The getFileName() function gets the name of the plugin file for those
|
|
|
|
* plugins that have files (ie. not static). It doesn't require the plugin
|
|
|
|
* object to be loaded into memory, unlike getName()
|
|
|
|
**/
|
|
|
|
virtual const char *getFileName() const { return 0; }
|
2008-05-12 00:26:29 +00:00
|
|
|
};
|
|
|
|
|
2020-08-12 12:40:13 +00:00
|
|
|
class StaticPlugin : public Plugin {
|
|
|
|
public:
|
|
|
|
StaticPlugin(PluginObject *pluginobject, PluginType type);
|
|
|
|
~StaticPlugin();
|
|
|
|
virtual bool loadPlugin();
|
|
|
|
virtual void unloadPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-05-13 10:41:32 +00:00
|
|
|
/** List of Plugin instances. */
|
2004-04-09 15:10:23 +00:00
|
|
|
typedef Common::Array<Plugin *> PluginList;
|
2003-09-08 17:13:40 +00:00
|
|
|
|
2008-05-13 10:41:32 +00:00
|
|
|
/**
|
|
|
|
* Abstract base class for Plugin factories. Subclasses of this
|
2008-12-22 11:22:15 +00:00
|
|
|
* are responsible for creating plugin objects, e.g. by loading
|
2008-05-13 10:41:32 +00:00
|
|
|
* loadable modules from storage media; by creating "fake" plugins
|
|
|
|
* from static code; or whatever other means.
|
|
|
|
*/
|
2006-10-07 00:22:48 +00:00
|
|
|
class PluginProvider {
|
|
|
|
public:
|
|
|
|
virtual ~PluginProvider() {}
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2006-10-07 00:22:48 +00:00
|
|
|
/**
|
|
|
|
* Return a list of Plugin objects. The caller is responsible for actually
|
2008-05-13 10:41:32 +00:00
|
|
|
* loading/unloading them (by invoking the appropriate Plugin methods).
|
2006-10-07 00:22:48 +00:00
|
|
|
* Furthermore, the caller is responsible for deleting these objects
|
|
|
|
* eventually.
|
2008-05-13 11:00:25 +00:00
|
|
|
*
|
|
|
|
* @return a list of Plugin instances
|
2006-10-07 00:22:48 +00:00
|
|
|
*/
|
|
|
|
virtual PluginList getPlugins() = 0;
|
2010-08-14 08:04:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return whether or not object is a FilePluginProvider.
|
|
|
|
*/
|
|
|
|
virtual bool isFilePluginProvider() { return false; }
|
2006-10-07 00:22:48 +00:00
|
|
|
};
|
|
|
|
|
2008-05-13 13:24:49 +00:00
|
|
|
#ifdef DYNAMIC_MODULES
|
|
|
|
|
2008-05-13 10:41:32 +00:00
|
|
|
/**
|
|
|
|
* Abstract base class for Plugin factories which load binary code from files.
|
|
|
|
* Subclasses only have to implement the createPlugin() method, and optionally
|
|
|
|
* can overload the other protected methods to achieve custom behavior.
|
|
|
|
*/
|
2008-05-02 14:30:06 +00:00
|
|
|
class FilePluginProvider : public PluginProvider {
|
|
|
|
public:
|
2008-05-13 11:00:25 +00:00
|
|
|
/**
|
|
|
|
* Return a list of Plugin objects loaded via createPlugin from disk.
|
|
|
|
* For this, a list of directories is searched for plugin objects:
|
|
|
|
* The current dir and its "plugins" subdirectory (if present), a list
|
2008-12-22 11:22:15 +00:00
|
|
|
* of custom search dirs (see addCustomDirectories) and finally the
|
2008-05-13 11:00:25 +00:00
|
|
|
* directory specified via the "pluginspath" config variable (if any).
|
|
|
|
*
|
|
|
|
* @return a list of Plugin instances
|
|
|
|
*/
|
2008-05-02 14:30:06 +00:00
|
|
|
virtual PluginList getPlugins();
|
|
|
|
|
2010-08-14 08:04:40 +00:00
|
|
|
/**
|
|
|
|
* @return whether or not object is a FilePluginProvider.
|
|
|
|
*/
|
|
|
|
bool isFilePluginProvider() { return true; }
|
|
|
|
|
2008-05-02 14:30:06 +00:00
|
|
|
protected:
|
2008-05-13 10:41:32 +00:00
|
|
|
/**
|
|
|
|
* Create a Plugin instance from a loadable code module with the specified name.
|
|
|
|
* Subclasses of FilePluginProvider have to at least overload this method.
|
|
|
|
* If the file is not found, or does not contain loadable code, 0 is returned instead.
|
|
|
|
*
|
2008-09-30 16:34:38 +00:00
|
|
|
* @param node the FSNode of the loadable code module
|
2008-05-13 11:00:25 +00:00
|
|
|
* @return a pointer to a Plugin instance, or 0 if an error occurred.
|
2008-05-13 10:41:32 +00:00
|
|
|
*/
|
2008-10-02 16:58:59 +00:00
|
|
|
virtual Plugin *createPlugin(const Common::FSNode &node) const = 0;
|
2008-05-02 14:30:06 +00:00
|
|
|
|
2008-05-13 13:24:49 +00:00
|
|
|
/**
|
2008-09-30 16:34:38 +00:00
|
|
|
* Check if the supplied file corresponds to a loadable plugin file in
|
|
|
|
* the current platform. Usually, this will just check the file name.
|
2008-05-13 13:24:49 +00:00
|
|
|
*
|
2008-09-30 16:34:38 +00:00
|
|
|
* @param node the FSNode of the file to check
|
2008-05-13 13:24:49 +00:00
|
|
|
* @return true if the filename corresponds to a plugin, false otherwise
|
|
|
|
*/
|
2008-10-02 16:58:59 +00:00
|
|
|
virtual bool isPluginFilename(const Common::FSNode &node) const;
|
2008-05-02 14:30:06 +00:00
|
|
|
|
2008-05-13 11:00:25 +00:00
|
|
|
/**
|
|
|
|
* Optionally add to the list of directories to be searched for
|
|
|
|
* plugins by getPlugins().
|
|
|
|
*
|
2008-05-13 13:24:49 +00:00
|
|
|
* @param dirs the reference to the list of directories to be used when
|
2008-12-22 11:22:15 +00:00
|
|
|
* searching for plugins.
|
2008-05-13 11:00:25 +00:00
|
|
|
*/
|
2008-09-03 11:22:51 +00:00
|
|
|
virtual void addCustomDirectories(Common::FSList &dirs) const;
|
2008-05-02 14:30:06 +00:00
|
|
|
};
|
|
|
|
|
2008-05-13 13:24:49 +00:00
|
|
|
#endif // DYNAMIC_MODULES
|
|
|
|
|
2010-12-29 15:25:21 +00:00
|
|
|
#define PluginMan PluginManager::instance()
|
|
|
|
|
2003-09-08 15:38:34 +00:00
|
|
|
/**
|
2008-05-13 10:41:32 +00:00
|
|
|
* Singleton class which manages all plugins, including loading them,
|
|
|
|
* managing all Plugin class instances, and unloading them.
|
2003-09-08 15:38:34 +00:00
|
|
|
*/
|
2010-12-23 13:38:37 +00:00
|
|
|
class PluginManager {
|
|
|
|
protected:
|
2008-05-14 17:26:05 +00:00
|
|
|
typedef Common::Array<PluginProvider *> ProviderList;
|
2010-12-23 13:38:37 +00:00
|
|
|
|
2010-11-05 13:24:57 +00:00
|
|
|
PluginList _pluginsInMem[PLUGIN_TYPE_MAX];
|
2006-10-07 00:22:48 +00:00
|
|
|
ProviderList _providers;
|
2010-08-12 06:00:19 +00:00
|
|
|
|
2003-09-18 18:23:53 +00:00
|
|
|
bool tryLoadPlugin(Plugin *plugin);
|
2010-11-05 13:24:57 +00:00
|
|
|
void addToPluginsInMemList(Plugin *plugin);
|
2021-08-16 18:29:49 +00:00
|
|
|
const Plugin *findEnginePlugin(const Common::String &engineId);
|
|
|
|
const Plugin *findLoadedPlugin(const Common::String &engineId);
|
2011-06-19 22:59:48 +00:00
|
|
|
|
2010-12-23 13:38:37 +00:00
|
|
|
static PluginManager *_instance;
|
2010-12-23 14:37:03 +00:00
|
|
|
PluginManager();
|
2003-10-10 14:01:30 +00:00
|
|
|
|
2003-10-10 14:58:13 +00:00
|
|
|
public:
|
2010-12-23 13:38:37 +00:00
|
|
|
virtual ~PluginManager();
|
|
|
|
|
2010-12-23 14:37:03 +00:00
|
|
|
static void destroy() { delete _instance; _instance = 0; }
|
2010-12-23 13:38:37 +00:00
|
|
|
static PluginManager &instance();
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2006-10-07 00:22:48 +00:00
|
|
|
void addPluginProvider(PluginProvider *pp);
|
2003-10-11 14:13:22 +00:00
|
|
|
|
2020-08-02 16:48:39 +00:00
|
|
|
/**
|
|
|
|
* A method which takes in a plugin of type ENGINE,
|
|
|
|
* and returns the appropriate & matching METAENGINE.
|
|
|
|
* It uses the Engine plugin's getName method, which is an identifier,
|
|
|
|
* and then tries to matches it with each plugin present in memory.
|
|
|
|
*
|
2021-08-16 18:29:49 +00:00
|
|
|
* @param plugin A plugin of type ENGINE.
|
2020-08-02 16:48:39 +00:00
|
|
|
*
|
|
|
|
* @return A plugin of type METAENGINE.
|
|
|
|
*/
|
2021-08-16 18:29:49 +00:00
|
|
|
const Plugin *getMetaEngineFromEngine(const Plugin *plugin);
|
2020-08-02 16:48:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A method which takes in a plugin of type METAENGINE,
|
|
|
|
* and returns the appropriate & matching ENGINE.
|
|
|
|
* It uses the MetaEngine's getEngineID to reconstruct the name
|
|
|
|
* of engine plugin, and then tries to matches it with each plugin in memory.
|
|
|
|
*
|
|
|
|
* @param A plugin of type METAENGINE.
|
|
|
|
*
|
|
|
|
* @return A plugin of type ENGINE.
|
|
|
|
*/
|
2021-08-16 18:29:49 +00:00
|
|
|
const Plugin *getEngineFromMetaEngine(const Plugin *plugin);
|
2020-08-02 16:48:39 +00:00
|
|
|
|
2010-12-29 15:25:21 +00:00
|
|
|
// Functions used by the uncached PluginManager
|
2010-12-23 13:38:37 +00:00
|
|
|
virtual void init() {}
|
|
|
|
virtual void loadFirstPlugin() {}
|
|
|
|
virtual bool loadNextPlugin() { return false; }
|
2016-09-15 16:39:45 +00:00
|
|
|
virtual bool loadPluginFromEngineId(const Common::String &engineId) { return false; }
|
|
|
|
virtual void updateConfigWithFileName(const Common::String &engineId) {}
|
2020-08-12 12:43:40 +00:00
|
|
|
virtual void loadDetectionPlugin() {}
|
|
|
|
virtual void unloadDetectionPlugin() {}
|
2011-06-19 22:59:48 +00:00
|
|
|
|
2010-12-29 15:25:21 +00:00
|
|
|
// Functions used only by the cached PluginManager
|
2010-12-23 13:38:37 +00:00
|
|
|
virtual void loadAllPlugins();
|
2012-06-12 19:03:51 +00:00
|
|
|
virtual void loadAllPluginsOfType(PluginType type);
|
2010-12-23 13:38:37 +00:00
|
|
|
void unloadAllPlugins();
|
|
|
|
|
2010-11-05 13:24:57 +00:00
|
|
|
void unloadPluginsExcept(PluginType type, const Plugin *plugin, bool deletePlugin = true);
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2010-11-05 13:24:57 +00:00
|
|
|
const PluginList &getPlugins(PluginType t) { return _pluginsInMem[t]; }
|
2008-05-12 00:26:29 +00:00
|
|
|
};
|
|
|
|
|
2011-06-19 22:59:48 +00:00
|
|
|
/**
|
2010-12-23 13:38:37 +00:00
|
|
|
* Uncached version of plugin manager
|
|
|
|
* Keeps only one dynamic plugin in memory at a time
|
|
|
|
**/
|
|
|
|
class PluginManagerUncached : public PluginManager {
|
|
|
|
protected:
|
2012-02-01 20:54:40 +00:00
|
|
|
friend class PluginManager;
|
2010-12-23 13:38:37 +00:00
|
|
|
PluginList _allEnginePlugins;
|
2020-08-12 12:43:40 +00:00
|
|
|
Plugin *_detectionPlugin;
|
2010-12-23 13:38:37 +00:00
|
|
|
PluginList::iterator _currentPlugin;
|
|
|
|
|
2020-08-12 12:43:40 +00:00
|
|
|
bool _isDetectionLoaded;
|
|
|
|
|
2021-02-01 16:51:10 +00:00
|
|
|
PluginManagerUncached() : _isDetectionLoaded(false), _detectionPlugin(nullptr) {}
|
2011-06-19 22:59:48 +00:00
|
|
|
bool loadPluginByFileName(const Common::String &filename);
|
2010-12-23 13:38:37 +00:00
|
|
|
|
|
|
|
public:
|
2021-11-13 21:18:12 +00:00
|
|
|
void init() override;
|
|
|
|
void loadFirstPlugin() override;
|
|
|
|
bool loadNextPlugin() override;
|
|
|
|
bool loadPluginFromEngineId(const Common::String &engineId) override;
|
|
|
|
void updateConfigWithFileName(const Common::String &engineId) override;
|
2021-02-01 16:51:10 +00:00
|
|
|
#ifndef DETECTION_STATIC
|
2021-11-13 21:18:12 +00:00
|
|
|
void loadDetectionPlugin() override;
|
|
|
|
void unloadDetectionPlugin() override;
|
2021-02-01 16:51:10 +00:00
|
|
|
#endif
|
2011-06-19 22:59:48 +00:00
|
|
|
|
2021-11-13 21:18:12 +00:00
|
|
|
void loadAllPlugins() override {} // we don't allow these
|
|
|
|
void loadAllPluginsOfType(PluginType type) override {}
|
2010-12-23 13:38:37 +00:00
|
|
|
};
|
|
|
|
|
2003-09-08 15:38:34 +00:00
|
|
|
#endif
|