2009-05-05 21:47:12 +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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2014-02-18 02:34:17 +01:00
|
|
|
*
|
2009-05-05 21:47:12 +00:00
|
|
|
*/
|
|
|
|
|
2011-02-09 01:09:01 +00:00
|
|
|
#include "audio/fmopl.h"
|
2009-05-05 21:47:12 +00:00
|
|
|
|
2011-02-09 01:09:01 +00:00
|
|
|
#include "audio/softsynth/opl/dosbox.h"
|
|
|
|
#include "audio/softsynth/opl/mame.h"
|
2009-05-05 21:47:12 +00:00
|
|
|
|
2009-05-12 18:42:44 +00:00
|
|
|
#include "common/config-manager.h"
|
2011-04-24 11:34:27 +03:00
|
|
|
#include "common/textconsole.h"
|
2010-06-26 15:55:53 +00:00
|
|
|
#include "common/translation.h"
|
2009-05-12 18:42:44 +00:00
|
|
|
|
2009-05-05 21:47:12 +00:00
|
|
|
namespace OPL {
|
|
|
|
|
2009-05-12 18:42:44 +00:00
|
|
|
// Config implementation
|
2009-05-05 21:47:12 +00:00
|
|
|
|
2009-05-12 18:42:44 +00:00
|
|
|
enum OplEmulator {
|
2009-05-12 19:03:54 +00:00
|
|
|
kAuto = 0,
|
2009-05-12 18:53:44 +00:00
|
|
|
kMame = 1,
|
|
|
|
kDOSBox = 2
|
2009-05-12 18:42:44 +00:00
|
|
|
};
|
2009-05-05 21:47:12 +00:00
|
|
|
|
2010-03-08 00:54:05 +00:00
|
|
|
OPL::OPL() {
|
|
|
|
if (_hasInstance)
|
2010-09-18 10:55:16 +00:00
|
|
|
error("There are multiple OPL output instances running");
|
2010-03-08 00:54:05 +00:00
|
|
|
_hasInstance = true;
|
|
|
|
}
|
|
|
|
|
2009-05-12 18:42:44 +00:00
|
|
|
const Config::EmulatorDescription Config::_drivers[] = {
|
2009-05-12 19:03:54 +00:00
|
|
|
{ "auto", "<default>", kAuto, kFlagOpl2 | kFlagDualOpl2 | kFlagOpl3 },
|
2010-06-26 15:48:03 +00:00
|
|
|
{ "mame", _s("MAME OPL emulator"), kMame, kFlagOpl2 },
|
2009-05-12 18:42:44 +00:00
|
|
|
#ifndef DISABLE_DOSBOX_OPL
|
2010-06-26 15:48:03 +00:00
|
|
|
{ "db", _s("DOSBox OPL emulator"), kDOSBox, kFlagOpl2 | kFlagDualOpl2 | kFlagOpl3 },
|
2009-05-05 21:47:12 +00:00
|
|
|
#endif
|
2009-05-12 18:42:44 +00:00
|
|
|
{ 0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
Config::DriverId Config::parse(const Common::String &name) {
|
|
|
|
for (int i = 0; _drivers[i].name; ++i) {
|
|
|
|
if (name.equalsIgnoreCase(_drivers[i].name))
|
|
|
|
return _drivers[i].id;
|
|
|
|
}
|
|
|
|
|
2009-05-12 19:03:54 +00:00
|
|
|
return -1;
|
2009-05-05 21:47:12 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 00:19:01 +02:00
|
|
|
const Config::EmulatorDescription *Config::findDriver(DriverId id) {
|
|
|
|
for (int i = 0; _drivers[i].name; ++i) {
|
|
|
|
if (_drivers[i].id == id)
|
|
|
|
return &_drivers[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-05-12 18:42:44 +00:00
|
|
|
Config::DriverId Config::detect(OplType type) {
|
|
|
|
uint32 flags = 0;
|
|
|
|
switch (type) {
|
|
|
|
case kOpl2:
|
|
|
|
flags = kFlagOpl2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kDualOpl2:
|
|
|
|
flags = kFlagDualOpl2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kOpl3:
|
|
|
|
flags = kFlagOpl3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
DriverId drv = parse(ConfMan.get("opl_driver"));
|
2015-05-30 19:18:29 +02:00
|
|
|
if (drv == kAuto) {
|
|
|
|
// Since the "auto" can be explicitly set for a game, and this
|
|
|
|
// driver shows up in the GUI as "<default>", check if there is
|
|
|
|
// a global setting for it before resorting to auto-detection.
|
|
|
|
drv = parse(ConfMan.get("opl_driver", Common::ConfigManager::kApplicationDomain));
|
|
|
|
}
|
2009-05-12 18:42:44 +00:00
|
|
|
|
|
|
|
// When a valid driver is selected, check whether it supports
|
|
|
|
// the requested OPL chip.
|
2009-05-12 19:03:54 +00:00
|
|
|
if (drv != -1 && drv != kAuto) {
|
2015-05-20 00:19:01 +02:00
|
|
|
const EmulatorDescription *driverDesc = findDriver(drv);
|
2009-05-12 18:42:44 +00:00
|
|
|
// If the chip is supported, just use the driver.
|
2015-05-20 00:19:01 +02:00
|
|
|
if (!driverDesc) {
|
|
|
|
warning("The selected OPL driver %d could not be found", drv);
|
|
|
|
} else if ((flags & driverDesc->flags)) {
|
2009-05-12 18:42:44 +00:00
|
|
|
return drv;
|
2009-11-25 23:02:03 +00:00
|
|
|
} else {
|
|
|
|
// Else we will output a warning and just
|
|
|
|
// return that no valid driver is found.
|
2010-09-18 10:55:16 +00:00
|
|
|
warning("Your selected OPL driver \"%s\" does not support type %d emulation, which is requested by your game", _drivers[drv].description, type);
|
2009-11-25 23:02:03 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2009-05-12 18:42:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Detect the first matching emulator
|
2010-02-03 09:11:55 +00:00
|
|
|
drv = -1;
|
|
|
|
|
2009-05-12 18:42:44 +00:00
|
|
|
for (int i = 1; _drivers[i].name; ++i) {
|
|
|
|
if (_drivers[i].flags & flags) {
|
|
|
|
drv = _drivers[i].id;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return drv;
|
|
|
|
}
|
|
|
|
|
2010-02-03 09:11:55 +00:00
|
|
|
OPL *Config::create(OplType type) {
|
|
|
|
return create(kAuto, type);
|
|
|
|
}
|
|
|
|
|
2009-05-12 18:42:44 +00:00
|
|
|
OPL *Config::create(DriverId driver, OplType type) {
|
2009-05-12 19:03:54 +00:00
|
|
|
// On invalid driver selection, we try to do some fallback detection
|
|
|
|
if (driver == -1) {
|
|
|
|
warning("Invalid OPL driver selected, trying to detect a fallback emulator");
|
|
|
|
driver = kAuto;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If autodetection is selected, we search for a matching
|
|
|
|
// driver.
|
|
|
|
if (driver == kAuto) {
|
2009-05-12 18:42:44 +00:00
|
|
|
driver = detect(type);
|
|
|
|
|
2009-05-12 19:03:54 +00:00
|
|
|
// No emulator for the specified OPL chip could
|
|
|
|
// be found, thus stop here.
|
|
|
|
if (driver == -1) {
|
|
|
|
warning("No OPL emulator available for type %d", type);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (driver) {
|
2009-05-12 18:42:44 +00:00
|
|
|
case kMame:
|
|
|
|
if (type == kOpl2)
|
|
|
|
return new MAME::OPL();
|
|
|
|
else
|
2010-09-18 10:55:16 +00:00
|
|
|
warning("MAME OPL emulator only supports OPL2 emulation");
|
2013-04-28 23:32:23 +03:00
|
|
|
return 0;
|
2009-05-12 18:42:44 +00:00
|
|
|
|
|
|
|
#ifndef DISABLE_DOSBOX_OPL
|
|
|
|
case kDOSBox:
|
|
|
|
return new DOSBox::OPL(type);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
|
|
|
warning("Unsupported OPL emulator %d", driver);
|
|
|
|
// TODO: Maybe we should add some dummy emulator too, which just outputs
|
|
|
|
// silence as sound?
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OPL::_hasInstance = false;
|
|
|
|
|
2009-10-04 21:26:33 +00:00
|
|
|
} // End of namespace OPL
|