Lines Matching refs:m_WaveSoundInfo
58 m_WaveSoundInfo.pitch = 1.0f; in Initialize()
59 m_WaveSoundInfo.pan = 64; in Initialize()
60 m_WaveSoundInfo.surroundPan = 0; in Initialize()
63 m_WaveSoundInfo.fxSend[ i ] = 0; in Initialize()
65 m_WaveSoundInfo.mainSend = 127; in Initialize()
376 &m_WaveSoundInfo, in StartChannel()
414 channel->SetAttack( m_WaveSoundInfo.adshr.attack ); in StartChannel()
415 channel->SetHold( m_WaveSoundInfo.adshr.hold ); in StartChannel()
416 channel->SetDecay( m_WaveSoundInfo.adshr.decay ); in StartChannel()
417 channel->SetSustain( m_WaveSoundInfo.adshr.sustain ); in StartChannel()
418 channel->SetRelease( m_WaveSoundInfo.adshr.release ); in StartChannel()
478 pitchRatio *= m_WaveSoundInfo.pitch; in UpdateChannel()
482 if ( m_WaveSoundInfo.pan <= 1 ) // panの1と2は同じ値 in UpdateChannel()
484 pan += static_cast<f32>( static_cast<int>( m_WaveSoundInfo.pan ) - 63 ) / 63.0f; in UpdateChannel()
488 pan += static_cast<f32>( static_cast<int>( m_WaveSoundInfo.pan ) - 64 ) / 63.0f; in UpdateChannel()
495 if ( m_WaveSoundInfo.surroundPan <= 63 ) in UpdateChannel()
497 surroundPan += static_cast<f32>( m_WaveSoundInfo.surroundPan ) / 63.0f; in UpdateChannel()
501 surroundPan += static_cast<f32>( m_WaveSoundInfo.surroundPan + 1 ) / 64.0f; in UpdateChannel()
516 mainSend += static_cast<float>( m_WaveSoundInfo.mainSend ) / 127.0f - 1.0f; in UpdateChannel()
524 infoSend[ i ] = m_WaveSoundInfo.fxSend[ i ]; in UpdateChannel()