ddnet/src/game/client/components/sounds.h

39 lines
797 B
C
Raw Normal View History

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 GAME_CLIENT_COMPONENTS_SOUNDS_H
#define GAME_CLIENT_COMPONENTS_SOUNDS_H
#include <game/client/component.h>
class CSounds : public CComponent
{
enum
{
QUEUE_SIZE = 32,
};
int m_aQueue[QUEUE_SIZE];
int m_QueuePos;
int64 m_QueueWaitTime;
public:
// sound channels
enum
{
CHN_GUI=0,
CHN_MUSIC,
CHN_WORLD,
CHN_GLOBAL,
};
virtual void OnInit();
virtual void OnReset();
virtual void OnRender();
void ClearQueue();
void Enqueue(int SetId);
void Play(int Channel, int SetId, float Vol, vec2 Pos);
void PlayAndRecord(int Channel, int SetId, float Vol, vec2 Pos);
};
#endif