mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
39 lines
1 KiB
C++
39 lines
1 KiB
C++
/* (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. */
|
|
#ifndef ENGINE_CLIENT_SOUND_H
|
|
#define ENGINE_CLIENT_SOUND_H
|
|
|
|
#include <engine/sound.h>
|
|
|
|
class CSound : public IEngineSound
|
|
{
|
|
public:
|
|
IEngineGraphics *m_pGraphics;
|
|
IStorage *m_pStorage;
|
|
|
|
virtual int Init();
|
|
|
|
int Update();
|
|
int Shutdown();
|
|
int AllocID();
|
|
|
|
static void RateConvert(int SampleID);
|
|
|
|
// TODO: Refactor: clean this mess up
|
|
static IOHANDLE ms_File;
|
|
static int ReadData(void *pBuffer, int Size);
|
|
|
|
virtual int LoadWV(const char *pFilename);
|
|
|
|
virtual void SetListenerPos(float x, float y);
|
|
virtual void SetChannel(int ChannelID, float Vol, float Pan);
|
|
|
|
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);
|
|
virtual void Stop(int SampleID);
|
|
virtual void StopAll();
|
|
};
|
|
|
|
#endif
|