2020-05-04 17:33:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef AUDIO_OAL
|
|
|
|
#include <AL/al.h>
|
|
|
|
|
2021-01-04 20:46:50 +00:00
|
|
|
#define NUM_STREAMBUFFERS 8
|
2020-05-07 06:26:16 +00:00
|
|
|
|
|
|
|
class IDecoder
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~IDecoder() { }
|
|
|
|
|
|
|
|
virtual bool IsOpened() = 0;
|
|
|
|
|
|
|
|
virtual uint32 GetSampleSize() = 0;
|
|
|
|
virtual uint32 GetSampleCount() = 0;
|
|
|
|
virtual uint32 GetSampleRate() = 0;
|
|
|
|
virtual uint32 GetChannels() = 0;
|
|
|
|
|
|
|
|
uint32 GetAvgSamplesPerSec()
|
|
|
|
{
|
|
|
|
return GetChannels() * GetSampleRate();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 ms2samples(uint32 ms)
|
|
|
|
{
|
2020-10-05 10:59:40 +00:00
|
|
|
return float(ms) / 1000.0f * float(GetSampleRate());
|
2020-05-07 06:26:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32 samples2ms(uint32 sm)
|
|
|
|
{
|
2020-10-05 10:59:40 +00:00
|
|
|
return float(sm) * 1000.0f / float(GetSampleRate());
|
2020-05-07 06:26:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32 GetBufferSamples()
|
|
|
|
{
|
|
|
|
//return (GetAvgSamplesPerSec() >> 2) - (GetSampleCount() % GetChannels());
|
|
|
|
return (GetAvgSamplesPerSec() / 4); // 250ms
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 GetBufferSize()
|
|
|
|
{
|
|
|
|
return GetBufferSamples() * GetSampleSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Seek(uint32 milliseconds) = 0;
|
|
|
|
virtual uint32 Tell() = 0;
|
|
|
|
|
|
|
|
uint32 GetLength()
|
|
|
|
{
|
|
|
|
return float(GetSampleCount()) * 1000.0f / float(GetSampleRate());
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uint32 Decode(void *buffer) = 0;
|
|
|
|
};
|
2020-05-04 17:33:48 +00:00
|
|
|
|
|
|
|
class CStream
|
|
|
|
{
|
|
|
|
char m_aFilename[128];
|
2021-01-04 20:46:50 +00:00
|
|
|
ALuint *m_pAlSources;
|
2020-05-04 17:33:48 +00:00
|
|
|
ALuint (&m_alBuffers)[NUM_STREAMBUFFERS];
|
|
|
|
|
|
|
|
bool m_bPaused;
|
2020-05-07 06:26:16 +00:00
|
|
|
bool m_bActive;
|
2020-05-04 17:33:48 +00:00
|
|
|
|
|
|
|
void *m_pBuffer;
|
|
|
|
|
2020-05-07 06:26:16 +00:00
|
|
|
bool m_bReset;
|
|
|
|
uint32 m_nVolume;
|
|
|
|
uint8 m_nPan;
|
|
|
|
uint32 m_nPosBeforeReset;
|
|
|
|
|
|
|
|
IDecoder *m_pSoundFile;
|
|
|
|
|
|
|
|
bool HasSource();
|
2021-01-04 20:46:50 +00:00
|
|
|
void SetPosition(int i, float x, float y, float z);
|
2020-05-07 06:26:16 +00:00
|
|
|
void SetPitch(float pitch);
|
|
|
|
void SetGain(float gain);
|
|
|
|
void Pause();
|
|
|
|
void SetPlay(bool state);
|
2020-05-04 17:33:48 +00:00
|
|
|
|
2021-01-04 20:46:50 +00:00
|
|
|
bool FillBuffer(ALuint *alBuffer);
|
2020-05-04 17:33:48 +00:00
|
|
|
int32 FillBuffers();
|
2020-05-07 06:26:16 +00:00
|
|
|
void ClearBuffers();
|
2020-05-04 17:33:48 +00:00
|
|
|
public:
|
|
|
|
static void Initialise();
|
|
|
|
static void Terminate();
|
|
|
|
|
2021-01-04 20:46:50 +00:00
|
|
|
CStream(char *filename, ALuint *sources, ALuint (&buffers)[NUM_STREAMBUFFERS]);
|
2020-05-04 17:33:48 +00:00
|
|
|
~CStream();
|
|
|
|
void Delete();
|
|
|
|
|
|
|
|
bool IsOpened();
|
|
|
|
bool IsPlaying();
|
|
|
|
void SetPause (bool bPause);
|
|
|
|
void SetVolume(uint32 nVol);
|
|
|
|
void SetPan (uint8 nPan);
|
2020-05-07 06:26:16 +00:00
|
|
|
void SetPosMS (uint32 nPos);
|
|
|
|
uint32 GetPosMS();
|
|
|
|
uint32 GetLengthMS();
|
2020-05-04 17:33:48 +00:00
|
|
|
|
|
|
|
bool Setup();
|
|
|
|
void Start();
|
2020-05-07 06:26:16 +00:00
|
|
|
void Stop();
|
2020-05-04 17:33:48 +00:00
|
|
|
void Update(void);
|
2020-05-07 06:26:16 +00:00
|
|
|
|
|
|
|
void ProviderInit();
|
|
|
|
void ProviderTerm();
|
2020-05-04 17:33:48 +00:00
|
|
|
};
|
|
|
|
|
2020-10-05 10:59:40 +00:00
|
|
|
#endif
|