aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alListener.h
blob: b89a00e7aabf4ebe9e2d82238e363002660fb2fc (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#ifndef _AL_LISTENER_H_
#define _AL_LISTENER_H_

#include "alMain.h"
#include "alu.h"

#ifdef __cplusplus
extern "C" {
#endif

struct ALlistenerProps {
    ATOMIC(ALfloat) Position[3];
    ATOMIC(ALfloat) Velocity[3];
    ATOMIC(ALfloat) Forward[3];
    ATOMIC(ALfloat) Up[3];
    ATOMIC(ALfloat) Gain;
    ATOMIC(ALfloat) MetersPerUnit;

    ATOMIC(ALfloat) DopplerFactor;
    ATOMIC(ALfloat) DopplerVelocity;
    ATOMIC(ALfloat) SpeedOfSound;
    ATOMIC(ALboolean) SourceDistanceModel;
    ATOMIC(enum DistanceModel) DistanceModel;

    ATOMIC(struct ALlistenerProps*) next;
};

typedef struct ALlistener {
    volatile ALfloat Position[3];
    volatile ALfloat Velocity[3];
    volatile ALfloat Forward[3];
    volatile ALfloat Up[3];
    volatile ALfloat Gain;
    volatile ALfloat MetersPerUnit;

    /* Pointer to the most recent property values that are awaiting an update.
     */
    ATOMIC(struct ALlistenerProps*) Update;

    /* A linked list of unused property containers, free to use for future
     * updates.
     */
    ATOMIC(struct ALlistenerProps*) FreeList;

    struct {
        aluMatrixf Matrix;
        aluVector  Velocity;

        ALfloat Gain;
        ALfloat MetersPerUnit;

        ALfloat DopplerFactor;
        ALfloat SpeedOfSound;

        ALboolean SourceDistanceModel;
        enum DistanceModel DistanceModel;
    } Params;
} ALlistener;

void UpdateListenerProps(ALCcontext *context);

#ifdef __cplusplus
}
#endif

#endif