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

其他游戏

开发平台:

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 HK_COLLIDE2_COLLISION_AGENT3_FILE_H
  9. #define HK_COLLIDE2_COLLISION_AGENT3_FILE_H
  10. #include <Common/Base/hkBase.h>
  11. typedef void hkpAgentData;
  12. struct hkpAgent1nSector
  13. {
  14. HK_DECLARE_REFLECTION();
  15. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_AGENT, hkpAgent1nSector);
  16. enum { SECTOR_SIZE = 512, NET_SECTOR_SIZE = SECTOR_SIZE - 16 };
  17. hkUint32 m_bytesAllocated;
  18. hkUint32 m_pad0;
  19. hkUint32 m_pad1;
  20. hkUint32 m_pad2;
  21. hkUint8 m_data[512-16]; /*[ NET_SECTOR_SIZE ]*/ // <ag.todo.b> serialization script cannot take enum as array size, and doesn't produce adequate error message.
  22. HK_FORCE_INLINE hkpAgentData* getBegin()
  23. {
  24. return reinterpret_cast<hkpAgentData*>( &m_data[0] );
  25. }
  26. hkpAgentData* getEnd()
  27. {
  28. HK_ASSERT( 0xf032ef45, unsigned(m_bytesAllocated) <= 512 );
  29. return reinterpret_cast<hkpAgentData*>( &m_data[m_bytesAllocated] );
  30. }
  31. int getCapacity()
  32. {
  33. return NET_SECTOR_SIZE;
  34. }
  35. int getFreeBytes()
  36. {
  37. return static_cast<int>(NET_SECTOR_SIZE - m_bytesAllocated);
  38. }
  39. inline hkpAgent1nSector(): m_bytesAllocated(0){}
  40. inline hkpAgent1nSector(class hkFinishLoadedObjectFlag flag) {}
  41. };
  42. HK_COMPILE_TIME_ASSERT(sizeof( hkpAgent1nSector().m_data ) == hkpAgent1nSector::NET_SECTOR_SIZE );
  43. struct hkpAgent1nTrack
  44. {
  45. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_CDINFO, hkpAgent1nTrack );
  46. hkArray<hkpAgent1nSector*> m_sectors;
  47. };
  48. #endif // HK_COLLIDE2_COLLISION_AGENT3_FILE_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. */