hkpDynamicsCpIdMgr.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 HK_DYNAMICS2_DYNAMICS_CP_ID_MGR_H
  9. #define HK_DYNAMICS2_DYNAMICS_CP_ID_MGR_H
  10. /// Class to manage the link between external contact points and hkDynamicsContactPoints.
  11. class hkpDynamicsCpIdMgr
  12. {
  13. public:
  14. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_DYNAMICS, hkpDynamicsCpIdMgr );
  15. enum { HK_MAX_IDS_PER_OBJECT = 8 };
  16. enum { FREE_VALUE = 0xff };
  17. typedef hkUchar hkpValueType;
  18. public:
  19. inline  hkpDynamicsCpIdMgr();
  20. inline ~hkpDynamicsCpIdMgr() {}
  21. /// Returns an index (==contactPointId) into m_values[] and sets m_values[id] = value
  22. inline int newId( int value );
  23. /// Finds the index (==contactPointId) of an value
  24. inline int indexOf( int value ) const;
  25. /// Flags the id to be free.
  26. inline void freeId( int id );
  27. /// Decrement all values which are greater then relIndex.
  28. inline void decrementValuesGreater( int relIndex );
  29. inline void getAllUsedIds( hkArray<hkContactPointId>& ids ) const;
  30. inline hkpValueType getValueAt(int id) const;
  31. public:
  32. hkInplaceArray<hkpValueType,HK_MAX_IDS_PER_OBJECT> m_values;
  33. };
  34. #include <Physics/Dynamics/Constraint/Contact/hkpDynamicsCpIdMgr.inl>
  35. #endif // HK_DYNAMICS2_DYNAMICS_CP_ID_MGR_H
  36. /*
  37. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  38. * Confidential Information of Havok.  (C) Copyright 1999-2009
  39. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  40. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  41. * rights, and intellectual property rights in the Havok software remain in
  42. * Havok and/or its suppliers.
  43. * Use of this software for evaluation purposes is subject to and indicates
  44. * acceptance of the End User licence Agreement for this product. A copy of
  45. * the license is included with this software and is also available at www.havok.com/tryhavok.
  46. */