2008-05-11 02:10:05 +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
|
|
|
*
|
2008-05-11 02:10:05 +00:00
|
|
|
*/
|
|
|
|
|
2011-10-28 12:27:50 +02:00
|
|
|
#ifndef AUDIO_MUSICPLUGIN_H
|
|
|
|
#define AUDIO_MUSICPLUGIN_H
|
2008-05-11 02:10:05 +00:00
|
|
|
|
|
|
|
#include "base/plugins.h"
|
2011-02-09 01:09:01 +00:00
|
|
|
#include "audio/mididrv.h"
|
2009-01-30 05:25:17 +00:00
|
|
|
#include "common/list.h"
|
2008-05-11 02:10:05 +00:00
|
|
|
|
2011-04-24 11:34:27 +03:00
|
|
|
namespace Common {
|
|
|
|
class Error;
|
|
|
|
}
|
|
|
|
|
2008-06-13 16:04:43 +00:00
|
|
|
class MusicPluginObject;
|
|
|
|
|
2020-11-30 02:54:01 +01:00
|
|
|
/**
|
|
|
|
* @defgroup audio_musicplugin Music devices and plugins
|
|
|
|
* @ingroup audio
|
|
|
|
*
|
|
|
|
* @brief API for managing music devices and music plugins.
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2008-06-13 16:04:43 +00:00
|
|
|
/**
|
|
|
|
* Description of a Music device. Used to list the devices a Music driver
|
|
|
|
* can manage and their capabilities.
|
|
|
|
* A device with an empty name means the default device.
|
|
|
|
*/
|
|
|
|
class MusicDevice {
|
|
|
|
public:
|
|
|
|
MusicDevice(MusicPluginObject const *musicPlugin, Common::String name, MusicType mt);
|
|
|
|
|
GUI: U32: Downscale changes of U32, fix review issues
This commit addresses a range of changes, within scummvm subproject.
- Audio files, like mididrv, remove U32String based name and identifier, because ASCII only.
- mididrv.cpp had some wrong format for warning messages, fix those
- Message dialogs were modified to use default arguments more often, but reverting back to the orignal to minimize changes.
- SetTooltip has a fake constructor that takes in a string, and use it.
- U32Format had some break statements missing, add those.
- RemapWidget: Use fake constructor for setLabel and setTooltip, to make minimal changes
- SDL: setting text in clipboard no longer uses SDL_iconv_string
- TTS: Override base class "say" with strings, so tts->say can be used with normal strings too.
- About dialog: fix incorrect code for u32string variables
- Fix some extra brackets
- Some buttons were incorrectly removed from using translated labels, revert those
- Message Dialog: Pass default and alt buttons as const references
- Saveload Dialog: Use translations in missing places, use const-references. Also, use translations in a correct manner.
- Use const references for tooltip in GraphicsWidget, EditTextWidget, error.cpp
- DomainEditTextWidget: Use U32String for text
2020-07-20 18:06:37 +05:30
|
|
|
const Common::String &getName() const { return _name; }
|
|
|
|
const Common::String &getMusicDriverName() const { return _musicDriverName; }
|
|
|
|
const Common::String &getMusicDriverId() const { return _musicDriverId; }
|
2020-04-17 15:02:00 +09:00
|
|
|
MusicType getMusicType() const { return _type; }
|
2008-06-13 16:04:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a user readable string that contains the name of the current
|
|
|
|
* device name (if it isn't the default one) and the name of the driver.
|
|
|
|
*/
|
GUI: U32: Downscale changes of U32, fix review issues
This commit addresses a range of changes, within scummvm subproject.
- Audio files, like mididrv, remove U32String based name and identifier, because ASCII only.
- mididrv.cpp had some wrong format for warning messages, fix those
- Message dialogs were modified to use default arguments more often, but reverting back to the orignal to minimize changes.
- SetTooltip has a fake constructor that takes in a string, and use it.
- U32Format had some break statements missing, add those.
- RemapWidget: Use fake constructor for setLabel and setTooltip, to make minimal changes
- SDL: setting text in clipboard no longer uses SDL_iconv_string
- TTS: Override base class "say" with strings, so tts->say can be used with normal strings too.
- About dialog: fix incorrect code for u32string variables
- Fix some extra brackets
- Some buttons were incorrectly removed from using translated labels, revert those
- Message Dialog: Pass default and alt buttons as const references
- Saveload Dialog: Use translations in missing places, use const-references. Also, use translations in a correct manner.
- Use const references for tooltip in GraphicsWidget, EditTextWidget, error.cpp
- DomainEditTextWidget: Use U32String for text
2020-07-20 18:06:37 +05:30
|
|
|
Common::String getCompleteName();
|
2010-07-21 18:17:51 +00:00
|
|
|
|
2010-06-21 21:36:36 +00:00
|
|
|
/**
|
|
|
|
* Returns a user readable string that contains the name of the current
|
|
|
|
* device name (if it isn't the default one) and the id of the driver.
|
|
|
|
*/
|
GUI: U32: Downscale changes of U32, fix review issues
This commit addresses a range of changes, within scummvm subproject.
- Audio files, like mididrv, remove U32String based name and identifier, because ASCII only.
- mididrv.cpp had some wrong format for warning messages, fix those
- Message dialogs were modified to use default arguments more often, but reverting back to the orignal to minimize changes.
- SetTooltip has a fake constructor that takes in a string, and use it.
- U32Format had some break statements missing, add those.
- RemapWidget: Use fake constructor for setLabel and setTooltip, to make minimal changes
- SDL: setting text in clipboard no longer uses SDL_iconv_string
- TTS: Override base class "say" with strings, so tts->say can be used with normal strings too.
- About dialog: fix incorrect code for u32string variables
- Fix some extra brackets
- Some buttons were incorrectly removed from using translated labels, revert those
- Message Dialog: Pass default and alt buttons as const references
- Saveload Dialog: Use translations in missing places, use const-references. Also, use translations in a correct manner.
- Use const references for tooltip in GraphicsWidget, EditTextWidget, error.cpp
- DomainEditTextWidget: Use U32String for text
2020-07-20 18:06:37 +05:30
|
|
|
Common::String getCompleteId();
|
2010-06-21 21:36:36 +00:00
|
|
|
|
|
|
|
MidiDriver::DeviceHandle getHandle();
|
2008-06-13 16:04:43 +00:00
|
|
|
|
|
|
|
private:
|
GUI: U32: Downscale changes of U32, fix review issues
This commit addresses a range of changes, within scummvm subproject.
- Audio files, like mididrv, remove U32String based name and identifier, because ASCII only.
- mididrv.cpp had some wrong format for warning messages, fix those
- Message dialogs were modified to use default arguments more often, but reverting back to the orignal to minimize changes.
- SetTooltip has a fake constructor that takes in a string, and use it.
- U32Format had some break statements missing, add those.
- RemapWidget: Use fake constructor for setLabel and setTooltip, to make minimal changes
- SDL: setting text in clipboard no longer uses SDL_iconv_string
- TTS: Override base class "say" with strings, so tts->say can be used with normal strings too.
- About dialog: fix incorrect code for u32string variables
- Fix some extra brackets
- Some buttons were incorrectly removed from using translated labels, revert those
- Message Dialog: Pass default and alt buttons as const references
- Saveload Dialog: Use translations in missing places, use const-references. Also, use translations in a correct manner.
- Use const references for tooltip in GraphicsWidget, EditTextWidget, error.cpp
- DomainEditTextWidget: Use U32String for text
2020-07-20 18:06:37 +05:30
|
|
|
Common::String _name;
|
|
|
|
Common::String _musicDriverName;
|
|
|
|
Common::String _musicDriverId;
|
2008-06-13 16:04:43 +00:00
|
|
|
MusicType _type;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** List of music devices. */
|
|
|
|
typedef Common::List<MusicDevice> MusicDevices;
|
|
|
|
|
2008-05-11 02:10:05 +00:00
|
|
|
/**
|
2008-06-13 14:30:47 +00:00
|
|
|
* A MusicPluginObject is essentially a factory for MidiDriver instances with
|
2008-05-14 05:47:29 +00:00
|
|
|
* the added ability of listing the available devices and their capabilities.
|
2008-05-11 02:10:05 +00:00
|
|
|
*/
|
2008-06-13 14:30:47 +00:00
|
|
|
class MusicPluginObject : public PluginObject {
|
2008-05-11 02:10:05 +00:00
|
|
|
public:
|
2008-06-13 14:30:47 +00:00
|
|
|
virtual ~MusicPluginObject() {}
|
2008-05-11 02:10:05 +00:00
|
|
|
|
2008-05-14 14:56:29 +00:00
|
|
|
/**
|
|
|
|
* Returns a unique string identifier which will be used to save the
|
|
|
|
* selected MIDI driver to the config file.
|
|
|
|
*/
|
|
|
|
virtual const char *getId() const = 0;
|
|
|
|
|
|
|
|
/**
|
2008-06-13 16:04:43 +00:00
|
|
|
* Returns a list of the available devices.
|
2008-05-11 02:10:05 +00:00
|
|
|
*/
|
2008-06-13 16:04:43 +00:00
|
|
|
virtual MusicDevices getDevices() const = 0;
|
2008-05-11 02:10:05 +00:00
|
|
|
|
2011-06-05 18:26:25 +02:00
|
|
|
/**
|
|
|
|
* Checks whether a device can actually be used. Currently this is only
|
|
|
|
* implemented for the MT-32 emulator to check whether the required rom
|
|
|
|
* files are present.
|
|
|
|
*/
|
|
|
|
virtual bool checkDevice(MidiDriver::DeviceHandle) const { return true; }
|
|
|
|
|
2008-05-11 02:10:05 +00:00
|
|
|
/**
|
2010-06-21 21:36:36 +00:00
|
|
|
* Tries to instantiate a MIDI Driver instance based on the device
|
|
|
|
* previously detected via MidiDriver::detectDevice()
|
2008-05-11 02:10:05 +00:00
|
|
|
*
|
2008-06-13 14:30:47 +00:00
|
|
|
* @param mididriver Pointer to a pointer which the MusicPluginObject sets
|
2008-05-14 05:47:29 +00:00
|
|
|
* to the newly create MidiDriver, or 0 in case of an error
|
2010-06-21 21:36:36 +00:00
|
|
|
*
|
|
|
|
* @param dev Pointer to a device to be used then creating the driver instance.
|
|
|
|
* Default value of zero for driver types without devices.
|
|
|
|
*
|
2008-11-05 17:24:56 +00:00
|
|
|
* @return a Common::Error describing the error which occurred, or kNoError
|
2008-05-11 02:10:05 +00:00
|
|
|
*/
|
2010-06-21 21:36:36 +00:00
|
|
|
virtual Common::Error createInstance(MidiDriver **mididriver, MidiDriver::DeviceHandle = 0) const = 0;
|
2008-05-11 02:10:05 +00:00
|
|
|
};
|
|
|
|
|
2008-05-14 14:56:29 +00:00
|
|
|
/**
|
2008-06-13 14:30:47 +00:00
|
|
|
* Singleton class which manages all Music plugins.
|
2008-05-14 14:56:29 +00:00
|
|
|
*/
|
2008-06-13 14:30:47 +00:00
|
|
|
class MusicManager : public Common::Singleton<MusicManager> {
|
2008-05-14 14:56:29 +00:00
|
|
|
private:
|
|
|
|
friend class Common::Singleton<SingletonBaseType>;
|
|
|
|
|
|
|
|
public:
|
2017-11-10 23:06:42 -06:00
|
|
|
const PluginList &getPlugins() const;
|
2008-05-14 14:56:29 +00:00
|
|
|
};
|
|
|
|
|
2008-06-13 14:30:47 +00:00
|
|
|
/** Convenience shortcut for accessing the Music manager. */
|
|
|
|
#define MusicMan MusicManager::instance()
|
2020-11-30 02:54:01 +01:00
|
|
|
/** @} */
|
2008-05-11 02:10:05 +00:00
|
|
|
#endif
|