1 module directx.x3daudio; 2 3 import directx.win32; 4 5 // test if type defined 6 static if ( !__traits(compiles, D3DVECTOR.sizeof) ) 7 { 8 alias D3DVECTOR = float[3]; 9 } 10 11 // speaker geometry configuration flags, specifies assignment of channels to speaker positions, defined as per WAVEFORMATEXTENSIBLE.dwChannelMask 12 alias _SPEAKER_POSITIONS_ = int; 13 enum : _SPEAKER_POSITIONS_ 14 { 15 SPEAKER_FRONT_LEFT = 0x00000001, 16 SPEAKER_FRONT_RIGHT = 0x00000002, 17 SPEAKER_FRONT_CENTER = 0x00000004, 18 SPEAKER_LOW_FREQUENCY = 0x00000008, 19 SPEAKER_BACK_LEFT = 0x00000010, 20 SPEAKER_BACK_RIGHT = 0x00000020, 21 SPEAKER_FRONT_LEFT_OF_CENTER = 0x00000040, 22 SPEAKER_FRONT_RIGHT_OF_CENTER = 0x00000080, 23 SPEAKER_BACK_CENTER = 0x00000100, 24 SPEAKER_SIDE_LEFT = 0x00000200, 25 SPEAKER_SIDE_RIGHT = 0x00000400, 26 SPEAKER_TOP_CENTER = 0x00000800, 27 SPEAKER_TOP_FRONT_LEFT = 0x00001000, 28 SPEAKER_TOP_FRONT_CENTER = 0x00002000, 29 SPEAKER_TOP_FRONT_RIGHT = 0x00004000, 30 SPEAKER_TOP_BACK_LEFT = 0x00008000, 31 SPEAKER_TOP_BACK_CENTER = 0x00010000, 32 SPEAKER_TOP_BACK_RIGHT = 0x00020000, 33 SPEAKER_RESERVED = 0x7FFC0000, // bit mask locations reserved for future use 34 SPEAKER_ALL = 0x80000000, // used to specify that any possible permutation of speaker configurations 35 } 36 37 // standard speaker geometry configurations, used with X3DAudioInitialize 38 enum 39 { 40 SPEAKER_MONO = SPEAKER_FRONT_CENTER, 41 SPEAKER_STEREO = (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT), 42 SPEAKER_2POINT1 = (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_LOW_FREQUENCY), 43 SPEAKER_SURROUND = (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_BACK_CENTER), 44 SPEAKER_QUAD = (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT), 45 SPEAKER_4POINT1 = (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT), 46 SPEAKER_5POINT1 = (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT), 47 SPEAKER_7POINT1 = (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT | SPEAKER_FRONT_LEFT_OF_CENTER | SPEAKER_FRONT_RIGHT_OF_CENTER), 48 SPEAKER_5POINT1_SURROUND = (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_SIDE_LEFT | SPEAKER_SIDE_RIGHT), 49 SPEAKER_7POINT1_SURROUND = (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT | SPEAKER_SIDE_LEFT | SPEAKER_SIDE_RIGHT), 50 } 51 52 // Xbox360 speaker geometry configuration, used with X3DAudioInitialize 53 version(XBOX) 54 alias SPEAKER_XBOX = SPEAKER_5POINT1; 55 56 57 58 // size of instance handle in bytes 59 enum X3DAUDIO_HANDLE_BYTESIZE = 20; 60 61 // float math constants 62 enum X3DAUDIO_PI = 3.141592654f; 63 enum X3DAUDIO_2PI = 6.283185307f; 64 65 // speed of sound in meters per second for dry air at approximately 20C, used with X3DAudioInitialize 66 enum X3DAUDIO_SPEED_OF_SOUND = 343.5f; 67 68 // calculation control flags, used with X3DAudioCalculate 69 enum { 70 X3DAUDIO_CALCULATE_MATRIX = 0x00000001, // enable matrix coefficient table calculation 71 X3DAUDIO_CALCULATE_DELAY = 0x00000002, // enable delay time array calculation (stereo final mix only) 72 X3DAUDIO_CALCULATE_LPF_DIRECT = 0x00000004, // enable LPF direct-path coefficient calculation 73 X3DAUDIO_CALCULATE_LPF_REVERB = 0x00000008, // enable LPF reverb-path coefficient calculation 74 X3DAUDIO_CALCULATE_REVERB = 0x00000010, // enable reverb send level calculation 75 X3DAUDIO_CALCULATE_DOPPLER = 0x00000020, // enable doppler shift factor calculation 76 X3DAUDIO_CALCULATE_EMITTER_ANGLE = 0x00000040, // enable emitter-to-listener interior angle calculation 77 78 X3DAUDIO_CALCULATE_ZEROCENTER = 0x00010000, // do not position to front center speaker, signal positioned to remaining speakers instead, front center destination channel will be zero in returned matrix coefficient table, valid only for matrix calculations with final mix formats that have a front center channel 79 X3DAUDIO_CALCULATE_REDIRECT_TO_LFE = 0x00020000, // apply equal mix of all source channels to LFE destination channel, valid only for matrix calculations with sources that have no LFE channel and final mix formats that have an LFE channel 80 } 81 82 83 //--------------<D-A-T-A---T-Y-P-E-S>---------------------------------------// 84 align(1): // set packing alignment to ensure consistency across arbitrary build environments 85 86 87 // primitive types 88 alias FLOAT32 = float; // 32-bit IEEE float 89 alias X3DAUDIO_VECTOR = D3DVECTOR; // float 3D vector 90 91 // instance handle of precalculated constants 92 alias BYTE[X3DAUDIO_HANDLE_BYTESIZE] X3DAUDIO_HANDLE; 93 94 95 // Distance curve point: 96 // Defines a DSP setting at a given normalized distance. 97 struct X3DAUDIO_DISTANCE_CURVE_POINT 98 { 99 FLOAT32 Distance; // normalized distance, must be within [0.0f, 1.0f] 100 FLOAT32 DSPSetting; // DSP setting 101 } 102 alias LPX3DAUDIO_DISTANCE_CURVE_POINT = X3DAUDIO_DISTANCE_CURVE_POINT*; 103 104 // Distance curve: 105 // A piecewise curve made up of linear segments used to 106 // define DSP behaviour with respect to normalized distance. 107 // 108 // Note that curve point distances are normalized within [0.0f, 1.0f]. 109 // X3DAUDIO_EMITTER.CurveDistanceScaler must be used to scale the 110 // normalized distances to user-defined world units. 111 // For distances beyond CurveDistanceScaler * 1.0f, 112 // pPoints[PointCount-1].DSPSetting is used as the DSP setting. 113 // 114 // All distance curve spans must be such that: 115 // pPoints[k-1].DSPSetting + ((pPoints[k].DSPSetting-pPoints[k-1].DSPSetting) / (pPoints[k].Distance-pPoints[k-1].Distance)) * (pPoints[k].Distance-pPoints[k-1].Distance) != NAN or infinite values 116 // For all points in the distance curve where 1 <= k < PointCount. 117 struct X3DAUDIO_DISTANCE_CURVE 118 { 119 X3DAUDIO_DISTANCE_CURVE_POINT* pPoints; // distance curve point array, must have at least PointCount elements with no duplicates and be sorted in ascending order with respect to Distance 120 UINT32 PointCount; // number of distance curve points, must be >= 2 as all distance curves must have at least two endpoints, defining DSP settings at 0.0f and 1.0f normalized distance 121 } 122 alias LPX3DAUDIO_DISTANCE_CURVE = X3DAUDIO_DISTANCE_CURVE*; 123 enum : X3DAUDIO_DISTANCE_CURVE_POINT[2] 124 { 125 X3DAudioDefault_LinearCurvePoints = [ X3DAUDIO_DISTANCE_CURVE_POINT(0.0f, 1.0f), X3DAUDIO_DISTANCE_CURVE_POINT(1.0f, 0.0f) ], 126 } 127 enum : X3DAUDIO_DISTANCE_CURVE 128 { 129 X3DAudioDefault_LinearCurve = X3DAUDIO_DISTANCE_CURVE( X3DAudioDefault_LinearCurvePoints.ptr, 2 ), 130 } 131 132 // Cone: 133 // Specifies directionality for a listener or single-channel emitter by 134 // modifying DSP behaviour with respect to its front orientation. 135 // This is modeled using two sound cones: an inner cone and an outer cone. 136 // On/within the inner cone, DSP settings are scaled by the inner values. 137 // On/beyond the outer cone, DSP settings are scaled by the outer values. 138 // If on both the cones, DSP settings are scaled by the inner values only. 139 // Between the two cones, the scaler is linearly interpolated between the 140 // inner and outer values. Set both cone angles to 0 or X3DAUDIO_2PI for 141 // omnidirectionality using only the outer or inner values respectively. 142 struct X3DAUDIO_CONE 143 { 144 FLOAT32 InnerAngle; // inner cone angle in radians, must be within [0.0f, X3DAUDIO_2PI] 145 FLOAT32 OuterAngle; // outer cone angle in radians, must be within [InnerAngle, X3DAUDIO_2PI] 146 147 FLOAT32 InnerVolume; // volume level scaler on/within inner cone, used only for matrix calculations, must be within [0.0f, 2.0f] when used 148 FLOAT32 OuterVolume; // volume level scaler on/beyond outer cone, used only for matrix calculations, must be within [0.0f, 2.0f] when used 149 FLOAT32 InnerLPF; // LPF (both direct and reverb paths) coefficient subtrahend on/within inner cone, used only for LPF (both direct and reverb paths) calculations, must be within [0.0f, 1.0f] when used 150 FLOAT32 OuterLPF; // LPF (both direct and reverb paths) coefficient subtrahend on/beyond outer cone, used only for LPF (both direct and reverb paths) calculations, must be within [0.0f, 1.0f] when used 151 FLOAT32 InnerReverb; // reverb send level scaler on/within inner cone, used only for reverb calculations, must be within [0.0f, 2.0f] when used 152 FLOAT32 OuterReverb; // reverb send level scaler on/beyond outer cone, used only for reverb calculations, must be within [0.0f, 2.0f] when used 153 } 154 alias LPX3DAUDIO_CONE = X3DAUDIO_CONE*; 155 enum : X3DAUDIO_CONE 156 { 157 X3DAudioDefault_DirectionalCone = X3DAUDIO_CONE( X3DAUDIO_PI/2, X3DAUDIO_PI, 1.0f, 0.708f, 0.0f, 0.25f, 0.708f, 1.0f ), 158 } 159 160 161 // Listener: 162 // Defines a point of 3D audio reception. 163 // 164 // The cone is directed by the listener's front orientation. 165 struct X3DAUDIO_LISTENER 166 { 167 X3DAUDIO_VECTOR OrientFront; // orientation of front direction, used only for matrix and delay calculations or listeners with cones for matrix, LPF (both direct and reverb paths), and reverb calculations, must be normalized when used 168 X3DAUDIO_VECTOR OrientTop; // orientation of top direction, used only for matrix and delay calculations, must be orthonormal with OrientFront when used 169 170 X3DAUDIO_VECTOR Position; // position in user-defined world units, does not affect Velocity 171 X3DAUDIO_VECTOR Velocity; // velocity vector in user-defined world units/second, used only for doppler calculations, does not affect Position 172 173 X3DAUDIO_CONE* pCone; // sound cone, used only for matrix, LPF (both direct and reverb paths), and reverb calculations, NULL specifies omnidirectionality 174 } 175 alias LPX3DAUDIO_LISTENER = X3DAUDIO_LISTENER*; 176 177 // Emitter: 178 // Defines a 3D audio source, divided into two classifications: 179 // 180 // Single-point -- For use with single-channel sounds. 181 // Positioned at the emitter base, i.e. the channel radius 182 // and azimuth are ignored if the number of channels == 1. 183 // 184 // May be omnidirectional or directional using a cone. 185 // The cone originates from the emitter base position, 186 // and is directed by the emitter's front orientation. 187 // 188 // Multi-point -- For use with multi-channel sounds. 189 // Each non-LFE channel is positioned using an 190 // azimuth along the channel radius with respect to the 191 // front orientation vector in the plane orthogonal to the 192 // top orientation vector. An azimuth of X3DAUDIO_2PI 193 // specifies a channel is an LFE. Such channels are 194 // positioned at the emitter base and are calculated 195 // with respect to pLFECurve only, never pVolumeCurve. 196 // 197 // Multi-point emitters are always omnidirectional, 198 // i.e. the cone is ignored if the number of channels > 1. 199 // 200 // Note that many properties are shared among all channel points, 201 // locking certain behaviour with respect to the emitter base position. 202 // For example, doppler shift is always calculated with respect to the 203 // emitter base position and so is constant for all its channel points. 204 // Distance curve calculations are also with respect to the emitter base 205 // position, with the curves being calculated independently of each other. 206 // For instance, volume and LFE calculations do not affect one another. 207 struct X3DAUDIO_EMITTER 208 { 209 X3DAUDIO_CONE* pCone; // sound cone, used only with single-channel emitters for matrix, LPF (both direct and reverb paths), and reverb calculations, NULL specifies omnidirectionality 210 X3DAUDIO_VECTOR OrientFront; // orientation of front direction, used only for emitter angle calculations or with multi-channel emitters for matrix calculations or single-channel emitters with cones for matrix, LPF (both direct and reverb paths), and reverb calculations, must be normalized when used 211 X3DAUDIO_VECTOR OrientTop; // orientation of top direction, used only with multi-channel emitters for matrix calculations, must be orthonormal with OrientFront when used 212 213 X3DAUDIO_VECTOR Position; // position in user-defined world units, does not affect Velocity 214 X3DAUDIO_VECTOR Velocity; // velocity vector in user-defined world units/second, used only for doppler calculations, does not affect Position 215 216 FLOAT32 InnerRadius; // inner radius, must be within [0.0f, FLT_MAX] 217 FLOAT32 InnerRadiusAngle; // inner radius angle, must be within [0.0f, X3DAUDIO_PI/4.0) 218 219 UINT32 ChannelCount; // number of sound channels, must be > 0 220 FLOAT32 ChannelRadius; // channel radius, used only with multi-channel emitters for matrix calculations, must be >= 0.0f when used 221 FLOAT32* pChannelAzimuths; // channel azimuth array, used only with multi-channel emitters for matrix calculations, contains positions of each channel expressed in radians along the channel radius with respect to the front orientation vector in the plane orthogonal to the top orientation vector, or X3DAUDIO_2PI to specify an LFE channel, must have at least ChannelCount elements, all within [0.0f, X3DAUDIO_2PI] when used 222 223 X3DAUDIO_DISTANCE_CURVE* pVolumeCurve; // volume level distance curve, used only for matrix calculations, NULL specifies a default curve that conforms to the inverse square law, calculated in user-defined world units with distances <= CurveDistanceScaler clamped to no attenuation 224 X3DAUDIO_DISTANCE_CURVE* pLFECurve; // LFE level distance curve, used only for matrix calculations, NULL specifies a default curve that conforms to the inverse square law, calculated in user-defined world units with distances <= CurveDistanceScaler clamped to no attenuation 225 X3DAUDIO_DISTANCE_CURVE* pLPFDirectCurve; // LPF direct-path coefficient distance curve, used only for LPF direct-path calculations, NULL specifies the default curve: [0.0f,1.0f], [1.0f,0.75f] 226 X3DAUDIO_DISTANCE_CURVE* pLPFReverbCurve; // LPF reverb-path coefficient distance curve, used only for LPF reverb-path calculations, NULL specifies the default curve: [0.0f,0.75f], [1.0f,0.75f] 227 X3DAUDIO_DISTANCE_CURVE* pReverbCurve; // reverb send level distance curve, used only for reverb calculations, NULL specifies the default curve: [0.0f,1.0f], [1.0f,0.0f] 228 229 FLOAT32 CurveDistanceScaler; // curve distance scaler, used to scale normalized distance curves to user-defined world units and/or exaggerate their effect, used only for matrix, LPF (both direct and reverb paths), and reverb calculations, must be within [FLT_MIN, FLT_MAX] when used 230 FLOAT32 DopplerScaler; // doppler shift scaler, used to exaggerate doppler shift effect, used only for doppler calculations, must be within [0.0f, FLT_MAX] when used 231 } 232 alias LPX3DAUDIO_EMITTER = X3DAUDIO_EMITTER*; 233 234 235 // DSP settings: 236 // Receives results from a call to X3DAudioCalculate to be sent 237 // to the low-level audio rendering API for 3D signal processing. 238 // 239 // The user is responsible for allocating the matrix coefficient table, 240 // delay time array, and initializing the channel counts when used. 241 struct X3DAUDIO_DSP_SETTINGS 242 { 243 FLOAT32* pMatrixCoefficients; // [inout] matrix coefficient table, receives an array representing the volume level used to send from source channel S to destination channel D, stored as pMatrixCoefficients[SrcChannelCount * D + S], must have at least SrcChannelCount*DstChannelCount elements 244 FLOAT32* pDelayTimes; // [inout] delay time array, receives delays for each destination channel in milliseconds, must have at least DstChannelCount elements (stereo final mix only) 245 UINT32 SrcChannelCount; // [in] number of source channels, must equal number of channels in respective emitter 246 UINT32 DstChannelCount; // [in] number of destination channels, must equal number of channels of the final mix 247 248 FLOAT32 LPFDirectCoefficient; // [out] LPF direct-path coefficient 249 FLOAT32 LPFReverbCoefficient; // [out] LPF reverb-path coefficient 250 FLOAT32 ReverbLevel; // [out] reverb send level 251 FLOAT32 DopplerFactor; // [out] doppler shift factor, scales resampler ratio for doppler shift effect, where the effective frequency = DopplerFactor * original frequency 252 FLOAT32 EmitterToListenerAngle; // [out] emitter-to-listener interior angle, expressed in radians with respect to the emitter's front orientation 253 254 FLOAT32 EmitterToListenerDistance; // [out] distance in user-defined world units from the emitter base to listener position, always calculated 255 FLOAT32 EmitterVelocityComponent; // [out] component of emitter velocity vector projected onto emitter->listener vector in user-defined world units/second, calculated only for doppler 256 FLOAT32 ListenerVelocityComponent; // [out] component of listener velocity vector projected onto emitter->listener vector in user-defined world units/second, calculated only for doppler 257 } 258 alias LPX3DAUDIO_DSP_SETTINGS = X3DAUDIO_DSP_SETTINGS*; 259 260 261 262 //--------------<F-U-N-C-T-I-O-N-S>-----------------------------------------// 263 // initializes instance handle 264 extern(Windows) void X3DAudioInitialize (UINT32 SpeakerChannelMask, FLOAT32 SpeedOfSound, /*out*/ X3DAUDIO_HANDLE* Instance); 265 266 // calculates DSP settings with respect to 3D parameters 267 extern(Windows) void X3DAudioCalculate (const(X3DAUDIO_HANDLE) Instance, const(X3DAUDIO_LISTENER)* pListener, const(X3DAUDIO_EMITTER)* pEmitter, UINT32 Flags, /*inout*/X3DAUDIO_DSP_SETTINGS* pDSPSettings); 268 269 //---------------------------------<-EOF->----------------------------------//