-
Notifications
You must be signed in to change notification settings - Fork 513
AudioEmitter
AudioEmitter is a helper object derived from X3DAUDIO_EMITTER used by SoundEffectInstance's / DynamicSoundEffectInstance's Apply3D method.
See AudioListener.
Related tutorial: Using positional audio
#include <Audio.h>
The default constructor creates a point omnidirectional emitter located at 0,0,0 facing -z
and an up vector of +y
for a mono source.
CurveDistanceScaler and DopplerScaler are set to 1 by default. InnerRadius is set to 0, and InnerRadiusAngle is set to X3DAUDIO_PI/4.0
(45 degrees).
When using left-handed coordinates, be sure to set
OrientFront
In addition to setting the members of X3DAUDIO_EMITTER
directly, these helper functions are provided:
-
SetPosition (XMVECTOR) or (XMFLOAT3): Sets the Position of the emitter.
-
SetVelocity (XMVECTOR) or (XMFLOAT3): Sets the Velocity of the emitter.
-
SetOrientation (XMVECTOR forward, XMVECTOR up) or (XMFLOAT3 forward, XMFLOAT3 up)
-
SetOrientationFromQuaternion (XMVECTOR): Sets the OrientFront/OrientTop of the emitter.
-
Update (XMVECTOR newPos, XMVECTOR upDir, float dt): Computes a direction and velocity for the emitter based on the existing Position and the newPos, updating the OrientFront/OrientTop to match, and then setting the Position to the newPos. If dt is 0, the update is skipped.
X3DAudio does support multi-channel sound sources for 3D audio (i.e. stereo, quad, etc.). The default constructor for AudioEmitter sets the source up for mono (i.e. single-channel), so to use multi-channel sources, you should set the ChannelCount member to match the number of channels in your source, and adjust ChannelRadius and the EmitterAzimuths array as desired.
Note: AudioEmitter includes a EmitterAzimuths array which is pointed to by pChannelAzimuths and defaults to all 0. This is because pChannelAzimuths cannot be a nullptr for multi-channel sound emitters.
AudioEmitter defaults to an omnidirectional emitter. To create a sound-cone, set the pCone member to point to a X3DAUDIO_CONE
structure. The pointer must point to valid memory at the time Apply3D is called.
The AudioEmitter constructor sets pVolumeCurve, pLFECurve, pLPFDirectCurve, pLPFReverbCurve, and pReverbCurve to nullptr which uses XAudio2 default curves. Any custom curve definitions must have a pointer to valid memory at the time Apply3D is called.
All content and source code for this package are subject to the terms of the MIT License.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
- Universal Windows Platform apps
- Windows desktop apps
- Windows 11
- Windows 10
- Windows 8.1
- Xbox One
- x86
- x64
- ARM64
- Visual Studio 2022
- Visual Studio 2019 (16.11)
- clang/LLVM v12 - v18
- MinGW 12.2, 13.2
- CMake 3.20