hkpWorldAgentUtil.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_DYNAMICS2_WORLD_AGENT_UTIL_H
  9. #define HK_DYNAMICS2_WORLD_AGENT_UTIL_H
  10. #include <Physics/Dynamics/World/hkpWorldCinfo.h>
  11. class hkCollidablePair;
  12. class hkpCollidable;
  13. struct hkpCollisionInput;
  14. struct hkpAgentNnTrack;
  15. struct hkpAgent1nTrack;
  16. /// Class hkpWorldAgentUtil
  17. class hkpWorldAgentUtil
  18. {
  19. public:
  20. /// ###ACCESS_CHECKS###( [theIsland->m_world,HK_ACCESS_IGNORE] [theIsland,HK_ACCESS_RW] );
  21. static hkpAgentNnEntry* HK_CALL addAgent( hkpLinkedCollidable* collA, hkpLinkedCollidable* collB, const hkpProcessCollisionInput& input );
  22. /// ###ACCESS_CHECKS###( [theIsland->m_world,HK_ACCESS_IGNORE] [theIsland,HK_ACCESS_RW] );
  23. static void HK_CALL removeAgent ( hkpAgentNnEntry* agent );
  24. static void HK_CALL removeAgentAndItsToiEvents ( hkpAgentNnEntry* agent );
  25. static hkpSimulationIsland* HK_CALL getIslandFromAgentEntry( hkpAgentNnEntry* entry, hkpSimulationIsland* candidateA, hkpSimulationIsland* candidateB);
  26. /// ###ACCESS_CHECKS###( [entity->getWorld(),HK_ACCESS_RW] );
  27. static void HK_CALL updateEntityShapeCollectionFilter( hkpEntity* entity, hkpCollisionInput& collisionInput );
  28. static void HK_CALL invalidateTim( hkpEntity* entity, const hkpCollisionInput& collisionInput );
  29. /// ###ACCESS_CHECKS###( [island->m_world,HK_ACCESS_RO] [island,HK_ACCESS_RW] );
  30. static void HK_CALL warpTime( hkpSimulationIsland* island, hkTime oldTime, hkTime newTime, const hkpCollisionInput& collisionInput );
  31. };
  32. #endif // HK_DYNAMICS2_WORLD_AGENT_UTIL_H
  33. /*
  34. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  35. * Confidential Information of Havok.  (C) Copyright 1999-2009
  36. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  37. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  38. * rights, and intellectual property rights in the Havok software remain in
  39. * Havok and/or its suppliers.
  40. * Use of this software for evaluation purposes is subject to and indicates
  41. * acceptance of the End User licence Agreement for this product. A copy of
  42. * the license is included with this software and is also available at www.havok.com/tryhavok.
  43. */