| /NW4C-1.2.23/include/nw/ut/ |
| D | ut_ResDictionary.h | 42 virtual void* operator[](const char* key) const = 0; 43 virtual void* operator[](const ResName key) const = 0; 47 virtual s32 GetIndex(const char* key) const = 0; 69 void* operator[](const char* key) const { return m_Dic[ key ]; } 70 void* operator[](const ResName key) const { return m_Dic[ key ]; } 74 s32 GetIndex(const char* key) const { return m_Dic.GetIndex( key ); } 120 void* operator[](const char* key) const 122 s32 idx = this->GetIndex(key); 127 void* operator[](const ResName key) const 129 s32 idx = this->GetIndex(key); [all …]
|
| D | ut_ResDeclMacros.h | 239 type Get##name(const char* key) \ 242 return type( dic[ key ] ); \ 250 const type Get##name(const char* key) const \ 253 return type( dic[ key ] ); \ 255 s32 Get##name##Index(const char* key) const \ 258 return dic.GetIndex( key ); \
|
| /NW4C-1.2.23/sources/libraries/gfx/ |
| D | gfx_SortingMaterialIdGenerator.cpp | 72 return lhs.key < rhs.key; in operator ()() 105 materialKeyValue.key = reinterpret_cast<u32>(material->GetOriginal().ptr()); in Accept() 128 if (lastPtrKey != (*iter).key) in Generate() 136 u32 key = reinterpret_cast<u32>(resDescription.GetOwnerShaderData()); in Generate() local 140 materialKeyValue.key = key; in Generate() 144 lastPtrKey = (*iter).key; in Generate() 160 if (lastShaderKey != m_MaterialsWorkSpace[index].key || in Generate() 175 lastShaderKey = m_MaterialsWorkSpace[index].key; in Generate()
|
| /NW4C-1.2.23/sources/libraries/snd/ |
| D | snd_MidiSequencePlayer.cpp | 129 void MidiSequencePlayer::NoteOn( u8 channelIndex, u8 key, u8 velocity ) in NoteOn() argument 136 key = static_cast<u8>( ut::Clamp( key + trackParam.transpose, 0, 127 ) ); in NoteOn() 146 channel->SetKey( key ); in NoteOn() 149 noteInfo->key = key; in NoteOn() 157 Channel* channel = track->NoteOn( key, velocity, -1, false ); in NoteOn() 165 noteInfo->key = key; in NoteOn() 168 void MidiSequencePlayer::NoteOff( u8 channelIndex, u8 key, u8 velocity ) in NoteOff() argument 176 key = static_cast<u8>( ut::Clamp( key + param.transpose, 0, 127 ) ); in NoteOff() 180 NoteInfo* noteInfo = FindNoteInfo( channelIndex, key ); in NoteOff() 518 MidiSequencePlayer::NoteInfo* MidiSequencePlayer::FindNoteInfo( int channelIndex, int key ) in FindNoteInfo() argument [all …]
|
| D | snd_SequenceTrack.cpp | 678 int key, in NoteOn() argument 684 NW_MINMAX_ASSERT( key, 0, 127 ); in NoteOn() 700 channel->SetKey( static_cast<u8>( key ) ); in NoteOn() 720 channel->SetKey( static_cast<u8>( key ) ); in NoteOn() 732 key, in NoteOn() 796 sweepPitch += m_ParserTrackParam.portaKey - key; in NoteOn() 816 m_ParserTrackParam.portaKey = static_cast<u8>( key ); in NoteOn()
|
| D | snd_Bank.cpp | 78 noteOnInfo.key, in NoteOn() 115 pChannel->SetKey( noteOnInfo.key, regionInfo.originalKey ); in NoteOn()
|
| D | snd_BankFileReader.cpp | 84 int key, in ReadVelocityRegionInfo() argument 101 const BankFile::KeyRegion* keyRegion = instrument->GetKeyRegion( key ); in ReadVelocityRegionInfo()
|
| D | snd_MmlParser.cpp | 109 int key = static_cast<int>( cmd ) + trackParam.transpose; in Parse() local 112 key = ut::Clamp( key, 0, 127 ); in Parse() 118 key, in Parse() 891 int key, in NoteOnCommandProc() argument 897 track->NoteOn( key, velocity, length, tieFlag ); in NoteOnCommandProc()
|
| /NW4C-1.2.23/include/nw/lyt/ |
| D | lyt_ArcResourceAccessor.h | 139 void UnregistFont(FontKey key); 166 void UnregistTexture(TextureKey key); 420 void UnregistFont(FontKey key); 447 void UnregistTexture(TextureKey key);
|
| D | lyt_TextureContainer.h | 171 void UnregistTexture(TextureKey key);
|
| D | lyt_FontContainer.h | 183 void UnregistFont(FontKey key);
|
| /NW4C-1.2.23/sources/libraries/lyt/ |
| D | lyt_TextureContainer.cpp | 102 TextureContainer::UnregistTexture(TextureKey key) in UnregistTexture() argument 104 NW_NULL_ASSERT(key); in UnregistTexture() 106 TextureRefLink* pLink = (TextureRefLink*)(key); in UnregistTexture()
|
| D | lyt_ArcResourceAccessor.cpp | 315 ArcResourceAccessor::UnregistFont(FontKey key) in UnregistFont() argument 317 m_FontList.UnregistFont(key); in UnregistFont() 348 ArcResourceAccessor::UnregistTexture(TextureKey key) in UnregistTexture() argument 350 m_TextureList.UnregistTexture(key); in UnregistTexture() 449 MultiArcResourceAccessor::UnregistFont(FontKey key) in UnregistFont() argument 451 m_FontList.UnregistFont(key); in UnregistFont() 482 MultiArcResourceAccessor::UnregistTexture(TextureKey key) in UnregistTexture() argument 484 m_TextureList.UnregistTexture(key); in UnregistTexture()
|
| D | lyt_FontContainer.cpp | 119 FontContainer::UnregistFont(FontKey key) in UnregistFont() argument 121 NW_NULL_ASSERT(key); in UnregistFont() 123 FontRefLink* pLink = (FontRefLink*)(key); in UnregistFont()
|
| /NW4C-1.2.23/include/nw/snd/ |
| D | snd_MidiSequencePlayer.h | 125 int key; member 165 void NoteOn( u8 channelIndex, u8 key, u8 velocity ); 166 void NoteOff( u8 channelIndex, u8 key, u8 velocity ); 180 NoteInfo* FindNoteInfo( int channelIndex, int key );
|
| D | snd_Channel.h | 132 void SetKey( u8 key ) { m_Key = key; } in SetKey() argument 133 void SetKey( u8 key, u8 originalKey ) { m_Key = key; m_OriginalKey = originalKey; } in SetKey() argument
|
| D | snd_NoteOnCallback.h | 31 int key; member
|
| D | snd_BankFileReader.h | 55 int key,
|
| D | snd_MmlParser.h | 74 int key,
|
| /NW4C-1.2.23/tools/DccPlugin/3dsMax/x86/2010/Scripts/Startup/ |
| D | NW4C_utils.ms.inc | 19 fn outValue fs key v = 21 format "%=\"%\"\n" key (v as string) to:fs 24 fn outVersion fs key v = 34 outValue fs key str 37 fn outQuantValue fs key v = 46 outValue fs key str 73 local str, key, val 82 key = elem[1] 84 --format "\"%\"=\"%\"\n" key val 85 case key of [all …]
|
| /NW4C-1.2.23/tools/DccPlugin/3dsMax/x86/2009/Scripts/Startup/ |
| D | NW4C_utils.ms.inc | 19 fn outValue fs key v = 21 format "%=\"%\"\n" key (v as string) to:fs 24 fn outVersion fs key v = 34 outValue fs key str 37 fn outQuantValue fs key v = 46 outValue fs key str 73 local str, key, val 82 key = elem[1] 84 --format "\"%\"=\"%\"\n" key val 85 case key of [all …]
|
| /NW4C-1.2.23/tools/DccPlugin/3dsMax/x64/2009/Scripts/Startup/ |
| D | NW4C_utils.ms.inc | 19 fn outValue fs key v = 21 format "%=\"%\"\n" key (v as string) to:fs 24 fn outVersion fs key v = 34 outValue fs key str 37 fn outQuantValue fs key v = 46 outValue fs key str 73 local str, key, val 82 key = elem[1] 84 --format "\"%\"=\"%\"\n" key val 85 case key of [all …]
|
| /NW4C-1.2.23/tools/DccPlugin/3dsMax/x64/2010/Scripts/Startup/ |
| D | NW4C_utils.ms.inc | 19 fn outValue fs key v = 21 format "%=\"%\"\n" key (v as string) to:fs 24 fn outVersion fs key v = 34 outValue fs key str 37 fn outQuantValue fs key v = 46 outValue fs key str 73 local str, key, val 82 key = elem[1] 84 --format "\"%\"=\"%\"\n" key val 85 case key of [all …]
|
| /NW4C-1.2.23/sources/libraries/ut/ |
| D | ut_ResDictionary.cpp | 25 ResDicLinear::GetIndex(const char* key) const in GetIndex() 27 if ( (! this->IsValid()) || (! key) ) { return -1; } in GetIndex() 33 if ( x->toName.offset != 0 && std::strcmp(key, x->toName.to_ptr()) == 0 ) in GetIndex()
|
| /NW4C-1.2.23/include/nw/gfx/ |
| D | gfx_SortingMaterialIdGenerator.h | 34 u32 key; member
|