Lines Matching refs:IsAttachedSound

116         if ( IsAttachedSound() ) m_pSound->StartPrepared();  in StartPrepared()
144 if ( IsAttachedSound() ) m_pSound->Stop( fadeFrames ); in Stop()
177 if ( IsAttachedSound() ) m_pSound->Pause( flag, fadeFrames ); in Pause()
195 bool IsPrepared() const { return IsAttachedSound() && m_pSound->IsPrepared(); } in IsPrepared()
206 bool IsPause() const { return IsAttachedSound() && m_pSound->IsPause(); } in IsPause()
234 if ( IsAttachedSound() ) m_pSound->FadeIn( frames ); in FadeIn()
275 if ( IsAttachedSound() ) m_pSound->SetVolume( volume, frames );
300 if ( IsAttachedSound() ) m_pSound->SetPitch( pitch ); in SetPitch()
324 if ( IsAttachedSound() ) m_pSound->SetPan( pan ); in SetPan()
352 if ( IsAttachedSound() ) m_pSound->SetSurroundPan( surroundPan ); in SetSurroundPan()
380 if ( IsAttachedSound() ) m_pSound->SetLpfFreq( lpfFreq ); in SetLpfFreq()
400 if ( IsAttachedSound() ) m_pSound->SetPlayerPriority( priority ); in SetPlayerPriority()
429 if ( IsAttachedSound() ) m_pSound->SetMainSend( send ); in SetMainSend()
456 if ( IsAttachedSound() ) m_pSound->SetFxSend( bus, send ); in SetFxSend()
477 if ( IsAttachedSound() ) m_pSound->SetChannelPriority( priority ); in SetChannelPriority()
495 if ( IsAttachedSound() ) m_pSound->SetTempoRatio( tempoRatio ); in SetTempoRatio()
519 return IsAttachedSound() && m_pSound->ReadVariable( varNo, var ); in ReadVariable()
556 return IsAttachedSound() && m_pSound->ReadTrackVariable( trackNo, varNo, var ); in ReadTrackVariable()
573 if ( ! IsAttachedSound() ) return false; in WriteVariable()
609 if ( ! IsAttachedSound() ) return false; in WriteTrackVariable()
655 if ( IsAttachedSound() ) m_pSound->SetTrackMute( trackBitFlag, mute ); in SetTrackMute()
700 if ( IsAttachedSound() ) m_pSound->SetTrackMute( trackBitFlag, muteFlag ); in SetTrackMute()
746 if ( IsAttachedSound() ) m_pSound->SetTrackSilence( trackBitFlag, silenceFlag, fadeTimes ); in SetTrackSilence()
781 if ( IsAttachedSound() ) m_pSound->SetTrackVolume( trackBitFlag, volume ); in SetTrackVolume()
815 if ( IsAttachedSound() ) m_pSound->SetTrackPitch( trackBitFlag, pitch ); in SetTrackPitch()
847 if ( IsAttachedSound() ) m_pSound->SetTrackPan( trackBitFlag, pan ); in SetTrackPan()
884 if ( IsAttachedSound() ) m_pSound->SetTrackSurroundPan( trackBitFlag, surroundPan ); in SetTrackSurroundPan()
933 if ( IsAttachedSound() ) m_pSound->SetTrackBankIndex( trackBitFlag, bankIndex ); in SetTrackBankIndex()
950 bool IsAttachedSound() const { return m_pSound != NULL; } in IsAttachedSound() function
988 if ( IsAttachedSound() ) m_pSound->SetId( id ); in SetId()
1005 if ( IsAttachedSound() ) return m_pSound->GetId(); in GetId()
1029 if ( ! IsAttachedSound() ) return NULL; in GetAmbientParam()
1045 unsigned long GetTick() const { return IsAttachedSound()? m_pSound->GetTick(): 0; } in GetTick()