aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-10-09 06:19:36 -0700
committerChris Robinson <[email protected]>2012-10-09 06:19:36 -0700
commit39bc2ba65c5b52b46bd8dd1587837882d98c5120 (patch)
tree36da448b685a228a76e7221d47d3ada0175d7feb /Alc/ALu.c
parentd598f82722d6784fada1c8b2a522463d5bf31c42 (diff)
Build the listener matrix separately
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c39
1 files changed, 36 insertions, 3 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index e72e1aac..02cdddfe 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -27,8 +27,6 @@
#include <assert.h>
#include "alMain.h"
-#include "AL/al.h"
-#include "AL/alc.h"
#include "alSource.h"
#include "alBuffer.h"
#include "alListener.h"
@@ -433,7 +431,7 @@ ALvoid CalcSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
for(i = 0;i < 4;i++)
{
for(j = 0;j < 4;j++)
- Matrix[i][j] = ALContext->Listener->Matrix[i][j];
+ Matrix[i][j] = ALContext->Listener->Params.Matrix[i][j];
}
/* Get source properties */
@@ -911,6 +909,41 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size)
if(!DeferUpdates)
UpdateSources = ExchangeInt(&ctx->UpdateSources, AL_FALSE);
+ if(UpdateSources)
+ {
+ ALlistener *listener = ctx->Listener;
+ ALfloat N[3], V[3], U[3];
+ /* AT then UP */
+ N[0] = listener->Forward[0];
+ N[1] = listener->Forward[1];
+ N[2] = listener->Forward[2];
+ aluNormalize(N);
+ V[0] = listener->Up[0];
+ V[1] = listener->Up[1];
+ V[2] = listener->Up[1];
+ aluNormalize(V);
+ /* Build and normalize right-vector */
+ aluCrossproduct(N, V, U);
+ aluNormalize(U);
+
+ listener->Params.Matrix[0][0] = U[0];
+ listener->Params.Matrix[0][1] = V[0];
+ listener->Params.Matrix[0][2] = -N[0];
+ listener->Params.Matrix[0][3] = 0.0f;
+ listener->Params.Matrix[1][0] = U[1];
+ listener->Params.Matrix[1][1] = V[1];
+ listener->Params.Matrix[1][2] = -N[1];
+ listener->Params.Matrix[1][3] = 0.0f;
+ listener->Params.Matrix[2][0] = U[2];
+ listener->Params.Matrix[2][1] = V[2];
+ listener->Params.Matrix[2][2] = -N[2];
+ listener->Params.Matrix[2][3] = 0.0f;
+ listener->Params.Matrix[3][0] = 0.0f;
+ listener->Params.Matrix[3][1] = 0.0f;
+ listener->Params.Matrix[3][2] = 0.0f;
+ listener->Params.Matrix[3][3] = 1.0f;
+ }
+
/* source processing */
src = ctx->ActiveSources;
src_end = src + ctx->ActiveSourceCount;