hkpConstraintOwner.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_CONSTRAINT_OWNER_H
  9. #define HK_DYNAMICS2_CONSTRAINT_OWNER_H
  10. #include <Common/Base/DebugUtil/MultiThreadCheck/hkMultiThreadCheck.h>
  11. #include <Physics/Dynamics/Constraint/hkpConstraintInstance.h>
  12. #include <Physics/Dynamics/Constraint/hkpConstraintData.h>
  13. class hkpConstraintOwner: public hkReferencedObject
  14. {
  15. public:
  16. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_DYNAMICS);
  17. inline void addConstraintInfo( hkpConstraintInstance* constraint, hkpConstraintInfo& delta )
  18. {
  19. HK_ON_DEBUG_MULTI_THREADING( checkAccessRw() );
  20. if ( constraint->m_internal )
  21. {
  22. m_constraintInfo.add( delta );
  23. constraint->m_internal->addConstraintInfo( delta );
  24. // we have to do this because the delta might not include the full modifier list, see HVK-3602
  25. m_constraintInfo.m_maxSizeOfSchema = hkMath::max2( int(m_constraintInfo.m_maxSizeOfSchema), int(constraint->m_internal->m_sizeOfSchemas) );
  26. }
  27. }
  28. inline void subConstraintInfo( hkpConstraintInstance* constraint, hkpConstraintInfo& delta )
  29. {
  30. HK_ON_DEBUG_MULTI_THREADING(checkAccessRw());
  31. if ( constraint->m_internal )
  32. {
  33. m_constraintInfo.sub( delta );
  34. constraint->m_internal->subConstraintInfo( delta );
  35. }
  36. }
  37. public:
  38. virtual void addConstraintToCriticalLockedIsland(      hkpConstraintInstance* constraint ){}
  39. virtual void removeConstraintFromCriticalLockedIsland( hkpConstraintInstance* constraint ){}
  40. virtual void addCallbackRequest( hkpConstraintInstance* constraint, int request ){}
  41. virtual void checkAccessRw() {}
  42. public:
  43. hkpConstraintInfoSpu2 m_constraintInfo;
  44. };
  45. #endif // HK_DYNAMICS2_CONSTRAINT_OWNER_H
  46. /*
  47. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  48. * Confidential Information of Havok.  (C) Copyright 1999-2009
  49. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  50. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  51. * rights, and intellectual property rights in the Havok software remain in
  52. * Havok and/or its suppliers.
  53. * Use of this software for evaluation purposes is subject to and indicates
  54. * acceptance of the End User licence Agreement for this product. A copy of
  55. * the license is included with this software and is also available at www.havok.com/tryhavok.
  56. */