2012-12-02 04:00:40 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
|
|
|
|
Doom 3 BFG Edition GPL Source Code
|
|
|
|
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
|
|
|
|
|
|
|
|
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
|
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code 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 Doom 3 BFG Edition Source Code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
In addition, the Doom 3 BFG Edition Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 BFG Edition Source Code. If not, please request a copy in writing from id Software at the address below.
|
|
|
|
|
|
|
|
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
|
|
|
|
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
// DG: SoundSample seems to be XAudio-independent, so this is just a copy of idSoundSample_XAudio2
|
|
|
|
|
2012-12-02 21:37:32 +00:00
|
|
|
#include "../../idlib/precompiled.h"
|
|
|
|
#include "../snd_local.h"
|
2012-12-02 04:00:40 +00:00
|
|
|
|
|
|
|
extern idCVar s_useCompression;
|
|
|
|
extern idCVar s_noSound;
|
|
|
|
|
|
|
|
#define GPU_CONVERT_CPU_TO_CPU_CACHED_READONLY_ADDRESS( x ) x
|
|
|
|
|
|
|
|
const uint32 SOUND_MAGIC_IDMSA = 0x6D7A7274;
|
|
|
|
|
|
|
|
extern idCVar sys_lang;
|
|
|
|
|
|
|
|
#define MIN_SAMPLE_RATE 1000 // Minimum audio sample rate supported (this value is from XAudio2)
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
AllocBuffer
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
static void* AllocBuffer( int size, const char* name )
|
|
|
|
{
|
|
|
|
return Mem_Alloc( size, TAG_AUDIO );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
FreeBuffer
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
static void FreeBuffer( void* p )
|
|
|
|
{
|
|
|
|
return Mem_Free( p );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSoundSample_XAudio2::idSoundSample_XAudio2
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
idSoundSample::idSoundSample()
|
|
|
|
{
|
|
|
|
timestamp = FILE_NOT_FOUND_TIMESTAMP;
|
|
|
|
loaded = false;
|
|
|
|
neverPurge = false;
|
|
|
|
levelLoadReferenced = false;
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
memset( &format, 0, sizeof( format ) );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
totalBufferSize = 0;
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
playBegin = 0;
|
|
|
|
playLength = 0;
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
lastPlayedTime = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSoundSample::~idSoundSample
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
idSoundSample::~idSoundSample()
|
|
|
|
{
|
|
|
|
FreeData();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSoundSample::WriteGeneratedSample
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
void idSoundSample::WriteGeneratedSample( idFile* fileOut )
|
|
|
|
{
|
|
|
|
fileOut->WriteBig( SOUND_MAGIC_IDMSA );
|
|
|
|
fileOut->WriteBig( timestamp );
|
|
|
|
fileOut->WriteBig( loaded );
|
|
|
|
fileOut->WriteBig( playBegin );
|
|
|
|
fileOut->WriteBig( playLength );
|
|
|
|
idWaveFile::WriteWaveFormatDirect( format, fileOut );
|
|
|
|
fileOut->WriteBig( ( int )amplitude.Num() );
|
|
|
|
fileOut->Write( amplitude.Ptr(), amplitude.Num() );
|
|
|
|
fileOut->WriteBig( totalBufferSize );
|
|
|
|
fileOut->WriteBig( ( int )buffers.Num() );
|
|
|
|
for( int i = 0; i < buffers.Num(); i++ )
|
|
|
|
{
|
|
|
|
fileOut->WriteBig( buffers[ i ].numSamples );
|
|
|
|
fileOut->WriteBig( buffers[ i ].bufferSize );
|
|
|
|
fileOut->Write( buffers[ i ].buffer, buffers[ i ].bufferSize );
|
|
|
|
};
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSoundSample::WriteAllSamples
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
void idSoundSample::WriteAllSamples( const idStr& sampleName )
|
|
|
|
{
|
|
|
|
idSoundSample* samplePC = new idSoundSample();
|
|
|
|
{
|
|
|
|
idStrStatic< MAX_OSPATH > inName = sampleName;
|
|
|
|
inName.Append( ".msadpcm" );
|
|
|
|
idStrStatic< MAX_OSPATH > inName2 = sampleName;
|
|
|
|
inName2.Append( ".wav" );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
idStrStatic< MAX_OSPATH > outName = "generated/";
|
|
|
|
outName.Append( sampleName );
|
|
|
|
outName.Append( ".idwav" );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( samplePC->LoadWav( inName ) || samplePC->LoadWav( inName2 ) )
|
|
|
|
{
|
|
|
|
idFile* fileOut = fileSystem->OpenFileWrite( outName, "fs_basepath" );
|
|
|
|
samplePC->WriteGeneratedSample( fileOut );
|
|
|
|
delete fileOut;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete samplePC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSoundSample::LoadGeneratedSound
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
bool idSoundSample::LoadGeneratedSample( const idStr& filename )
|
|
|
|
{
|
|
|
|
idFileLocal fileIn( fileSystem->OpenFileReadMemory( filename ) );
|
|
|
|
if( fileIn != NULL )
|
|
|
|
{
|
|
|
|
uint32 magic;
|
|
|
|
fileIn->ReadBig( magic );
|
|
|
|
fileIn->ReadBig( timestamp );
|
|
|
|
fileIn->ReadBig( loaded );
|
|
|
|
fileIn->ReadBig( playBegin );
|
|
|
|
fileIn->ReadBig( playLength );
|
|
|
|
idWaveFile::ReadWaveFormatDirect( format, fileIn );
|
|
|
|
int num;
|
|
|
|
fileIn->ReadBig( num );
|
|
|
|
amplitude.Clear();
|
|
|
|
amplitude.SetNum( num );
|
|
|
|
fileIn->Read( amplitude.Ptr(), amplitude.Num() );
|
|
|
|
fileIn->ReadBig( totalBufferSize );
|
|
|
|
fileIn->ReadBig( num );
|
|
|
|
buffers.SetNum( num );
|
|
|
|
for( int i = 0; i < num; i++ )
|
|
|
|
{
|
|
|
|
fileIn->ReadBig( buffers[ i ].numSamples );
|
|
|
|
fileIn->ReadBig( buffers[ i ].bufferSize );
|
|
|
|
buffers[ i ].buffer = AllocBuffer( buffers[ i ].bufferSize, GetName() );
|
|
|
|
fileIn->Read( buffers[ i ].buffer, buffers[ i ].bufferSize );
|
|
|
|
buffers[ i ].buffer = GPU_CONVERT_CPU_TO_CPU_CACHED_READONLY_ADDRESS( buffers[ i ].buffer );
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSoundSample::Load
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
void idSoundSample::LoadResource()
|
|
|
|
{
|
|
|
|
FreeData();
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( idStr::Icmpn( GetName(), "_default", 8 ) == 0 )
|
|
|
|
{
|
|
|
|
MakeDefault();
|
|
|
|
return;
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( s_noSound.GetBool() )
|
|
|
|
{
|
|
|
|
MakeDefault();
|
|
|
|
return;
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
loaded = false;
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
for( int i = 0; i < 2; i++ )
|
|
|
|
{
|
|
|
|
idStrStatic< MAX_OSPATH > sampleName = GetName();
|
|
|
|
if( ( i == 0 ) && !sampleName.Replace( "/vo/", va( "/vo/%s/", sys_lang.GetString() ) ) )
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
idStrStatic< MAX_OSPATH > generatedName = "generated/";
|
|
|
|
generatedName.Append( sampleName );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
{
|
|
|
|
if( s_useCompression.GetBool() )
|
|
|
|
{
|
|
|
|
sampleName.Append( ".msadpcm" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sampleName.Append( ".wav" );
|
|
|
|
}
|
|
|
|
generatedName.Append( ".idwav" );
|
|
|
|
}
|
|
|
|
loaded = LoadGeneratedSample( generatedName ) || LoadWav( sampleName );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( !loaded && s_useCompression.GetBool() )
|
|
|
|
{
|
|
|
|
sampleName.SetFileExtension( "wav" );
|
|
|
|
loaded = LoadWav( sampleName );
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( loaded )
|
|
|
|
{
|
|
|
|
if( cvarSystem->GetCVarBool( "fs_buildresources" ) )
|
|
|
|
{
|
|
|
|
fileSystem->AddSamplePreload( GetName() );
|
|
|
|
WriteAllSamples( GetName() );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( sampleName.Find( "/vo/" ) >= 0 )
|
|
|
|
{
|
|
|
|
for( int i = 0; i < Sys_NumLangs(); i++ )
|
|
|
|
{
|
|
|
|
const char* lang = Sys_Lang( i );
|
|
|
|
if( idStr::Icmp( lang, ID_LANG_ENGLISH ) == 0 )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
idStrStatic< MAX_OSPATH > locName = GetName();
|
|
|
|
locName.Replace( "/vo/", va( "/vo/%s/", Sys_Lang( i ) ) );
|
|
|
|
WriteAllSamples( locName );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( !loaded )
|
|
|
|
{
|
|
|
|
// make it default if everything else fails
|
|
|
|
MakeDefault();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSoundSample::LoadWav
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
bool idSoundSample::LoadWav( const idStr& filename )
|
|
|
|
{
|
|
|
|
|
|
|
|
// load the wave
|
|
|
|
idWaveFile wave;
|
|
|
|
if( !wave.Open( filename ) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
idStrStatic< MAX_OSPATH > sampleName = filename;
|
|
|
|
sampleName.SetFileExtension( "amp" );
|
|
|
|
LoadAmplitude( sampleName );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
const char* formatError = wave.ReadWaveFormat( format );
|
|
|
|
if( formatError != NULL )
|
|
|
|
{
|
|
|
|
idLib::Warning( "LoadWav( %s ) : %s", filename.c_str(), formatError );
|
|
|
|
MakeDefault();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
timestamp = wave.Timestamp();
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
totalBufferSize = wave.SeekToChunk( 'data' );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( format.basic.formatTag == idWaveFile::FORMAT_PCM || format.basic.formatTag == idWaveFile::FORMAT_EXTENSIBLE )
|
|
|
|
{
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( format.basic.bitsPerSample != 16 )
|
|
|
|
{
|
|
|
|
idLib::Warning( "LoadWav( %s ) : %s", filename.c_str(), "Not a 16 bit PCM wav file" );
|
|
|
|
MakeDefault();
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
playBegin = 0;
|
|
|
|
playLength = ( totalBufferSize ) / format.basic.blockSize;
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
buffers.SetNum( 1 );
|
|
|
|
buffers[0].bufferSize = totalBufferSize;
|
|
|
|
buffers[0].numSamples = playLength;
|
|
|
|
buffers[0].buffer = AllocBuffer( totalBufferSize, GetName() );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
wave.Read( buffers[0].buffer, totalBufferSize );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( format.basic.bitsPerSample == 16 )
|
|
|
|
{
|
|
|
|
idSwap::LittleArray( ( short* )buffers[0].buffer, totalBufferSize / sizeof( short ) );
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
buffers[0].buffer = GPU_CONVERT_CPU_TO_CPU_CACHED_READONLY_ADDRESS( buffers[0].buffer );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
}
|
|
|
|
else if( format.basic.formatTag == idWaveFile::FORMAT_ADPCM )
|
|
|
|
{
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
playBegin = 0;
|
|
|
|
playLength = ( ( totalBufferSize / format.basic.blockSize ) * format.extra.adpcm.samplesPerBlock );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
buffers.SetNum( 1 );
|
|
|
|
buffers[0].bufferSize = totalBufferSize;
|
|
|
|
buffers[0].numSamples = playLength;
|
|
|
|
buffers[0].buffer = AllocBuffer( totalBufferSize, GetName() );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
wave.Read( buffers[0].buffer, totalBufferSize );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
buffers[0].buffer = GPU_CONVERT_CPU_TO_CPU_CACHED_READONLY_ADDRESS( buffers[0].buffer );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
}
|
|
|
|
else if( format.basic.formatTag == idWaveFile::FORMAT_XMA2 )
|
|
|
|
{
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( format.extra.xma2.blockCount == 0 )
|
|
|
|
{
|
|
|
|
idLib::Warning( "LoadWav( %s ) : %s", filename.c_str(), "No data blocks in file" );
|
|
|
|
MakeDefault();
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
int bytesPerBlock = format.extra.xma2.bytesPerBlock;
|
|
|
|
assert( format.extra.xma2.blockCount == ALIGN( totalBufferSize, bytesPerBlock ) / bytesPerBlock );
|
|
|
|
assert( format.extra.xma2.blockCount * bytesPerBlock >= totalBufferSize );
|
|
|
|
assert( format.extra.xma2.blockCount * bytesPerBlock < totalBufferSize + bytesPerBlock );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
buffers.SetNum( format.extra.xma2.blockCount );
|
|
|
|
for( int i = 0; i < buffers.Num(); i++ )
|
|
|
|
{
|
|
|
|
if( i == buffers.Num() - 1 )
|
|
|
|
{
|
|
|
|
buffers[i].bufferSize = totalBufferSize - ( i * bytesPerBlock );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
buffers[i].bufferSize = bytesPerBlock;
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
buffers[i].buffer = AllocBuffer( buffers[i].bufferSize, GetName() );
|
|
|
|
wave.Read( buffers[i].buffer, buffers[i].bufferSize );
|
|
|
|
buffers[i].buffer = GPU_CONVERT_CPU_TO_CPU_CACHED_READONLY_ADDRESS( buffers[i].buffer );
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
int seekTableSize = wave.SeekToChunk( 'seek' );
|
|
|
|
if( seekTableSize != 4 * buffers.Num() )
|
|
|
|
{
|
|
|
|
idLib::Warning( "LoadWav( %s ) : %s", filename.c_str(), "Wrong number of entries in seek table" );
|
|
|
|
MakeDefault();
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
for( int i = 0; i < buffers.Num(); i++ )
|
|
|
|
{
|
|
|
|
wave.Read( &buffers[i].numSamples, sizeof( buffers[i].numSamples ) );
|
|
|
|
idSwap::Big( buffers[i].numSamples );
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
playBegin = format.extra.xma2.loopBegin;
|
|
|
|
playLength = format.extra.xma2.loopLength;
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( buffers[buffers.Num() - 1].numSamples < playBegin + playLength )
|
|
|
|
{
|
|
|
|
// This shouldn't happen, but it's not fatal if it does
|
|
|
|
playLength = buffers[buffers.Num() - 1].numSamples - playBegin;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Discard samples beyond playLength
|
|
|
|
for( int i = 0; i < buffers.Num(); i++ )
|
|
|
|
{
|
|
|
|
if( buffers[i].numSamples > playBegin + playLength )
|
|
|
|
{
|
|
|
|
buffers[i].numSamples = playBegin + playLength;
|
|
|
|
// Ideally, the following loop should always have 0 iterations because playBegin + playLength ends in the last block already
|
|
|
|
// But there is no guarantee for that, so to be safe, discard all buffers beyond this one
|
|
|
|
for( int j = i + 1; j < buffers.Num(); j++ )
|
|
|
|
{
|
|
|
|
FreeBuffer( buffers[j].buffer );
|
|
|
|
}
|
|
|
|
buffers.SetNum( i + 1 );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
idLib::Warning( "LoadWav( %s ) : Unsupported wave format %d", filename.c_str(), format.basic.formatTag );
|
|
|
|
MakeDefault();
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
wave.Close();
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
if( format.basic.formatTag == idWaveFile::FORMAT_EXTENSIBLE )
|
|
|
|
{
|
|
|
|
// HACK: XAudio2 doesn't really support FORMAT_EXTENSIBLE so we convert it to a basic format after extracting the channel mask
|
|
|
|
format.basic.formatTag = format.extra.extensible.subFormat.data1;
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
// sanity check...
|
|
|
|
assert( buffers[buffers.Num() - 1].numSamples == playBegin + playLength );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSoundSample::MakeDefault
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
void idSoundSample::MakeDefault()
|
|
|
|
{
|
|
|
|
FreeData();
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
static const int DEFAULT_NUM_SAMPLES = 256;
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
timestamp = FILE_NOT_FOUND_TIMESTAMP;
|
|
|
|
loaded = true;
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
memset( &format, 0, sizeof( format ) );
|
|
|
|
format.basic.formatTag = idWaveFile::FORMAT_PCM;
|
|
|
|
format.basic.numChannels = 1;
|
|
|
|
format.basic.bitsPerSample = 16;
|
|
|
|
format.basic.samplesPerSec = MIN_SAMPLE_RATE;
|
|
|
|
format.basic.blockSize = format.basic.numChannels * format.basic.bitsPerSample / 8;
|
|
|
|
format.basic.avgBytesPerSec = format.basic.samplesPerSec * format.basic.blockSize;
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
assert( format.basic.blockSize == 2 );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
totalBufferSize = DEFAULT_NUM_SAMPLES * 2;
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
short* defaultBuffer = ( short* )AllocBuffer( totalBufferSize, GetName() );
|
|
|
|
for( int i = 0; i < DEFAULT_NUM_SAMPLES; i += 2 )
|
|
|
|
{
|
|
|
|
defaultBuffer[i + 0] = SHRT_MIN;
|
|
|
|
defaultBuffer[i + 1] = SHRT_MAX;
|
|
|
|
}
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
buffers.SetNum( 1 );
|
|
|
|
buffers[0].buffer = defaultBuffer;
|
|
|
|
buffers[0].bufferSize = totalBufferSize;
|
|
|
|
buffers[0].numSamples = DEFAULT_NUM_SAMPLES;
|
|
|
|
buffers[0].buffer = GPU_CONVERT_CPU_TO_CPU_CACHED_READONLY_ADDRESS( buffers[0].buffer );
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
playBegin = 0;
|
|
|
|
playLength = DEFAULT_NUM_SAMPLES;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSoundSample::FreeData
|
|
|
|
|
|
|
|
Called before deleting the object and at the start of LoadResource()
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
void idSoundSample::FreeData()
|
|
|
|
{
|
|
|
|
if( buffers.Num() > 0 )
|
|
|
|
{
|
|
|
|
soundSystemLocal.StopVoicesWithSample( ( idSoundSample* )this );
|
|
|
|
for( int i = 0; i < buffers.Num(); i++ )
|
|
|
|
{
|
|
|
|
FreeBuffer( buffers[i].buffer );
|
|
|
|
}
|
|
|
|
buffers.Clear();
|
|
|
|
}
|
|
|
|
amplitude.Clear();
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-12-02 04:00:40 +00:00
|
|
|
timestamp = FILE_NOT_FOUND_TIMESTAMP;
|
|
|
|
memset( &format, 0, sizeof( format ) );
|
|
|
|
loaded = false;
|
|
|
|
totalBufferSize = 0;
|
|
|
|
playBegin = 0;
|
|
|
|
playLength = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSoundSample::LoadAmplitude
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
bool idSoundSample::LoadAmplitude( const idStr& name )
|
|
|
|
{
|
|
|
|
amplitude.Clear();
|
|
|
|
idFileLocal f( fileSystem->OpenFileRead( name ) );
|
|
|
|
if( f == NULL )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
amplitude.SetNum( f->Length() );
|
|
|
|
f->Read( amplitude.Ptr(), amplitude.Num() );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSoundSample::GetAmplitude
|
|
|
|
========================
|
|
|
|
*/
|
|
|
|
float idSoundSample::GetAmplitude( int timeMS ) const
|
|
|
|
{
|
|
|
|
if( timeMS < 0 || timeMS > LengthInMsec() )
|
|
|
|
{
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
if( IsDefault() )
|
|
|
|
{
|
|
|
|
return 1.0f;
|
|
|
|
}
|
|
|
|
int index = timeMS * 60 / 1000;
|
|
|
|
if( index < 0 || index >= amplitude.Num() )
|
|
|
|
{
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
return ( float )amplitude[index] / 255.0f;
|
|
|
|
}
|