版本
menu

Wwise SDK 2025.1.2
AkAssert.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) 2025 Audiokinetic Inc.
25 *******************************************************************************/
26 
27 #ifndef _AK_AKASSERT_H_
28 #define _AK_AKASSERT_H_
29 
30 #if defined( _DEBUG ) && !(defined AK_DISABLE_ASSERTS)
31  #ifndef AK_ENABLE_ASSERTS
32  #define AK_ENABLE_ASSERTS
33  #endif
34 #endif
35 
36 #ifdef AK_ENABLE_ASSERTS
38  #ifndef AK_ASSERT_HOOK
39  AK_CALLBACK( void, AkAssertHook)(
40  const char * in_pszExpression, ///< Expression
41  const char * in_pszFileName, ///< File Name
42  int in_lineNumber ///< Line Number
43  );
44  #define AK_ASSERT_HOOK
45  #endif
46 
47  extern "C" AK_DLLEXPORT AkAssertHook g_pAssertHook;
48 #endif
49 
50 #if !defined( AKASSERT )
51  #include <AK/SoundEngine/Common/AkTypes.h> //For AK_Fail/Success
52 
53  #if defined( AK_ENABLE_ASSERTS )
54  // These platforms use a built-in g_pAssertHook (and do not fall back to the regular assert macro)
55  #define AKASSERT(Condition) (g_pAssertHook && !(Condition) ? g_pAssertHook( #Condition, __FILE__, __LINE__) : ((void) 0) )
56 
57  #define AKVERIFY(Condition) (!(Condition) && g_pAssertHook != nullptr ? g_pAssertHook( #Condition, __FILE__, __LINE__) : ((void) 0) )
58 
59  #define AK_IS_ASSERT_HOOKED (g_pAssertHook != nullptr)
60 
61  #ifdef _DEBUG
62  #define AKASSERTD AKASSERT
63  #else
64  #define AKASSERTD(Condition) ((void)0)
65  #endif
66 
67  #else // defined( AK_ENABLE_ASSERTS )
68 
69  #define AKASSERT(Condition) do { switch ( 0 ) { case 0: break; default: if ( !( Condition ) ) {} } } while ( 0 )
70 
71  #define AKVERIFY(x) ((void)(x))
72 
73  #define AK_IS_ASSERT_HOOKED (false)
74 
75  #ifdef _DEBUG
76  #define AKASSERTD AKASSERT
77  #else
78  #define AKASSERTD(Condition) ((void)0)
79  #endif
80 
81  #endif // defined( AK_ENABLE_ASSERTS )
82 
83  #define AKASSERT_RANGE(Value, Min, Max) (AKASSERT(((Value) >= (Min)) && ((Value) <= (Max))))
84 
85  #define AKASSERTANDRETURN( __Expression, __ErrorCode )\
86  if (!(__Expression))\
87  {\
88  AKASSERT(__Expression);\
89  return __ErrorCode;\
90  }\
91 
92  #define AKASSERTPOINTERORFAIL( __Pointer ) AKASSERTANDRETURN( __Pointer != NULL, AK_Fail )
93  #define AKASSERTSUCCESSORRETURN( __akr ) AKASSERTANDRETURN( __akr == AK_Success, __akr )
94 
95  #define AKASSERTPOINTERORRETURN( __Pointer ) \
96  if ((__Pointer) == NULL)\
97  {\
98  AKASSERT((__Pointer) == NULL);\
99  return ;\
100  }\
101 
102  #if defined( AK_WIN ) && ( _MSC_VER >= 1600 )
103  // Compile-time assert
104  #define AKSTATICASSERT( __expr__, __msg__ ) static_assert( (__expr__), (__msg__) )
105  #else
106  // Compile-time assert
107  #define AKSTATICASSERT( __expr__, __msg__ ) typedef char __AKSTATICASSERT__[(__expr__)?1:-1]
108  #endif
109 
110 #endif // ! defined( AKASSERT )
111 
112 #endif
#define AK_DLLEXPORT
#define AK_CALLBACK(_type, _name)
void(* AkAssertHook)(const char *in_pszExpression, const char *in_pszFileName, int in_lineNumber)

此页面对您是否有帮助?

需要技术支持?

仍有疑问?或者问题?需要更多信息?欢迎联系我们,我们可以提供帮助!

查看我们的“技术支持”页面

介绍一下自己的项目。我们会竭力为您提供帮助。

来注册自己的项目,我们帮您快速入门,不带任何附加条件!

开始 Wwise 之旅