2010-11-20 10:37:14 +00:00
|
|
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
2010-05-29 07:25:38 +00:00
|
|
|
#ifndef ENGINE_CLIENT_SOUND_H
|
|
|
|
#define ENGINE_CLIENT_SOUND_H
|
|
|
|
|
|
|
|
#include <engine/sound.h>
|
|
|
|
|
|
|
|
class CSound : public IEngineSound
|
|
|
|
{
|
2011-06-27 20:57:06 +00:00
|
|
|
int m_SoundEnabled;
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
public:
|
|
|
|
IEngineGraphics *m_pGraphics;
|
|
|
|
IStorage *m_pStorage;
|
|
|
|
|
|
|
|
virtual int Init();
|
|
|
|
|
|
|
|
int Update();
|
|
|
|
int Shutdown();
|
2011-02-12 10:40:36 +00:00
|
|
|
int AllocID();
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2011-02-12 10:40:36 +00:00
|
|
|
static void RateConvert(int SampleID);
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
// TODO: Refactor: clean this mess up
|
|
|
|
static IOHANDLE ms_File;
|
|
|
|
static int ReadData(void *pBuffer, int Size);
|
|
|
|
|
2011-06-27 20:57:06 +00:00
|
|
|
virtual bool IsSoundEnabled() { return m_SoundEnabled != 0; }
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual int LoadWV(const char *pFilename);
|
|
|
|
|
|
|
|
virtual void SetListenerPos(float x, float y);
|
2011-02-12 10:40:36 +00:00
|
|
|
virtual void SetChannel(int ChannelID, float Vol, float Pan);
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2011-02-12 10:40:36 +00:00
|
|
|
int Play(int ChannelID, int SampleID, int Flags, float x, float y);
|
|
|
|
virtual int PlayAt(int ChannelID, int SampleID, int Flags, float x, float y);
|
|
|
|
virtual int Play(int ChannelID, int SampleID, int Flags);
|
2011-04-13 18:00:54 +00:00
|
|
|
virtual void Stop(int SampleID);
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void StopAll();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|