2002-03-25 08:51:34 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2001 Ludvig Strigeus
|
2005-01-01 16:09:25 +00:00
|
|
|
* Copyright (C) 2001-2005 The ScummVM project
|
2002-03-25 08:51:34 +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 2
|
|
|
|
* 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, write to the Free Software
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-03-25 08:51:34 +00:00
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-06-24 15:23:51 +00:00
|
|
|
#include "common/stdafx.h"
|
2003-10-02 22:52:57 +00:00
|
|
|
|
|
|
|
#include "base/engine.h"
|
2003-09-17 22:41:01 +00:00
|
|
|
#include "base/gameDetector.h"
|
|
|
|
#include "base/plugins.h"
|
2004-02-09 01:27:27 +00:00
|
|
|
#include "base/version.h"
|
2003-10-02 22:52:57 +00:00
|
|
|
|
2003-10-08 21:59:23 +00:00
|
|
|
#include "common/config-manager.h"
|
2005-01-10 22:06:49 +00:00
|
|
|
#include "common/system.h"
|
2003-10-02 22:52:57 +00:00
|
|
|
|
2002-04-19 11:12:27 +00:00
|
|
|
#include "sound/mididrv.h"
|
2003-09-08 17:42:53 +00:00
|
|
|
#include "sound/mixer.h"
|
2002-04-19 11:12:27 +00:00
|
|
|
|
2003-05-18 13:39:02 +00:00
|
|
|
#if defined(HAVE_CONFIG_H)
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2004-12-15 12:30:58 +00:00
|
|
|
#ifdef UNIX
|
2004-12-24 00:31:51 +00:00
|
|
|
#include <errno.h>
|
2004-12-15 12:30:58 +00:00
|
|
|
#include <sys/stat.h>
|
2004-12-18 11:07:47 +00:00
|
|
|
#ifdef MACOSX
|
|
|
|
#define DEFAULT_SAVE_PATH "Documents/ScummVM Savegames"
|
|
|
|
#else
|
2004-12-15 12:30:58 +00:00
|
|
|
#define DEFAULT_SAVE_PATH ".scummvm"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2003-11-07 02:31:44 +00:00
|
|
|
// DONT FIXME: DO NOT ORDER ALPHABETICALLY, THIS IS ORDERED BY IMPORTANCE/CATEGORY! :)
|
2005-09-03 16:05:28 +00:00
|
|
|
#if defined(PALMOS_MODE) || defined(__SYMBIAN32__)
|
2003-04-30 12:43:56 +00:00
|
|
|
static const char USAGE_STRING[] = "NoUsageString"; // save more data segment space
|
|
|
|
#else
|
2005-07-30 21:11:48 +00:00
|
|
|
static const char USAGE_STRING[] =
|
2003-08-04 12:42:40 +00:00
|
|
|
"ScummVM - Graphical Adventure Game Interpreter\n"
|
2003-10-26 13:33:49 +00:00
|
|
|
"Usage: scummvm [OPTIONS]... [GAME]\n"
|
|
|
|
" -v, --version Display ScummVM version information and exit\n"
|
|
|
|
" -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"
|
2002-12-28 12:20:55 +00:00
|
|
|
"\n"
|
2004-02-07 04:53:59 +00:00
|
|
|
" -c, --config=CONFIG Use alternate configuration file\n"
|
2003-10-26 13:33:49 +00:00
|
|
|
" -p, --path=PATH Path to where the game is installed\n"
|
|
|
|
" -x, --save-slot[=NUM] Save game slot to load (default: autosave)\n"
|
|
|
|
" -f, --fullscreen Force full-screen mode\n"
|
|
|
|
" -F, --no-fullscreen Force windowed mode\n"
|
|
|
|
" -g, --gfx-mode=MODE Select graphics scaler (normal,2x,3x,2xsai,\n"
|
|
|
|
" super2xsai,supereagle,advmame2x,advmame3x,hq2x,\n"
|
|
|
|
" hq3x,tv2x,dotmatrix)\n"
|
|
|
|
" -e, --music-driver=MODE Select music driver (see README for details)\n"
|
2003-10-26 21:08:53 +00:00
|
|
|
" -q, --language=LANG Select language (en,de,fr,it,pt,es,jp,zh,kr,se,gb,\n"
|
2004-01-06 12:28:24 +00:00
|
|
|
" hb,ru,cz)\n"
|
2003-10-26 13:33:49 +00:00
|
|
|
" -m, --music-volume=NUM Set the music volume, 0-255 (default: 192)\n"
|
|
|
|
" -s, --sfx-volume=NUM Set the sfx volume, 0-255 (default: 192)\n"
|
2004-04-06 11:50:35 +00:00
|
|
|
" -r, --speech-volume=NUM Set the speech volume, 0-255 (default: 192)\n"
|
2003-12-02 08:09:14 +00:00
|
|
|
" -n, --subtitles Enable subtitles (use with games that have voice)\n"
|
2003-10-26 13:33:49 +00:00
|
|
|
" -b, --boot-param=NUM Pass number to the boot script (boot param)\n"
|
|
|
|
" -d, --debuglevel=NUM Set debug verbosity level\n"
|
|
|
|
" -u, --dump-scripts Enable script dumping if a directory called 'dumps'\n"
|
|
|
|
" exists in the current directory\n"
|
2002-12-28 12:20:55 +00:00
|
|
|
"\n"
|
2003-10-26 13:33:49 +00:00
|
|
|
" --cdrom=NUM CD drive to play CD audio from (default: 0 = first\n"
|
|
|
|
" drive)\n"
|
2003-12-27 13:52:48 +00:00
|
|
|
" --joystick[=NUM] Enable input with joystick (default: 0 = first\n"
|
2003-10-26 13:33:49 +00:00
|
|
|
" joystick)\n"
|
|
|
|
" --platform=WORD Specify version of game (allowed values: amiga,\n"
|
2005-06-19 23:02:38 +00:00
|
|
|
" atari, c64, fmtowns, nes, mac, pc, windows)\n"
|
2004-11-30 21:07:02 +00:00
|
|
|
" --savepath=PATH Path to where savegames are stored\n"
|
2005-04-13 12:36:19 +00:00
|
|
|
" --soundfont=FILE Select the SoundFont for MIDI playback (only\n"
|
2005-04-13 00:11:49 +00:00
|
|
|
" supported by some MIDI drivers)\n"
|
2003-10-26 13:33:49 +00:00
|
|
|
" --multi-midi Enable combination Adlib and native MIDI\n"
|
|
|
|
" --native-mt32 True Roland MT-32 (disable GM emulation)\n"
|
2005-04-13 00:11:49 +00:00
|
|
|
" --enable-gs Enable Roland GS mode for MIDI playback\n"
|
2004-07-16 10:24:29 +00:00
|
|
|
" --output-rate=RATE Select output sample rate in Hz (e.g. 22050)\n"
|
2003-10-26 13:33:49 +00:00
|
|
|
" --aspect-ratio Enable aspect ratio correction\n"
|
2005-03-03 12:51:09 +00:00
|
|
|
" --render-mode=MODE Enable additional render modes (cga, ega, hercGreen,\n"
|
2005-04-10 14:33:44 +00:00
|
|
|
" hercAmber, amiga)\n"
|
2005-03-10 16:29:08 +00:00
|
|
|
" --force-1x-overlay Make inner GUI 320x200\n"
|
2002-12-28 12:20:55 +00:00
|
|
|
"\n"
|
2004-02-13 10:51:33 +00:00
|
|
|
#if !defined(DISABLE_SKY) || !defined(DISABLE_QUEEN)
|
|
|
|
" --alt-intro Use alternative intro for CD versions of Beneath a\n"
|
2004-08-14 19:11:20 +00:00
|
|
|
" Steel Sky and Flight of the Amazon Queen\n"
|
2003-10-26 13:33:49 +00:00
|
|
|
#endif
|
2004-08-14 19:11:20 +00:00
|
|
|
" --copy-protection Enable copy protection in SCUMM games, when\n"
|
|
|
|
" ScummVM disables it by default.\n"
|
2005-10-18 19:05:22 +00:00
|
|
|
" --talkspeed=NUM Set talk speed for games (default: 60)\n"
|
|
|
|
#ifndef DISABLE_SCUMM
|
2004-03-04 02:47:39 +00:00
|
|
|
" --demo-mode Start demo mode of Maniac Mansion\n"
|
2003-10-26 13:33:49 +00:00
|
|
|
" --tempo=NUM Set music tempo (in percent, 50-200) for SCUMM games\n"
|
|
|
|
" (default: 100)\n"
|
2003-07-05 00:57:03 +00:00
|
|
|
#endif
|
2003-07-04 06:54:47 +00:00
|
|
|
"\n"
|
2003-10-26 21:08:53 +00:00
|
|
|
"The meaning of boolean long options can be inverted by prefixing them with\n"
|
|
|
|
"\"no-\", e.g. \"--no-aspect-ratio\".\n"
|
2002-04-12 10:34:46 +00:00
|
|
|
;
|
2003-04-30 12:43:56 +00:00
|
|
|
#endif
|
2003-03-01 22:04:48 +00:00
|
|
|
|
2004-12-15 12:30:58 +00:00
|
|
|
|
2003-03-06 16:27:06 +00:00
|
|
|
GameDetector::GameDetector() {
|
2003-05-17 03:06:16 +00:00
|
|
|
|
2003-10-08 21:59:23 +00:00
|
|
|
// Graphics
|
|
|
|
ConfMan.registerDefault("fullscreen", false);
|
|
|
|
ConfMan.registerDefault("aspect_ratio", false);
|
|
|
|
ConfMan.registerDefault("gfx_mode", "normal");
|
2005-02-20 00:17:22 +00:00
|
|
|
ConfMan.registerDefault("render_mode", "default");
|
2003-09-05 16:30:05 +00:00
|
|
|
|
2003-10-08 21:59:23 +00:00
|
|
|
// Sound & Music
|
2003-10-15 23:16:52 +00:00
|
|
|
ConfMan.registerDefault("music_volume", 192);
|
|
|
|
ConfMan.registerDefault("sfx_volume", 192);
|
2004-04-06 11:50:35 +00:00
|
|
|
ConfMan.registerDefault("speech_volume", 192);
|
2002-04-27 16:58:29 +00:00
|
|
|
|
2003-10-08 21:59:23 +00:00
|
|
|
ConfMan.registerDefault("multi_midi", false);
|
|
|
|
ConfMan.registerDefault("native_mt32", false);
|
2005-04-13 00:11:49 +00:00
|
|
|
ConfMan.registerDefault("enable_gs", false);
|
2003-10-08 21:59:23 +00:00
|
|
|
// ConfMan.registerDefault("music_driver", ???);
|
2002-08-18 23:29:40 +00:00
|
|
|
|
2003-10-08 21:59:23 +00:00
|
|
|
ConfMan.registerDefault("cdrom", 0);
|
2003-10-01 10:47:19 +00:00
|
|
|
|
2003-10-08 21:59:23 +00:00
|
|
|
// Game specifc
|
|
|
|
ConfMan.registerDefault("path", "");
|
2004-01-29 21:54:03 +00:00
|
|
|
ConfMan.registerDefault("savepath", "");
|
2002-05-07 05:12:39 +00:00
|
|
|
|
2003-10-12 20:44:52 +00:00
|
|
|
// ConfMan.registerDefault("amiga", false);
|
2003-10-17 15:38:56 +00:00
|
|
|
ConfMan.registerDefault("platform", Common::kPlatformPC);
|
2003-10-08 21:59:23 +00:00
|
|
|
ConfMan.registerDefault("language", "en");
|
2005-03-12 00:55:46 +00:00
|
|
|
ConfMan.registerDefault("speech_mute", false);
|
2003-12-21 16:15:37 +00:00
|
|
|
ConfMan.registerDefault("subtitles", false);
|
2003-10-08 21:59:23 +00:00
|
|
|
ConfMan.registerDefault("boot_param", 0);
|
|
|
|
ConfMan.registerDefault("save_slot", -1);
|
2003-07-05 00:57:03 +00:00
|
|
|
|
2004-08-01 06:52:56 +00:00
|
|
|
#if !defined(DISABLE_SCUMM) || !defined(DISABLE_SWORD2)
|
|
|
|
ConfMan.registerDefault("object_labels", true);
|
|
|
|
#endif
|
|
|
|
|
2003-12-11 06:08:43 +00:00
|
|
|
ConfMan.registerDefault("copy_protection", false);
|
2003-10-08 21:59:23 +00:00
|
|
|
ConfMan.registerDefault("talkspeed", 60);
|
2005-10-18 19:05:22 +00:00
|
|
|
|
|
|
|
#ifndef DISABLE_SCUMM
|
|
|
|
ConfMan.registerDefault("demo_mode", false);
|
2003-10-08 21:59:23 +00:00
|
|
|
ConfMan.registerDefault("tempo", 0);
|
2003-07-29 12:13:39 +00:00
|
|
|
#endif
|
|
|
|
|
2004-02-13 10:51:33 +00:00
|
|
|
#if !defined(DISABLE_SKY) || !defined(DISABLE_QUEEN)
|
|
|
|
ConfMan.registerDefault("alt_intro", false);
|
2003-10-08 21:59:23 +00:00
|
|
|
#endif
|
2002-12-21 00:27:10 +00:00
|
|
|
|
2003-10-08 21:59:23 +00:00
|
|
|
// Miscellaneous
|
|
|
|
ConfMan.registerDefault("joystick_num", -1);
|
|
|
|
ConfMan.registerDefault("confirm_exit", false);
|
2005-10-18 03:52:21 +00:00
|
|
|
ConfMan.registerDefault("disable_sdl_parachute", false);
|
2003-12-11 14:38:43 +00:00
|
|
|
#ifdef USE_ALSA
|
|
|
|
ConfMan.registerDefault("alsa_port", "65:0");
|
|
|
|
#endif
|
2002-05-07 05:12:39 +00:00
|
|
|
|
2005-07-30 21:11:48 +00:00
|
|
|
#ifdef DEFAULT_SAVE_PATH
|
2004-12-15 12:30:58 +00:00
|
|
|
char savePath[MAXPATHLEN];
|
|
|
|
#ifdef UNIX
|
|
|
|
struct stat sb;
|
|
|
|
if (getenv("HOME") != NULL) {
|
2005-07-30 21:11:48 +00:00
|
|
|
snprintf(savePath, MAXPATHLEN, "%s/%s", getenv("HOME"), DEFAULT_SAVE_PATH);
|
2004-12-15 12:30:58 +00:00
|
|
|
if (stat(savePath, &sb) == -1) {
|
|
|
|
/* create the dir if it does not exist */
|
|
|
|
if (errno == ENOENT) {
|
|
|
|
if (mkdir(savePath, 0755) != 0) {
|
|
|
|
perror("mkdir");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* check that we can the dir is there */
|
|
|
|
if (stat(savePath, &sb) == 0) {
|
|
|
|
ConfMan.registerDefault("savepath", savePath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2003-10-08 21:59:23 +00:00
|
|
|
_dumpScripts = false;
|
2005-06-21 22:08:21 +00:00
|
|
|
|
|
|
|
#if defined(__SYMBIAN32__)
|
|
|
|
_force1xOverlay = true;
|
|
|
|
#else
|
2005-03-10 16:29:08 +00:00
|
|
|
_force1xOverlay = false;
|
2005-06-21 22:08:21 +00:00
|
|
|
#endif
|
2003-05-17 03:06:16 +00:00
|
|
|
|
2003-10-28 17:07:25 +00:00
|
|
|
memset(&_game, 0, sizeof(_game));
|
2003-10-08 21:59:23 +00:00
|
|
|
_plugin = 0;
|
2002-04-27 16:58:29 +00:00
|
|
|
}
|
|
|
|
|
2003-10-17 16:04:46 +00:00
|
|
|
/** List all supported games, i.e. all games which any loaded plugin supports. */
|
|
|
|
void listGames() {
|
2003-10-08 22:10:59 +00:00
|
|
|
const PluginList &plugins = PluginManager::instance().getPlugins();
|
2002-10-18 07:08:45 +00:00
|
|
|
|
2003-10-17 16:04:46 +00:00
|
|
|
printf("Game ID Full Title \n"
|
|
|
|
"-------------------- ------------------------------------------------------\n");
|
2002-10-18 07:08:45 +00:00
|
|
|
|
2004-02-05 00:19:57 +00:00
|
|
|
PluginList::const_iterator iter = plugins.begin();
|
2003-10-05 14:03:07 +00:00
|
|
|
for (iter = plugins.begin(); iter != plugins.end(); ++iter) {
|
2003-10-17 12:18:58 +00:00
|
|
|
GameList list = (*iter)->getSupportedGames();
|
2004-02-05 00:19:57 +00:00
|
|
|
for (GameList::iterator v = list.begin(); v != list.end(); ++v) {
|
2003-12-13 00:20:01 +00:00
|
|
|
printf("%-20s %s\n", v->name, v->description);
|
2003-09-08 17:13:40 +00:00
|
|
|
}
|
2002-10-18 07:08:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-17 16:04:46 +00:00
|
|
|
/** List all targets which are configured in the config file. */
|
|
|
|
void listTargets() {
|
|
|
|
using namespace Common;
|
|
|
|
const ConfigManager::DomainMap &domains = ConfMan.getGameDomains();
|
|
|
|
|
|
|
|
printf("Target Description \n"
|
|
|
|
"-------------------- ------------------------------------------------------\n");
|
|
|
|
|
2004-02-05 00:19:57 +00:00
|
|
|
ConfigManager::DomainMap::const_iterator iter = domains.begin();
|
2003-10-17 16:04:46 +00:00
|
|
|
for (iter = domains.begin(); iter != domains.end(); ++iter) {
|
|
|
|
String name(iter->_key);
|
|
|
|
String description(iter->_value.get("description"));
|
|
|
|
|
|
|
|
if (description.isEmpty()) {
|
|
|
|
GameSettings g = GameDetector::findGame(name);
|
|
|
|
if (g.description)
|
|
|
|
description = g.description;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("%-20s %s\n", name.c_str(), description.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-17 12:18:58 +00:00
|
|
|
GameSettings GameDetector::findGame(const String &gameName, const Plugin **plugin) {
|
2003-10-12 18:40:12 +00:00
|
|
|
// Find the GameSettings for this target
|
2003-10-08 22:10:59 +00:00
|
|
|
const PluginList &plugins = PluginManager::instance().getPlugins();
|
2003-12-13 00:20:01 +00:00
|
|
|
GameSettings result = {NULL, NULL, 0};
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2004-02-05 00:19:57 +00:00
|
|
|
PluginList::const_iterator iter = plugins.begin();
|
2003-10-05 14:03:07 +00:00
|
|
|
for (iter = plugins.begin(); iter != plugins.end(); ++iter) {
|
2003-10-17 12:18:58 +00:00
|
|
|
result = (*iter)->findGame(gameName.c_str());
|
2003-12-13 00:20:01 +00:00
|
|
|
if (result.name) {
|
2003-09-17 22:41:01 +00:00
|
|
|
if (plugin)
|
2003-10-05 14:03:07 +00:00
|
|
|
*plugin = *iter;
|
2003-10-17 12:18:58 +00:00
|
|
|
break;
|
2003-09-17 22:41:01 +00:00
|
|
|
}
|
2003-09-08 15:38:34 +00:00
|
|
|
}
|
2003-10-17 12:18:58 +00:00
|
|
|
return result;
|
2003-09-08 15:38:34 +00:00
|
|
|
}
|
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
//
|
|
|
|
// Various macros used by the command line parser.
|
|
|
|
//
|
|
|
|
|
2005-04-22 21:49:29 +00:00
|
|
|
// Use this for options which have an *optional* value
|
2003-10-17 19:39:13 +00:00
|
|
|
#define DO_OPTION_OPT(shortCmd, longCmd) \
|
|
|
|
if (isLongCmd ? (!memcmp(s, longCmd"=", sizeof(longCmd"=") - 1)) : (shortCmdLower == shortCmd)) { \
|
|
|
|
if (isLongCmd) \
|
|
|
|
s += sizeof(longCmd"=") - 1; \
|
|
|
|
if ((*s != '\0') && (current_option != NULL)) goto ShowHelpAndExit; \
|
2005-04-22 21:49:29 +00:00
|
|
|
char *option = (*s != '\0') ? s : current_option; \
|
2003-10-17 19:39:13 +00:00
|
|
|
current_option = NULL;
|
|
|
|
|
2005-04-22 21:49:29 +00:00
|
|
|
// Use this for options which have a required (string) value
|
2003-10-17 19:39:13 +00:00
|
|
|
#define DO_OPTION(shortCmd, longCmd) \
|
|
|
|
DO_OPTION_OPT(shortCmd, longCmd) \
|
|
|
|
if (option == NULL) goto ShowHelpAndExit;
|
|
|
|
|
2005-04-22 21:49:29 +00:00
|
|
|
// Use this for options which have a required integer value
|
|
|
|
#define DO_OPTION_INT(shortCmd, longCmd) \
|
|
|
|
DO_OPTION_OPT(shortCmd, longCmd) \
|
|
|
|
if (option == NULL) goto ShowHelpAndExit; \
|
|
|
|
char *endptr = 0; \
|
2005-04-23 14:39:15 +00:00
|
|
|
int intValue; intValue = (int)strtol(option, &endptr, 10); \
|
2005-04-22 21:49:29 +00:00
|
|
|
if (endptr == NULL || *endptr != 0) goto ShowHelpAndExit;
|
|
|
|
|
|
|
|
// Use this for boolean options; this distinguishes between "-x" and "-X",
|
|
|
|
// resp. between "--some-option" and "--no-some-option".
|
2003-10-17 19:39:13 +00:00
|
|
|
#define DO_OPTION_BOOL(shortCmd, longCmd) \
|
|
|
|
if (isLongCmd ? (!strcmp(s, longCmd) || !strcmp(s, "no-"longCmd)) : (shortCmdLower == shortCmd)) { \
|
|
|
|
if (isLongCmd) { \
|
2005-04-22 21:49:29 +00:00
|
|
|
boolValue = !strcmp(s, longCmd); \
|
|
|
|
s += boolValue ? (sizeof(longCmd) - 1) : (sizeof("no-"longCmd) - 1); \
|
2003-10-17 19:39:13 +00:00
|
|
|
} \
|
|
|
|
if ((*s != '\0') || (current_option != NULL)) goto ShowHelpAndExit;
|
|
|
|
|
2005-04-22 21:49:29 +00:00
|
|
|
// Use this for options which never have a value, i.e. for 'commands', like "--help".
|
2003-10-17 19:39:13 +00:00
|
|
|
#define DO_OPTION_CMD(shortCmd, longCmd) \
|
|
|
|
if (isLongCmd ? (!strcmp(s, longCmd)) : (shortCmdLower == shortCmd)) { \
|
|
|
|
if (isLongCmd) \
|
|
|
|
s += sizeof(longCmd) - 1; \
|
|
|
|
if ((*s != '\0') || (current_option != NULL)) goto ShowHelpAndExit;
|
|
|
|
|
|
|
|
|
|
|
|
#define DO_LONG_OPTION_OPT(longCmd) DO_OPTION_OPT(0, longCmd)
|
|
|
|
#define DO_LONG_OPTION(longCmd) DO_OPTION(0, longCmd)
|
2005-04-22 21:49:29 +00:00
|
|
|
#define DO_LONG_OPTION_INT(longCmd) DO_OPTION_INT(0, longCmd)
|
2003-10-17 19:39:13 +00:00
|
|
|
#define DO_LONG_OPTION_BOOL(longCmd) DO_OPTION_BOOL(0, longCmd)
|
|
|
|
#define DO_LONG_OPTION_CMD(longCmd) DO_OPTION_CMD(0, longCmd)
|
|
|
|
|
|
|
|
// End an option handler
|
|
|
|
#define END_OPTION \
|
|
|
|
continue; \
|
|
|
|
}
|
|
|
|
|
2003-11-10 23:17:11 +00:00
|
|
|
|
2003-03-06 16:27:06 +00:00
|
|
|
void GameDetector::parseCommandLine(int argc, char **argv) {
|
2002-04-11 17:19:16 +00:00
|
|
|
int i;
|
|
|
|
char *s;
|
2002-05-02 18:59:31 +00:00
|
|
|
char *current_option = NULL;
|
2003-10-17 19:39:13 +00:00
|
|
|
char shortCmdLower;
|
2005-04-22 21:49:29 +00:00
|
|
|
bool isLongCmd, boolValue;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-04-23 14:39:15 +00:00
|
|
|
// We store all command line settings in a string map, instead of
|
|
|
|
// immediately putting it into the config manager. We do that to
|
|
|
|
// make a potential future change to the config manager easier: In
|
|
|
|
// particular, right now there is only one transient config domain
|
|
|
|
// domain, in the future there might be two (one for the app, one
|
|
|
|
// for the active game). Since we only know after all params have
|
|
|
|
// been parsed whether a game is going to be started or whether we
|
|
|
|
// run the launcher, we need to delay putting things into the config
|
|
|
|
// manager until after parsing is complete.
|
|
|
|
Common::StringMap settings;
|
|
|
|
|
|
|
|
|
2005-07-30 21:11:48 +00:00
|
|
|
// The user can override the savepath with the SCUMMVM_SAVEPATH
|
2005-04-23 14:39:15 +00:00
|
|
|
// environment variable. This is weaker than a --savepath on the
|
|
|
|
// command line, but overrides the default savepath, hence it is
|
|
|
|
// handled here, just before the command line gets parsed.
|
2005-09-03 16:05:28 +00:00
|
|
|
#if !defined(MACOS_CARBON) && !defined(_WIN32_WCE) && !defined(PALMOS_MODE)
|
2005-04-23 14:39:15 +00:00
|
|
|
const char *dir = getenv("SCUMMVM_SAVEPATH");
|
|
|
|
if (dir && *dir) {
|
|
|
|
// TODO: Verify whether the path is valid
|
|
|
|
settings["savepath"] = dir;
|
|
|
|
}
|
|
|
|
#endif
|
2002-04-11 17:19:16 +00:00
|
|
|
|
2003-10-28 17:07:25 +00:00
|
|
|
// Iterate over all command line arguments, backwards.
|
2002-05-02 18:59:31 +00:00
|
|
|
for (i = argc - 1; i >= 1; i--) {
|
2002-04-11 17:19:16 +00:00
|
|
|
s = argv[i];
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
if (s[0] != '-' || s[1] == '\0') {
|
|
|
|
// Last argument: this could be a target name.
|
2003-12-13 00:20:01 +00:00
|
|
|
// To verify this, check if there is either a game domain (i.e.
|
2003-10-17 19:39:13 +00:00
|
|
|
// a configured target) matching this argument, or if we can
|
|
|
|
// find any target with that name.
|
2003-12-13 00:20:01 +00:00
|
|
|
if (i == (argc - 1) && (ConfMan.hasGameDomain(s) || findGame(s).name)) {
|
2003-10-17 19:39:13 +00:00
|
|
|
setTarget(s);
|
|
|
|
} else {
|
|
|
|
if (current_option == NULL)
|
|
|
|
current_option = s;
|
|
|
|
else
|
|
|
|
goto ShowHelpAndExit;
|
|
|
|
}
|
|
|
|
} else {
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
shortCmdLower = tolower(s[1]);
|
|
|
|
isLongCmd = (s[0] == '-' && s[1] == '-');
|
2005-04-22 21:49:29 +00:00
|
|
|
boolValue = (shortCmdLower == s[1]);
|
2003-10-17 19:39:13 +00:00
|
|
|
s += 2;
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2004-02-07 04:53:59 +00:00
|
|
|
DO_OPTION('c', "config")
|
|
|
|
// Dummy
|
|
|
|
END_OPTION
|
|
|
|
|
2005-04-22 21:49:29 +00:00
|
|
|
DO_OPTION_INT('b', "boot-param")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["boot_param"] = option;
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_OPTION_OPT('d', "debuglevel")
|
2005-04-24 12:21:53 +00:00
|
|
|
gDebugLevel = option ? (int)strtol(option, 0, 10) : 0;
|
2005-04-23 13:52:27 +00:00
|
|
|
printf("Debuglevel (from command line): %d\n", gDebugLevel);
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_OPTION('e', "music-driver")
|
2003-10-02 22:52:57 +00:00
|
|
|
// TODO: Instead of just showing the generic help text,
|
|
|
|
// maybe print a message like:
|
|
|
|
// "'option' is not a supported music driver on this machine.
|
|
|
|
// Available driver: ..."
|
2004-12-02 00:33:42 +00:00
|
|
|
if (MidiDriver::parseMusicDriver(option) < 0)
|
2002-05-02 18:59:31 +00:00
|
|
|
goto ShowHelpAndExit;
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["music_driver"] = option;
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2005-04-22 21:49:29 +00:00
|
|
|
DO_LONG_OPTION_INT("output-rate")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["output_rate"] = option;
|
2004-07-16 10:24:29 +00:00
|
|
|
END_OPTION
|
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_OPTION_BOOL('f', "fullscreen")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["fullscreen"] = boolValue ? "true" : "false";
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_OPTION('g', "gfx-mode")
|
2004-02-24 22:39:42 +00:00
|
|
|
// Check whether 'option' specifies a valid graphics mode.
|
|
|
|
bool isValid = false;
|
|
|
|
if (!scumm_stricmp(option, "normal") || !scumm_stricmp(option, "default"))
|
|
|
|
isValid = true;
|
|
|
|
if (!isValid) {
|
|
|
|
const OSystem::GraphicsMode *gm = g_system->getSupportedGraphicsModes();
|
|
|
|
while (gm->name && !isValid) {
|
|
|
|
isValid = !scumm_stricmp(gm->name, option);
|
|
|
|
gm++;
|
|
|
|
}
|
|
|
|
}
|
2003-10-02 22:52:57 +00:00
|
|
|
// TODO: Instead of just showing the generic help text,
|
|
|
|
// maybe print a message like:
|
|
|
|
// "'option' is not a supported graphic mode on this machine.
|
|
|
|
// Available graphic modes: ..."
|
2004-02-24 22:39:42 +00:00
|
|
|
if (!isValid)
|
2002-05-02 18:59:31 +00:00
|
|
|
goto ShowHelpAndExit;
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["gfx_mode"] = option;
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_OPTION_CMD('h', "help")
|
|
|
|
printf(USAGE_STRING);
|
|
|
|
exit(0);
|
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2005-04-22 21:49:29 +00:00
|
|
|
DO_OPTION_INT('m', "music-volume")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["music_volume"] = option;
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-12-02 08:09:14 +00:00
|
|
|
DO_OPTION_BOOL('n', "subtitles")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["subtitles"] = boolValue ? "true" : "false";
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_OPTION('p', "path")
|
|
|
|
// TODO: Verify whether the path is valid
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["path"] = option;
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_OPTION('q', "language")
|
2003-10-17 15:35:46 +00:00
|
|
|
if (Common::parseLanguage(option) == Common::UNK_LANG)
|
2003-01-29 08:07:10 +00:00
|
|
|
goto ShowHelpAndExit;
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["language"] = option;
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2005-04-22 21:49:29 +00:00
|
|
|
DO_OPTION_INT('s', "sfx-volume")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["sfx_volume"] = option;
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2005-04-22 21:49:29 +00:00
|
|
|
DO_OPTION_INT('r', "speech-volume")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["speech_volume"] = option;
|
2004-04-05 18:24:36 +00:00
|
|
|
END_OPTION
|
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_OPTION_CMD('t', "list-targets")
|
|
|
|
listTargets();
|
|
|
|
exit(0);
|
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_OPTION_BOOL('u', "dump-scripts")
|
2002-12-31 02:09:57 +00:00
|
|
|
_dumpScripts = true;
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_OPTION_CMD('v', "version")
|
2003-07-15 02:16:33 +00:00
|
|
|
printf("%s\n", gScummVMFullVersion);
|
2004-02-09 01:27:27 +00:00
|
|
|
printf("Features compiled in: %s\n", gScummVMFeatures);
|
2003-10-08 21:59:23 +00:00
|
|
|
exit(0);
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2005-04-22 21:49:29 +00:00
|
|
|
DO_OPTION_OPT('x', "save-slot")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["save_slot"] = (option != NULL) ? option : "0";
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_OPTION_CMD('z', "list-games")
|
2003-10-17 16:04:46 +00:00
|
|
|
listGames();
|
2003-10-10 11:15:14 +00:00
|
|
|
exit(0);
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2005-04-22 21:49:29 +00:00
|
|
|
DO_LONG_OPTION_INT("cdrom")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["cdrom"] = option;
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-20 20:06:29 +00:00
|
|
|
DO_LONG_OPTION_OPT("joystick")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["joystick_num"] = (option != NULL) ? option : "0";
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_LONG_OPTION("platform")
|
|
|
|
int platform = Common::parsePlatform(option);
|
|
|
|
if (platform == Common::kPlatformUnknown)
|
|
|
|
goto ShowHelpAndExit;
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["platform"] = option;
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2005-04-10 14:33:44 +00:00
|
|
|
DO_LONG_OPTION("soundfont")
|
2005-04-23 14:39:15 +00:00
|
|
|
// TODO: Verify whether the path is valid
|
|
|
|
settings["soundfont"] = option;
|
2005-04-10 14:33:44 +00:00
|
|
|
END_OPTION
|
|
|
|
|
2005-10-18 03:52:21 +00:00
|
|
|
DO_LONG_OPTION_BOOL("disable-sdl-parachute")
|
|
|
|
settings["disable_sdl_parachute"] = boolValue ? "true" : "false";
|
|
|
|
END_OPTION
|
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_LONG_OPTION_BOOL("multi-midi")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["multi_midi"] = boolValue ? "true" : "false";
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_LONG_OPTION_BOOL("native-mt32")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["native_mt32"] = boolValue ? "true" : "false";
|
2005-04-13 00:11:49 +00:00
|
|
|
END_OPTION
|
|
|
|
|
|
|
|
DO_LONG_OPTION_BOOL("enable-gs")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["enable_gs"] = boolValue ? "true" : "false";
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_LONG_OPTION_BOOL("aspect-ratio")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["aspect_ratio"] = boolValue ? "true" : "false";
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2005-02-20 00:17:22 +00:00
|
|
|
DO_LONG_OPTION("render-mode")
|
|
|
|
int renderMode = Common::parseRenderMode(option);
|
|
|
|
if (renderMode == Common::kRenderDefault)
|
|
|
|
goto ShowHelpAndExit;
|
|
|
|
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["render_mode"] = option;
|
2005-02-20 00:17:22 +00:00
|
|
|
END_OPTION
|
|
|
|
|
2005-03-10 16:29:08 +00:00
|
|
|
DO_LONG_OPTION_BOOL("force-1x-overlay")
|
|
|
|
_force1xOverlay = true;
|
|
|
|
END_OPTION
|
|
|
|
|
2004-01-29 21:54:03 +00:00
|
|
|
DO_LONG_OPTION("savepath")
|
|
|
|
// TODO: Verify whether the path is valid
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["savepath"] = option;
|
2004-01-29 21:54:03 +00:00
|
|
|
END_OPTION
|
|
|
|
|
2005-10-18 19:05:22 +00:00
|
|
|
DO_LONG_OPTION_INT("talkspeed")
|
|
|
|
settings["talkspeed"] = option;
|
|
|
|
END_OPTION
|
|
|
|
|
|
|
|
DO_LONG_OPTION_BOOL("copy-protection")
|
|
|
|
settings["copy_protection"] = boolValue ? "true" : "false";
|
|
|
|
END_OPTION
|
|
|
|
|
2003-07-29 12:13:39 +00:00
|
|
|
#ifndef DISABLE_SCUMM
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_LONG_OPTION("tempo")
|
2005-07-30 21:11:48 +00:00
|
|
|
// Use the special value '0' for the base in (int)strtol.
|
2003-10-17 19:39:13 +00:00
|
|
|
// Doing that makes it possible to enter hex values
|
|
|
|
// as "0x1234", but also decimal values ("123").
|
2005-04-23 14:39:15 +00:00
|
|
|
int value = (int)strtol(option, 0, 0);
|
|
|
|
char buf[20];
|
|
|
|
snprintf(buf, sizeof(buf), "%d", value);
|
|
|
|
settings["tempo"] = buf;
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
DO_LONG_OPTION_BOOL("demo-mode")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["demo_mode"] = boolValue ? "true" : "false";
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
|
|
|
#endif
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2004-02-13 10:51:33 +00:00
|
|
|
#if !defined(DISABLE_SKY) || !defined(DISABLE_QUEEN)
|
|
|
|
DO_LONG_OPTION_BOOL("alt-intro")
|
2005-04-23 14:39:15 +00:00
|
|
|
settings["alt_intro"] = boolValue ? "true" : "false";
|
2003-10-17 19:39:13 +00:00
|
|
|
END_OPTION
|
2003-07-05 00:57:03 +00:00
|
|
|
#endif
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-17 19:39:13 +00:00
|
|
|
// If we get till here, the option is unhandled and hence unknown.
|
|
|
|
goto ShowHelpAndExit;
|
2002-04-11 17:19:16 +00:00
|
|
|
}
|
|
|
|
}
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-10-18 00:25:13 +00:00
|
|
|
if (current_option) {
|
2003-03-06 16:27:06 +00:00
|
|
|
ShowHelpAndExit:
|
2003-10-18 00:25:13 +00:00
|
|
|
printf(USAGE_STRING);
|
|
|
|
exit(1);
|
|
|
|
}
|
2005-04-23 14:39:15 +00:00
|
|
|
|
|
|
|
// Finally, store the command line settings into the config manager.
|
|
|
|
for (Common::StringMap::const_iterator x = settings.begin(); x != settings.end(); ++x)
|
|
|
|
ConfMan.set(x->_key, x->_value, Common::ConfigManager::kTransientDomain);
|
|
|
|
|
2002-03-23 20:34:47 +00:00
|
|
|
}
|
|
|
|
|
2003-10-12 18:40:12 +00:00
|
|
|
void GameDetector::setTarget(const String &name) {
|
|
|
|
_targetName = name;
|
2003-10-08 21:59:23 +00:00
|
|
|
ConfMan.setActiveDomain(name);
|
2002-09-30 00:55:47 +00:00
|
|
|
}
|
|
|
|
|
2003-03-06 16:27:06 +00:00
|
|
|
bool GameDetector::detectGame() {
|
2003-10-08 21:59:23 +00:00
|
|
|
String realGame;
|
2002-10-28 09:03:02 +00:00
|
|
|
|
2003-10-08 21:59:23 +00:00
|
|
|
if (ConfMan.hasKey("gameid"))
|
|
|
|
realGame = ConfMan.get("gameid");
|
|
|
|
else
|
2003-10-12 18:40:12 +00:00
|
|
|
realGame = _targetName;
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2005-06-23 13:46:38 +00:00
|
|
|
printf("Looking for %s\n", realGame.c_str());
|
2003-10-17 12:18:58 +00:00
|
|
|
_game = findGame(realGame, &_plugin);
|
2003-11-08 22:05:58 +00:00
|
|
|
|
2003-12-13 00:20:01 +00:00
|
|
|
if (_game.name) {
|
2005-06-23 13:46:38 +00:00
|
|
|
printf("Trying to start game '%s'\n", _game.description);
|
2003-09-08 15:38:34 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
2005-06-23 13:46:38 +00:00
|
|
|
printf("Failed game detection\n");
|
2003-09-08 15:38:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
2002-03-23 20:34:47 +00:00
|
|
|
}
|
|
|
|
|
2003-09-20 00:37:09 +00:00
|
|
|
bool GameDetector::detectMain() {
|
2003-10-12 18:40:12 +00:00
|
|
|
if (_targetName.isEmpty()) {
|
2002-03-25 00:45:09 +00:00
|
|
|
warning("No game was specified...");
|
2003-09-20 00:37:09 +00:00
|
|
|
return false;
|
2002-03-25 00:45:09 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (!detectGame()) {
|
2003-10-20 20:06:29 +00:00
|
|
|
warning("%s is an invalid target. Use the --list-targets option to list targets", _targetName.c_str());
|
2003-09-20 00:37:09 +00:00
|
|
|
return false;
|
2002-04-11 17:19:16 +00:00
|
|
|
}
|
2002-03-25 00:45:09 +00:00
|
|
|
|
2003-10-08 21:59:23 +00:00
|
|
|
String gameDataPath(ConfMan.get("path"));
|
|
|
|
if (gameDataPath.isEmpty()) {
|
2002-04-16 15:49:21 +00:00
|
|
|
warning("No path was provided. Assuming the data files are in the current directory");
|
2004-10-08 16:09:52 +00:00
|
|
|
gameDataPath = "./";
|
2003-10-08 21:59:23 +00:00
|
|
|
} else if (gameDataPath.lastChar() != '/'
|
2005-05-09 21:21:21 +00:00
|
|
|
#if defined(__MORPHOS__) || defined(__amigaos4__)
|
2003-10-08 21:59:23 +00:00
|
|
|
&& gameDataPath.lastChar() != ':'
|
2002-07-04 19:43:58 +00:00
|
|
|
#endif
|
2003-10-08 21:59:23 +00:00
|
|
|
&& gameDataPath.lastChar() != '\\') {
|
|
|
|
gameDataPath += '/';
|
2005-04-23 14:39:15 +00:00
|
|
|
ConfMan.set("path", gameDataPath, Common::ConfigManager::kTransientDomain);
|
2002-04-11 17:19:16 +00:00
|
|
|
}
|
2002-03-23 20:34:47 +00:00
|
|
|
|
2003-09-20 00:37:09 +00:00
|
|
|
return true;
|
2002-04-11 17:19:16 +00:00
|
|
|
}
|
2002-04-13 18:34:11 +00:00
|
|
|
|
2003-10-09 14:05:09 +00:00
|
|
|
Engine *GameDetector::createEngine(OSystem *sys) {
|
2003-09-17 22:41:01 +00:00
|
|
|
assert(_plugin);
|
2003-10-09 14:05:09 +00:00
|
|
|
return _plugin->createInstance(this, sys);
|
2003-09-08 17:13:40 +00:00
|
|
|
}
|
|
|
|
|
2005-05-10 23:48:48 +00:00
|
|
|
Audio::Mixer *GameDetector::createMixer() {
|
|
|
|
return new Audio::Mixer();
|
2003-09-08 17:42:53 +00:00
|
|
|
}
|