PlatformClassList.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:2k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. #ifndef PLATFORM_CLASS_LIST_H
  9. #define PLATFORM_CLASS_LIST_H
  10. #include <Common/Serialize/Copier/hkDeepCopier.h>
  11. struct PlatformClassList
  12. {
  13. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_SERIALIZE, PlatformClassList );
  14. PlatformClassList( const hkClass*const* list )
  15. {
  16. hkDeepCopier::CopyFromOriginal copyFromOriginal;
  17. for( const hkClass*const* orig = list; *orig != HK_NULL; ++orig )
  18. {
  19. void* copy = copyFromOriginal.getWithDefault( *orig, HK_NULL );
  20. if( copy == HK_NULL )
  21. {
  22. copy = hkDeepCopier::deepCopy( *orig, hkClassClass, &copyFromOriginal );
  23. m_allocs.pushBack(copy);
  24. }
  25. m_copies.pushBack( static_cast<hkClass*>(copy) );
  26. }
  27. m_copies.pushBack( HK_NULL );
  28. }
  29. ~PlatformClassList()
  30. {
  31. for( int i = 0; i < m_allocs.getSize(); ++i )
  32. {
  33. hkDeallocate( m_allocs[i] );
  34. }
  35. }
  36. void computeOffsets( hkStructureLayout::LayoutRules rules )
  37. {
  38. hkStructureLayout layout(rules);
  39. hkPointerMap<const hkClass*, int> classesDone;
  40. for( hkClass* const* kp = m_copies.begin(); *kp != HK_NULL; ++kp )
  41. {
  42. layout.computeMemberOffsetsInplace( **kp, classesDone );
  43. }
  44. }
  45. hkArray<hkClass*> m_copies;
  46. hkArray<void*> m_allocs;
  47. };
  48. #endif // PLATFORM_CLASS_LIST_H
  49. /*
  50. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  51. * Confidential Information of Havok.  (C) Copyright 1999-2009
  52. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  53. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  54. * rights, and intellectual property rights in the Havok software remain in
  55. * Havok and/or its suppliers.
  56. * Use of this software for evaluation purposes is subject to and indicates
  57. * acceptance of the End User licence Agreement for this product. A copy of
  58. * the license is included with this software and is also available at www.havok.com/tryhavok.
  59. */