aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-04-28 13:06:16 -0700
committerChris Robinson <[email protected]>2012-04-28 13:06:16 -0700
commitfebc2a50cb1a860d11b6b740bd05a555fce5a8d2 (patch)
treebcc8217bb8ae618398cebfe86cf8dda51d7f09d4 /Alc/ALu.c
parent74e128bd0fda9ae1208e340db3f735bc98551c3f (diff)
Use ComputeAngleGains for 3D sounds
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c44
1 files changed, 20 insertions, 24 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 69a06cae..f2d80275 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -744,40 +744,36 @@ ALvoid CalcSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
}
else
{
- /* Use a lookup table for panning multi-speaker playback. */
- ALfloat DirGain, AmbientGain;
- const ALfloat *ChannelGain;
- ALfloat length;
- ALint pos;
-
- /* Normalize the length based on the source's min distance. Sources
- * closer than this will not pan as much. */
- length = maxf(Distance, MinDist);
- if(length > 0.0f)
+ ALfloat (*Matrix)[MAXCHANNELS] = ALSource->Params.Direct.Gains;
+ ALfloat DirGain = 0.0f;
+ ALfloat AmbientGain;
+
+ for(i = 0;i < MAXCHANNELS;i++)
+ {
+ for(j = 0;j < MAXCHANNELS;j++)
+ Matrix[i][j] = 0.0f;
+ }
+
+ /* Normalize the length, and compute panned gains. */
+ if(Distance > 0.0f)
{
- ALfloat invlen = 1.0f/length;
+ ALfloat invlen = 1.0f/Distance;
Position[0] *= invlen;
Position[1] *= invlen;
Position[2] *= invlen;
- }
- pos = aluCart2LUTpos(Position[0], -Position[2]*ZScale);
- ChannelGain = Device->PanningLUT[pos];
+ DirGain = aluSqrt(Position[0]*Position[0] + Position[2]*Position[2]);
+ ComputeAngleGains(Device, aluAtan2(Position[0], -Position[2]*ZScale), 0.0f,
+ DryGain*DirGain, Matrix[0]);
+ }
- /* Adjustment for partial panning. Not the greatest, but simple
+ /* Adjustment for vertical offsets. Not the greatest, but simple
* enough. */
- DirGain = aluSqrt(Position[0]*Position[0] + Position[2]*Position[2]);
- AmbientGain = aluSqrt(1.0f/Device->NumChan);
- for(i = 0;i < MAXCHANNELS;i++)
- {
- for(j = 0;j < MAXCHANNELS;j++)
- ALSource->Params.Direct.Gains[i][j] = 0.0f;
- }
+ AmbientGain = DryGain * aluSqrt(1.0f/Device->NumChan) * (1.0f-DirGain);
for(i = 0;i < (ALint)Device->NumChan;i++)
{
enum Channel chan = Device->Speaker2Chan[i];
- ALfloat gain = lerp(AmbientGain, ChannelGain[chan], DirGain);
- ALSource->Params.Direct.Gains[0][chan] = DryGain * gain;
+ Matrix[0][chan] = maxf(Matrix[0][chan], AmbientGain);
}
}
for(i = 0;i < NumSends;i++)