2015-01-11 20:00:56 +00:00
|
|
|
#pragma once
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2017-06-27 09:46:10 +00:00
|
|
|
// This should only be included from WindowsAudio.cpp and DSoundStream.cpp.
|
2012-11-17 22:44:29 +00:00
|
|
|
|
2017-06-27 09:46:10 +00:00
|
|
|
#include "WindowsAudio.h"
|
|
|
|
#include <mmreg.h>
|
|
|
|
#include <dsound.h>
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2017-06-27 09:46:10 +00:00
|
|
|
class DSoundAudioBackend : public WindowsAudioBackend {
|
2015-01-11 20:00:56 +00:00
|
|
|
public:
|
2017-06-27 09:46:10 +00:00
|
|
|
DSoundAudioBackend();
|
|
|
|
~DSoundAudioBackend() override;
|
|
|
|
|
|
|
|
bool Init(HWND window, StreamCallback callback, int sampleRate) override; // If fails, can safely delete the object
|
|
|
|
void Update() override;
|
|
|
|
int GetSampleRate() override { return sampleRate_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
inline int ModBufferSize(int x) { return (x + bufferSize_) % bufferSize_; }
|
|
|
|
int RunThread();
|
|
|
|
static unsigned int WINAPI soundThread(void *param);
|
|
|
|
bool CreateBuffer();
|
|
|
|
bool WriteDataToBuffer(DWORD offset, // Our own write cursor.
|
|
|
|
char* soundData, // Start of our data.
|
|
|
|
DWORD soundBytes); // Size of block to copy.
|
|
|
|
|
|
|
|
CRITICAL_SECTION soundCriticalSection;
|
|
|
|
HWND window_;
|
|
|
|
HANDLE soundSyncEvent_ = nullptr;
|
|
|
|
HANDLE hThread_ = nullptr;
|
|
|
|
|
|
|
|
StreamCallback callback_;
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2017-06-27 09:46:10 +00:00
|
|
|
IDirectSound8 *ds_ = nullptr;
|
|
|
|
IDirectSoundBuffer *dsBuffer_ = nullptr;
|
|
|
|
|
|
|
|
int bufferSize_; // bytes
|
|
|
|
int totalRenderedBytes_;
|
|
|
|
int sampleRate_;
|
|
|
|
|
|
|
|
volatile int threadData_;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
BUFSIZE = 0x4000,
|
|
|
|
MAXWAIT = 20, //ms
|
|
|
|
};
|
|
|
|
|
|
|
|
int currentPos_;
|
|
|
|
int lastPos_;
|
|
|
|
short realtimeBuffer_[BUFSIZE * 2];
|
|
|
|
};
|