버전
menu_open
link
Wwise SDK 2023.1.3
AkFXParameterChangeHandler.h
이 파일의 문서화 페이지로 가기
1 /*******************************************************************************
2 The content of this file includes portions of the AUDIOKINETIC Wwise Technology
3 released in source code form as part of the SDK installer package.
4 
5 Commercial License Usage
6 
7 Licensees holding valid commercial licenses to the AUDIOKINETIC Wwise Technology
8 may use this file in accordance with the end user license agreement provided
9 with the software or, alternatively, in accordance with the terms contained in a
10 written agreement between you and Audiokinetic Inc.
11 
12 Apache License Usage
13 
14 Alternatively, this file may be used under the Apache License, Version 2.0 (the
15 "Apache License"); you may not use this file except in compliance with the
16 Apache License. You may obtain a copy of the Apache License at
17 http://www.apache.org/licenses/LICENSE-2.0.
18 
19 Unless required by applicable law or agreed to in writing, software distributed
20 under the Apache License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
21 OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License for
22 the specific language governing permissions and limitations under the License.
23 
24  Copyright (c) 2024 Audiokinetic Inc.
25 *******************************************************************************/
26 
27 #ifndef _AKFXPARAMETERCHANGEHANDLER_H_
28 #define _AKFXPARAMETERCHANGEHANDLER_H_
29 
33 
34 /// Can be used to track individual parameter changes to avoid costly computations when they remain constant
35 /// This class is designed to use only the lower bit information of the parameter IDs
36 namespace AK
37 {
38 
39  template <AkUInt32 T_MAXNUMPARAMS>
41  {
42  public:
43 
45  {
47  }
48 
49  inline void SetParamChange( AkPluginParamID in_ID )
50  {
51  AKASSERT( in_ID <= T_MAXNUMPARAMS );
52  const AkUInt32 uByteIndex = in_ID/8;
53  const AkUInt32 uBitMask = 1<<(in_ID-uByteIndex*8);
54  m_uParamBitArray[uByteIndex] |= uBitMask;
55  }
56 
57  inline bool HasChanged( AkPluginParamID in_ID )
58  {
59  AKASSERT( in_ID <= T_MAXNUMPARAMS );
60  const AkUInt32 uByteIndex = in_ID/8;
61  const AkUInt32 uBitMask = 1<<(in_ID-uByteIndex*8);
62  return (m_uParamBitArray[uByteIndex] & uBitMask) > 0;
63  }
64 
65  inline bool HasAnyChanged()
66  {
67  AkUInt32 uByteIndex = 0;
68  do
69  {
70  if ( m_uParamBitArray[uByteIndex] > 0 )
71  return true;
72  ++uByteIndex;
73  } while (uByteIndex < (((T_MAXNUMPARAMS) + ((8)-1)) & ~((8)-1))/8 );
74  return false;
75  }
76 
77  inline void ResetParamChange( AkPluginParamID in_ID )
78  {
79  AKASSERT( in_ID <= T_MAXNUMPARAMS );
80  const AkUInt32 uByteIndex = in_ID/8;
81  const AkUInt32 uBitMask = 1<<(in_ID-uByteIndex*8);
82  m_uParamBitArray[uByteIndex] &= ~uBitMask;
83  }
84 
85  inline void ResetAllParamChanges( )
86  {
88  }
89 
90  inline void SetAllParamChanges( )
91  {
93  }
94 
95  protected:
96 
97  // Minimum storage in bits aligned to next byte boundary
98  AkUInt8 m_uParamBitArray[(((T_MAXNUMPARAMS) + ((8)-1)) & ~((8)-1))/8];
99 
100  };
101 
102 } // namespace AK
103 
104 #endif // _AKFXPARAMETERCHANGEHANDLER_H_
Audiokinetic namespace
uint8_t AkUInt8
Unsigned 8-bit integer
#define AkZeroMemSmall(___Dest, ___Size)
AkUInt8 m_uParamBitArray[(((T_MAXNUMPARAMS)+((8) -1)) &~((8) -1))/8]
bool HasChanged(AkPluginParamID in_ID)
#define AKASSERT(Condition)
Definition: AkAssert.h:67
AkForceInline void AkMemSet(void *pDest, AkInt32 iVal, AkUInt32 uSize)
Platform Independent Helper
void ResetParamChange(AkPluginParamID in_ID)
uint32_t AkUInt32
Unsigned 32-bit integer
AkInt16 AkPluginParamID
Source or effect plug-in parameter ID
Definition: AkTypes.h:148
void SetParamChange(AkPluginParamID in_ID)

이 페이지가 도움이 되었나요?

지원이 필요하신가요?

질문이 있으신가요? 문제를 겪고 계신가요? 더 많은 정보가 필요하신가요? 저희에게 문의해주시면 도와드리겠습니다!

지원 페이지를 방문해 주세요

작업하는 프로젝트에 대해 알려주세요. 언제든지 도와드릴 준비가 되어 있습니다.

프로젝트를 등록하세요. 아무런 조건이나 의무 사항 없이 빠른 시작을 도와드리겠습니다.

Wwise를 시작해 보세요