etlegacy-libs/openal/OpenAL32/Include/alSource.h

129 lines
3 KiB
C
Raw Normal View History

2015-12-12 21:07:33 +00:00
#ifndef _AL_SOURCE_H_
#define _AL_SOURCE_H_
2017-07-01 14:18:03 +00:00
#include "bool.h"
2015-12-12 21:07:33 +00:00
#include "alMain.h"
#include "alu.h"
#include "hrtf.h"
2017-07-01 14:18:03 +00:00
#include "atomic.h"
#define MAX_SENDS 16
#define DEFAULT_SENDS 2
2015-12-12 21:07:33 +00:00
#ifdef __cplusplus
extern "C" {
#endif
struct ALbuffer;
struct ALsource;
typedef struct ALbufferlistitem {
struct ALbuffer *buffer;
2017-07-01 14:18:03 +00:00
ATOMIC(struct ALbufferlistitem*) next;
2015-12-12 21:07:33 +00:00
} ALbufferlistitem;
typedef struct ALsource {
/** Source properties. */
2017-07-01 14:18:03 +00:00
ALfloat Pitch;
ALfloat Gain;
ALfloat OuterGain;
ALfloat MinGain;
ALfloat MaxGain;
ALfloat InnerAngle;
ALfloat OuterAngle;
ALfloat RefDistance;
ALfloat MaxDistance;
ALfloat RolloffFactor;
ALfloat Position[3];
ALfloat Velocity[3];
ALfloat Direction[3];
ALfloat Orientation[2][3];
ALboolean HeadRelative;
ALboolean Looping;
enum DistanceModel DistanceModel;
enum Resampler Resampler;
ALboolean DirectChannels;
enum SpatializeMode Spatialize;
ALboolean DryGainHFAuto;
ALboolean WetGainAuto;
ALboolean WetGainHFAuto;
ALfloat OuterGainHF;
ALfloat AirAbsorptionFactor;
ALfloat RoomRolloffFactor;
ALfloat DopplerFactor;
/* NOTE: Stereo pan angles are specified in radians, counter-clockwise
* rather than clockwise.
2015-12-12 21:07:33 +00:00
*/
2017-07-01 14:18:03 +00:00
ALfloat StereoPan[2];
2015-12-12 21:07:33 +00:00
2017-07-01 14:18:03 +00:00
ALfloat Radius;
2015-12-12 21:07:33 +00:00
/** Direct filter and auxiliary send info. */
struct {
ALfloat Gain;
ALfloat GainHF;
ALfloat HFReference;
ALfloat GainLF;
ALfloat LFReference;
} Direct;
struct {
struct ALeffectslot *Slot;
ALfloat Gain;
ALfloat GainHF;
ALfloat HFReference;
ALfloat GainLF;
ALfloat LFReference;
2017-07-01 14:18:03 +00:00
} *Send;
/**
* Last user-specified offset, and the offset type (bytes, samples, or
* seconds).
*/
ALdouble Offset;
ALenum OffsetType;
/** Source type (static, streaming, or undetermined) */
ALint SourceType;
2015-12-12 21:07:33 +00:00
2017-07-01 14:18:03 +00:00
/** Source state (initial, playing, paused, or stopped) */
ATOMIC(ALenum) state;
/** Source Buffer Queue head. */
RWLock queue_lock;
ALbufferlistitem *queue;
ATOMIC_FLAG PropsClean;
2015-12-12 21:07:33 +00:00
/** Self ID */
ALuint id;
} ALsource;
2017-07-01 14:18:03 +00:00
inline void LockSourcesRead(ALCcontext *context)
{ LockUIntMapRead(&context->SourceMap); }
inline void UnlockSourcesRead(ALCcontext *context)
{ UnlockUIntMapRead(&context->SourceMap); }
inline void LockSourcesWrite(ALCcontext *context)
{ LockUIntMapWrite(&context->SourceMap); }
inline void UnlockSourcesWrite(ALCcontext *context)
{ UnlockUIntMapWrite(&context->SourceMap); }
2015-12-12 21:07:33 +00:00
inline struct ALsource *LookupSource(ALCcontext *context, ALuint id)
2017-07-01 14:18:03 +00:00
{ return (struct ALsource*)LookupUIntMapKeyNoLock(&context->SourceMap, id); }
2015-12-12 21:07:33 +00:00
inline struct ALsource *RemoveSource(ALCcontext *context, ALuint id)
2017-07-01 14:18:03 +00:00
{ return (struct ALsource*)RemoveUIntMapKeyNoLock(&context->SourceMap, id); }
2015-12-12 21:07:33 +00:00
2017-07-01 14:18:03 +00:00
void UpdateAllSourceProps(ALCcontext *context);
2015-12-12 21:07:33 +00:00
ALvoid ReleaseALSources(ALCcontext *Context);
#ifdef __cplusplus
}
#endif
#endif