-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathefxpresets.pxd
140 lines (139 loc) · 8.12 KB
/
efxpresets.pxd
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
cdef extern from "AL/efx-presets.h":
ctypedef struct EFXEAXREVERBPROPERTIES:
float flDensity;
float flDiffusion;
float flGain;
float flGainHF;
float flGainLF;
float flDecayTime;
float flDecayHFRatio;
float flDecayLFRatio;
float flReflectionsGain;
float flReflectionsDelay;
float flReflectionsPan[3];
float flLateReverbGain;
float flLateReverbDelay;
float flLateReverbPan[3];
float flEchoTime;
float flEchoDepth;
float flModulationTime;
float flModulationDepth;
float flAirAbsorptionGainHF;
float flHFReference;
float flLFReference;
float flRoomRolloffFactor;
int iDecayHFLimit;
cdef extern from "efxpresets.h":
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_GENERIC()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PADDEDCELL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_BATHROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_LIVINGROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_STONEROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_AUDITORIUM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CONCERTHALL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CAVE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ARENA()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_HANGAR()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CARPETEDHALLWAY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_HALLWAY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_STONECORRIDOR()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ALLEY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_FOREST()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CITY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_MOUNTAINS()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_QUARRY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PLAIN()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PARKINGLOT()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SEWERPIPE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_UNDERWATER()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DRUGGED()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DIZZY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PSYCHOTIC()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CASTLE_SMALLROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CASTLE_SHORTPASSAGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CASTLE_MEDIUMROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CASTLE_LARGEROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CASTLE_LONGPASSAGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CASTLE_HALL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CASTLE_CUPBOARD()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CASTLE_COURTYARD()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CASTLE_ALCOVE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_FACTORY_SMALLROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_FACTORY_SHORTPASSAGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_FACTORY_MEDIUMROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_FACTORY_LARGEROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_FACTORY_LONGPASSAGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_FACTORY_HALL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_FACTORY_CUPBOARD()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_FACTORY_COURTYARD()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_FACTORY_ALCOVE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ICEPALACE_SMALLROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ICEPALACE_SHORTPASSAGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ICEPALACE_MEDIUMROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ICEPALACE_LARGEROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ICEPALACE_LONGPASSAGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ICEPALACE_HALL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ICEPALACE_CUPBOARD()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ICEPALACE_COURTYARD()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_ICEPALACE_ALCOVE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPACESTATION_SMALLROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPACESTATION_SHORTPASSAGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPACESTATION_MEDIUMROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPACESTATION_LARGEROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPACESTATION_LONGPASSAGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPACESTATION_HALL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPACESTATION_CUPBOARD()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPACESTATION_ALCOVE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_WOODEN_SMALLROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_WOODEN_SHORTPASSAGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_WOODEN_MEDIUMROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_WOODEN_LARGEROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_WOODEN_LONGPASSAGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_WOODEN_HALL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_WOODEN_CUPBOARD()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_WOODEN_COURTYARD()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_WOODEN_ALCOVE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPORT_EMPTYSTADIUM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPORT_SQUASHCOURT()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPORT_SMALLSWIMMINGPOOL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPORT_LARGESWIMMINGPOOL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPORT_GYMNASIUM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPORT_FULLSTADIUM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SPORT_STADIUMTANNOY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PREFAB_WORKSHOP()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PREFAB_SCHOOLROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PREFAB_PRACTISEROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PREFAB_OUTHOUSE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PREFAB_CARAVAN()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DOME_TOMB()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PIPE_SMALL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DOME_SAINTPAULS()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PIPE_LONGTHIN()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PIPE_LARGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_PIPE_RESONANT()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_OUTDOORS_BACKYARD()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_OUTDOORS_ROLLINGPLAINS()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_OUTDOORS_DEEPCANYON()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_OUTDOORS_CREEK()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_OUTDOORS_VALLEY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_MOOD_HEAVEN()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_MOOD_HELL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_MOOD_MEMORY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DRIVING_COMMENTATOR()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DRIVING_PITGARAGE()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DRIVING_INCAR_RACER()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DRIVING_INCAR_SPORTS()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DRIVING_INCAR_LUXURY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DRIVING_FULLGRANDSTAND()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DRIVING_EMPTYGRANDSTAND()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DRIVING_TUNNEL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CITY_STREETS()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CITY_SUBWAY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CITY_MUSEUM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CITY_LIBRARY()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CITY_UNDERPASS()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CITY_ABANDONED()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_DUSTYROOM()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_CHAPEL()
EFXEAXREVERBPROPERTIES get_EFX_REVERB_PRESET_SMALLWATERROOM()