Home
last modified time | relevance | path

Searched refs:surroundPan (Results 1 – 25 of 27) sorted by relevance

12

/NW4C-1.2.23/include/nw/snd/
Dsnd_BasicSoundPlayer.h38 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()
Dsnd_StreamSoundHandle.h354 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()
Dsnd_SequenceSoundHandle.h336 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()
Dsnd_WaveSoundFileReader.h54 u8 surroundPan; member
66 u8 surroundPan; member
Dsnd_SequenceTrack.h85 MoveValue<s8,s16> surroundPan; member
182 void SetSurroundPan( float surroundPan ) { m_ExtSurroundPan = surroundPan; } in SetSurroundPan() argument
Dsnd_Channel.h136 void SetInitSurroundPan( f32 surroundPan ) { m_InitSurroundPan = surroundPan; } in SetInitSurroundPan() argument
164 void SetUserSurroundPan( f32 surroundPan ) { m_UserSurroundPan = surroundPan; } in SetUserSurroundPan() argument
Dsnd_WaveSoundHandle.h343 void SetSurroundPan( f32 surroundPan ) in SetSurroundPan() argument
345 if ( IsAttachedSound() ) m_pSound->SetSurroundPan( surroundPan ); in SetSurroundPan()
Dsnd_SoundHandle.h375 void SetSurroundPan( float surroundPan ) in SetSurroundPan() argument
377 if ( IsAttachedSound() ) m_pSound->SetSurroundPan( surroundPan ); in SetSurroundPan()
Dsnd_BankFileReader.h38 u8 surroundPan; member
Dsnd_BankFile.h195 s8 surroundPan; // for RVL member
Dsnd_SequenceSound.h133 void SetTrackSurroundPan( u32 trackBitFlag, f32 surroundPan );
Dsnd_DriverCommand.h145 float surroundPan; member
Dsnd_SequenceSoundPlayer.h214 void SetTrackSurroundPan( u32 trackBitFlag, float surroundPan );
Dsnd_Util.h70 static f32 CalcSurroundPanRatio( f32 surroundPan, const PanInfo& info );
/NW4C-1.2.23/sources/libraries/snd/
Dsnd_WaveSoundPlayer.cpp60 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()
Dsnd_BankFileReader.cpp129 info->surroundPan = velocityRegion->GetSurroundPan(); in ReadVelocityRegionInfo()
143 info->surroundPan = regionParameter->surroundPan; in ReadVelocityRegionInfo()
Dsnd_Util.cpp719 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()
Dsnd_BasicSound.cpp556 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()
Dsnd_WaveSoundFileReader.cpp129 dst->surroundPan = src.GetSurroundPan(); in ReadWaveSoundInfo()
156 dst->surroundPan = src.GetSurroundPan(); in ReadNoteInfo()
Dsnd_SequenceTrack.cpp97 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()
Dsnd_BasicSoundPlayer.cpp31 surroundPan = 0.0f; in Initialize()
Dsnd_SequenceSoundPlayer.cpp521 void SequenceSoundPlayer::SetTrackSurroundPan( u32 trackBitFlag, float surroundPan ) in SetTrackSurroundPan() argument
523 SetTrackParam( trackBitFlag, &SequenceTrack::SetSurroundPan, surroundPan ); in SetTrackSurroundPan()
Dsnd_Channel.cpp257 f32 surroundPan = m_InitSurroundPan + m_UserSurroundPan; in Update() local
294 m_pVoice->SetSurroundPan( surroundPan ); in Update()
Dsnd_SequenceSound.cpp514 void SequenceSound::SetTrackSurroundPan( u32 trackBitFlag, f32 surroundPan ) in SetTrackSurroundPan() argument
522 command->value = surroundPan; in SetTrackSurroundPan()
Dsnd_DriverCommand.cpp109 c->player->SetSurroundPan( c->surroundPan ); in ProcessCommandList()

12