2010-12-08 04:36:10 +01:00
|
|
|
// Copyright (c) 2009-2010, Niels Martin Hansen
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include "audio_controller.h"
|
2011-01-16 08:18:00 +01:00
|
|
|
|
2010-12-08 04:36:10 +01:00
|
|
|
#include "audio_timing.h"
|
2011-07-15 06:04:13 +02:00
|
|
|
#include "include/aegisub/audio_player.h"
|
2011-09-28 21:51:35 +02:00
|
|
|
#include "include/aegisub/context.h"
|
2013-01-07 02:50:09 +01:00
|
|
|
#include "options.h"
|
2014-05-22 01:23:28 +02:00
|
|
|
#include "project.h"
|
2013-01-04 16:01:50 +01:00
|
|
|
|
2014-07-09 16:22:49 +02:00
|
|
|
#include <libaegisub/audio/provider.h>
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <algorithm>
|
|
|
|
|
2011-09-28 21:51:35 +02:00
|
|
|
AudioController::AudioController(agi::Context *context)
|
|
|
|
: context(context)
|
2010-12-08 04:36:10 +01:00
|
|
|
, playback_timer(this)
|
2014-05-22 01:23:28 +02:00
|
|
|
, provider_connection(context->project->AddAudioProviderListener(&AudioController::OnAudioProvider, this))
|
2010-12-08 04:36:10 +01:00
|
|
|
{
|
2011-01-01 00:53:36 +01:00
|
|
|
Bind(wxEVT_TIMER, &AudioController::OnPlaybackTimer, this, playback_timer.GetId());
|
2010-12-08 04:36:10 +01:00
|
|
|
|
|
|
|
#ifdef wxHAS_POWER_EVENTS
|
2011-01-01 00:53:36 +01:00
|
|
|
Bind(wxEVT_POWER_SUSPENDED, &AudioController::OnComputerSuspending, this);
|
|
|
|
Bind(wxEVT_POWER_RESUME, &AudioController::OnComputerResuming, this);
|
2010-12-08 04:36:10 +01:00
|
|
|
#endif
|
2011-11-19 02:14:42 +01:00
|
|
|
|
|
|
|
OPT_SUB("Audio/Player", &AudioController::OnAudioPlayerChanged, this);
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioController::~AudioController()
|
|
|
|
{
|
2014-05-22 01:23:28 +02:00
|
|
|
Stop();
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
2011-12-22 22:09:31 +01:00
|
|
|
void AudioController::OnPlaybackTimer(wxTimerEvent &)
|
2010-12-08 04:36:10 +01:00
|
|
|
{
|
2014-05-22 01:23:28 +02:00
|
|
|
if (!player) return;
|
2010-12-08 04:36:10 +01:00
|
|
|
|
2014-05-22 01:23:28 +02:00
|
|
|
int64_t pos = player->GetCurrentPosition();
|
2010-12-08 04:36:10 +01:00
|
|
|
if (!player->IsPlaying() ||
|
|
|
|
(playback_mode != PM_ToEnd && pos >= player->GetEndPosition()+200))
|
|
|
|
{
|
2011-01-01 00:53:36 +01:00
|
|
|
// The +200 is to allow the player to end the sound output cleanly,
|
|
|
|
// otherwise a popping artifact can sometimes be heard.
|
2010-12-08 04:36:10 +01:00
|
|
|
Stop();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-02-02 00:58:58 +01:00
|
|
|
AnnouncePlaybackPosition(MillisecondsFromSamples(pos));
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef wxHAS_POWER_EVENTS
|
2011-12-22 22:09:31 +01:00
|
|
|
void AudioController::OnComputerSuspending(wxPowerEvent &)
|
2010-12-08 04:36:10 +01:00
|
|
|
{
|
|
|
|
Stop();
|
2013-06-08 06:19:40 +02:00
|
|
|
player.reset();
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
2011-12-22 22:09:31 +01:00
|
|
|
void AudioController::OnComputerResuming(wxPowerEvent &)
|
2010-12-08 04:36:10 +01:00
|
|
|
{
|
2014-05-22 01:23:28 +02:00
|
|
|
OnAudioPlayerChanged();
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-11-19 02:14:42 +01:00
|
|
|
void AudioController::OnAudioPlayerChanged()
|
|
|
|
{
|
2014-05-22 01:23:28 +02:00
|
|
|
if (!provider) return;
|
2011-11-19 02:14:42 +01:00
|
|
|
|
|
|
|
Stop();
|
2013-06-08 06:19:40 +02:00
|
|
|
player.reset();
|
2011-11-19 02:14:42 +01:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2014-05-22 01:23:28 +02:00
|
|
|
player = AudioPlayerFactory::GetAudioPlayer(provider, context->parent);
|
2011-11-19 02:14:42 +01:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
2014-07-09 16:22:49 +02:00
|
|
|
/// @todo This really shouldn't be just swallowing all audio player open errors
|
2014-05-22 01:23:28 +02:00
|
|
|
context->project->CloseAudio();
|
2011-11-19 02:14:42 +01:00
|
|
|
}
|
2014-06-03 16:07:12 +02:00
|
|
|
AnnounceAudioPlayerOpened();
|
2011-11-19 02:14:42 +01:00
|
|
|
}
|
|
|
|
|
2014-07-09 16:22:49 +02:00
|
|
|
void AudioController::OnAudioProvider(agi::AudioProvider *new_provider)
|
2010-12-08 04:36:10 +01:00
|
|
|
{
|
2014-05-22 01:23:28 +02:00
|
|
|
provider = new_provider;
|
2010-12-08 04:36:10 +01:00
|
|
|
Stop();
|
2013-06-08 06:19:40 +02:00
|
|
|
player.reset();
|
2014-05-22 01:23:28 +02:00
|
|
|
OnAudioPlayerChanged();
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
2014-04-23 01:21:53 +02:00
|
|
|
void AudioController::SetTimingController(std::unique_ptr<AudioTimingController> new_controller)
|
2010-12-08 04:36:10 +01:00
|
|
|
{
|
2014-04-23 01:21:53 +02:00
|
|
|
timing_controller = std::move(new_controller);
|
|
|
|
if (timing_controller)
|
|
|
|
timing_controller->AddUpdatedPrimaryRangeListener(&AudioController::OnTimingControllerUpdatedPrimaryRange, this);
|
2010-12-08 09:09:16 +01:00
|
|
|
|
|
|
|
AnnounceTimingControllerChanged();
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
2010-12-08 09:09:16 +01:00
|
|
|
void AudioController::OnTimingControllerUpdatedPrimaryRange()
|
2010-12-08 04:36:10 +01:00
|
|
|
{
|
|
|
|
if (playback_mode == PM_PrimaryRange)
|
2012-02-12 05:16:21 +01:00
|
|
|
player->SetEndPosition(SamplesFromMilliseconds(timing_controller->GetPrimaryPlaybackRange().end()));
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
2012-02-02 00:58:58 +01:00
|
|
|
void AudioController::PlayRange(const TimeRange &range)
|
2010-12-08 04:36:10 +01:00
|
|
|
{
|
2014-05-22 01:23:28 +02:00
|
|
|
if (!player) return;
|
2010-12-08 04:36:10 +01:00
|
|
|
|
2012-02-02 00:58:58 +01:00
|
|
|
player->Play(SamplesFromMilliseconds(range.begin()), SamplesFromMilliseconds(range.length()));
|
2010-12-08 04:36:10 +01:00
|
|
|
playback_mode = PM_Range;
|
|
|
|
playback_timer.Start(20);
|
|
|
|
|
2010-12-08 09:09:16 +01:00
|
|
|
AnnouncePlaybackPosition(range.begin());
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioController::PlayPrimaryRange()
|
|
|
|
{
|
|
|
|
PlayRange(GetPrimaryPlaybackRange());
|
|
|
|
if (playback_mode == PM_Range)
|
|
|
|
playback_mode = PM_PrimaryRange;
|
|
|
|
}
|
|
|
|
|
2012-02-02 00:58:58 +01:00
|
|
|
void AudioController::PlayToEndOfPrimary(int start_ms)
|
2011-12-27 03:23:04 +01:00
|
|
|
{
|
2012-02-02 00:58:58 +01:00
|
|
|
PlayRange(TimeRange(start_ms, GetPrimaryPlaybackRange().end()));
|
|
|
|
if (playback_mode == PM_Range)
|
|
|
|
playback_mode = PM_PrimaryRange;
|
2011-12-27 03:23:04 +01:00
|
|
|
}
|
2010-12-08 04:36:10 +01:00
|
|
|
|
2012-02-02 00:58:58 +01:00
|
|
|
void AudioController::PlayToEnd(int start_ms)
|
2010-12-08 04:36:10 +01:00
|
|
|
{
|
2014-05-22 01:23:28 +02:00
|
|
|
if (!player) return;
|
2010-12-08 04:36:10 +01:00
|
|
|
|
2012-02-02 00:58:58 +01:00
|
|
|
int64_t start_sample = SamplesFromMilliseconds(start_ms);
|
2010-12-08 04:36:10 +01:00
|
|
|
player->Play(start_sample, provider->GetNumSamples()-start_sample);
|
|
|
|
playback_mode = PM_ToEnd;
|
|
|
|
playback_timer.Start(20);
|
|
|
|
|
2012-02-02 00:58:58 +01:00
|
|
|
AnnouncePlaybackPosition(start_ms);
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioController::Stop()
|
|
|
|
{
|
2014-05-22 01:23:28 +02:00
|
|
|
if (!player) return;
|
2010-12-08 04:36:10 +01:00
|
|
|
|
|
|
|
player->Stop();
|
|
|
|
playback_mode = PM_NotPlaying;
|
|
|
|
playback_timer.Stop();
|
|
|
|
|
2010-12-08 09:09:16 +01:00
|
|
|
AnnouncePlaybackStop();
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioController::IsPlaying()
|
|
|
|
{
|
2014-05-22 01:23:28 +02:00
|
|
|
return player && playback_mode != PM_NotPlaying;
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
2012-02-02 00:58:58 +01:00
|
|
|
int AudioController::GetPlaybackPosition()
|
2010-12-08 04:36:10 +01:00
|
|
|
{
|
|
|
|
if (!IsPlaying()) return 0;
|
|
|
|
|
2012-02-02 00:58:58 +01:00
|
|
|
return MillisecondsFromSamples(player->GetCurrentPosition());
|
|
|
|
}
|
|
|
|
|
|
|
|
int AudioController::GetDuration() const
|
|
|
|
{
|
|
|
|
if (!provider) return 0;
|
|
|
|
return (provider->GetNumSamples() * 1000 + provider->GetSampleRate() - 1) / provider->GetSampleRate();
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
2012-02-02 00:58:58 +01:00
|
|
|
TimeRange AudioController::GetPrimaryPlaybackRange() const
|
2010-12-08 04:36:10 +01:00
|
|
|
{
|
2011-11-18 23:58:22 +01:00
|
|
|
if (timing_controller)
|
2010-12-08 04:36:10 +01:00
|
|
|
return timing_controller->GetPrimaryPlaybackRange();
|
|
|
|
else
|
2014-05-22 01:23:28 +02:00
|
|
|
return TimeRange{0, 0};
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioController::SetVolume(double volume)
|
|
|
|
{
|
2014-05-22 01:23:28 +02:00
|
|
|
if (!player) return;
|
2010-12-08 04:36:10 +01:00
|
|
|
player->SetVolume(volume);
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t AudioController::SamplesFromMilliseconds(int64_t ms) const
|
|
|
|
{
|
|
|
|
if (!provider) return 0;
|
2014-05-22 01:23:28 +02:00
|
|
|
return (ms * provider->GetSampleRate() + 999) / 1000;
|
2010-12-08 04:36:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int64_t AudioController::MillisecondsFromSamples(int64_t samples) const
|
|
|
|
{
|
|
|
|
if (!provider) return 0;
|
2014-05-22 01:23:28 +02:00
|
|
|
return samples * 1000 / provider->GetSampleRate();
|
2011-01-16 08:18:00 +01:00
|
|
|
}
|