Ignore the listening angle for the wet path sound cones
[openal-soft.git] / OpenAL32 / alThunk.c
blob29da9bbda9640fb0a679e70304ea2a0fdf21b34d
1 /**
2 * OpenAL cross platform audio library
3 * Copyright (C) 1999-2007 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
21 #include "config.h"
23 #include <stdlib.h>
25 #include "alMain.h"
26 #include "alThunk.h"
28 #include "almalloc.h"
31 static ATOMIC(ALenum) *ThunkArray;
32 static ALuint ThunkArraySize;
33 static RWLock ThunkLock;
35 void ThunkInit(void)
37 RWLockInit(&ThunkLock);
38 ThunkArraySize = 1;
39 ThunkArray = al_calloc(16, ThunkArraySize * sizeof(*ThunkArray));
42 void ThunkExit(void)
44 al_free(ThunkArray);
45 ThunkArray = NULL;
46 ThunkArraySize = 0;
49 ALenum NewThunkEntry(ALuint *index)
51 void *NewList;
52 ALuint i;
54 ReadLock(&ThunkLock);
55 for(i = 0;i < ThunkArraySize;i++)
57 if(ATOMIC_EXCHANGE(ALenum, &ThunkArray[i], AL_TRUE) == AL_FALSE)
59 ReadUnlock(&ThunkLock);
60 *index = i+1;
61 return AL_NO_ERROR;
64 ReadUnlock(&ThunkLock);
66 WriteLock(&ThunkLock);
67 /* Double-check that there's still no free entries, in case another
68 * invocation just came through and increased the size of the array.
70 for(;i < ThunkArraySize;i++)
72 if(ATOMIC_EXCHANGE(ALenum, &ThunkArray[i], AL_TRUE) == AL_FALSE)
74 WriteUnlock(&ThunkLock);
75 *index = i+1;
76 return AL_NO_ERROR;
80 NewList = al_calloc(16, ThunkArraySize*2 * sizeof(*ThunkArray));
81 if(!NewList)
83 WriteUnlock(&ThunkLock);
84 ERR("Realloc failed to increase to %u entries!\n", ThunkArraySize*2);
85 return AL_OUT_OF_MEMORY;
87 memcpy(NewList, ThunkArray, ThunkArraySize*sizeof(*ThunkArray));
88 al_free(ThunkArray);
89 ThunkArray = NewList;
90 ThunkArraySize *= 2;
92 ATOMIC_STORE(&ThunkArray[i], AL_TRUE);
93 WriteUnlock(&ThunkLock);
95 *index = i+1;
96 return AL_NO_ERROR;
99 void FreeThunkEntry(ALuint index)
101 ReadLock(&ThunkLock);
102 if(index > 0 && index <= ThunkArraySize)
103 ATOMIC_STORE(&ThunkArray[index-1], AL_FALSE);
104 ReadUnlock(&ThunkLock);