summaryrefslogtreecommitdiffstats
path: root/src/audio/oal/channel.h
blob: 0c86bdc623253238a812c657f9630c0cb64015b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#pragma once

#ifdef AUDIO_OAL
#include "oal/oal_utils.h"
#include <AL/al.h>
#include <AL/alext.h>
#include <AL/efx.h>


class CChannel
{
	ALuint alSource;
	ALuint alFilter;
	ALuint alBuffer;
	float  Pitch, Gain;
	float  Mix;
	int32  Frequency;
	float  Position[3];
	float  Distances[2];
	int32  LoopCount;
	ALint  LoopPoints[2];
	uint32 Sample;
public:
	CChannel();
	void SetDefault();
	void Reset();
	void Init(bool Is2D = false);
	void Term();
	void Start();
	void Stop();
	bool HasSource();
	bool IsUsed();
	void SetPitch(float pitch);
	void SetGain(float gain);
	void SetVolume(int32 vol);
	void SetSampleID(uint32 nSfx);
	void SetFreq(int32 freq);
	void SetCurrentFreq(uint32 freq);
	void SetLoopCount(int32 loopCount); // fake
	void SetLoopPoints(ALint start, ALint end);
	void SetPosition(float x, float y, float z);
	void SetDistances(float max, float min);
	void SetPan(uint32 pan);
	void SetBuffer(ALuint buffer);
	void ClearBuffer();
	void SetReverbMix(ALuint slot, float mix);
	void UpdateReverb(ALuint slot);
};

#endif