From 47a2b2a9a21c0134254cc9cb2990cc30c7ca1a66 Mon Sep 17 00:00:00 2001 From: Bastien Bouclet Date: Thu, 15 Sep 2016 19:41:08 +0200 Subject: BASE: Add a command line option to list the engines --- base/commandLine.cpp | 45 ++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 40 insertions(+), 5 deletions(-) (limited to 'base/commandLine.cpp') diff --git a/base/commandLine.cpp b/base/commandLine.cpp index 5c823b2425..692d8bb571 100644 --- a/base/commandLine.cpp +++ b/base/commandLine.cpp @@ -68,6 +68,7 @@ static const char HELP_STRING[] = " -h, --help Display a brief help text and exit\n" " -z, --list-games Display list of supported games and exit\n" " -t, --list-targets Display list of configured targets and exit\n" + " --list-engines Display list of suppported engines and exit\n" " --list-saves Display a list of saved games for the target specified\n" " with --game=TARGET, or all targets if none is specified\n" " -a, --add Add all games from current or specified directory.\n" @@ -441,6 +442,9 @@ Common::String parseCommandLine(Common::StringMap &settings, int argc, const cha DO_COMMAND('z', "list-games") END_COMMAND + DO_LONG_COMMAND("list-engines") + END_COMMAND + DO_COMMAND('a', "add") END_COMMAND @@ -688,16 +692,44 @@ unknownOption: /** List all supported game IDs, i.e. all games which any loaded plugin supports. */ static void listGames() { - printf("Game ID Full Title \n" - "-------------------- ------------------------------------------------------\n"); + printf("Engine ID Game ID Full Title \n" + "--------------- -------------------- ------------------------------------------------------\n"); + + Common::Array games; const PluginList &plugins = EngineMan.getPlugins(); for (PluginList::const_iterator iter = plugins.begin(); iter != plugins.end(); ++iter) { - PlainGameList list = (*iter)->get().getSupportedGames(); - for (PlainGameList::iterator v = list.begin(); v != list.end(); ++v) { - printf("%-20s %s\n", v->gameId, v->description); + MetaEngine &metaengine = (*iter)->get(); + + PlainGameList list = metaengine.getSupportedGames(); + for (PlainGameList::const_iterator v = list.begin(); v != list.end(); ++v) { + games.push_back(Common::String::format("%-15s %-20s %s", metaengine.getEngineId(), v->gameId, v->description)); } } + + Common::sort(games.begin(), games.end()); + + for (Common::Array::const_iterator i = games.begin(), end = games.end(); i != end; ++i) + printf("%s\n", i->c_str()); +} + +/** List all supported engines, i.e. all loaded plugins. */ +static void listEngines() { + printf("Engine ID Engine Name \n" + "--------------- ------------------------------------------------------\n"); + + Common::Array engines; + + const PluginList &plugins = EngineMan.getPlugins(); + for (PluginList::const_iterator iter = plugins.begin(); iter != plugins.end(); ++iter) { + const MetaEngine &metaEngine = (*iter)->get(); + engines.push_back(Common::String::format("%-15s %s", metaEngine.getEngineId(), metaEngine.getName())); + } + + Common::sort(engines.begin(), engines.end()); + + for (Common::Array::const_iterator i = engines.begin(), end = engines.end(); i != end; ++i) + printf("%s\n", i->c_str()); } /** List all targets which are configured in the config file. */ @@ -1188,6 +1220,9 @@ bool processSettings(Common::String &command, Common::StringMap &settings, Commo } else if (command == "list-games") { listGames(); return true; + } else if (command == "list-engines") { + listEngines(); + return true; } else if (command == "list-saves") { err = listSaves(settings["game"]); return true; -- cgit v1.2.3