From 7976de05a54fb84c575723d77465308e49c9a258 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 26 Aug 2009 19:15:17 -0700 Subject: Add base support for ALC_EXT_disconnect Individual backends need to be updated to handle disconnection events --- OpenAL32/alSource.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'OpenAL32/alSource.c') diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 205a1c46..30be074e 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -1347,6 +1347,22 @@ ALAPI ALvoid ALAPIENTRY alSourcePlayv(ALsizei n, const ALuint *pSourceList) // Check if an Offset has been set if(pSource->lOffset) ApplyOffset(pSource, AL_FALSE); + + // If device is disconnected, go right to stopped + if(!pContext->Device->Connected) + { + pSource->state = AL_STOPPED; + pSource->inuse = AL_FALSE; + pSource->BuffersPlayed = pSource->BuffersInQueue; + ALBufferList = pSource->queue; + while(ALBufferList != NULL) + { + ALBufferList->bufferstate = PROCESSED; + ALBufferList = ALBufferList->next; + } + pSource->position = 0; + pSource->position_fraction = 0; + } } else { -- cgit v1.2.3