hkTree.inl
上传用户: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. template <typename T>
  9. inline hkTree<T>::hkTree(destructFunc destruct)
  10. : m_destruct(destruct), m_tree( sizeof(T) )
  11. {
  12. }
  13. template <typename T>
  14. inline hkTree<T>::~hkTree()
  15. {
  16. clear();
  17. }
  18. template <typename T>
  19. inline void hkTree<T>::clear()
  20. {
  21. Iter i = m_tree.iterGetRoot();
  22. while( i != HK_NULL )
  23. {
  24. i = m_tree.remove( i, m_destruct);
  25. }
  26. }
  27. template <typename T>
  28. inline typename hkTree<T>::Iter hkTree<T>::append(Iter i, const T& t)
  29. {
  30. return m_tree.append(i, &t, sizeof(T));
  31. }
  32. template <typename T>
  33. inline typename hkTree<T>::Iter hkTree<T>::remove(Iter i)
  34. {
  35. return m_tree.remove(i, m_destruct);
  36. }
  37. template <typename T>
  38. inline void hkTree<T>::setValue(Iter i, const T& t )
  39. {
  40. m_tree.setValue(i, &t, sizeof(T));
  41. }
  42. template <typename T>
  43. inline const T& hkTree<T>::getValue(Iter i) const
  44. {
  45. return *static_cast<const T*>( m_tree.getValue(i) );
  46. }
  47. template <typename T>
  48. inline int hkTree<T>::getDepth(Iter i) const
  49. {
  50. return m_tree.getDepth(i);
  51. }
  52. template <typename T>
  53. inline int hkTree<T>::getNumChildren(Iter i) const
  54. {
  55. return m_tree.getNumChildren(i);
  56. }
  57. template <typename T>
  58. inline typename hkTree<T>::Iter hkTree<T>::iterGetRoot() const
  59. {
  60. return m_tree.iterGetRoot();
  61. }
  62. template <typename T>
  63. inline typename hkTree<T>::Iter hkTree<T>::iterNextPreOrder(Iter i) const
  64. {
  65. return m_tree.iterNextPreOrder(i);
  66. }
  67. template <typename T>
  68. inline typename hkTree<T>::Iter hkTree<T>::iterNext(Iter i) const
  69. {
  70. return m_tree.iterNext(i);
  71. }
  72. template <typename T>
  73. inline typename hkTree<T>::Iter hkTree<T>::iterParent(Iter i) const
  74. {
  75. return m_tree.iterParent(i);
  76. }
  77. template <typename T>
  78. inline typename hkTree<T>::Iter hkTree<T>::iterChildren(Iter i) const
  79. {
  80. return m_tree.iterChildren(i);
  81. }
  82. template <typename T>
  83. inline void hkTree<T>::defaultDestruct(void* p)
  84. {
  85. static_cast<T*>(p)->~T();
  86. }
  87. /*
  88. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  89. * Confidential Information of Havok.  (C) Copyright 1999-2009
  90. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  91. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  92. * rights, and intellectual property rights in the Havok software remain in
  93. * Havok and/or its suppliers.
  94. * Use of this software for evaluation purposes is subject to and indicates
  95. * acceptance of the End User licence Agreement for this product. A copy of
  96. * the license is included with this software and is also available at www.havok.com/tryhavok.
  97. */