| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 | /*******************************************************************************The content of this file includes portions of the AUDIOKINETIC Wwise Technologyreleased in source code form as part of the SDK installer package.Commercial License UsageLicensees holding valid commercial licenses to the AUDIOKINETIC Wwise Technologymay use this file in accordance with the end user license agreement providedwith the software or, alternatively, in accordance with the terms contained in awritten agreement between you and Audiokinetic Inc.Apache License UsageAlternatively, this file may be used under the Apache License, Version 2.0 (the"Apache License"); you may not use this file except in compliance with theApache License. You may obtain a copy of the Apache License athttp://www.apache.org/licenses/LICENSE-2.0.Unless required by applicable law or agreed to in writing, software distributedunder the Apache License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIESOR CONDITIONS OF ANY KIND, either express or implied. See the Apache License forthe specific language governing permissions and limitations under the License.  Copyright (c) 2023 Audiokinetic Inc.*******************************************************************************/#ifndef _AK_OBJECT_H_#define _AK_OBJECT_H_#include <AK/SoundEngine/Common/AkMemoryMgr.h>//-----------------------------------------------------------------------------// Placement New definition. Use like this:// AkPlacementNew( memorybuffer ) T(); // where T is your type constructor//-----------------------------------------------------------------------------/// Unique structure identifier for AkPlacementNew.struct AkPlacementNewKey{	/// ctor	AkForceInline AkPlacementNewKey(){}};AkForceInline void * operator new( size_t /*size*/, void * memory, const AkPlacementNewKey & /*key*/ ) throw(){      return memory;}#define AkPlacementNew(_memory) ::new( _memory, AkPlacementNewKey() )// Matching operator delete for AK placement new. This needs to be defined to avoid compiler warnings// with projects built with exceptions enabled.AkForceInline void operator delete( void *, void *, const AkPlacementNewKey & ) throw() {}//-----------------------------------------------------------------------------// Macros//-----------------------------------------------------------------------------/// Unique structure identifier for AkNew.struct AkPoolNewKey{	/// ctor	AkForceInline AkPoolNewKey() {}};#ifdef AK_MEMDEBUG	#define AkNew( _pool, _what )								new( ( _pool ), AkPoolNewKey(), __FILE__, __LINE__ ) _what	#define AkAlloc( _pool, _size )								( AK::MemoryMgr::dMalloc( ( _pool ), _size, __FILE__, __LINE__ ) )	#define AkMalign( _pool, _size, _align )					( AK::MemoryMgr::dMalign( ( _pool ), _size, _align, __FILE__, __LINE__ ) )	#define AkNewAligned( _pool, _what, _align )				new( ( _pool ), AkPoolNewKey(), ( _align ), __FILE__ , __LINE__ ) _what	#define AkRealloc( _pool, _pvmem, _size )					( AK::MemoryMgr::dRealloc( ( _pool ), _pvmem, _size, __FILE__, __LINE__ ) )	#define AkReallocAligned( _pool, _pvmem, _size, _align )	( AK::MemoryMgr::dReallocAligned( ( _pool ), _pvmem, _size, _align, __FILE__, __LINE__ ) )#else	#define AkNew( _pool, _what )								new( ( _pool ), AkPoolNewKey() ) _what	#define AkAlloc( _pool, _size )								( AK::MemoryMgr::Malloc( ( _pool ), _size ) )	#define AkMalign( _pool, _size, _align )					( AK::MemoryMgr::Malign( ( _pool ), _size, _align ) )	#define AkNewAligned( _pool, _what, _align )				new( ( _pool ), AkPoolNewKey(), ( _align ) ) _what	#define AkRealloc( _pool, _pvmem, _size )					( AK::MemoryMgr::Realloc( ( _pool ), _pvmem, _size ) )	#define AkReallocAligned( _pool, _pvmem, _size, _align )	( AK::MemoryMgr::ReallocAligned( ( _pool ), _pvmem, _size, _align ) )#endif#define AkFree( _pool, _pvmem )									( AK::MemoryMgr::Free( ( _pool ), ( _pvmem ) ) )#ifdef AK_MEMDEBUG	AkForceInline void * operator new( size_t size, AkMemPoolId in_PoolId, const AkPoolNewKey & , const char* szFile, AkUInt32 ulLine ) throw()	{		return AK::MemoryMgr::dMalloc( in_PoolId, size, szFile, ulLine );	}	AkForceInline void * operator new( size_t size, AkMemPoolId in_PoolId, const AkPoolNewKey &, AkUInt32 in_align, const char* szFile, AkUInt32 ulLine ) throw()	{		return AK::MemoryMgr::dMalign( in_PoolId, size, in_align, szFile, ulLine );	}	AkForceInline void operator delete( void *, AkMemPoolId, const AkPoolNewKey &, const char*, AkUInt32 ) throw() {}	AkForceInline void operator delete( void *, AkMemPoolId, const AkPoolNewKey &, AkUInt32, const char*, AkUInt32 ) throw() {}#else	AkForceInline void * operator new( size_t size, AkMemPoolId in_PoolId, const AkPoolNewKey & ) throw()	{		return AK::MemoryMgr::Malloc( in_PoolId, size );	}	AkForceInline void * operator new( size_t size, AkMemPoolId in_PoolId, const AkPoolNewKey &, AkUInt32 in_align ) throw()	{		return AK::MemoryMgr::Malign( in_PoolId, size, in_align );	}	AkForceInline void operator delete( void *, AkMemPoolId, const AkPoolNewKey & ) throw() {}	AkForceInline void operator delete( void *, AkMemPoolId, const AkPoolNewKey &, AkUInt32 ) throw() {}#endiftemplate <class T>AkForceInline void AkDelete( AkMemPoolId in_PoolId, T * in_pObject ){	if ( in_pObject )	{		in_pObject->~T();		AK::MemoryMgr::Free( in_PoolId, in_pObject );	}}#endif // _AK_OBJECT_H_
 |