2007-01-15 12:09:25 -08:00
|
|
|
/*
|
|
|
|
This file is part of Warzone 2100.
|
|
|
|
Copyright (C) 1999-2004 Eidos Interactive
|
|
|
|
Copyright (C) 2005-2007 Warzone Resurrection Project
|
|
|
|
|
|
|
|
Warzone 2100 is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Warzone 2100 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Warzone 2100; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2006-06-02 12:34:58 -07:00
|
|
|
#include "lib/framework/frame.h"
|
2006-09-23 11:38:12 -07:00
|
|
|
#include "lib/framework/frameresource.h"
|
2006-06-02 12:34:58 -07:00
|
|
|
#include "lib/gamelib/gtime.h"
|
2008-03-16 05:39:08 -07:00
|
|
|
#include "lib/ivis_common/pietypes.h"
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
#include "tracklib.h"
|
|
|
|
#include "aud.h"
|
2007-03-27 11:59:03 -07:00
|
|
|
#include "audio_id.h"
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
// defines
|
|
|
|
#define NO_SAMPLE - 2
|
|
|
|
#define MAX_SAME_SAMPLES 2
|
|
|
|
|
|
|
|
// global variables
|
|
|
|
static AUDIO_SAMPLE *g_psSampleList = NULL;
|
|
|
|
static AUDIO_SAMPLE *g_psSampleQueue = NULL;
|
2008-03-24 09:51:17 -07:00
|
|
|
static BOOL g_bAudioEnabled = false;
|
|
|
|
static BOOL g_bAudioPaused = false;
|
2007-05-06 13:20:45 -07:00
|
|
|
static AUDIO_SAMPLE g_sPreviousSample;
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2007-12-19 12:17:54 -08:00
|
|
|
/** Counts the number of samples in the SampleQueue
|
|
|
|
* \return the number of samples in the SampleQueue
|
|
|
|
*/
|
|
|
|
unsigned int audio_GetSampleQueueCount()
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
AUDIO_SAMPLE *psSample = NULL;
|
|
|
|
unsigned int count=0;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// loop through SampleQueue to count how many we have.
|
|
|
|
psSample = g_psSampleQueue;
|
|
|
|
while ( psSample != NULL )
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
psSample = psSample->psNext;
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Counts the number of samples in the SampleList
|
|
|
|
* \return the number of samples in the SampleList
|
|
|
|
*/
|
|
|
|
unsigned int audio_GetSampleListCount()
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
AUDIO_SAMPLE *psSample = NULL;
|
|
|
|
unsigned int count = 0;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// loop through SampleList to count how many we have.
|
|
|
|
psSample = g_psSampleList;
|
|
|
|
while (psSample != NULL)
|
|
|
|
{
|
|
|
|
++count;
|
|
|
|
psSample = psSample->psNext;
|
2007-12-31 07:16:59 -08:00
|
|
|
}
|
2007-12-19 12:17:54 -08:00
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
2007-06-28 10:47:08 -07:00
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL audio_Disabled( void )
|
|
|
|
{
|
|
|
|
return !g_bAudioEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
2006-04-01 09:50:19 -08:00
|
|
|
BOOL audio_Init( AUDIO_CALLBACK pStopTrackCallback )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
// init audio system
|
2007-05-06 13:20:45 -07:00
|
|
|
g_sPreviousSample.iTrack = NO_SAMPLE;
|
|
|
|
g_sPreviousSample.x = SAMPLE_COORD_INVALID;
|
|
|
|
g_sPreviousSample.y = SAMPLE_COORD_INVALID;
|
|
|
|
g_sPreviousSample.z = SAMPLE_COORD_INVALID;
|
2007-07-13 16:15:24 -07:00
|
|
|
g_bAudioEnabled = sound_Init();
|
2006-08-12 09:52:37 -07:00
|
|
|
if (g_bAudioEnabled)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
sound_SetStoppedCallback( pStopTrackCallback );
|
|
|
|
}
|
2006-04-01 09:50:19 -08:00
|
|
|
return g_bAudioEnabled;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL audio_Shutdown( void )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
AUDIO_SAMPLE *psSample = NULL, *psSampleTemp = NULL;
|
|
|
|
BOOL bOK;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
// if audio not enabled return true to carry on game without audio
|
|
|
|
if ( g_bAudioEnabled == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
return true;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
sound_StopAll();
|
|
|
|
bOK = sound_Shutdown();
|
|
|
|
|
|
|
|
// empty sample list
|
|
|
|
psSample = g_psSampleList;
|
|
|
|
while ( psSample != NULL )
|
|
|
|
{
|
|
|
|
psSampleTemp = psSample->psNext;
|
2007-06-05 04:46:00 -07:00
|
|
|
free(psSample);
|
2007-06-28 10:47:08 -07:00
|
|
|
psSample = psSampleTemp;
|
|
|
|
}
|
|
|
|
|
|
|
|
// empty sample queue
|
|
|
|
psSample = g_psSampleQueue;
|
|
|
|
while ( psSample != NULL )
|
|
|
|
{
|
|
|
|
psSampleTemp = psSample->psNext;
|
2007-06-05 04:46:00 -07:00
|
|
|
free(psSample);
|
2007-06-28 10:47:08 -07:00
|
|
|
psSample = psSampleTemp;
|
|
|
|
}
|
|
|
|
|
|
|
|
// free sample heap
|
|
|
|
g_psSampleList = NULL;
|
|
|
|
g_psSampleQueue = NULL;
|
|
|
|
|
|
|
|
return bOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL audio_GetPreviousQueueTrackPos( SDWORD *iX, SDWORD *iY, SDWORD *iZ )
|
|
|
|
{
|
2007-06-21 06:39:05 -07:00
|
|
|
if (g_sPreviousSample.x == SAMPLE_COORD_INVALID
|
|
|
|
|| g_sPreviousSample.y == SAMPLE_COORD_INVALID
|
|
|
|
|| g_sPreviousSample.z == SAMPLE_COORD_INVALID)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
return false;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2007-04-05 13:19:58 -07:00
|
|
|
|
|
|
|
*iX = g_sPreviousSample.x;
|
|
|
|
*iY = g_sPreviousSample.y;
|
|
|
|
*iZ = g_sPreviousSample.z;
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
return true;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
static void audio_AddSampleToHead( AUDIO_SAMPLE **ppsSampleList, AUDIO_SAMPLE *psSample )
|
|
|
|
{
|
|
|
|
psSample->psNext = ( *ppsSampleList );
|
|
|
|
psSample->psPrev = NULL;
|
|
|
|
if ( (*ppsSampleList) != NULL )
|
|
|
|
{
|
|
|
|
( *ppsSampleList )->psPrev = psSample;
|
|
|
|
}
|
|
|
|
( *ppsSampleList ) = psSample;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
static void audio_AddSampleToTail( AUDIO_SAMPLE **ppsSampleList, AUDIO_SAMPLE *psSample )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
AUDIO_SAMPLE *psSampleTail = NULL;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
if ( (*ppsSampleList) == NULL )
|
|
|
|
{
|
|
|
|
( *ppsSampleList ) = psSample;
|
2007-04-05 13:19:58 -07:00
|
|
|
return;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
2007-04-05 13:19:58 -07:00
|
|
|
psSampleTail = ( *ppsSampleList );
|
|
|
|
while ( psSampleTail->psNext != NULL )
|
|
|
|
{
|
|
|
|
psSampleTail = psSampleTail->psNext;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2007-04-05 13:19:58 -07:00
|
|
|
|
|
|
|
psSampleTail->psNext = psSample;
|
|
|
|
psSample->psPrev = psSampleTail;
|
|
|
|
psSample->psNext = NULL;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
//
|
|
|
|
// audio_RemoveSample Removes sample from list but doesn't free its memory
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
static void audio_RemoveSample( AUDIO_SAMPLE **ppsSampleList, AUDIO_SAMPLE *psSample )
|
|
|
|
{
|
|
|
|
if ( psSample == NULL )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( psSample == (*ppsSampleList) )
|
|
|
|
{
|
|
|
|
// first sample in list
|
|
|
|
( *ppsSampleList ) = psSample->psNext;
|
|
|
|
}
|
2007-04-05 13:19:58 -07:00
|
|
|
|
|
|
|
if ( psSample->psPrev != NULL )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-04-05 13:19:58 -07:00
|
|
|
psSample->psPrev->psNext = psSample->psNext;
|
|
|
|
}
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2007-04-05 13:19:58 -07:00
|
|
|
if ( psSample->psNext != NULL )
|
|
|
|
{
|
|
|
|
psSample->psNext->psPrev = psSample->psPrev;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// set sample pointers NULL for safety
|
|
|
|
psSample->psPrev = NULL;
|
|
|
|
psSample->psNext = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
static BOOL audio_CheckSameQueueTracksPlaying( SDWORD iTrack )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
SDWORD iCount;
|
|
|
|
AUDIO_SAMPLE *psSample = NULL;
|
2008-03-24 09:51:17 -07:00
|
|
|
BOOL bOK = true;
|
2007-06-28 10:47:08 -07:00
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false || g_bAudioPaused == true )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
return true;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
iCount = 0;
|
|
|
|
|
|
|
|
// loop through queue sounds and check whether too many already in it
|
|
|
|
psSample = g_psSampleQueue;
|
|
|
|
while ( psSample != NULL )
|
|
|
|
{
|
|
|
|
if ( psSample->iTrack == iTrack )
|
|
|
|
{
|
|
|
|
iCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( iCount > MAX_SAME_SAMPLES )
|
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
bOK = false;
|
2007-06-28 10:47:08 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
psSample = psSample->psNext;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
2006-09-19 11:45:48 -07:00
|
|
|
static AUDIO_SAMPLE *audio_QueueSample( SDWORD iTrack )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
AUDIO_SAMPLE *psSample = NULL;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false || g_bAudioPaused == true)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
ASSERT( sound_CheckTrack(iTrack) == true, "audio_QueueSample: track %i outside limits\n", iTrack );
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
// reject track if too many of same ID already in queue
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( audio_CheckSameQueueTracksPlaying(iTrack) == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-11-02 18:55:11 -07:00
|
|
|
psSample = calloc(1, sizeof(AUDIO_SAMPLE));
|
2007-04-12 10:42:15 -07:00
|
|
|
if ( psSample == NULL )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-06-05 04:46:00 -07:00
|
|
|
debug(LOG_ERROR, "audio_QueueSample: Out of memory");
|
2007-04-12 10:42:15 -07:00
|
|
|
return NULL;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
psSample->iTrack = iTrack;
|
|
|
|
psSample->x = SAMPLE_COORD_INVALID;
|
|
|
|
psSample->y = SAMPLE_COORD_INVALID;
|
|
|
|
psSample->z = SAMPLE_COORD_INVALID;
|
2008-03-24 09:51:17 -07:00
|
|
|
psSample->bFinishedPlaying = false;
|
2007-04-12 10:42:15 -07:00
|
|
|
|
|
|
|
// add to queue
|
|
|
|
audio_AddSampleToTail( &g_psSampleQueue, psSample );
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
return psSample;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void audio_QueueTrack( SDWORD iTrack )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
AUDIO_SAMPLE *psSample = NULL;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false || g_bAudioPaused == true)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
psSample = audio_QueueSample( iTrack );
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// * audio_QueueTrackMinDelay Will only play track if iMinDelay has elapsed since
|
|
|
|
// * track last finished
|
|
|
|
//
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void audio_QueueTrackMinDelay( SDWORD iTrack, UDWORD iMinDelay )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2007-04-12 10:42:15 -07:00
|
|
|
AUDIO_SAMPLE *psSample;
|
2007-06-28 10:47:08 -07:00
|
|
|
UDWORD iDelay;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false || g_bAudioPaused == true )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
// Determine if at least iMinDelay time has passed since the last time this track was played
|
2007-06-28 10:47:08 -07:00
|
|
|
iDelay = sound_GetGameTime() - sound_GetTrackTimeLastFinished( iTrack );
|
2007-04-12 10:42:15 -07:00
|
|
|
if ( !(iDelay > iMinDelay) )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-04-12 10:42:15 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Construct an audio sample from requested track
|
|
|
|
psSample = audio_QueueSample( iTrack );
|
|
|
|
if ( psSample == NULL )
|
|
|
|
{
|
|
|
|
return;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2007-06-21 06:03:52 -07:00
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
// Set last finished tracktime to current time to prevent parallel playing of this track
|
|
|
|
sound_SetTrackTimeLastFinished( iTrack, sound_GetGameTime() );
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void audio_QueueTrackMinDelayPos( SDWORD iTrack, UDWORD iMinDelay, SDWORD iX, SDWORD iY, SDWORD iZ )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2007-04-12 10:42:15 -07:00
|
|
|
AUDIO_SAMPLE *psSample;
|
2007-06-28 10:47:08 -07:00
|
|
|
UDWORD iDelay;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false || g_bAudioPaused == true )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
// Determine if at least iMinDelay time has passed since the last time this track was played
|
2007-06-28 10:47:08 -07:00
|
|
|
iDelay = sound_GetGameTime() - sound_GetTrackTimeLastFinished( iTrack );
|
|
|
|
if ( iDelay > iMinDelay )
|
|
|
|
{
|
2007-04-12 10:42:15 -07:00
|
|
|
return;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2007-04-12 10:42:15 -07:00
|
|
|
|
|
|
|
// Construct an audio sample from requested track
|
|
|
|
psSample = audio_QueueSample( iTrack );
|
|
|
|
if ( psSample == NULL )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2007-06-21 06:03:52 -07:00
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
psSample->x = iX;
|
|
|
|
psSample->y = iY;
|
|
|
|
psSample->z = iZ;
|
|
|
|
|
|
|
|
// Set last finished tracktime to current time to prevent parallel playing of this track
|
|
|
|
sound_SetTrackTimeLastFinished( iTrack, sound_GetGameTime() );
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void audio_QueueTrackPos( SDWORD iTrack, SDWORD iX, SDWORD iY, SDWORD iZ )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2007-04-12 10:42:15 -07:00
|
|
|
AUDIO_SAMPLE *psSample;
|
2007-06-28 10:47:08 -07:00
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false || g_bAudioPaused == true )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
// Construct an audio sample from requested track
|
2007-06-28 10:47:08 -07:00
|
|
|
psSample = audio_QueueSample( iTrack );
|
2007-04-12 10:42:15 -07:00
|
|
|
if ( psSample == NULL )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-04-12 10:42:15 -07:00
|
|
|
return;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2007-04-12 10:42:15 -07:00
|
|
|
|
|
|
|
psSample->x = iX;
|
|
|
|
psSample->y = iY;
|
|
|
|
psSample->z = iZ;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
2006-09-19 11:45:48 -07:00
|
|
|
static void audio_UpdateQueue( void )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2007-04-12 10:42:15 -07:00
|
|
|
AUDIO_SAMPLE *psSample;
|
2007-06-28 10:47:08 -07:00
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false || g_bAudioPaused == true )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
if (sound_QueueSamplePlaying() == true)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-04-05 13:19:58 -07:00
|
|
|
return;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2007-04-05 13:19:58 -07:00
|
|
|
|
|
|
|
// check queue for members
|
2007-04-12 10:42:15 -07:00
|
|
|
if ( g_psSampleQueue == NULL )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-04-12 10:42:15 -07:00
|
|
|
return;
|
|
|
|
}
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
// remove queue head
|
|
|
|
psSample = g_psSampleQueue;
|
|
|
|
audio_RemoveSample( &g_psSampleQueue, psSample );
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
// add sample to list if able to play
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( !sound_Play2DTrack(psSample, true) )
|
2007-04-12 10:42:15 -07:00
|
|
|
{
|
|
|
|
debug( LOG_NEVER, "audio_UpdateQueue: couldn't play sample\n" );
|
2007-06-05 04:46:00 -07:00
|
|
|
free(psSample);
|
2007-04-12 10:42:15 -07:00
|
|
|
return;
|
|
|
|
}
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
audio_AddSampleToHead( &g_psSampleList, psSample );
|
|
|
|
|
|
|
|
// update last queue sound coords
|
|
|
|
if ( psSample->x != SAMPLE_COORD_INVALID && psSample->y != SAMPLE_COORD_INVALID
|
|
|
|
&& psSample->z != SAMPLE_COORD_INVALID )
|
|
|
|
{
|
|
|
|
g_sPreviousSample.x = psSample->x;
|
|
|
|
g_sPreviousSample.y = psSample->y;
|
|
|
|
g_sPreviousSample.z = psSample->z;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
2007-04-12 10:42:15 -07:00
|
|
|
void audio_Update( void )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2007-03-16 09:20:16 -07:00
|
|
|
Vector3i vecPlayer;
|
2007-06-28 10:47:08 -07:00
|
|
|
SDWORD iA;
|
|
|
|
AUDIO_SAMPLE *psSample, *psSampleTemp;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
// if audio not enabled return true to carry on game without audio
|
|
|
|
if ( g_bAudioEnabled == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-04-12 10:42:15 -07:00
|
|
|
return;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
audio_UpdateQueue();
|
|
|
|
|
|
|
|
// get player position
|
2007-06-24 12:38:36 -07:00
|
|
|
audio_Get3DPlayerPos(&vecPlayer.x, &vecPlayer.y, &vecPlayer.z);
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
sound_SetPlayerPos( vecPlayer.x, vecPlayer.y, vecPlayer.z );
|
|
|
|
audio_Get3DPlayerRotAboutVerticalAxis( &iA );
|
|
|
|
sound_SetPlayerOrientation( 0, 0, iA );
|
|
|
|
|
|
|
|
// loop through 3D sounds and remove if finished or update position
|
|
|
|
psSample = g_psSampleList;
|
|
|
|
while ( psSample != NULL )
|
|
|
|
{
|
|
|
|
// remove finished samples from list
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( psSample->bFinishedPlaying == true )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
audio_RemoveSample( &g_psSampleList, psSample );
|
|
|
|
psSampleTemp = psSample->psNext;
|
2007-06-05 04:46:00 -07:00
|
|
|
free(psSample);
|
2007-06-28 10:47:08 -07:00
|
|
|
psSample = psSampleTemp;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check looping sound callbacks for finished condition
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( psSample->psObj != NULL )
|
|
|
|
{
|
|
|
|
if ( audio_ObjectDead(psSample->psObj)
|
2008-03-24 09:51:17 -07:00
|
|
|
|| (psSample->pCallback != NULL && psSample->pCallback(psSample->psObj) == false) )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
sound_StopTrack( psSample );
|
|
|
|
psSample->psObj = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// update sample position
|
|
|
|
{
|
|
|
|
audio_GetObjectPos( psSample->psObj, &psSample->x, &psSample->y, &psSample->z );
|
2007-06-06 10:09:23 -07:00
|
|
|
#ifndef WZ_NOSOUND
|
2007-11-02 11:47:22 -07:00
|
|
|
sound_SetObjectPosition(psSample);
|
2007-06-06 10:09:23 -07:00
|
|
|
#endif
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// next sample
|
|
|
|
psSample = psSample->psNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sound_Update();
|
2007-04-12 10:42:15 -07:00
|
|
|
return;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-13 16:39:40 -07:00
|
|
|
/** Retrieves loaded audio files and retrieves a TRACK from them on which some values are set and returns their respective ID numbers
|
|
|
|
* \param fileName the filename of the track
|
|
|
|
* \param loop whether the track should be looped until explicitly stopped
|
|
|
|
* \param volume the volume this track should be played on (range is 0-100)
|
|
|
|
* \param audibleRadius the radius from the source of sound where it can be heard
|
|
|
|
* \return a non-zero value when succesfull or audio is disabled, zero when the file is not found or no more tracks can be loaded (i.e. the limit is reached)
|
2007-04-05 11:14:18 -07:00
|
|
|
*/
|
2007-07-13 16:39:40 -07:00
|
|
|
unsigned int audio_SetTrackVals(const char* fileName, BOOL loop, unsigned int volume, unsigned int audibleRadius)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-07-13 16:39:40 -07:00
|
|
|
// if audio not enabled return a random non-zero value to carry on game without audio
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false )
|
2007-11-22 10:35:03 -08:00
|
|
|
{
|
2007-07-13 16:39:40 -07:00
|
|
|
return 1;
|
2007-11-22 10:35:03 -08:00
|
|
|
}
|
2007-04-05 11:14:18 -07:00
|
|
|
|
2007-07-13 16:39:40 -07:00
|
|
|
return sound_SetTrackVals(fileName, loop, volume, audibleRadius);
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// * audio_CheckSame3DTracksPlaying Reject samples if too many already playing in
|
|
|
|
// * same area
|
|
|
|
//
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
static BOOL audio_CheckSame3DTracksPlaying( SDWORD iTrack, SDWORD iX, SDWORD iY, SDWORD iZ )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
SDWORD iCount, iDx, iDy, iDz, iDistSq, iMaxDistSq, iRad;
|
|
|
|
AUDIO_SAMPLE *psSample = NULL;
|
2008-03-24 09:51:17 -07:00
|
|
|
BOOL bOK = true;
|
2007-06-28 10:47:08 -07:00
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false || g_bAudioPaused == true )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
return true;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
iCount = 0;
|
|
|
|
|
|
|
|
// loop through 3D sounds and check whether too many already in earshot
|
|
|
|
psSample = g_psSampleList;
|
|
|
|
while ( psSample != NULL )
|
|
|
|
{
|
|
|
|
if ( psSample->iTrack == iTrack )
|
|
|
|
{
|
|
|
|
iDx = iX - psSample->x;
|
|
|
|
iDy = iY - psSample->y;
|
|
|
|
iDz = iZ - psSample->z;
|
|
|
|
iDistSq = ( iDx * iDx ) + ( iDy * iDy ) + ( iDz * iDz );
|
|
|
|
iRad = sound_GetTrackAudibleRadius( iTrack );
|
|
|
|
iMaxDistSq = iRad * iRad;
|
|
|
|
if ( iDistSq < iMaxDistSq )
|
|
|
|
{
|
|
|
|
iCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( iCount > MAX_SAME_SAMPLES )
|
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
bOK = false;
|
2007-06-28 10:47:08 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
psSample = psSample->psNext;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
static BOOL audio_Play3DTrack( SDWORD iX, SDWORD iY, SDWORD iZ, int iTrack, void *psObj, AUDIO_CALLBACK pUserCallback )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
AUDIO_SAMPLE *psSample;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
// if audio not enabled return true to carry on game without audio
|
|
|
|
if ( g_bAudioEnabled == false || g_bAudioPaused == true)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
return false;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( audio_CheckSame3DTracksPlaying(iTrack, iX, iY, iZ) == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
return false;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
2007-06-05 04:46:00 -07:00
|
|
|
psSample = malloc(sizeof(AUDIO_SAMPLE));
|
2007-06-28 10:47:08 -07:00
|
|
|
if ( psSample == NULL )
|
|
|
|
{
|
2007-06-05 04:46:00 -07:00
|
|
|
debug(LOG_ERROR, "audio_Play3DTrack: Out of memory");
|
2008-03-24 09:51:17 -07:00
|
|
|
return false;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
2007-04-05 13:19:58 -07:00
|
|
|
// setup sample
|
|
|
|
memset( psSample, 0, sizeof(AUDIO_SAMPLE) ); // [check] -Q
|
|
|
|
psSample->iTrack = iTrack;
|
|
|
|
psSample->x = iX;
|
|
|
|
psSample->y = iY;
|
|
|
|
psSample->z = iZ;
|
2008-03-24 09:51:17 -07:00
|
|
|
psSample->bFinishedPlaying = false;
|
2007-04-05 13:19:58 -07:00
|
|
|
psSample->psObj = psObj;
|
|
|
|
psSample->pCallback = pUserCallback;
|
|
|
|
|
|
|
|
// add sample to list if able to play
|
|
|
|
if ( !sound_Play3DTrack(psSample) )
|
|
|
|
{
|
|
|
|
debug( LOG_NEVER, "audio_Play3DTrack: couldn't play sample\n" );
|
2007-06-05 04:46:00 -07:00
|
|
|
free(psSample);
|
2008-03-24 09:51:17 -07:00
|
|
|
return false;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2007-04-05 13:19:58 -07:00
|
|
|
|
|
|
|
audio_AddSampleToHead( &g_psSampleList, psSample );
|
2008-03-24 09:51:17 -07:00
|
|
|
return true;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL audio_PlayStaticTrack( SDWORD iMapX, SDWORD iMapY, int iTrack )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~
|
|
|
|
SDWORD iX, iY, iZ;
|
|
|
|
//~~~~~~~~~~~~~~~
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
// if audio not enabled return true to carry on game without audio
|
|
|
|
if ( g_bAudioEnabled == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
return false;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
audio_GetStaticPos( iMapX, iMapY, &iX, &iY, &iZ );
|
|
|
|
return audio_Play3DTrack( iX, iY, iZ, iTrack, NULL, NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL audio_PlayObjStaticTrack( void *psObj, int iTrack )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~
|
|
|
|
SDWORD iX, iY, iZ;
|
|
|
|
//~~~~~~~~~~~~~~~
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
// if audio not enabled return true to carry on game without audio
|
|
|
|
if ( g_bAudioEnabled == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
return false;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
audio_GetObjectPos( psObj, &iX, &iY, &iZ );
|
|
|
|
return audio_Play3DTrack( iX, iY, iZ, iTrack, psObj, NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL audio_PlayObjStaticTrackCallback( void *psObj, int iTrack, AUDIO_CALLBACK pUserCallback )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~
|
|
|
|
SDWORD iX, iY, iZ;
|
|
|
|
//~~~~~~~~~~~~~~~
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
// if audio not enabled return true to carry on game without audio
|
|
|
|
if ( g_bAudioEnabled == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
return false;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
audio_GetObjectPos( psObj, &iX, &iY, &iZ );
|
|
|
|
return audio_Play3DTrack( iX, iY, iZ, iTrack, psObj, pUserCallback );
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL audio_PlayObjDynamicTrack( void *psObj, int iTrack, AUDIO_CALLBACK pUserCallback )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~
|
|
|
|
SDWORD iX, iY, iZ;
|
|
|
|
//~~~~~~~~~~~~~~~
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
// if audio not enabled return true to carry on game without audio
|
|
|
|
if ( g_bAudioEnabled == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-03-24 09:51:17 -07:00
|
|
|
return false;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
audio_GetObjectPos( psObj, &iX, &iY, &iZ );
|
|
|
|
return audio_Play3DTrack( iX, iY, iZ, iTrack, psObj, pUserCallback );
|
|
|
|
}
|
|
|
|
|
2007-12-31 07:16:59 -08:00
|
|
|
/** Plays the given audio file as a stream and reports back when it has finished
|
|
|
|
* playing.
|
|
|
|
* \param fileName the (OggVorbis) file to play from
|
|
|
|
* \param volume the volume to use while playing this file (in the range of
|
|
|
|
* 0.0 - 1.0)
|
|
|
|
* \param onFinished a callback function to invoke when playing of this stream
|
|
|
|
* has been finished. You can use NULL to specifiy no callback function.
|
|
|
|
* \param user_data a pointer to contain some user data to pass along to the
|
|
|
|
* finished callback.
|
2008-01-27 13:28:35 -08:00
|
|
|
* \return a pointer to the currently playing stream when the stream is playing
|
|
|
|
* (and as such the callback will be invoked some time in the future),
|
|
|
|
* NULL when the stream didn't start playing (and the callback won't be
|
|
|
|
* invoked).
|
|
|
|
* \note The returned pointer will become invalid/dangling immediately after
|
|
|
|
* the \c onFinished callback is invoked.
|
|
|
|
* \note You must _never_ manually free() the memory used by the returned
|
|
|
|
* pointer.
|
2007-12-31 07:16:59 -08:00
|
|
|
*/
|
2008-01-27 13:28:35 -08:00
|
|
|
AUDIO_STREAM* audio_PlayStream(const char* fileName, float volume, void (*onFinished)(void*), void* user_data)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-12-31 07:16:59 -08:00
|
|
|
PHYSFS_file* fileHandle;
|
2008-01-27 13:28:35 -08:00
|
|
|
AUDIO_STREAM* stream;
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2007-12-31 07:16:59 -08:00
|
|
|
// If audio is not enabled return false to indicate that the given callback
|
|
|
|
// will not be invoked.
|
2008-03-24 09:51:17 -07:00
|
|
|
if (g_bAudioEnabled == false)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-01-27 13:28:35 -08:00
|
|
|
return NULL;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
2007-12-31 07:16:59 -08:00
|
|
|
// Open up the file
|
|
|
|
fileHandle = PHYSFS_openRead(fileName);
|
|
|
|
if (fileHandle == NULL)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-12-31 07:16:59 -08:00
|
|
|
debug(LOG_ERROR, "sound_LoadTrackFromFile: PHYSFS_openRead(\"%s\") failed with error: %s\n", fileName, PHYSFS_getLastError());
|
|
|
|
return NULL;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2007-06-21 06:03:52 -07:00
|
|
|
|
2008-01-27 13:28:35 -08:00
|
|
|
stream = sound_PlayStream(fileHandle, volume, onFinished, user_data);
|
|
|
|
if (stream == NULL)
|
2007-04-12 10:42:15 -07:00
|
|
|
{
|
2007-12-31 07:16:59 -08:00
|
|
|
PHYSFS_close(fileHandle);
|
2008-01-27 13:28:35 -08:00
|
|
|
return NULL;
|
2007-04-12 10:42:15 -07:00
|
|
|
}
|
|
|
|
|
2008-01-27 13:28:35 -08:00
|
|
|
return stream;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void audio_StopObjTrack( void *psObj, int iTrack )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
AUDIO_SAMPLE *psSample;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// find sample
|
|
|
|
psSample = g_psSampleList;
|
|
|
|
while ( psSample != NULL )
|
|
|
|
{
|
2007-04-12 10:42:15 -07:00
|
|
|
// If track has been found stop it and return
|
2007-06-28 10:47:08 -07:00
|
|
|
if ( psSample->psObj == psObj && psSample->iTrack == iTrack )
|
|
|
|
{
|
2007-04-12 10:42:15 -07:00
|
|
|
sound_StopTrack(psSample);
|
|
|
|
return;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
2007-04-15 15:46:57 -07:00
|
|
|
// get next sample from linked list
|
2007-06-28 10:47:08 -07:00
|
|
|
psSample = psSample->psNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
//
|
|
|
|
// audio_PlayTrack Play immediate 2D FX track
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void audio_PlayTrack( int iTrack )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
AUDIO_SAMPLE *psSample;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false || g_bAudioPaused == true)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
// Allocate a sample
|
2007-06-05 04:46:00 -07:00
|
|
|
psSample = malloc(sizeof(AUDIO_SAMPLE));
|
2007-04-12 10:42:15 -07:00
|
|
|
if ( psSample == NULL )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-06-05 04:46:00 -07:00
|
|
|
debug(LOG_ERROR, "audio_PlayTrack: Out of memory");
|
2007-06-28 10:47:08 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
// setup/initialize sample
|
|
|
|
psSample->iTrack = iTrack;
|
2008-03-24 09:51:17 -07:00
|
|
|
psSample->bFinishedPlaying = false;
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
// Zero callback stuff since we don't need/want it
|
|
|
|
psSample->pCallback = NULL;
|
|
|
|
psSample->psObj = NULL;
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2007-04-12 10:42:15 -07:00
|
|
|
/* iSample, psPrev, and psNext will be initialized by the
|
|
|
|
* following functions, and x, y and z will be completely
|
|
|
|
* ignored so we don't need to bother about it
|
|
|
|
*/
|
|
|
|
|
|
|
|
// add sample to list if able to play
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( !sound_Play2DTrack(psSample, false) )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-04-12 10:42:15 -07:00
|
|
|
debug( LOG_NEVER, "audio_PlayTrack: couldn't play sample\n" );
|
2007-06-05 04:46:00 -07:00
|
|
|
free(psSample);
|
2007-06-28 10:47:08 -07:00
|
|
|
return;
|
|
|
|
}
|
2007-04-12 10:42:15 -07:00
|
|
|
|
|
|
|
audio_AddSampleToHead( &g_psSampleList, psSample );
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void audio_PauseAll( void )
|
|
|
|
{
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
g_bAudioPaused = true;
|
2007-06-28 10:47:08 -07:00
|
|
|
sound_PauseAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void audio_ResumeAll( void )
|
|
|
|
{
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-03-24 09:51:17 -07:00
|
|
|
g_bAudioPaused = false;
|
2007-06-28 10:47:08 -07:00
|
|
|
sound_ResumeAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void audio_StopAll( void )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2007-11-02 18:55:11 -07:00
|
|
|
AUDIO_SAMPLE* psSample;
|
2007-06-28 10:47:08 -07:00
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2007-11-02 18:55:11 -07:00
|
|
|
// * empty list - audio_Update will free samples because callbacks have to come in first
|
2007-06-28 10:47:08 -07:00
|
|
|
//
|
2007-11-02 18:55:11 -07:00
|
|
|
for (psSample = g_psSampleList; psSample != NULL; psSample = psSample->psNext)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-11-02 18:55:11 -07:00
|
|
|
// Stop this sound sample
|
|
|
|
sound_StopTrack(psSample);
|
|
|
|
|
2007-11-02 19:07:25 -07:00
|
|
|
// HACK:
|
|
|
|
// Make sure to set psObj to NULL, since sometimes it becomes
|
|
|
|
// invalidated, i.e. dangling, before audio_Update() gets the
|
|
|
|
// chance to clean it up.
|
|
|
|
//
|
|
|
|
// Meaning at this place in the code audio_ObjectDead(psObj)
|
|
|
|
// would indicate that psObj is still valid and will remain
|
|
|
|
// such. While in reality, before audio_Update() can get the
|
|
|
|
// chance to check again, this pointer will have become
|
|
|
|
// dangling.
|
|
|
|
//
|
|
|
|
// NOTE: This would always happen when audio_StopAll() had been
|
|
|
|
// invoked by stageThreeShutDown().
|
|
|
|
psSample->psObj = NULL;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// empty sample queue
|
|
|
|
psSample = g_psSampleQueue;
|
|
|
|
while ( psSample != NULL )
|
|
|
|
{
|
2007-11-02 18:55:11 -07:00
|
|
|
AUDIO_SAMPLE* psSampleTemp = psSample;
|
|
|
|
|
|
|
|
// Advance the sample iterator (before invalidating it)
|
|
|
|
psSample = psSample->psNext;
|
|
|
|
|
|
|
|
// Destroy the sample
|
|
|
|
free(psSampleTemp);
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
g_psSampleQueue = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
2007-04-16 07:53:09 -07:00
|
|
|
SDWORD audio_GetTrackID( const char *fileName )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~
|
|
|
|
TRACK *psTrack;
|
|
|
|
//~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// return if audio not enabled
|
2008-03-24 09:51:17 -07:00
|
|
|
if ( g_bAudioEnabled == false )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return SAMPLE_NOT_FOUND;
|
|
|
|
}
|
2007-04-05 13:19:58 -07:00
|
|
|
|
2007-11-26 07:57:56 -08:00
|
|
|
if (fileName == NULL || strlen(fileName) == 0)
|
2007-11-22 10:35:03 -08:00
|
|
|
{
|
2007-11-26 07:57:56 -08:00
|
|
|
debug(LOG_ERROR, "audio_GetTrackID: fileName is %s", (fileName == NULL) ? "a NULL pointer" : "empty");
|
2007-11-22 10:35:03 -08:00
|
|
|
return SAMPLE_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
2007-04-16 07:53:09 -07:00
|
|
|
psTrack = (TRACK*)resGetData( "WAV", fileName );
|
2007-04-05 13:19:58 -07:00
|
|
|
if ( psTrack == NULL )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2007-04-05 13:19:58 -07:00
|
|
|
return SAMPLE_NOT_FOUND;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2007-04-05 13:19:58 -07:00
|
|
|
|
|
|
|
return sound_GetTrackID( psTrack );
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2007-12-09 14:36:06 -08:00
|
|
|
|
|
|
|
/** Loop through the list of playing and queued audio samples, and destroy any
|
|
|
|
* of them that refer to the given object.
|
|
|
|
* \param psObj pointer to the object for which we must destroy all of its
|
|
|
|
* outstanding audio samples.
|
|
|
|
*/
|
|
|
|
void audio_RemoveObj(const void* psObj)
|
|
|
|
{
|
|
|
|
unsigned int count = 0;
|
|
|
|
|
|
|
|
// loop through queued sounds and check if a sample needs to be removed
|
|
|
|
AUDIO_SAMPLE *psSample = g_psSampleQueue;
|
|
|
|
while (psSample != NULL)
|
|
|
|
{
|
|
|
|
if (psSample->psObj == psObj)
|
|
|
|
{
|
|
|
|
// The current audio sample seems to refer to an object
|
|
|
|
// that is about to be destroyed. So destroy this
|
|
|
|
// sample as well.
|
|
|
|
AUDIO_SAMPLE* toRemove = psSample;
|
|
|
|
|
|
|
|
// Make sure to keep our linked list iterator valid
|
|
|
|
psSample = psSample->psNext;
|
|
|
|
|
2007-12-13 15:47:46 -08:00
|
|
|
debug(LOG_MEMORY, "audio_RemoveObj: callback %p sample %d\n",toRemove->pCallback,toRemove->iTrack);
|
|
|
|
// Remove sound from global active list
|
|
|
|
sound_RemoveActiveSample( toRemove ); //remove from global active list.
|
|
|
|
|
2007-12-09 14:36:06 -08:00
|
|
|
// Perform the actual task of destroying this sample
|
|
|
|
audio_RemoveSample(&g_psSampleQueue, toRemove);
|
2007-12-09 15:35:56 -08:00
|
|
|
free(toRemove);
|
2007-12-09 14:36:06 -08:00
|
|
|
|
|
|
|
// Increment the deletion count
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
psSample = psSample->psNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count)
|
|
|
|
debug(LOG_MEMORY, "audio_RemoveObj: BASE_OBJECT* 0x%p was found %u times in the audio sample queue", psObj, count);
|
|
|
|
|
|
|
|
// Reset the deletion count
|
|
|
|
count = 0;
|
|
|
|
|
|
|
|
// loop through list of currently playing sounds and check if a sample needs to be removed
|
|
|
|
psSample = g_psSampleList;
|
|
|
|
while (psSample != NULL)
|
|
|
|
{
|
|
|
|
if (psSample->psObj == psObj)
|
|
|
|
{
|
|
|
|
// The current audio sample seems to refer to an object
|
|
|
|
// that is about to be destroyed. So destroy this
|
|
|
|
// sample as well.
|
|
|
|
AUDIO_SAMPLE* toRemove = psSample;
|
|
|
|
|
|
|
|
// Make sure to keep our linked list iterator valid
|
|
|
|
psSample = psSample->psNext;
|
|
|
|
|
2007-12-13 15:47:46 -08:00
|
|
|
debug(LOG_MEMORY, "audio_RemoveObj: callback %p sample %d\n",toRemove->pCallback,toRemove->iTrack);
|
2007-12-09 14:36:06 -08:00
|
|
|
// Stop this sound sample
|
2007-12-13 15:47:46 -08:00
|
|
|
sound_RemoveActiveSample( toRemove ); //remove from global active list.
|
2007-12-31 07:16:59 -08:00
|
|
|
|
2007-12-09 14:36:06 -08:00
|
|
|
// Perform the actual task of destroying this sample
|
|
|
|
audio_RemoveSample(&g_psSampleList, toRemove);
|
2007-12-09 15:35:56 -08:00
|
|
|
free(toRemove);
|
2007-12-09 14:36:06 -08:00
|
|
|
|
|
|
|
// Increment the deletion count
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
psSample = psSample->psNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count)
|
|
|
|
debug(LOG_MEMORY, "audio_RemoveObj: ***Warning! psOBJ %p was found %u times in the list of playing audio samples", psObj, count);
|
|
|
|
}
|