2007-11-13 18:02:18 -08:00
|
|
|
/**
|
|
|
|
* OpenAL cross platform audio library
|
|
|
|
* Copyright (C) 1999-2000 by authors.
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2014-08-18 14:11:03 +02:00
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-11-13 18:02:18 -08:00
|
|
|
* Or go to http://www.gnu.org/copyleft/lgpl.html
|
|
|
|
*/
|
|
|
|
|
2008-01-16 14:09:04 -08:00
|
|
|
#include "config.h"
|
|
|
|
|
2018-11-19 09:51:29 -08:00
|
|
|
#include <cmath>
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#include "alMain.h"
|
2018-11-17 23:02:27 -08:00
|
|
|
#include "alcontext.h"
|
2017-09-27 08:55:42 -07:00
|
|
|
#include "alu.h"
|
2007-11-13 18:02:18 -08:00
|
|
|
#include "alError.h"
|
|
|
|
#include "alListener.h"
|
2009-11-25 16:21:47 -08:00
|
|
|
#include "alSource.h"
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2017-09-27 09:36:34 -07:00
|
|
|
#define DO_UPDATEPROPS() do { \
|
2018-11-20 10:45:01 -08:00
|
|
|
if(!context->DeferUpdates.load(std::memory_order_acquire)) \
|
2018-11-20 11:17:54 -08:00
|
|
|
UpdateListenerProps(context.get()); \
|
2017-09-27 09:36:34 -07:00
|
|
|
else \
|
2018-11-20 11:17:54 -08:00
|
|
|
listener.PropsClean.clear(std::memory_order_release); \
|
2017-09-27 09:36:34 -07:00
|
|
|
} while(0)
|
|
|
|
|
|
|
|
|
2012-04-23 21:35:05 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alListenerf(ALenum param, ALfloat value)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ALlistener &listener = context->Listener;
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2013-10-07 09:04:52 -07:00
|
|
|
switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_GAIN:
|
2018-11-19 09:51:29 -08:00
|
|
|
if(!(value >= 0.0f && std::isfinite(value)))
|
2018-11-20 11:17:54 -08:00
|
|
|
SETERR_RETURN(context.get(), AL_INVALID_VALUE,, "Listener gain out of range");
|
|
|
|
listener.Gain = value;
|
2017-09-27 09:36:34 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_METERS_PER_UNIT:
|
2017-08-21 00:27:52 -07:00
|
|
|
if(!(value >= AL_MIN_METERS_PER_UNIT && value <= AL_MAX_METERS_PER_UNIT))
|
2018-11-20 11:17:54 -08:00
|
|
|
SETERR_RETURN(context.get(), AL_INVALID_VALUE,,
|
|
|
|
"Listener meters per unit out of range");
|
2017-09-27 08:55:42 -07:00
|
|
|
context->MetersPerUnit = value;
|
2018-11-20 10:45:01 -08:00
|
|
|
if(!context->DeferUpdates.load(std::memory_order_acquire))
|
2018-11-20 11:17:54 -08:00
|
|
|
UpdateContextProps(context.get());
|
2017-09-27 09:36:34 -07:00
|
|
|
else
|
2018-11-20 10:45:01 -08:00
|
|
|
context->PropsClean.clear(std::memory_order_release);
|
2017-09-27 09:36:34 -07:00
|
|
|
break;
|
2012-04-23 21:35:05 -07:00
|
|
|
|
2013-10-07 09:04:52 -07:00
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener float property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-23 21:35:05 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alListener3f(ALenum param, ALfloat value1, ALfloat value2, ALfloat value3)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ALlistener &listener = context->Listener;
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2013-10-07 09:04:52 -07:00
|
|
|
switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_POSITION:
|
2018-11-19 09:51:29 -08:00
|
|
|
if(!(std::isfinite(value1) && std::isfinite(value2) && std::isfinite(value3)))
|
2018-11-20 11:17:54 -08:00
|
|
|
SETERR_RETURN(context.get(), AL_INVALID_VALUE,, "Listener position out of range");
|
|
|
|
listener.Position[0] = value1;
|
|
|
|
listener.Position[1] = value2;
|
|
|
|
listener.Position[2] = value3;
|
2017-09-27 09:36:34 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_VELOCITY:
|
2018-11-19 09:51:29 -08:00
|
|
|
if(!(std::isfinite(value1) && std::isfinite(value2) && std::isfinite(value3)))
|
2018-11-20 11:17:54 -08:00
|
|
|
SETERR_RETURN(context.get(), AL_INVALID_VALUE,, "Listener velocity out of range");
|
|
|
|
listener.Velocity[0] = value1;
|
|
|
|
listener.Velocity[1] = value2;
|
|
|
|
listener.Velocity[2] = value3;
|
2017-09-27 09:36:34 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener 3-float property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-23 21:35:05 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alListenerfv(ALenum param, const ALfloat *values)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-23 21:35:05 -07:00
|
|
|
if(values)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-23 21:35:05 -07:00
|
|
|
switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_GAIN:
|
|
|
|
case AL_METERS_PER_UNIT:
|
|
|
|
alListenerf(param, values[0]);
|
|
|
|
return;
|
|
|
|
|
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
|
|
|
alListener3f(param, values[0], values[1], values[2]);
|
|
|
|
return;
|
2011-06-16 09:14:41 -07:00
|
|
|
}
|
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2011-06-16 09:14:41 -07:00
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ALlistener &listener = context->Listener;
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2018-11-20 11:17:54 -08:00
|
|
|
if(!values) SETERR_RETURN(context.get(), AL_INVALID_VALUE,, "NULL pointer");
|
2013-10-07 09:04:52 -07:00
|
|
|
switch(param)
|
2011-06-16 09:14:41 -07:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_ORIENTATION:
|
2018-11-19 09:51:29 -08:00
|
|
|
if(!(std::isfinite(values[0]) && std::isfinite(values[1]) && std::isfinite(values[2]) &&
|
|
|
|
std::isfinite(values[3]) && std::isfinite(values[4]) && std::isfinite(values[5])))
|
2018-11-20 11:17:54 -08:00
|
|
|
SETERR_RETURN(context.get(), AL_INVALID_VALUE,, "Listener orientation out of range");
|
2013-10-07 09:04:52 -07:00
|
|
|
/* AT then UP */
|
2018-12-26 22:27:34 -08:00
|
|
|
listener.OrientAt[0] = values[0];
|
|
|
|
listener.OrientAt[1] = values[1];
|
|
|
|
listener.OrientAt[2] = values[2];
|
|
|
|
listener.OrientUp[0] = values[3];
|
|
|
|
listener.OrientUp[1] = values[4];
|
|
|
|
listener.OrientUp[2] = values[5];
|
2017-09-27 09:36:34 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener float-vector property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-07 07:44:09 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alListeneri(ALenum param, ALint UNUSED(value))
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2009-08-16 16:02:13 -07:00
|
|
|
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2013-10-07 09:04:52 -07:00
|
|
|
switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener integer property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-23 21:35:05 -07:00
|
|
|
AL_API void AL_APIENTRY alListener3i(ALenum param, ALint value1, ALint value2, ALint value3)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-23 21:35:05 -07:00
|
|
|
switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
2019-01-08 19:42:44 +01:00
|
|
|
alListener3f(param, static_cast<ALfloat>(value1), static_cast<ALfloat>(value2), static_cast<ALfloat>(value3));
|
2013-10-07 09:04:52 -07:00
|
|
|
return;
|
2011-06-16 09:14:41 -07:00
|
|
|
}
|
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2013-10-07 09:04:52 -07:00
|
|
|
switch(param)
|
2011-06-16 09:14:41 -07:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener 3-integer property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-23 21:35:05 -07:00
|
|
|
AL_API void AL_APIENTRY alListeneriv(ALenum param, const ALint *values)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-23 21:35:05 -07:00
|
|
|
if(values)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-23 21:35:05 -07:00
|
|
|
ALfloat fvals[6];
|
|
|
|
switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
2019-01-08 19:42:44 +01:00
|
|
|
alListener3f(param, static_cast<ALfloat>(values[0]), static_cast<ALfloat>(values[1]), static_cast<ALfloat>(values[2]));
|
2013-10-07 09:04:52 -07:00
|
|
|
return;
|
|
|
|
|
|
|
|
case AL_ORIENTATION:
|
2019-01-08 19:42:44 +01:00
|
|
|
fvals[0] = static_cast<ALfloat>(values[0]);
|
|
|
|
fvals[1] = static_cast<ALfloat>(values[1]);
|
|
|
|
fvals[2] = static_cast<ALfloat>(values[2]);
|
|
|
|
fvals[3] = static_cast<ALfloat>(values[3]);
|
|
|
|
fvals[4] = static_cast<ALfloat>(values[4]);
|
|
|
|
fvals[5] = static_cast<ALfloat>(values[5]);
|
2013-10-07 09:04:52 -07:00
|
|
|
alListenerfv(param, fvals);
|
|
|
|
return;
|
2011-07-11 01:21:29 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2018-01-24 17:07:01 -08:00
|
|
|
if(!values)
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_VALUE, "NULL pointer");
|
2018-01-24 17:07:01 -08:00
|
|
|
else switch(param)
|
2011-07-11 01:21:29 -07:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener integer-vector property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-23 21:35:05 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetListenerf(ALenum param, ALfloat *value)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2009-08-16 16:02:13 -07:00
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ALlistener &listener = context->Listener;
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2018-01-24 17:07:01 -08:00
|
|
|
if(!value)
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_VALUE, "NULL pointer");
|
2018-01-24 17:07:01 -08:00
|
|
|
else switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_GAIN:
|
2018-11-20 11:17:54 -08:00
|
|
|
*value = listener.Gain;
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_METERS_PER_UNIT:
|
2017-09-27 08:55:42 -07:00
|
|
|
*value = context->MetersPerUnit;
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
2007-12-17 19:40:43 -08:00
|
|
|
|
2013-10-07 09:04:52 -07:00
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener float property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-23 21:35:05 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetListener3f(ALenum param, ALfloat *value1, ALfloat *value2, ALfloat *value3)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2009-08-16 16:02:13 -07:00
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ALlistener &listener = context->Listener;
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2018-01-24 17:07:01 -08:00
|
|
|
if(!value1 || !value2 || !value3)
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_VALUE, "NULL pointer");
|
2018-01-24 17:07:01 -08:00
|
|
|
else switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_POSITION:
|
2018-11-20 11:17:54 -08:00
|
|
|
*value1 = listener.Position[0];
|
|
|
|
*value2 = listener.Position[1];
|
|
|
|
*value3 = listener.Position[2];
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_VELOCITY:
|
2018-11-20 11:17:54 -08:00
|
|
|
*value1 = listener.Velocity[0];
|
|
|
|
*value2 = listener.Velocity[1];
|
|
|
|
*value3 = listener.Velocity[2];
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener 3-float property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-23 21:35:05 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetListenerfv(ALenum param, ALfloat *values)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-23 21:35:05 -07:00
|
|
|
switch(param)
|
2011-06-16 09:14:41 -07:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_GAIN:
|
|
|
|
case AL_METERS_PER_UNIT:
|
|
|
|
alGetListenerf(param, values);
|
|
|
|
return;
|
|
|
|
|
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
|
|
|
alGetListener3f(param, values+0, values+1, values+2);
|
|
|
|
return;
|
2011-06-16 09:14:41 -07:00
|
|
|
}
|
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2009-08-16 16:02:13 -07:00
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ALlistener &listener = context->Listener;
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2018-01-24 17:07:01 -08:00
|
|
|
if(!values)
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_VALUE, "NULL pointer");
|
2018-01-24 17:07:01 -08:00
|
|
|
else switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_ORIENTATION:
|
|
|
|
// AT then UP
|
2018-12-26 22:27:34 -08:00
|
|
|
values[0] = listener.OrientAt[0];
|
|
|
|
values[1] = listener.OrientAt[1];
|
|
|
|
values[2] = listener.OrientAt[2];
|
|
|
|
values[3] = listener.OrientUp[0];
|
|
|
|
values[4] = listener.OrientUp[1];
|
|
|
|
values[5] = listener.OrientUp[2];
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener float-vector property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-23 21:35:05 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetListeneri(ALenum param, ALint *value)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2009-08-16 16:02:13 -07:00
|
|
|
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2018-01-24 17:07:01 -08:00
|
|
|
if(!value)
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_VALUE, "NULL pointer");
|
2018-01-24 17:07:01 -08:00
|
|
|
else switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener integer property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-23 21:35:05 -07:00
|
|
|
AL_API void AL_APIENTRY alGetListener3i(ALenum param, ALint *value1, ALint *value2, ALint *value3)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2009-08-16 16:02:13 -07:00
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ALlistener &listener = context->Listener;
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2018-01-24 17:07:01 -08:00
|
|
|
if(!value1 || !value2 || !value3)
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_VALUE, "NULL pointer");
|
2018-01-24 17:07:01 -08:00
|
|
|
else switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_POSITION:
|
2019-01-08 19:42:44 +01:00
|
|
|
*value1 = static_cast<ALint>(listener.Position[0]);
|
|
|
|
*value2 = static_cast<ALint>(listener.Position[1]);
|
|
|
|
*value3 = static_cast<ALint>(listener.Position[2]);
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_VELOCITY:
|
2019-01-08 19:42:44 +01:00
|
|
|
*value1 = static_cast<ALint>(listener.Velocity[0]);
|
|
|
|
*value2 = static_cast<ALint>(listener.Velocity[1]);
|
|
|
|
*value3 = static_cast<ALint>(listener.Velocity[2]);
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener 3-integer property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-23 21:35:05 -07:00
|
|
|
AL_API void AL_APIENTRY alGetListeneriv(ALenum param, ALint* values)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-23 21:35:05 -07:00
|
|
|
switch(param)
|
2011-06-16 09:14:41 -07:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
|
|
|
alGetListener3i(param, values+0, values+1, values+2);
|
|
|
|
return;
|
2011-06-16 09:14:41 -07:00
|
|
|
}
|
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ContextRef context{GetContextRef()};
|
|
|
|
if(UNLIKELY(!context)) return;
|
2009-08-16 16:02:13 -07:00
|
|
|
|
2018-11-20 11:17:54 -08:00
|
|
|
ALlistener &listener = context->Listener;
|
2018-11-26 21:37:58 -08:00
|
|
|
std::lock_guard<std::mutex> _{context->PropLock};
|
2018-01-24 17:07:01 -08:00
|
|
|
if(!values)
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_VALUE, "NULL pointer");
|
2018-01-24 17:07:01 -08:00
|
|
|
else switch(param)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:04:52 -07:00
|
|
|
case AL_ORIENTATION:
|
|
|
|
// AT then UP
|
2019-01-08 19:42:44 +01:00
|
|
|
values[0] = static_cast<ALint>(listener.OrientAt[0]);
|
|
|
|
values[1] = static_cast<ALint>(listener.OrientAt[1]);
|
|
|
|
values[2] = static_cast<ALint>(listener.OrientAt[2]);
|
|
|
|
values[3] = static_cast<ALint>(listener.OrientUp[0]);
|
|
|
|
values[4] = static_cast<ALint>(listener.OrientUp[1]);
|
|
|
|
values[5] = static_cast<ALint>(listener.OrientUp[2]);
|
2013-10-07 09:04:52 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-11-20 11:17:54 -08:00
|
|
|
alSetError(context.get(), AL_INVALID_ENUM, "Invalid listener integer-vector property");
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
}
|
2016-05-11 18:40:17 -07:00
|
|
|
|
|
|
|
|
|
|
|
void UpdateListenerProps(ALCcontext *context)
|
|
|
|
{
|
|
|
|
/* Get an unused proprty container, or allocate a new one as needed. */
|
2018-11-20 11:17:54 -08:00
|
|
|
ALlistenerProps *props{context->FreeListenerProps.load(std::memory_order_acquire)};
|
2016-05-11 18:40:17 -07:00
|
|
|
if(!props)
|
2018-11-16 18:37:55 -08:00
|
|
|
props = static_cast<ALlistenerProps*>(al_calloc(16, sizeof(*props)));
|
2016-05-11 18:40:17 -07:00
|
|
|
else
|
|
|
|
{
|
2018-12-24 19:29:01 -08:00
|
|
|
ALlistenerProps *next;
|
2016-05-11 18:40:17 -07:00
|
|
|
do {
|
2018-11-19 03:21:58 -08:00
|
|
|
next = props->next.load(std::memory_order_relaxed);
|
|
|
|
} while(context->FreeListenerProps.compare_exchange_weak(props, next,
|
|
|
|
std::memory_order_seq_cst, std::memory_order_acquire) == 0);
|
2016-05-11 18:40:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy in current property values. */
|
2018-11-20 11:17:54 -08:00
|
|
|
ALlistener &listener = context->Listener;
|
2018-12-26 22:27:34 -08:00
|
|
|
props->Position = listener.Position;
|
|
|
|
props->Velocity = listener.Velocity;
|
|
|
|
props->OrientAt = listener.OrientAt;
|
|
|
|
props->OrientUp = listener.OrientUp;
|
2018-11-20 11:17:54 -08:00
|
|
|
props->Gain = listener.Gain;
|
2016-08-23 19:17:17 -07:00
|
|
|
|
2016-05-11 18:40:17 -07:00
|
|
|
/* Set the new container for updating internal parameters. */
|
2018-11-20 11:17:54 -08:00
|
|
|
props = listener.Update.exchange(props, std::memory_order_acq_rel);
|
2016-05-11 18:40:17 -07:00
|
|
|
if(props)
|
|
|
|
{
|
|
|
|
/* If there was an unused update container, put it back in the
|
|
|
|
* freelist.
|
|
|
|
*/
|
2018-11-19 01:20:03 -08:00
|
|
|
AtomicReplaceHead(context->FreeListenerProps, props);
|
2016-05-11 18:40:17 -07:00
|
|
|
}
|
|
|
|
}
|