Home
last modified time | relevance | path

Searched refs:sound (Results 1 – 24 of 24) sorted by relevance

/NW4C-1.3.3/include/nw/snd/
Dsnd_SoundInstanceManager.h78 Sound* sound = new( ptr ) Sound( *this ); in Create() local
79 m_FreeList.PushBack( sound ); in Create()
127 Sound* sound = NULL; in Alloc() local
128 while( sound == NULL ) in Alloc()
132 sound = &m_FreeList.GetFront(); in Alloc()
158 sound->Initialize(); in Alloc()
159 sound->SetPriority( priority, ambientPriority ); in Alloc()
161 InsertPriorityList( sound, allocPriority ); in Alloc()
162 return sound; in Alloc()
176 void Free( Sound* sound ) in Free() argument
[all …]
Dsnd_PlayerHeap.h47 void AttachSound( BasicSound* sound );
48 void DetachSound( BasicSound* sound );
Dsnd_ExternalSoundPlayer.h60 bool AppendSound( internal::BasicSound* sound );
61 void RemoveSound( internal::BasicSound* sound );
Dsnd_SoundArchivePlayer.h491 internal::SequenceSound* sound,
500 internal::StreamSound* sound,
508 internal::WaveSound* sound,
529 internal::BasicSound* sound, const SoundArchive::SoundInfo* commonInfo );
Dsnd_SoundHandle.h622 void detail_AttachSound( internal::BasicSound* sound );
624 void detail_AttachSoundAsTempHandle( internal::BasicSound* sound );
Dsnd_Sound3DActor.h278 virtual void detail_UpdateAmbientArg( void* arg, const internal::BasicSound* sound );
Dsnd_BasicSound.h478 const internal::BasicSound* sound
489 const internal::BasicSound* sound
Dsnd_WaveSoundHandle.h623 void detail_AttachSoundAsTempHandle( internal::WaveSound* sound );
Dsnd_Sound3DManager.h458 const internal::BasicSound* sound
Dsnd_SequenceSoundHandle.h1038 void detail_AttachSoundAsTempHandle( internal::SequenceSound* sound );
/NW4C-1.3.3/sources/libraries/snd/
Dsnd_SoundHandle.cpp47 internal::BasicSound* sound = handle->detail_GetAttachedSound(); in detail_DuplicateHandle() local
49 if ( sound != NULL ) in detail_DuplicateHandle()
52 detail_AttachSoundAsTempHandle( sound ); in detail_DuplicateHandle()
65 void SoundHandle::detail_AttachSoundAsTempHandle( internal::BasicSound* sound ) in detail_AttachSoundAsTempHandle() argument
67 NW_NULL_ASSERT( sound ); in detail_AttachSoundAsTempHandle()
69 m_pSound = sound; in detail_AttachSoundAsTempHandle()
87 void SoundHandle::detail_AttachSound( internal::BasicSound* sound ) in detail_AttachSound() argument
89 NW_NULL_ASSERT( sound ); in detail_AttachSound()
91 m_pSound = sound; in detail_AttachSound()
Dsnd_ExternalSoundPlayer.cpp130 bool ExternalSoundPlayer::AppendSound( internal::BasicSound* sound ) in AppendSound() argument
132 NW_NULL_ASSERT( sound ); in AppendSound()
134 int allocPriority = sound->CalcCurrentPlayerPriority(); in AppendSound()
146 m_SoundList.PushBack( sound ); in AppendSound()
148 sound->AttachExternalSoundPlayer( this ); in AppendSound()
184 void ExternalSoundPlayer::RemoveSound( internal::BasicSound* sound ) in RemoveSound() argument
187 m_SoundList.Erase( sound ); in RemoveSound()
188 sound->DetachExternalSoundPlayer( this ); in RemoveSound()
227 internal::BasicSound* sound = NULL; in GetLowestPrioritySound() local
234 sound = &*itr; in GetLowestPrioritySound()
[all …]
Dsnd_WaveSoundHandle.cpp32 internal::WaveSound* sound = in WaveSoundHandle() local
35 if ( sound != NULL ) in WaveSoundHandle()
38 detail_AttachSoundAsTempHandle( sound ); in WaveSoundHandle()
51 void WaveSoundHandle::detail_AttachSoundAsTempHandle( internal::WaveSound* sound ) in detail_AttachSoundAsTempHandle() argument
53 NW_NULL_ASSERT( sound ); in detail_AttachSoundAsTempHandle()
55 m_pSound = sound; in detail_AttachSoundAsTempHandle()
Dsnd_SequenceSoundHandle.cpp42 internal::SequenceSound* sound = in SequenceSoundHandle() local
45 if ( sound != NULL ) in SequenceSoundHandle()
48 detail_AttachSoundAsTempHandle( sound ); in SequenceSoundHandle()
61 void SequenceSoundHandle::detail_AttachSoundAsTempHandle( internal::SequenceSound* sound ) in detail_AttachSoundAsTempHandle() argument
63 NW_NULL_ASSERT( sound ); in detail_AttachSoundAsTempHandle()
65 m_pSound = sound; in detail_AttachSoundAsTempHandle()
Dsnd_SoundArchivePlayer.cpp708 Sound* sound = manager->Alloc( priority, ambientPriority ); in AllocSound() local
709 if ( sound == NULL ) return NULL; in AllocSound()
712 sound->SetId( soundId ); in AllocSound()
717 sound->SetAmbientInfo( *ambientArgInfo ); in AllocSound()
720 return sound; in AllocSound()
864 internal::BasicSound* sound = NULL; in detail_SetupSoundImpl() local
890 sound = seqSound; in detail_SetupSoundImpl()
912 sound = strmSound; in detail_SetupSoundImpl()
934 sound = waveSound; in detail_SetupSoundImpl()
946 if ( ! player.detail_AppendSound( sound ) ) in detail_SetupSoundImpl()
[all …]
Dsnd_PlayerHeap.cpp166 void PlayerHeap::AttachSound( BasicSound* sound ) in AttachSound() argument
168 NW_NULL_ASSERT( sound ); in AttachSound()
171 m_pSound = sound; in AttachSound()
183 void PlayerHeap::DetachSound( BasicSound* sound ) in DetachSound() argument
185 NW_NULL_ASSERT( sound ); in DetachSound()
186 NW_ASSERT( sound == m_pSound ); in DetachSound()
187 (void)sound; in DetachSound()
Dsnd_WaveSound.cpp230 WaveSound* sound = static_cast<WaveSound*>( userData ); in NotifyAsyncLoadFinishedFunc() local
232 sound->m_LoadingFlag = false; in NotifyAsyncLoadFinishedFunc()
236 sound->Stop( 0 ); in NotifyAsyncLoadFinishedFunc()
241 sound->Prepare( wsd->address, sound->m_StartInfo ); in NotifyAsyncLoadFinishedFunc()
244 sound->m_WaveSoundPlayerInstance.SetPlayerHeapDataManager( in NotifyAsyncLoadFinishedFunc()
245 &sound->m_DataManager ); in NotifyAsyncLoadFinishedFunc()
Dsnd_StreamSoundHandle.cpp31 internal::StreamSound* sound = in StreamSoundHandle() local
34 if ( sound != NULL ) in StreamSoundHandle()
37 detail_AttachSoundAsTempHandle( sound ); in StreamSoundHandle()
Dsnd_SequenceSound.cpp178 SequenceSound* sound = static_cast<SequenceSound*>( userData ); in NotifyAsyncLoadFinishedFunc() local
180 sound->m_LoadingFlag = false; in NotifyAsyncLoadFinishedFunc()
184 sound->Stop( 0 ); in NotifyAsyncLoadFinishedFunc()
191 sound->Prepare( seqBase, sound->m_StartInfo ); in NotifyAsyncLoadFinishedFunc()
194 sound->SetBankData( banks ); in NotifyAsyncLoadFinishedFunc()
197 sound->m_SequenceSoundPlayerInstance.SetPlayerHeapDataManager( in NotifyAsyncLoadFinishedFunc()
198 &sound->m_DataManager ); in NotifyAsyncLoadFinishedFunc()
Dsnd_Sound3DManager.cpp269 void Sound3DManager::detail_FreeAmbientArg( void* arg, const internal::BasicSound* sound ) in detail_FreeAmbientArg() argument
271 (void)sound; in detail_FreeAmbientArg()
Dsnd_Sound3DActor.cpp241 void Sound3DActor::detail_UpdateAmbientArg( void* arg, const internal::BasicSound* sound ) in detail_UpdateAmbientArg() argument
243 (void)sound; in detail_UpdateAmbientArg()
/NW4C-1.3.3/tools/SoundPlayer/
DReadme.txt36 1. Start the tool while specifying a sound archive file for MakeSoundPlayer-TS.wsf (and the folder …
50 3. A list of sounds included in the specified sound archive is displayed in the upper screen, while…
56 …Folders that include the sound archive file and stream files specified by argument are copied into…
57 The sound archive file is renamed SoundPlayer.bcsar.
/NW4C-1.3.3/SampleData/Graphics/DccPlugin/Maya/Common/
Dworkspace.mel31 workspace -rt "audio" "sound";
/NW4C-1.3.3/SampleData/Graphics/DccPlugin/Maya/ToyPierrot/
Dworkspace.mel14 workspace -fr "audio" "sound";