Lines Matching refs:m_pSound
62 SequenceSoundHandle() : m_pSound( NULL ) { } in SequenceSoundHandle()
114 if ( IsAttachedSound() ) m_pSound->StartPrepared(); in StartPrepared()
139 if ( IsAttachedSound() ) m_pSound->Stop( fadeFrames ); in Stop()
169 if ( IsAttachedSound() ) m_pSound->Pause( flag, fadeFrames ); in Pause()
187 bool IsPrepared() const { return IsAttachedSound() && m_pSound->IsPrepared(); } in IsPrepared()
198 bool IsPause() const { return IsAttachedSound() && m_pSound->IsPause(); } in IsPause()
223 if ( IsAttachedSound() ) m_pSound->FadeIn( frames ); in FadeIn()
261 if ( IsAttachedSound() ) m_pSound->SetVolume( volume, frames );
286 if ( IsAttachedSound() ) m_pSound->SetPitch( pitch ); in SetPitch()
310 if ( IsAttachedSound() ) m_pSound->SetPan( pan ); in SetPan()
338 if ( IsAttachedSound() ) m_pSound->SetSurroundPan( surroundPan ); in SetSurroundPan()
366 if ( IsAttachedSound() ) m_pSound->SetLpfFreq( lpfFreq ); in SetLpfFreq()
386 if ( IsAttachedSound() ) m_pSound->SetPlayerPriority( priority ); in SetPlayerPriority()
415 if ( IsAttachedSound() ) m_pSound->SetMainSend( send ); in SetMainSend()
442 if ( IsAttachedSound() ) m_pSound->SetFxSend( bus, send ); in SetFxSend()
463 if ( IsAttachedSound() ) m_pSound->SetChannelPriority( priority ); in SetChannelPriority()
481 if ( IsAttachedSound() ) m_pSound->SetTempoRatio( tempoRatio ); in SetTempoRatio()
505 return IsAttachedSound() && m_pSound->ReadVariable( varNo, var ); in ReadVariable()
542 return IsAttachedSound() && m_pSound->ReadTrackVariable( trackNo, varNo, var ); in ReadTrackVariable()
560 m_pSound->WriteVariable( varNo, var ); in WriteVariable()
596 m_pSound->WriteTrackVariable( trackNo, varNo, var ); in WriteTrackVariable()
641 if ( IsAttachedSound() ) m_pSound->SetTrackMute( trackBitFlag, mute ); in SetTrackMute()
686 if ( IsAttachedSound() ) m_pSound->SetTrackMute( trackBitFlag, muteFlag ); in SetTrackMute()
732 if ( IsAttachedSound() ) m_pSound->SetTrackSilence( trackBitFlag, silenceFlag, fadeTimes ); in SetTrackSilence()
767 if ( IsAttachedSound() ) m_pSound->SetTrackVolume( trackBitFlag, volume ); in SetTrackVolume()
801 if ( IsAttachedSound() ) m_pSound->SetTrackPitch( trackBitFlag, pitch ); in SetTrackPitch()
833 if ( IsAttachedSound() ) m_pSound->SetTrackPan( trackBitFlag, pan ); in SetTrackPan()
870 if ( IsAttachedSound() ) m_pSound->SetTrackSurroundPan( trackBitFlag, surroundPan ); in SetTrackSurroundPan()
917 if ( IsAttachedSound() ) m_pSound->SetTrackBankIndex( trackBitFlag, bankIndex ); in SetTrackBankIndex()
934 bool IsAttachedSound() const { return m_pSound != NULL; } in IsAttachedSound()
972 if ( IsAttachedSound() ) m_pSound->SetId( id ); in SetId()
989 if ( IsAttachedSound() ) return m_pSound->GetId(); in GetId()
1014 return &m_pSound->GetAmbientParam(); in GetAmbientParam()
1029 unsigned long GetTick() const { return IsAttachedSound()? m_pSound->GetTick(): 0; } in GetTick()
1041 internal::SequenceSound* detail_GetAttachedSound() { return m_pSound; } in detail_GetAttachedSound()
1044 const internal::SequenceSound* detail_GetAttachedSound() const { return m_pSound; } in detail_GetAttachedSound()
1049 internal::SequenceSound* m_pSound; variable