You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.3 KiB
64 lines
1.3 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
#include <stdio.h>
|
||
|
#include "snd_audio_source.h"
|
||
|
|
||
|
|
||
|
|
||
|
extern CAudioSource *Audio_CreateMemoryWave( const char *pName );
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Purpose: Simple wrapper to crack naming convention and create the proper wave source
|
||
|
// Input : *pName - WAVE filename
|
||
|
// Output : CAudioSource
|
||
|
//-----------------------------------------------------------------------------
|
||
|
CAudioSource *AudioSource_Create( const char *pName )
|
||
|
{
|
||
|
if ( !pName )
|
||
|
return NULL;
|
||
|
|
||
|
// if ( pName[0] == '!' ) // sentence
|
||
|
;
|
||
|
|
||
|
// Names that begin with "*" are streaming.
|
||
|
// Skip over the * and create a streamed source
|
||
|
if ( pName[0] == '*' )
|
||
|
{
|
||
|
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
// These are loaded into memory directly
|
||
|
return Audio_CreateMemoryWave( pName );
|
||
|
}
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#include <windows.h>
|
||
|
|
||
|
#include "hlfaceposer.h"
|
||
|
#include "ifaceposersound.h"
|
||
|
|
||
|
CAudioSource::~CAudioSource( void )
|
||
|
{
|
||
|
CAudioMixer *mixer;
|
||
|
|
||
|
while ( 1 )
|
||
|
{
|
||
|
mixer = sound->FindMixer( this );
|
||
|
if ( !mixer )
|
||
|
break;
|
||
|
|
||
|
sound->StopSound( mixer );
|
||
|
}
|
||
|
|
||
|
sound->EnsureNoModelReferences( this );
|
||
|
}
|
||
|
|
||
|
CAudioSource::CAudioSource( void )
|
||
|
{
|
||
|
}
|