2013-04-17 21:09:55 -06:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-02-22 23:17:57 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-02-22 23:17:57 -07:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "AudioCommon/Mixer.h"
|
|
|
|
#include "AudioCommon/WaveFile.h"
|
2014-09-07 19:06:58 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
2009-02-22 23:17:57 -07:00
|
|
|
|
|
|
|
class SoundStream
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
|
2014-11-13 19:28:27 -07:00
|
|
|
CMixer* m_mixer;
|
2013-03-19 19:51:12 -06:00
|
|
|
// We set this to shut down the sound thread.
|
|
|
|
// 0=keep playing, 1=stop playing NOW.
|
|
|
|
volatile int threadData;
|
|
|
|
bool m_logAudio;
|
2009-03-27 08:26:44 -06:00
|
|
|
WaveFileWriter g_wave_writer;
|
2009-12-13 04:51:29 -07:00
|
|
|
bool m_muted;
|
2009-03-27 08:26:44 -06:00
|
|
|
|
2013-10-28 23:23:17 -06:00
|
|
|
public:
|
2014-11-13 19:28:27 -07:00
|
|
|
SoundStream(CMixer* mixer) : m_mixer(mixer), threadData(0), m_logAudio(false), m_muted(false) {}
|
2013-10-19 03:27:57 -06:00
|
|
|
virtual ~SoundStream() { delete m_mixer; }
|
2013-03-19 19:51:12 -06:00
|
|
|
|
2013-10-28 23:23:17 -06:00
|
|
|
static bool isValid() { return false; }
|
2014-11-13 19:28:27 -07:00
|
|
|
virtual CMixer* GetMixer() const { return m_mixer; }
|
2009-03-26 03:29:14 -06:00
|
|
|
virtual bool Start() { return false; }
|
2009-05-18 13:24:46 -06:00
|
|
|
virtual void SetVolume(int) {}
|
2009-03-26 03:29:14 -06:00
|
|
|
virtual void SoundLoop() {}
|
|
|
|
virtual void Stop() {}
|
|
|
|
virtual void Update() {}
|
2009-12-13 04:51:29 -07:00
|
|
|
virtual void Clear(bool mute) { m_muted = mute; }
|
2013-12-11 06:43:58 -07:00
|
|
|
bool IsMuted() const { return m_muted; }
|
2014-08-30 14:29:15 -06:00
|
|
|
|
2014-09-06 21:20:31 -06:00
|
|
|
virtual void StartLogAudio(const std::string& filename)
|
2014-08-30 14:29:15 -06:00
|
|
|
{
|
2014-11-13 19:28:27 -07:00
|
|
|
if (!m_logAudio)
|
2014-08-30 14:29:15 -06:00
|
|
|
{
|
2009-03-27 08:26:44 -06:00
|
|
|
m_logAudio = true;
|
2011-02-12 22:05:53 -07:00
|
|
|
g_wave_writer.Start(filename, m_mixer->GetSampleRate());
|
2009-03-27 08:26:44 -06:00
|
|
|
g_wave_writer.SetSkipSilence(false);
|
|
|
|
NOTICE_LOG(DSPHLE, "Starting Audio logging");
|
2014-08-30 14:29:15 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-03-27 08:26:44 -06:00
|
|
|
WARN_LOG(DSPHLE, "Audio logging already started");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-30 14:29:15 -06:00
|
|
|
virtual void StopLogAudio()
|
|
|
|
{
|
|
|
|
if (m_logAudio)
|
|
|
|
{
|
2009-03-27 08:26:44 -06:00
|
|
|
m_logAudio = false;
|
|
|
|
g_wave_writer.Stop();
|
2009-03-30 00:32:58 -06:00
|
|
|
NOTICE_LOG(DSPHLE, "Stopping Audio logging");
|
2014-08-30 14:29:15 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-03-27 08:26:44 -06:00
|
|
|
WARN_LOG(DSPHLE, "Audio logging already stopped");
|
|
|
|
}
|
|
|
|
}
|
2009-02-22 23:17:57 -07:00
|
|
|
};
|