aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorMax Horn2003-10-16 23:16:16 +0000
committerMax Horn2003-10-16 23:16:16 +0000
commit1e56fb8191784a8edbd8d32d831672ce0c0cff3a (patch)
tree64f3ad18e3a395776ee66b2adcb5aeab99b25e31 /base
parent1c3301049a9916e744d95cd0f4fe5af441ba1851 (diff)
downloadscummvm-rg350-1e56fb8191784a8edbd8d32d831672ce0c0cff3a.tar.gz
scummvm-rg350-1e56fb8191784a8edbd8d32d831672ce0c0cff3a.tar.bz2
scummvm-rg350-1e56fb8191784a8edbd8d32d831672ce0c0cff3a.zip
cleanup
svn-id: r10839
Diffstat (limited to 'base')
-rw-r--r--base/gameDetector.cpp2
-rw-r--r--base/plugins.cpp16
-rw-r--r--base/plugins.h6
3 files changed, 13 insertions, 11 deletions
diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp
index 3e821880b2..9c8dd4d8e2 100644
--- a/base/gameDetector.cpp
+++ b/base/gameDetector.cpp
@@ -247,7 +247,7 @@ void GameDetector::list_games() {
PluginList::ConstIterator iter = plugins.begin();
for (iter = plugins.begin(); iter != plugins.end(); ++iter) {
- v = (*iter)->getTargets();
+ v = (*iter)->getSupportedGames();
while (v->gameName && v->description) {
#if 1
printf("%-17s%-56s\n", v->gameName, v->description);
diff --git a/base/plugins.cpp b/base/plugins.cpp
index 9d78f2ffa2..518b588a69 100644
--- a/base/plugins.cpp
+++ b/base/plugins.cpp
@@ -74,8 +74,8 @@ extern Engine *Engine_QUEEN_create(GameDetector *detector, OSystem *syst);
#pragma mark -
-int Plugin::countTargets() const {
- const GameSettings *target = getTargets();
+int Plugin::countSupportedGames() const {
+ const GameSettings *target = getSupportedGames();
int count;
for (count = 0; target->gameName; target++, count++)
;
@@ -84,7 +84,7 @@ int Plugin::countTargets() const {
const GameSettings *Plugin::findGame(const char *gameName) const {
// Find the GameSettings for this target
- const GameSettings *target = getTargets();
+ const GameSettings *target = getSupportedGames();
assert(gameName);
while (target->gameName) {
if (!scumm_stricmp(target->gameName, gameName)) {
@@ -107,13 +107,13 @@ class StaticPlugin : public Plugin {
public:
StaticPlugin(const char *name, const GameSettings *targets, EngineFactory ef)
: _name(name), _targets(targets), _ef(ef) {
- _targetCount = Plugin::countTargets();
+ _targetCount = Plugin::countSupportedGames();
}
const char *getName() const { return _name; }
- int countTargets() const { return _targetCount; }
- const GameSettings *getTargets() const { return _targets; }
+ int countSupportedGames() const { return _targetCount; }
+ const GameSettings *getSupportedGames() const { return _targets; }
Engine *createInstance(GameDetector *detector, OSystem *syst) const {
return (*_ef)(detector, syst);
@@ -143,8 +143,8 @@ public:
const char *getName() const { return _name.c_str(); }
- int countTargets() const { return _targetCount; }
- const GameSettings *getTargets() const { return _targets; }
+ int countSupportedGames() const { return _targetCount; }
+ const GameSettings *getSupportedGames() const { return _targets; }
Engine *createInstance(GameDetector *detector, OSystem *syst) const {
assert(_ef);
diff --git a/base/plugins.h b/base/plugins.h
index 817ec79f85..77b5e90708 100644
--- a/base/plugins.h
+++ b/base/plugins.h
@@ -36,6 +36,7 @@ struct GameSettings;
* Subclasses for this can be used to wrap both static and dynamic
* plugins.
*/
+//typedef Common::List<GameSettings> GameList;
class Plugin {
public:
virtual ~Plugin() {}
@@ -46,9 +47,10 @@ public:
virtual const char *getName() const = 0;
virtual int getVersion() const { return 0; } // TODO!
- virtual int countTargets() const;
- virtual const GameSettings *getTargets() const = 0;
+ virtual int countSupportedGames() const;
+ virtual const GameSettings *getSupportedGames() const = 0;
virtual const GameSettings *findGame(const char *gameName) const;
+ //virtual GameList detectGames(const FSList &fslist) const;
virtual Engine *createInstance(GameDetector *detector, OSystem *syst) const = 0;
};