2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2015-05-24 08:13:02 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "AudioCommon/Mixer.h"
|
|
|
|
#include "AudioCommon/WaveFile.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2015-09-26 21:13:07 +00:00
|
|
|
#include "Common/Logging/Log.h"
|
2009-02-23 06:17:57 +00:00
|
|
|
|
|
|
|
class SoundStream
|
|
|
|
{
|
|
|
|
protected:
|
2015-05-24 08:13:02 +00:00
|
|
|
std::unique_ptr<CMixer> m_mixer;
|
2013-03-20 01:51:12 +00:00
|
|
|
bool m_logAudio;
|
2009-03-27 14:26:44 +00:00
|
|
|
WaveFileWriter g_wave_writer;
|
2009-12-13 11:51:29 +00:00
|
|
|
bool m_muted;
|
2009-03-27 14:26:44 +00:00
|
|
|
|
2013-10-29 05:23:17 +00:00
|
|
|
public:
|
2015-05-24 08:13:02 +00:00
|
|
|
SoundStream() : m_mixer(new CMixer(48000)), m_logAudio(false), m_muted(false) {}
|
|
|
|
virtual ~SoundStream() { }
|
2013-03-20 01:51:12 +00:00
|
|
|
|
2013-10-29 05:23:17 +00:00
|
|
|
static bool isValid() { return false; }
|
2015-05-24 09:03:14 +00:00
|
|
|
CMixer* GetMixer() const { return m_mixer.get(); }
|
2009-03-26 09:29:14 +00:00
|
|
|
virtual bool Start() { return false; }
|
2009-05-18 19:24:46 +00:00
|
|
|
virtual void SetVolume(int) {}
|
2009-03-26 09:29:14 +00:00
|
|
|
virtual void SoundLoop() {}
|
|
|
|
virtual void Stop() {}
|
|
|
|
virtual void Update() {}
|
2009-12-13 11:51:29 +00:00
|
|
|
virtual void Clear(bool mute) { m_muted = mute; }
|
2013-12-11 13:43:58 +00:00
|
|
|
bool IsMuted() const { return m_muted; }
|
2014-08-30 20:29:15 +00:00
|
|
|
|
2015-05-24 10:05:30 +00:00
|
|
|
void StartLogAudio(const std::string& filename)
|
2014-08-30 20:29:15 +00:00
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
if (!m_logAudio)
|
2014-08-30 20:29:15 +00:00
|
|
|
{
|
2009-03-27 14:26:44 +00:00
|
|
|
m_logAudio = true;
|
2011-02-13 05:05:53 +00:00
|
|
|
g_wave_writer.Start(filename, m_mixer->GetSampleRate());
|
2009-03-27 14:26:44 +00:00
|
|
|
g_wave_writer.SetSkipSilence(false);
|
2015-08-10 01:36:00 +00:00
|
|
|
NOTICE_LOG(AUDIO, "Starting Audio logging");
|
2014-08-30 20:29:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-10 01:36:00 +00:00
|
|
|
WARN_LOG(AUDIO, "Audio logging already started");
|
2009-03-27 14:26:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-24 10:05:30 +00:00
|
|
|
void StopLogAudio()
|
2014-08-30 20:29:15 +00:00
|
|
|
{
|
|
|
|
if (m_logAudio)
|
|
|
|
{
|
2009-03-27 14:26:44 +00:00
|
|
|
m_logAudio = false;
|
|
|
|
g_wave_writer.Stop();
|
2015-08-10 01:36:00 +00:00
|
|
|
NOTICE_LOG(AUDIO, "Stopping Audio logging");
|
2014-08-30 20:29:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-10 01:36:00 +00:00
|
|
|
WARN_LOG(AUDIO, "Audio logging already stopped");
|
2009-03-27 14:26:44 +00:00
|
|
|
}
|
|
|
|
}
|
2009-02-23 06:17:57 +00:00
|
|
|
};
|