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"
|
|
|
|
|
2011-09-10 01:12:34 -07:00
|
|
|
#include <signal.h>
|
|
|
|
|
2013-10-28 12:05:33 -07:00
|
|
|
#ifdef HAVE_WINDOWS_H
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#include "alMain.h"
|
|
|
|
#include "AL/alc.h"
|
|
|
|
#include "alError.h"
|
|
|
|
|
2011-09-10 01:12:34 -07:00
|
|
|
ALboolean TrapALError = AL_FALSE;
|
|
|
|
|
2010-03-16 17:35:51 -07:00
|
|
|
ALvoid alSetError(ALCcontext *Context, ALenum errorCode)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2014-07-23 06:36:34 -07:00
|
|
|
ALenum curerr = AL_NO_ERROR;
|
2011-09-10 01:12:34 -07:00
|
|
|
if(TrapALError)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2011-09-14 02:10:42 -07:00
|
|
|
/* DebugBreak will cause an exception if there is no debugger */
|
|
|
|
if(IsDebuggerPresent())
|
2011-09-10 01:12:34 -07:00
|
|
|
DebugBreak();
|
|
|
|
#elif defined(SIGTRAP)
|
2011-09-30 20:46:18 -07:00
|
|
|
raise(SIGTRAP);
|
2011-09-10 01:12:34 -07:00
|
|
|
#endif
|
|
|
|
}
|
2014-08-01 02:40:25 -07:00
|
|
|
ATOMIC_COMPARE_EXCHANGE_STRONG(ALenum, &Context->LastError, &curerr, errorCode);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2012-04-24 21:41:01 -07:00
|
|
|
|
|
|
|
AL_API ALenum AL_APIENTRY alGetError(void)
|
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALenum errorCode;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context)
|
|
|
|
{
|
|
|
|
if(TrapALError)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
if(IsDebuggerPresent())
|
|
|
|
DebugBreak();
|
|
|
|
#elif defined(SIGTRAP)
|
|
|
|
raise(SIGTRAP);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return AL_INVALID_OPERATION;
|
|
|
|
}
|
|
|
|
|
2014-07-26 03:00:49 -07:00
|
|
|
errorCode = ATOMIC_EXCHANGE(ALenum, &Context->LastError, AL_NO_ERROR);
|
2012-04-24 21:41:01 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
|
|
|
|
return errorCode;
|
|
|
|
}
|