Increase the default maximum number of sends to 2
[openal-soft.git] / OpenAL32 / Include / alSource.h
blob28a85029cf09fcd3535991d37d6c8d8baa02d6f3
1 #ifndef _AL_SOURCE_H_
2 #define _AL_SOURCE_H_
4 #define AL_NUM_SOURCE_PARAMS 128
6 #define MAX_SENDS 2
8 #include "alFilter.h"
9 #include "alu.h"
10 #include "AL/al.h"
12 #define AL_DIRECT_FILTER 0x20005
13 #define AL_AUXILIARY_SEND_FILTER 0x20006
14 #define AL_AIR_ABSORPTION_FACTOR 0x20007
15 #define AL_ROOM_ROLLOFF_FACTOR 0x20008
16 #define AL_CONE_OUTER_GAINHF 0x20009
17 #define AL_DIRECT_FILTER_GAINHF_AUTO 0x2000A
18 #define AL_AUXILIARY_SEND_FILTER_GAIN_AUTO 0x2000B
19 #define AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO 0x2000C
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
25 typedef struct ALbufferlistitem
27 ALuint buffer;
28 ALuint bufferstate;
29 ALuint flag;
30 struct ALbufferlistitem *next;
31 } ALbufferlistitem;
33 typedef struct ALsource
35 ALfloat flPitch;
36 ALfloat flGain;
37 ALfloat flOuterGain;
38 ALfloat flMinGain;
39 ALfloat flMaxGain;
40 ALfloat flInnerAngle;
41 ALfloat flOuterAngle;
42 ALfloat flRefDistance;
43 ALfloat flMaxDistance;
44 ALfloat flRollOffFactor;
45 ALfloat vPosition[3];
46 ALfloat vVelocity[3];
47 ALfloat vOrientation[3];
48 ALboolean bHeadRelative;
49 ALboolean bLooping;
50 ALenum DistanceModel;
52 ALuint ulBufferID;
54 ALboolean inuse;
55 ALboolean play;
56 ALenum state;
57 ALuint position;
58 ALuint position_fraction;
60 struct ALbufferlistitem *queue; // Linked list of buffers in queue
61 ALuint BuffersInQueue; // Number of buffers in queue
63 ALuint TotalBufferDataSize; // Total amount of data contained in the buffers queued for this source
64 ALuint BuffersPlayed; // Number of buffers played on this loop
66 ALfilter DirectFilter;
68 struct {
69 struct ALeffectslot *Slot;
70 ALfilter WetFilter;
71 FILTER iirFilter;
72 } Send[MAX_SENDS];
74 ALboolean DryGainHFAuto;
75 ALboolean WetGainAuto;
76 ALboolean WetGainHFAuto;
77 ALfloat OuterGainHF;
79 FILTER iirFilter;
81 ALfloat AirAbsorptionFactor;
83 ALfloat RoomRolloffFactor;
85 ALfloat DopplerFactor;
87 // Index to itself
88 ALuint source;
90 ALint lOffset;
91 ALint lOffsetType;
93 // Source Type (Static, Streaming, or Undetermined)
94 ALint lSourceType;
96 // Current gains, which are ramped while mixed
97 ALfloat DryGains[OUTPUTCHANNELS];
98 ALfloat WetGains[MAX_SENDS];
99 ALboolean FirstStart;
101 struct ALsource *next;
102 } ALsource;
104 ALvoid ReleaseALSources(ALCcontext *Context);
106 #ifdef __cplusplus
108 #endif
110 #endif