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/
|
|
|
|
|
|
|
|
/// @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"
|
|
|
|
|
2012-09-24 23:54:20 +02:00
|
|
|
#include "include/aegisub/audio_player.h"
|
2008-03-05 03:43:01 +01:00
|
|
|
#include "audio_player_alsa.h"
|
|
|
|
#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
|
|
|
#include "audio_player_openal.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "audio_player_oss.h"
|
2008-03-05 03:43:01 +01:00
|
|
|
#include "audio_player_portaudio.h"
|
|
|
|
#include "audio_player_pulse.h"
|
2012-01-08 02:33:39 +01:00
|
|
|
|
|
|
|
#include "audio_controller.h"
|
2013-01-07 02:50:09 +01:00
|
|
|
#include "options.h"
|
2006-02-25 05:54:21 +01:00
|
|
|
|
2012-03-20 00:31:33 +01:00
|
|
|
AudioPlayer::AudioPlayer(AudioProvider *provider)
|
|
|
|
: provider(provider)
|
|
|
|
{
|
2006-02-25 05:54:21 +01:00
|
|
|
}
|
|
|
|
|
2013-06-08 06:19:40 +02:00
|
|
|
std::unique_ptr<AudioPlayer> AudioPlayerFactory::GetAudioPlayer(AudioProvider *provider) {
|
2010-08-02 08:31:38 +02:00
|
|
|
std::vector<std::string> list = GetClasses(OPT_GET("Audio/Player")->GetString());
|
2013-11-21 18:13:36 +01:00
|
|
|
if (list.empty()) throw agi::NoAudioPlayersError("No audio players are available.", nullptr);
|
2007-04-22 03:23:25 +02:00
|
|
|
|
2012-01-08 02:33:39 +01:00
|
|
|
std::string error;
|
2012-11-04 04:53:03 +01:00
|
|
|
for (auto const& factory_name : list) {
|
2007-04-22 03:23:25 +02:00
|
|
|
try {
|
2012-11-04 04:53:03 +01:00
|
|
|
return Create(factory_name, provider);
|
2012-01-08 02:33:39 +01:00
|
|
|
}
|
|
|
|
catch (agi::AudioPlayerOpenError const& err) {
|
2012-11-04 04:53:03 +01:00
|
|
|
error += factory_name + " factory: " + err.GetChainedMessage() + "\n";
|
2007-04-22 03:23:25 +02:00
|
|
|
}
|
2006-12-23 03:31:34 +01:00
|
|
|
}
|
2013-11-21 18:13:36 +01:00
|
|
|
throw agi::AudioPlayerOpenError(error, nullptr);
|
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
|
|
|
}
|