2007-04-22 03:23:25 +02:00
|
|
|
// Copyright (c) 2005-2007, Rodrigo Braz Monteiro
|
2006-02-25 05:54:21 +01:00
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
2006-02-25 05:54:21 +01:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file audio_player.cpp
|
|
|
|
/// @brief Baseclass for audio players
|
|
|
|
/// @ingroup audio_output
|
|
|
|
///
|
2006-02-25 05:54:21 +01:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2008-03-05 03:43:01 +01:00
|
|
|
#ifdef WITH_ALSA
|
|
|
|
#include "audio_player_alsa.h"
|
|
|
|
#endif
|
|
|
|
#ifdef WITH_DIRECTSOUND
|
|
|
|
#include "audio_player_dsound.h"
|
2008-11-27 19:35:26 +01:00
|
|
|
#include "audio_player_dsound2.h"
|
2008-03-05 03:43:01 +01:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_OPENAL
|
|
|
|
#include "audio_player_openal.h"
|
|
|
|
#endif
|
2009-09-10 15:06:40 +02:00
|
|
|
#ifdef WITH_OSS
|
|
|
|
#include "audio_player_oss.h"
|
|
|
|
#endif
|
2008-03-05 03:43:01 +01:00
|
|
|
#ifdef WITH_PORTAUDIO
|
|
|
|
#include "audio_player_portaudio.h"
|
|
|
|
#endif
|
2011-12-22 22:25:49 +01:00
|
|
|
#ifdef WITH_LIBPULSE
|
2008-03-05 03:43:01 +01:00
|
|
|
#include "audio_player_pulse.h"
|
|
|
|
#endif
|
2012-01-08 02:33:39 +01:00
|
|
|
|
|
|
|
#include "audio_controller.h"
|
2010-05-21 03:13:36 +02:00
|
|
|
#include "compat.h"
|
|
|
|
#include "main.h"
|
2006-02-25 05:54:21 +01:00
|
|
|
|
|
|
|
AudioPlayer::AudioPlayer() {
|
|
|
|
provider = NULL;
|
2006-02-25 07:04:46 +01:00
|
|
|
displayTimer = NULL;
|
2006-02-25 05:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioPlayer::~AudioPlayer() {
|
2006-02-25 07:04:46 +01:00
|
|
|
if (displayTimer) {
|
|
|
|
displayTimer->Stop();
|
|
|
|
}
|
2006-02-25 05:54:21 +01:00
|
|
|
}
|
|
|
|
|
2010-08-02 08:31:38 +02:00
|
|
|
AudioPlayer* AudioPlayerFactory::GetAudioPlayer() {
|
|
|
|
std::vector<std::string> list = GetClasses(OPT_GET("Audio/Player")->GetString());
|
2012-01-08 02:33:39 +01:00
|
|
|
if (list.empty()) throw agi::NoAudioPlayersError("No audio players are available.", 0);
|
2007-04-22 03:23:25 +02:00
|
|
|
|
2012-01-08 02:33:39 +01:00
|
|
|
std::string error;
|
|
|
|
for (size_t i = 0; i < list.size(); ++i) {
|
2007-04-22 03:23:25 +02:00
|
|
|
try {
|
2012-01-08 02:33:39 +01:00
|
|
|
return Create(list[i]);
|
|
|
|
}
|
|
|
|
catch (agi::AudioPlayerOpenError const& err) {
|
|
|
|
error += list[i] + " factory: " + err.GetChainedMessage() + "\n";
|
2007-04-22 03:23:25 +02:00
|
|
|
}
|
2006-12-23 03:31:34 +01:00
|
|
|
}
|
2012-01-08 02:33:39 +01:00
|
|
|
throw agi::AudioPlayerOpenError(error, 0);
|
2006-02-25 08:41:18 +01:00
|
|
|
}
|
2007-04-22 03:23:25 +02:00
|
|
|
|
2010-08-02 08:31:38 +02:00
|
|
|
void AudioPlayerFactory::RegisterProviders() {
|
2008-03-05 03:43:01 +01:00
|
|
|
#ifdef WITH_ALSA
|
2010-08-02 08:31:38 +02:00
|
|
|
Register<AlsaPlayer>("ALSA");
|
2008-03-05 03:43:01 +01:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_DIRECTSOUND
|
2010-08-02 08:31:38 +02:00
|
|
|
Register<DirectSoundPlayer>("DirectSound-old");
|
|
|
|
Register<DirectSoundPlayer2>("DirectSound");
|
2008-03-05 03:43:01 +01:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_OPENAL
|
2010-08-02 08:31:38 +02:00
|
|
|
Register<OpenALPlayer>("OpenAL");
|
2008-03-05 03:43:01 +01:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_PORTAUDIO
|
2010-08-02 08:31:38 +02:00
|
|
|
Register<PortAudioPlayer>("PortAudio");
|
2008-03-05 03:43:01 +01:00
|
|
|
#endif
|
2011-12-22 22:25:49 +01:00
|
|
|
#ifdef WITH_LIBPULSE
|
2010-08-02 08:31:38 +02:00
|
|
|
Register<PulseAudioPlayer>("PulseAudio");
|
2008-03-05 03:43:01 +01:00
|
|
|
#endif
|
2009-09-09 00:06:07 +02:00
|
|
|
#ifdef WITH_OSS
|
2010-08-02 08:31:38 +02:00
|
|
|
Register<OSSPlayer>("OSS");
|
2009-09-09 00:06:07 +02:00
|
|
|
#endif
|
2008-03-05 03:43:01 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 01:08:29 +02:00
|
|
|
std::string AudioPlayerFactory::GetDefault() {
|
|
|
|
std::string def = OPT_GET("Audio/Player")->GetString();
|
|
|
|
if (!def.empty())
|
|
|
|
return def;
|
|
|
|
#ifdef DEFAULT_PLAYER_AUDIO
|
|
|
|
return DEFAULT_PLAYER_AUDIO;
|
|
|
|
#else
|
|
|
|
return "DirectSound";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-08-02 08:31:38 +02:00
|
|
|
template<> AudioPlayerFactory::map *FactoryBase<AudioPlayer *(*)()>::classes = NULL;
|