| /NW4C-1.2.23/include/nw/snd/ |
| D | snd_BasicSoundPlayer.h | 38 float surroundPan; member 82 void SetSurroundPan( float surroundPan ) { m_PlayerParamSet.surroundPan = surroundPan; } in SetSurroundPan() argument 93 float GetSurroundPan() const { return m_PlayerParamSet.surroundPan; } in GetSurroundPan()
|
| D | snd_StreamSoundHandle.h | 354 void SetSurroundPan( f32 surroundPan ) in SetSurroundPan() argument 356 if ( IsAttachedSound() ) m_pSound->SetSurroundPan( surroundPan ); in SetSurroundPan() 561 void SetTrackSurroundPan( u32 trackBitFlag, f32 surroundPan ) in SetTrackSurroundPan() argument 563 if ( IsAttachedSound() ) m_pSound->SetTrackSurroundPan( trackBitFlag, surroundPan ); in SetTrackSurroundPan()
|
| D | snd_SequenceSoundHandle.h | 336 void SetSurroundPan( f32 surroundPan ) in SetSurroundPan() argument 338 if ( IsAttachedSound() ) m_pSound->SetSurroundPan( surroundPan ); in SetSurroundPan() 868 void SetTrackSurroundPan( u32 trackBitFlag, f32 surroundPan ) in SetTrackSurroundPan() argument 870 if ( IsAttachedSound() ) m_pSound->SetTrackSurroundPan( trackBitFlag, surroundPan ); in SetTrackSurroundPan()
|
| D | snd_WaveSoundFileReader.h | 54 u8 surroundPan; member 66 u8 surroundPan; member
|
| D | snd_SequenceTrack.h | 85 MoveValue<s8,s16> surroundPan; member 182 void SetSurroundPan( float surroundPan ) { m_ExtSurroundPan = surroundPan; } in SetSurroundPan() argument
|
| D | snd_Channel.h | 136 void SetInitSurroundPan( f32 surroundPan ) { m_InitSurroundPan = surroundPan; } in SetInitSurroundPan() argument 164 void SetUserSurroundPan( f32 surroundPan ) { m_UserSurroundPan = surroundPan; } in SetUserSurroundPan() argument
|
| D | snd_WaveSoundHandle.h | 343 void SetSurroundPan( f32 surroundPan ) in SetSurroundPan() argument 345 if ( IsAttachedSound() ) m_pSound->SetSurroundPan( surroundPan ); in SetSurroundPan()
|
| D | snd_SoundHandle.h | 375 void SetSurroundPan( float surroundPan ) in SetSurroundPan() argument 377 if ( IsAttachedSound() ) m_pSound->SetSurroundPan( surroundPan ); in SetSurroundPan()
|
| D | snd_BankFileReader.h | 38 u8 surroundPan; member
|
| D | snd_BankFile.h | 195 s8 surroundPan; // for RVL member
|
| D | snd_SequenceSound.h | 133 void SetTrackSurroundPan( u32 trackBitFlag, f32 surroundPan );
|
| D | snd_DriverCommand.h | 145 float surroundPan; member
|
| D | snd_SequenceSoundPlayer.h | 214 void SetTrackSurroundPan( u32 trackBitFlag, float surroundPan );
|
| D | snd_Util.h | 70 static f32 CalcSurroundPanRatio( f32 surroundPan, const PanInfo& info );
|
| /NW4C-1.2.23/sources/libraries/snd/ |
| D | snd_WaveSoundPlayer.cpp | 60 m_WaveSoundInfo.surroundPan = 0; in Initialize() 494 f32 surroundPan = 0.0f; in UpdateChannel() local 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() 504 surroundPan += GetSurroundPan(); in UpdateChannel() 548 m_pChannel->SetUserSurroundPan( surroundPan ); in UpdateChannel()
|
| D | snd_BankFileReader.cpp | 129 info->surroundPan = velocityRegion->GetSurroundPan(); in ReadVelocityRegionInfo() 143 info->surroundPan = regionParameter->surroundPan; in ReadVelocityRegionInfo()
|
| D | snd_Util.cpp | 719 f32 Util::CalcSurroundPanRatio( f32 surroundPan, const PanInfo& info ) in CalcSurroundPanRatio() argument 721 surroundPan = ut::Clamp( surroundPan, 0.0f, 2.0f ) / 2.0f; // 0.0 - 1.0 のスケールに in CalcSurroundPanRatio() 725 f32 ratio = table[ static_cast<int>( surroundPan * PAN_TABLE_MAX + 0.5f ) ]; in CalcSurroundPanRatio()
|
| D | snd_BasicSound.cpp | 556 float surroundPan = 0.0f; in UpdateParam() local 557 surroundPan += m_ExtSurroundPan; in UpdateParam() 558 surroundPan += m_AmbientParam.span; in UpdateParam() 605 command->surroundPan = surroundPan; in UpdateParam() 908 void BasicSound::SetSurroundPan( float surroundPan ) in SetSurroundPan() argument 910 m_ExtSurroundPan = surroundPan; in SetSurroundPan()
|
| D | snd_WaveSoundFileReader.cpp | 129 dst->surroundPan = src.GetSurroundPan(); in ReadWaveSoundInfo() 156 dst->surroundPan = src.GetSurroundPan(); in ReadNoteInfo()
|
| D | snd_SequenceTrack.cpp | 97 m_ParserTrackParam.surroundPan.InitValue( 0 ); in InitParam() 242 m_ParserTrackParam.surroundPan.Update(); in ParseNextTick() 405 float surroundPan in UpdateChannelParam() local 406 … = ut::Clamp( static_cast<float>( m_ParserTrackParam.surroundPan.GetValue() ) / 63.0f, 0.0f, 2.0f ) in UpdateChannelParam() 445 channel->SetUserSurroundPan( surroundPan ); in UpdateChannelParam()
|
| D | snd_BasicSoundPlayer.cpp | 31 surroundPan = 0.0f; in Initialize()
|
| D | snd_SequenceSoundPlayer.cpp | 521 void SequenceSoundPlayer::SetTrackSurroundPan( u32 trackBitFlag, float surroundPan ) in SetTrackSurroundPan() argument 523 SetTrackParam( trackBitFlag, &SequenceTrack::SetSurroundPan, surroundPan ); in SetTrackSurroundPan()
|
| D | snd_Channel.cpp | 257 f32 surroundPan = m_InitSurroundPan + m_UserSurroundPan; in Update() local 294 m_pVoice->SetSurroundPan( surroundPan ); in Update()
|
| D | snd_SequenceSound.cpp | 514 void SequenceSound::SetTrackSurroundPan( u32 trackBitFlag, f32 surroundPan ) in SetTrackSurroundPan() argument 522 command->value = surroundPan; in SetTrackSurroundPan()
|
| D | snd_DriverCommand.cpp | 109 c->player->SetSurroundPan( c->surroundPan ); in ProcessCommandList()
|