Lines Matching refs:m_WaveSoundInfo
60 m_WaveSoundInfo.pitch = 1.0f; in Initialize()
61 m_WaveSoundInfo.pan = 64; in Initialize()
62 m_WaveSoundInfo.surroundPan = 0; in Initialize()
65 m_WaveSoundInfo.fxSend[ i ] = 0; in Initialize()
67 m_WaveSoundInfo.mainSend = 127; in Initialize()
390 &m_WaveSoundInfo, in StartChannel()
424 channel->SetAttack( m_WaveSoundInfo.adshr.attack ); in StartChannel()
425 channel->SetHold( m_WaveSoundInfo.adshr.hold ); in StartChannel()
426 channel->SetDecay( m_WaveSoundInfo.adshr.decay ); in StartChannel()
427 channel->SetSustain( m_WaveSoundInfo.adshr.sustain ); in StartChannel()
428 channel->SetRelease( m_WaveSoundInfo.adshr.release ); in StartChannel()
488 pitchRatio *= m_WaveSoundInfo.pitch; in UpdateChannel()
492 if ( m_WaveSoundInfo.pan <= 1 ) // panの1と2は同じ値 in UpdateChannel()
494 pan += static_cast<f32>( static_cast<int>( m_WaveSoundInfo.pan ) - 63 ) / 63.0f; in UpdateChannel()
498 pan += static_cast<f32>( static_cast<int>( m_WaveSoundInfo.pan ) - 64 ) / 63.0f; in UpdateChannel()
505 if ( m_WaveSoundInfo.surroundPan <= 63 ) in UpdateChannel()
507 surroundPan += static_cast<f32>( m_WaveSoundInfo.surroundPan ) / 63.0f; in UpdateChannel()
511 surroundPan += static_cast<f32>( m_WaveSoundInfo.surroundPan + 1 ) / 64.0f; in UpdateChannel()
526 mainSend += static_cast<float>( m_WaveSoundInfo.mainSend ) / 127.0f - 1.0f; in UpdateChannel()
534 infoSend[ i ] = m_WaveSoundInfo.fxSend[ i ]; in UpdateChannel()