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
|
|
|
|
|
|
|
#include "Common.h"
|
2009-03-26 03:29:14 -06:00
|
|
|
#include "Mixer.h"
|
2009-03-27 08:26:44 -06:00
|
|
|
#include "WaveFile.h"
|
2009-02-22 23:17:57 -07:00
|
|
|
|
|
|
|
class SoundStream
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
|
2009-03-26 03:29:14 -06: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:
|
2013-10-19 03:27:57 -06:00
|
|
|
SoundStream(CMixer *mixer) : m_mixer(mixer), threadData(0), m_logAudio(false), m_muted(false) {}
|
|
|
|
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; }
|
2009-03-26 03:29:14 -06:00
|
|
|
virtual CMixer *GetMixer() const { return m_mixer; }
|
|
|
|
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; }
|
2009-03-27 08:26:44 -06:00
|
|
|
virtual void StartLogAudio(const char *filename) {
|
|
|
|
if (! m_logAudio) {
|
|
|
|
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");
|
|
|
|
} else {
|
|
|
|
WARN_LOG(DSPHLE, "Audio logging already started");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void StopLogAudio() {
|
|
|
|
if (m_logAudio) {
|
|
|
|
m_logAudio = false;
|
|
|
|
g_wave_writer.Stop();
|
2009-03-30 00:32:58 -06:00
|
|
|
NOTICE_LOG(DSPHLE, "Stopping Audio logging");
|
2009-03-27 08:26:44 -06:00
|
|
|
} else {
|
|
|
|
WARN_LOG(DSPHLE, "Audio logging already stopped");
|
|
|
|
}
|
|
|
|
}
|
2009-02-22 23:17:57 -07:00
|
|
|
};
|