2009-01-29 00:57:55 +00:00
|
|
|
// Copyright (C) 2003-2009 Dolphin Project.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
#ifndef _DSOUNDSTREAM_H_
|
|
|
|
#define _DSOUNDSTREAM_H_
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
#include "SoundStream.h"
|
2009-01-29 00:57:55 +00:00
|
|
|
#include "Thread.h"
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <mmsystem.h>
|
|
|
|
#include <dsound.h>
|
|
|
|
|
|
|
|
#define BUFSIZE 32768
|
2009-03-28 08:57:34 +00:00
|
|
|
#define MAXWAIT 70 // miliseconds
|
2009-01-29 00:57:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
class DSound : public SoundStream
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
2009-03-28 16:23:06 +00:00
|
|
|
#ifdef _WIN32
|
2009-01-29 00:57:55 +00:00
|
|
|
Common::Thread *thread;
|
2009-02-23 19:47:58 +00:00
|
|
|
Common::CriticalSection soundCriticalSection;
|
|
|
|
Common::Event soundSyncEvent;
|
2009-01-29 00:57:55 +00:00
|
|
|
void *hWnd;
|
|
|
|
|
|
|
|
IDirectSound8* ds;
|
|
|
|
IDirectSoundBuffer* dsBuffer;
|
|
|
|
|
|
|
|
int bufferSize; //i bytes
|
|
|
|
int totalRenderedBytes;
|
2009-05-18 19:24:46 +00:00
|
|
|
int m_volume;
|
2009-01-29 00:57:55 +00:00
|
|
|
|
|
|
|
// playback position
|
|
|
|
int currentPos;
|
|
|
|
int lastPos;
|
|
|
|
short realtimeBuffer[1024 * 1024];
|
|
|
|
|
|
|
|
inline int FIX128(int x) {
|
2009-02-20 22:04:52 +00:00
|
|
|
return x & (~127);
|
2009-01-29 00:57:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline int ModBufferSize(int x) {
|
2009-02-20 22:04:52 +00:00
|
|
|
return (x + bufferSize) % bufferSize;
|
2009-01-29 00:57:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CreateBuffer();
|
|
|
|
bool WriteDataToBuffer(DWORD dwOffset, char* soundData,
|
|
|
|
DWORD dwSoundBytes);
|
|
|
|
|
2009-02-20 22:04:52 +00:00
|
|
|
public:
|
2009-03-28 16:23:06 +00:00
|
|
|
DSound(CMixer *mixer, void *hWnd = NULL)
|
|
|
|
: SoundStream(mixer)
|
|
|
|
, bufferSize(0)
|
|
|
|
, totalRenderedBytes(0)
|
|
|
|
, currentPos(0)
|
|
|
|
, lastPos(0)
|
2009-06-03 20:09:48 +00:00
|
|
|
, dsBuffer(0)
|
|
|
|
, ds(0)
|
2009-03-28 16:23:06 +00:00
|
|
|
{}
|
2009-03-26 09:29:14 +00:00
|
|
|
|
2009-01-29 00:57:55 +00:00
|
|
|
virtual ~DSound() {}
|
2009-02-20 22:04:52 +00:00
|
|
|
|
|
|
|
virtual bool Start();
|
2009-01-29 00:57:55 +00:00
|
|
|
virtual void SoundLoop();
|
2009-05-18 19:24:46 +00:00
|
|
|
virtual void SetVolume(int volume);
|
2009-01-29 00:57:55 +00:00
|
|
|
virtual void Stop();
|
|
|
|
static bool isValid() { return true; }
|
2009-02-20 22:04:52 +00:00
|
|
|
virtual bool usesMixer() const { return true; }
|
2009-01-29 00:57:55 +00:00
|
|
|
virtual void Update();
|
2009-03-28 16:23:06 +00:00
|
|
|
|
|
|
|
#else
|
2009-03-28 16:27:38 +00:00
|
|
|
public:
|
|
|
|
DSound(CMixer *mixer, void *hWnd = NULL)
|
|
|
|
: SoundStream(mixer)
|
|
|
|
{}
|
2009-03-28 16:23:06 +00:00
|
|
|
#endif
|
2009-01-29 00:57:55 +00:00
|
|
|
};
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
#endif //_DSOUNDSTREAM_H_
|