1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
|
/* 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.
*
* 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 <http://www.gnu.org/licenses/>.
*
*/
#include "base/plugins.h"
#include "common/func.h"
#include "common/debug.h"
#include "common/debug-channels.h"
#include "common/config-manager.h"
#ifdef DYNAMIC_MODULES
#include "common/fs.h"
#endif
#include "base/detection/detection.h"
#include "engines/advancedDetector.h"
// Plugin versioning
const int pluginTypeVersions[PLUGIN_TYPE_MAX] = {
PLUGIN_TYPE_ENGINE_DETECTION_VERSION,
PLUGIN_TYPE_ENGINE_VERSION,
PLUGIN_TYPE_MUSIC_VERSION,
PLUGIN_TYPE_DETECTION_VERSION,
PLUGIN_TYPE_SCALER_VERSION,
};
// Abstract plugins
PluginType Plugin::getType() const {
return _type;
}
const char *Plugin::getName() const {
return _pluginObject->getName();
}
StaticPlugin::StaticPlugin(PluginObject *pluginobject, PluginType type) {
assert(pluginobject);
assert(type < PLUGIN_TYPE_MAX);
_pluginObject = pluginobject;
_type = type;
}
StaticPlugin::~StaticPlugin() {
delete _pluginObject;
}
bool StaticPlugin::loadPlugin() { return true; }
void StaticPlugin::unloadPlugin() {}
class StaticPluginProvider : public PluginProvider {
public:
StaticPluginProvider() {
}
~StaticPluginProvider() {
}
PluginList getPlugins() override {
PluginList pl;
#define LINK_PLUGIN(ID) \
extern const PluginType g_##ID##_type; \
extern PluginObject *g_##ID##_getObject(); \
pl.push_back(new StaticPlugin(g_##ID##_getObject(), g_##ID##_type));
// "Loader" for the static plugins.
// Iterate over all registered (static) plugins and load them.
// Engine plugins
#include "engines/plugins_table.h"
#ifdef DETECTION_STATIC
// Engine-detection plugins are included if we don't use uncached plugins.
#include "engines/detection_table.h"
#endif
// Music plugins
// TODO: Use defines to disable or enable each MIDI driver as a
// static/dynamic plugin, like it's done for the engines
LINK_PLUGIN(AUTO)
LINK_PLUGIN(NULL)
#if defined(WIN32)
LINK_PLUGIN(WINDOWS)
#endif
#if defined(USE_ALSA)
LINK_PLUGIN(ALSA)
#endif
#if defined(USE_SEQ_MIDI)
LINK_PLUGIN(SEQ)
#endif
#if defined(USE_SNDIO)
LINK_PLUGIN(SNDIO)
#endif
#if defined(__MINT__)
LINK_PLUGIN(STMIDI)
#endif
#if defined(IRIX)
LINK_PLUGIN(DMEDIA)
#endif
#if defined(__amigaos4__) || defined(__MORPHOS__)
LINK_PLUGIN(CAMD)
#endif
#if defined(RISCOS)
LINK_PLUGIN(RISCOS)
#endif
#if defined(MACOSX)
LINK_PLUGIN(COREAUDIO)
LINK_PLUGIN(COREMIDI)
#endif
#ifdef USE_FLUIDSYNTH
LINK_PLUGIN(FLUIDSYNTH)
#endif
#ifdef USE_MT32EMU
LINK_PLUGIN(MT32)
#endif
#if defined(USE_SONIVOX)
LINK_PLUGIN(EAS)
#endif
LINK_PLUGIN(ADLIB)
LINK_PLUGIN(PCSPK)
LINK_PLUGIN(PCJR)
LINK_PLUGIN(CMS)
#ifndef DISABLE_SID
LINK_PLUGIN(C64)
#endif
LINK_PLUGIN(AMIGA)
LINK_PLUGIN(APPLEIIGS)
LINK_PLUGIN(MACINTOSH)
LINK_PLUGIN(TOWNS)
LINK_PLUGIN(PC98)
LINK_PLUGIN(SEGACD)
#if defined(USE_TIMIDITY)
LINK_PLUGIN(TIMIDITY)
#endif
// Scaler plugins
LINK_PLUGIN(NORMAL)
#ifdef USE_SCALERS
#ifdef USE_HQ_SCALERS
LINK_PLUGIN(HQ)
#endif
#ifdef USE_EDGE_SCALERS
LINK_PLUGIN(EDGE)
#endif
LINK_PLUGIN(ADVMAME)
LINK_PLUGIN(SAI)
LINK_PLUGIN(SUPERSAI)
LINK_PLUGIN(SUPEREAGLE)
LINK_PLUGIN(PM)
LINK_PLUGIN(DOTMATRIX)
LINK_PLUGIN(TV)
#endif
return pl;
}
};
#ifdef DYNAMIC_MODULES
PluginList FilePluginProvider::getPlugins() {
PluginList pl;
// Prepare the list of directories to search
Common::FSList pluginDirs;
// Add the default directories
#ifndef WIN32
pluginDirs.push_back(Common::FSNode("."));
#endif
#ifndef PSP2
pluginDirs.push_back(Common::FSNode("plugins"));
#endif
// Add the provider's custom directories
addCustomDirectories(pluginDirs);
// Add the user specified directory
Common::Path pluginsPath(ConfMan.getPath("pluginspath"));
if (!pluginsPath.empty())
pluginDirs.push_back(Common::FSNode(pluginsPath));
Common::FSList::const_iterator dir;
for (dir = pluginDirs.begin(); dir != pluginDirs.end(); ++dir) {
// Load all plugins.
// Scan for all plugins in this directory
Common::FSList files;
if (!dir->getChildren(files, Common::FSNode::kListFilesOnly)) {
debug(1, "Couldn't open plugin directory '%s'", dir->getPath().toString().c_str());
continue;
} else {
debug(1, "Reading plugins from plugin directory '%s'", dir->getPath().toString().c_str());
}
for (Common::FSList::const_iterator i = files.begin(); i != files.end(); ++i) {
if (isPluginFilename(*i)) {
pl.push_back(createPlugin(*i));
}
}
}
return pl;
}
bool FilePluginProvider::isPluginFilename(const Common::FSNode &node) const {
Common::String filename = node.getName();
#ifdef PLUGIN_PREFIX
// Check the plugin prefix
if (!filename.hasPrefix(PLUGIN_PREFIX))
return false;
#endif
#ifdef PLUGIN_SUFFIX
// Check the plugin suffix
if (!filename.hasSuffix(PLUGIN_SUFFIX))
return false;
#endif
return true;
}
void FilePluginProvider::addCustomDirectories(Common::FSList &dirs) const {
#ifdef PLUGIN_DIRECTORY
dirs.push_back(Common::FSNode(PLUGIN_DIRECTORY));
#endif
}
#endif // DYNAMIC_MODULES
#pragma mark -
PluginManager *PluginManager::_instance = nullptr;
PluginManager &PluginManager::instance() {
if (_instance)
return *_instance;
#if defined(UNCACHED_PLUGINS) && defined(DYNAMIC_MODULES)
_instance = new PluginManagerUncached();
#else
_instance = new PluginManager();
#endif
return *_instance;
}
PluginManager::PluginManager() {
// Always add the static plugin provider.
addPluginProvider(new StaticPluginProvider());
}
PluginManager::~PluginManager() {
// Explicitly unload all loaded plugins
unloadAllPlugins();
// Delete the plugin providers
for (ProviderList::iterator pp = _providers.begin();
pp != _providers.end();
++pp) {
delete *pp;
}
}
void PluginManager::addPluginProvider(PluginProvider *pp) {
_providers.push_back(pp);
}
PluginManagerUncached::~PluginManagerUncached() {
// Unload from memory all engine plugins without deleting them
// They are also referenced from _allEnginePlugins which we clean up here
unloadPluginsExcept(PLUGIN_TYPE_ENGINE, nullptr, false);
for (PluginList::iterator p = _allEnginePlugins.begin(); p != _allEnginePlugins.end(); ++p) {
delete *p;
}
_allEnginePlugins.clear();
// Explicitly unload the detection plugin
unloadDetectionPlugin();
}
/**
* This should only be called once by main()
**/
void PluginManagerUncached::init() {
ConfMan.setBool("always_run_fallback_detection_extern", false);
unloadPluginsExcept(PLUGIN_TYPE_ENGINE, nullptr, false); // empty the engine plugins
#ifndef DETECTION_STATIC
Common::String detectPluginName = "detection";
#ifdef PLUGIN_SUFFIX
detectPluginName += PLUGIN_SUFFIX;
#endif
bool foundDetectPlugin = false;
#endif
for (ProviderList::iterator pp = _providers.begin();
pp != _providers.end();
++pp) {
PluginList pl((*pp)->getPlugins());
for (PluginList::iterator p = pl.begin(); p != pl.end(); ++p) {
// This is a 'hack' based on the assumption that we have no sound
// file plugins. Currently this is the case. If it changes, we
// should find a fast way of detecting whether a plugin is a
// music or an engine plugin.
#ifndef DETECTION_STATIC
if (!foundDetectPlugin && (*pp)->isFilePluginProvider()) {
Common::Path pName = (*p)->getFileName();
if (pName.baseName().hasSuffixIgnoreCase(detectPluginName)) {
_detectionPlugin = (*p);
foundDetectPlugin = true;
debug(9, "Detection plugin found!");
continue;
}
}
#endif
if ((*pp)->isFilePluginProvider()) {
_allEnginePlugins.push_back(*p);
} else if ((*p)->loadPlugin()) { // and this is the proper method
if ((*p)->getType() == PLUGIN_TYPE_ENGINE) {
(*p)->unloadPlugin();
_allEnginePlugins.push_back(*p);
} else { // add non-engine plugins to the 'in-memory' list
// these won't ever get unloaded
addToPluginsInMemList(*p);
}
}
}
}
}
/**
* Try to load the plugin by searching in the ConfigManager for a matching
* engine ID under the domain 'engine_plugin_files'.
**/
bool PluginManagerUncached::loadPluginFromEngineId(const Common::String &engineId) {
Common::ConfigManager::Domain *domain = ConfMan.getDomain("engine_plugin_files");
if (domain) {
if (domain->contains(engineId)) {
Common::Path filename(Common::Path::fromConfig((*domain)[engineId]));
if (loadPluginByFileName(filename)) {
return true;
}
}
}
// Check for a plugin with the same name as the engine before starting
// to scan all plugins
Common::String tentativeEnginePluginFilename = engineId;
#ifdef PLUGIN_SUFFIX
tentativeEnginePluginFilename += PLUGIN_SUFFIX;
#endif
for (PluginList::iterator p = _allEnginePlugins.begin(); p != _allEnginePlugins.end(); ++p) {
Common::Path filename = (*p)->getFileName();
if (filename.baseName().hasSuffixIgnoreCase(tentativeEnginePluginFilename)) {
if (loadPluginByFileName(filename)) {
return true;
}
}
}
return false;
}
/**
* Load a plugin with a filename taken from ConfigManager.
**/
bool PluginManagerUncached::loadPluginByFileName(const Common::Path &filename) {
if (filename.empty())
return false;
unloadPluginsExcept(PLUGIN_TYPE_ENGINE, nullptr, false);
PluginList::iterator i;
for (i = _allEnginePlugins.begin(); i != _allEnginePlugins.end(); ++i) {
if ((*i)->getFileName() == filename && (*i)->loadPlugin()) {
addToPluginsInMemList(*i);
_currentPlugin = i;
return true;
}
}
return false;
}
/**
* Update the config manager with a plugin file name that we found can handle
* the engine.
**/
void PluginManagerUncached::updateConfigWithFileName(const Common::String &engineId) {
// Check if we have a filename for the current plugin
if (!(*_currentPlugin)->getFileName().empty()) {
if (!ConfMan.hasMiscDomain("engine_plugin_files"))
ConfMan.addMiscDomain("engine_plugin_files");
Common::ConfigManager::Domain *domain = ConfMan.getDomain("engine_plugin_files");
assert(domain);
(*domain).setVal(engineId, (*_currentPlugin)->getFileName().toConfig());
ConfMan.flushToDisk();
}
}
#ifndef DETECTION_STATIC
void PluginManagerUncached::loadDetectionPlugin() {
if (_isDetectionLoaded) {
debug(9, "Detection plugin is already loaded. Adding each available engines to the memory.");
return;
}
if (!_detectionPlugin) {
debug(9, "Detection plugin not found.");
return;
}
// Unload all leftover engines before reloading the detection plugin
unloadPluginsExcept(PLUGIN_TYPE_ENGINE, nullptr, false);
if (!_detectionPlugin->loadPlugin()) {
debug(9, "Detection plugin was not loaded correctly.");
return;
}
assert((_detectionPlugin)->getType() == PLUGIN_TYPE_DETECTION);
_pluginsInMem[PLUGIN_TYPE_ENGINE_DETECTION].clear();
const Detection &detectionConnect = _detectionPlugin->get<Detection>();
const PluginList &pl = detectionConnect.getPlugins();
Common::for_each(pl.begin(), pl.end(), Common::bind1st(Common::mem_fun(&PluginManagerUncached::tryLoadPlugin), this));
_isDetectionLoaded = true;
}
void PluginManagerUncached::unloadDetectionPlugin() {
if (!_isDetectionLoaded) {
debug(9, "Detection plugin is already unloaded.");
return;
}
unloadPluginsExcept(PLUGIN_TYPE_ENGINE_DETECTION, nullptr, true);
_detectionPlugin->unloadPlugin();
_isDetectionLoaded = false;
}
#endif
void PluginManagerUncached::loadFirstPlugin() {
unloadPluginsExcept(PLUGIN_TYPE_ENGINE, nullptr, false);
// let's try to find one we can load
for (_currentPlugin = _allEnginePlugins.begin(); _currentPlugin != _allEnginePlugins.end(); ++_currentPlugin) {
if ((*_currentPlugin)->loadPlugin()) {
addToPluginsInMemList(*_currentPlugin);
break;
}
}
}
bool PluginManagerUncached::loadNextPlugin() {
unloadPluginsExcept(PLUGIN_TYPE_ENGINE, nullptr, false);
if (!_currentPlugin || _currentPlugin == _allEnginePlugins.end())
return false;
for (++_currentPlugin; _currentPlugin != _allEnginePlugins.end(); ++_currentPlugin) {
if ((*_currentPlugin)->loadPlugin()) {
addToPluginsInMemList(*_currentPlugin);
return true;
}
}
return false; // no more in list
}
/**
* Used by only the cached plugin manager. The uncached manager can only have
* one plugin in memory at a time.
**/
void PluginManager::loadAllPlugins() {
for (ProviderList::iterator pp = _providers.begin();
pp != _providers.end();
++pp) {
PluginList pl((*pp)->getPlugins());
Common::for_each(pl.begin(), pl.end(), Common::bind1st(Common::mem_fun(&PluginManager::tryLoadPlugin), this));
}
#ifndef DETECTION_STATIC
/*
* When detection is dynamic, loading above only gets us a PLUGIN_TYPE_DETECTION plugin
* We must register all plugins linked in it in order to use them
*/
PluginList dpl = getPlugins(PLUGIN_TYPE_DETECTION);
_pluginsInMem[PLUGIN_TYPE_ENGINE_DETECTION].clear();
for (PluginList::iterator it = dpl.begin();
it != dpl.end();
++it) {
const Detection &detectionConnect = (*it)->get<Detection>();
const PluginList &pl = detectionConnect.getPlugins();
Common::for_each(pl.begin(), pl.end(), Common::bind1st(Common::mem_fun(&PluginManager::tryLoadPlugin), this));
}
#endif
}
void PluginManager::loadAllPluginsOfType(PluginType type) {
for (ProviderList::iterator pp = _providers.begin();
pp != _providers.end();
++pp) {
PluginList pl((*pp)->getPlugins());
for (PluginList::iterator p = pl.begin();
p != pl.end();
++p) {
if ((*p)->loadPlugin()) {
if ((*p)->getType() == type) {
addToPluginsInMemList((*p));
} else {
// Plugin is wrong type
(*p)->unloadPlugin();
delete (*p);
}
} else {
// Plugin did not load
delete (*p);
}
}
}
}
void PluginManager::unloadAllPlugins() {
for (int i = 0; i < PLUGIN_TYPE_MAX; i++)
unloadPluginsExcept((PluginType)i, nullptr);
}
void PluginManager::unloadPluginsExcept(PluginType type, const Plugin *plugin, bool deletePlugin /*=true*/) {
Plugin *found = nullptr;
for (PluginList::iterator p = _pluginsInMem[type].begin(); p != _pluginsInMem[type].end(); ++p) {
if (*p == plugin) {
found = *p;
} else {
(*p)->unloadPlugin();
if (deletePlugin) {
delete *p;
}
}
}
_pluginsInMem[type].clear();
if (found != nullptr) {
_pluginsInMem[type].push_back(found);
}
}
/*
* Used only by the cached plugin manager since it deletes the plugin.
*/
bool PluginManager::tryLoadPlugin(Plugin *plugin) {
assert(plugin);
// Try to load the plugin
if (plugin->loadPlugin()) {
addToPluginsInMemList(plugin);
return true;
} else {
// Failed to load the plugin
delete plugin;
return false;
}
}
/**
* Add to the list of plugins loaded in memory.
*/
void PluginManager::addToPluginsInMemList(Plugin *plugin) {
bool found = false;
// The plugin is valid, see if it provides the same module as an
// already loaded one and should replace it.
PluginList &list = _pluginsInMem[plugin->getType()];
PluginList::iterator pl = list.begin();
while (!found && pl != list.end()) {
if (!strcmp(plugin->getName(), (*pl)->getName())) {
// Found a duplicated module. Replace the old one.
found = true;
(*pl)->unloadPlugin();
delete *pl;
*pl = plugin;
debug(1, "Replaced the duplicated plugin: '%s'", plugin->getName());
}
pl++;
}
if (!found) {
// If it provides a new module, just add it to the list of known plugins in memory.
list.push_back(plugin);
}
}
// Engine plugins
#include "engines/metaengine.h"
namespace Common {
DECLARE_SINGLETON(EngineManager);
}
/**
* This function works for both cached and uncached PluginManagers.
* For the cached version, most of the logic here will short circuit.
*
* For the uncached version, we first try to find the plugin using the engineId
* and only if we can't find it there, we loop through the plugins.
**/
QualifiedGameList EngineManager::findGamesMatching(const Common::String &engineId, const Common::String &gameId) const {
QualifiedGameList results;
if (!engineId.empty()) {
// If we got an engine name, look for THE game only in that engine
const Plugin *p = EngineMan.findDetectionPlugin(engineId);
if (p) {
const MetaEngineDetection &engine = p->get<MetaEngineDetection>();
DebugMan.addAllDebugChannels(engine.getDebugChannels());
PlainGameDescriptor pluginResult = engine.findGame(gameId.c_str());
if (pluginResult.gameId) {
results.push_back(QualifiedGameDescriptor(engine.getName(), pluginResult));
}
}
} else {
// This is a slow path, we have to scan the list of plugins
PluginMan.loadFirstPlugin();
do {
results.push_back(findGameInLoadedPlugins(gameId));
} while (PluginMan.loadNextPlugin());
}
return results;
}
/**
* Find the game within the plugins loaded in memory
**/
QualifiedGameList EngineManager::findGameInLoadedPlugins(const Common::String &gameId) const {
// Find the GameDescriptor for this target
const PluginList &plugins = getPlugins(PLUGIN_TYPE_ENGINE_DETECTION);
QualifiedGameList results;
PluginList::const_iterator iter;
for (iter = plugins.begin(); iter != plugins.end(); ++iter) {
const MetaEngineDetection &engine = (*iter)->get<MetaEngineDetection>();
DebugMan.addAllDebugChannels(engine.getDebugChannels());
PlainGameDescriptor pluginResult = engine.findGame(gameId.c_str());
if (pluginResult.gameId) {
results.push_back(QualifiedGameDescriptor(engine.getName(), pluginResult));
}
}
return results;
}
DetectionResults EngineManager::detectGames(const Common::FSList &fslist, uint32 skipADFlags, bool skipIncomplete) {
DetectedGames candidates;
PluginList plugins;
PluginList::const_iterator iter;
// MetaEngines are always loaded into memory, so, get them and
// run detection for all of them.
plugins = getPlugins(PLUGIN_TYPE_ENGINE_DETECTION);
// Clear md5 cache before each detection starts, just in case.
ADCacheMan.clear();
// Iterate over all known games and for each check if it might be
// the game in the presented directory.
for (iter = plugins.begin(); iter != plugins.end(); ++iter) {
MetaEngineDetection &metaEngine = (*iter)->get<MetaEngineDetection>();
// set the debug flags
DebugMan.addAllDebugChannels(metaEngine.getDebugChannels());
DetectedGames engineCandidates = metaEngine.detectGames(fslist, skipADFlags, skipIncomplete);
for (uint i = 0; i < engineCandidates.size(); i++) {
engineCandidates[i].path = fslist.begin()->getParent().getPath();
engineCandidates[i].shortPath = fslist.begin()->getParent().getDisplayName();
candidates.push_back(engineCandidates[i]);
}
}
// Close all archives that were opened during detection
ADCacheMan.clearArchives();
return DetectionResults(candidates);
}
const PluginList &EngineManager::getPlugins(const PluginType fetchPluginType) const {
return PluginManager::instance().getPlugins(fetchPluginType);
}
static void addStringToConf(const Common::String &key, const Common::String &value, const Common::String &domain) {
if (!value.empty())
ConfMan.set(key, value, domain);
}
static void addPathToConf(const Common::String &key, const Common::Path &value, const Common::String &domain) {
if (!value.empty())
ConfMan.setPath(key, value, domain);
}
Common::String EngineManager::generateUniqueDomain(const Common::String gameId) {
Common::String domainName(gameId);
int suffixN = 1;
while (ConfMan.hasGameDomain(domainName)) {
domainName = gameId + Common::String::format("-%d", suffixN++);
}
return domainName;
}
Common::String EngineManager::createTargetForGame(const DetectedGame &game) {
// The auto detector or the user made a choice.
// Pick a domain name which does not yet exist (after all, we
// are *adding* a game to the config, not replacing).
Common::String domain = game.preferredTarget;
assert(!domain.empty());
domain = generateUniqueDomain(domain);
// Add the name domain
ConfMan.addGameDomain(domain);
// Copy all non-empty relevant values into the new domain
addStringToConf("engineid", game.engineId, domain);
addStringToConf("gameid", game.gameId, domain);
addStringToConf("description", game.description, domain);
addStringToConf("language", Common::getLanguageCode(game.language), domain);
addStringToConf("platform", Common::getPlatformCode(game.platform), domain);
addPathToConf("path", game.path, domain);
addStringToConf("extra", game.extra, domain);
addStringToConf("guioptions", game.getGUIOptions(), domain);
// Add any extra configuration keys
for (Common::StringMap::iterator i = game._extraConfigEntries.begin();
i != game._extraConfigEntries.end(); ++i)
addStringToConf((*i)._key, (*i)._value, domain);
// TODO: Setting the description field here has the drawback
// that the user does never notice when we upgrade our descriptions.
// It might be nice to leave this field empty, and only set it to
// a value when the user edits the description string.
// However, at this point, that's impractical. Once we have a method
// to query all backends for the proper & full description of a given
// game target, we can change this (currently, you can only query
// for the generic gameid description; it's not possible to obtain
// a description which contains extended information like language, etc.).
return domain;
}
const Plugin *EngineManager::findDetectionPlugin(const Common::String &engineId) const {
const PluginList &plugins = getPlugins(PLUGIN_TYPE_ENGINE_DETECTION);
for (PluginList::const_iterator iter = plugins.begin(); iter != plugins.end(); iter++)
if (engineId == (*iter)->get<MetaEngineDetection>().getName())
return *iter;
return nullptr;
}
const Plugin *PluginManager::findLoadedPlugin(const Common::String &engineId) {
const PluginList &plugins = getPlugins(PLUGIN_TYPE_ENGINE);
for (PluginList::const_iterator iter = plugins.begin(); iter != plugins.end(); iter++)
if (engineId == (*iter)->get<MetaEngine>().getName())
return *iter;
return nullptr;
}
const Plugin *PluginManager::findEnginePlugin(const Common::String &engineId) {
// First look for the game using the plugins in memory. This is critical
// for calls coming from inside games
const Plugin *plugin = findLoadedPlugin(engineId);
if (plugin)
return plugin;
// Now look for the plugin using the engine ID. This is much faster than scanning plugin
// by plugin
if (loadPluginFromEngineId(engineId)) {
plugin = findLoadedPlugin(engineId);
if (plugin)
return plugin;
}
// We failed to find it using the engine ID. Scan the list of plugins
PluginMan.loadFirstPlugin();
do {
plugin = findLoadedPlugin(engineId);
if (plugin) {
// Update with new plugin file name
PluginMan.updateConfigWithFileName(engineId);
return plugin;
}
} while (PluginMan.loadNextPlugin());
return nullptr;
}
QualifiedGameDescriptor EngineManager::findTarget(const Common::String &target) const {
// Ignore empty targets
if (target.empty())
return QualifiedGameDescriptor();
// Lookup the domain. If we have no domain, fallback on the old function [ultra-deprecated].
const Common::ConfigManager::Domain *domain = ConfMan.getDomain(target);
if (!domain || !domain->contains("gameid") || !domain->contains("engineid"))
return QualifiedGameDescriptor();
// Look for the engine ID
const Plugin *foundPlugin = findDetectionPlugin(domain->getVal("engineid"));
if (!foundPlugin) {
return QualifiedGameDescriptor();
}
// Make sure it does support the game ID
const MetaEngineDetection &engine = foundPlugin->get<MetaEngineDetection>();
DebugMan.addAllDebugChannels(engine.getDebugChannels());
PlainGameDescriptor desc = engine.findGame(domain->getVal("gameid").c_str());
if (!desc.gameId) {
return QualifiedGameDescriptor();
}
return QualifiedGameDescriptor(engine.getName(), desc);
}
void EngineManager::upgradeTargetIfNecessary(const Common::String &target) const {
Common::ConfigManager::Domain *domain = ConfMan.getDomain(target);
assert(domain);
if (!domain->contains("engineid")) {
upgradeTargetForEngineId(target);
} else {
Common::String engineId = domain->getVal("engineid");
if (engineId.equals("fullpipe")) {
domain->setVal("engineid", "ngi");
debug("Upgrading engineid from 'fullpipe' to 'ngi'");
ConfMan.flushToDisk();
} else if (engineId.equals("xeen")) {
domain->setVal("engineid", "mm");
debug("Upgrading engineid from 'xeen' to 'mm'");
}
}
}
void EngineManager::upgradeTargetForEngineId(const Common::String &target) const {
Common::ConfigManager::Domain *domain = ConfMan.getDomain(target);
assert(domain);
debug("Target '%s' lacks an engine ID, upgrading...", target.c_str());
Common::String oldGameId = domain->getVal("gameid");
Common::Path path = Common::Path::fromConfig(domain->getVal("path"));
// At this point the game ID and game path must be known
if (oldGameId.empty()) {
warning("The game ID is required to upgrade target '%s'", target.c_str());
return;
}
if (path.empty()) {
warning("The game path is required to upgrade target '%s'", target.c_str());
return;
}
// Game descriptor for the upgraded target
Common::String engineId;
Common::String newGameId;
// First, try to update entries for engines that previously used the "single id" system
// Search for an engine whose ID is the game ID
const Plugin *plugin = findDetectionPlugin(oldGameId);
if (plugin) {
// Run detection on the game path
Common::FSNode dir(path);
Common::FSList files;
if (!dir.getChildren(files, Common::FSNode::kListAll)) {
warning("Failed to access path '%s' when upgrading target '%s'", path.toString(Common::Path::kNativeSeparator).c_str(), target.c_str());
return;
}
// Take the first detection entry
MetaEngineDetection &metaEngine = plugin->get<MetaEngineDetection>();
// set debug flags before call detectGames
DebugMan.addAllDebugChannels(metaEngine.getDebugChannels());
// Clear md5 cache before detection starts
ADCacheMan.clear();
DetectedGames candidates = metaEngine.detectGames(files);
if (candidates.empty()) {
warning("No games supported by the engine '%s' were found in path '%s' when upgrading target '%s'",
metaEngine.getName(), path.toString(Common::Path::kNativeSeparator).c_str(), target.c_str());
return;
}
engineId = candidates[0].engineId;
newGameId = candidates[0].gameId;
}
// Next, try to find an engine with the game ID in its supported games list
if (engineId.empty()) {
QualifiedGameList candidates = findGamesMatching("", oldGameId);
if (candidates.size() > 1) {
warning("Multiple matching engines were found when upgrading target '%s'", target.c_str());
return;
} else if (!candidates.empty()) {
engineId = candidates[0].engineId;
newGameId = candidates[0].gameId;
}
}
if (engineId.empty() || newGameId.empty()) {
warning("No matching engine was found when upgrading target '%s'", target.c_str());
return;
}
domain->setVal("engineid", engineId);
domain->setVal("gameid", newGameId);
// Save a backup of the pre-upgrade gameId to the config file
if (newGameId != oldGameId) {
domain->setVal("oldgameid", oldGameId);
}
debug("Upgrade complete (engine ID '%s', game ID '%s')", engineId.c_str(), newGameId.c_str());
ConfMan.flushToDisk();
}
// Music plugins
#include "audio/musicplugin.h"
namespace Common {
DECLARE_SINGLETON(MusicManager);
}
const PluginList &MusicManager::getPlugins() const {
return PluginManager::instance().getPlugins(PLUGIN_TYPE_MUSIC);
}
// Scaler plugins
#include "graphics/scalerplugin.h"
namespace Common {
DECLARE_SINGLETON(ScalerManager);
}
const PluginList &ScalerManager::getPlugins() const {
return PluginManager::instance().getPlugins(PLUGIN_TYPE_SCALER);
}
uint ScalerManager::getMaxExtraPixels() const {
uint maxPixels = 0;
PluginList plugins = getPlugins();
PluginList::iterator i = plugins.begin();
for (; i != plugins.end(); ++i) {
uint n = (*i)->get<ScalerPluginObject>().extraPixels();
if (n > maxPixels) {
maxPixels = n;
}
}
return maxPixels;
}
Plugin *ScalerManager::findScalerPlugin(const char *name) const {
const PluginList &plugins = getPlugins();
for (PluginList::const_iterator i = plugins.begin(); i != plugins.end(); ++i) {
if (!strcmp((*i)->get<ScalerPluginObject>().getName(), name)) {
return *i;
}
}
return nullptr;
}
uint ScalerManager::findScalerPluginIndex(const char *name) const {
const PluginList &plugins = getPlugins();
uint index = 0;
for (PluginList::const_iterator i = plugins.begin(); i != plugins.end(); ++i) {
if (!strcmp((*i)->get<ScalerPluginObject>().getName(), name)) {
return index;
}
index++;
}
return 0;
}
struct LegacyGraphicsMode {
const char *oldName;
const char *newName;
uint factor;
};
// Table for using old names for scalers in the configuration
// to keep compatibiblity with old config files.
static const LegacyGraphicsMode s_legacyGraphicsModes[] = {
{ "1x", "normal", 1 },
{ "2x", "normal", 2 },
{ "3x", "normal", 3 },
{ "normal1x", "normal", 1 },
{ "normal2x", "normal", 2 },
{ "normal3x", "normal", 3 },
{ "normal4x", "normal", 4 },
{ "hq2x", "hq", 2 },
{ "hq3x", "hq", 3 },
{ "edge2x", "edge", 2 },
{ "edge3x", "edge", 3 },
{ "advmame2x", "advmame", 2 },
{ "advmame3x", "advmame", 3 },
{ "advmame4x", "advmame", 4 },
{ "2xsai", "sai", 2 },
{ "sai2x", "sai", 2 },
{ "super2xsai", "supersai", 2 },
{ "supersai2x", "supersai", 2 },
{ "supereagle", "supereagle", 2 },
{ "supereagle2x", "supereagle", 2 },
{ "pm2x", "pm", 2 },
{ "dotmatrix", "dotmatrix", 2 },
{ "dotmatrix2x", "dotmatrix", 2 },
{ "tv2x", "tv", 2 }
};
bool ScalerManager::isOldGraphicsSetting(const Common::String &gfxMode) {
for (uint i = 0; i < ARRAYSIZE(s_legacyGraphicsModes); ++i) {
if (gfxMode == s_legacyGraphicsModes[i].oldName) {
return true;
}
}
return false;
}
void ScalerManager::updateOldSettings() {
// Search for legacy gfx_mode and replace it
if (ConfMan.hasKey("gfx_mode")) {
Common::String gfxMode(ConfMan.get("gfx_mode"));
for (uint i = 0; i < ARRAYSIZE(s_legacyGraphicsModes); ++i) {
if (gfxMode == s_legacyGraphicsModes[i].oldName) {
ConfMan.set("scaler", s_legacyGraphicsModes[i].newName);
ConfMan.setInt("scale_factor", s_legacyGraphicsModes[i].factor);
break;
}
}
}
// Look in all game domains as well
for (Common::ConfigManager::DomainMap::iterator domain = ConfMan.beginGameDomains(); domain != ConfMan.endGameDomains(); ++domain) {
if (domain->_value.contains("gfx_mode")) {
Common::String gfxMode(domain->_value.getVal("gfx_mode"));
for (uint i = 0; i < ARRAYSIZE(s_legacyGraphicsModes); ++i) {
if (gfxMode == s_legacyGraphicsModes[i].oldName) {
warning("%s: %s -> %s@%dx", domain->_value.getDomainComment().c_str(), s_legacyGraphicsModes[i].oldName, s_legacyGraphicsModes[i].newName, s_legacyGraphicsModes[i].factor);
domain->_value.setVal("scaler", s_legacyGraphicsModes[i].newName);
domain->_value.setVal("scale_factor", Common::String::format("%i", s_legacyGraphicsModes[i].factor));
domain->_value.erase("gfx_mode");
break;
}
}
}
}
}
|