hkpMoppBvTreeShape.inl
上传用户: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. inline hkpMoppBvTreeShape::hkpMoppBvTreeShape( hkFinishLoadedObjectFlag flag ) : hkMoppBvTreeShapeBase(flag), m_child(flag) 
  9. if (flag.m_finishing == 1)
  10. {
  11. m_type = HK_SHAPE_MOPP;  
  12. m_codeInfoCopy = m_code->m_info.m_offset;
  13. m_moppData = m_code->m_data.begin();
  14. m_moppDataSize = m_code->getCodeSize();
  15. }
  16. }
  17. inline const hkpShapeCollection* hkpMoppBvTreeShape::getShapeCollection() const
  18. {
  19. return static_cast<const hkpShapeCollection*>(m_child.getChild());
  20. }
  21. inline const hkpShapeContainer* hkpMoppBvTreeShape::getContainer() const
  22. {
  23. return getShapeCollection()->getContainer();
  24. }
  25. /// Get the internal data used by the MOPP algorithms
  26. inline const hkpMoppCode*  hkpMoppBvTreeShape::getMoppCode() const 
  27. return m_code; 
  28. }
  29. inline void  hkpMoppBvTreeShape::setMoppCode(const hkpMoppCode* code) 
  30. HK_ASSERT2(0xcf45fedc, code, "You can not supply a null MoppCode. Was the Mopp setup correctly?.");
  31. code->addReference();
  32. m_code->removeReference();
  33. m_code = code;
  34. m_codeInfoCopy = code->m_info.m_offset;
  35. m_moppData = code->m_data.begin();
  36. m_moppDataSize = code->getCodeSize();
  37. }
  38. const hkpShape* hkpMoppBvTreeShape::getChild() const
  39. {
  40. return m_child.getChild();
  41. }
  42. /*
  43. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  44. * Confidential Information of Havok.  (C) Copyright 1999-2009
  45. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  46. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  47. * rights, and intellectual property rights in the Havok software remain in
  48. * Havok and/or its suppliers.
  49. * Use of this software for evaluation purposes is subject to and indicates
  50. * acceptance of the End User licence Agreement for this product. A copy of
  51. * the license is included with this software and is also available at www.havok.com/tryhavok.
  52. */