hkLocalBuffer.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. #if !defined(HKBASE_HK_LOCAL_BUFFER_H) 
  9. #define HKBASE_HK_LOCAL_BUFFER_H
  10. template <typename T>
  11. class hkFixedArray
  12. {
  13. public:
  14. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_ARRAY, hkFixedArray<T>);
  15. /// Read/write access to the i'th element.
  16. HK_FORCE_INLINE T& operator[] (int i);
  17. /// Read only access to the i'th element.
  18. HK_FORCE_INLINE const T& operator[] (int i) const;
  19. /// Returns an STL-like iterator to the first element.
  20. HK_FORCE_INLINE T* begin();
  21. /// Returns an STL-like iterator to the 'one past the last' element.
  22. HK_FORCE_INLINE const T* begin() const;
  23. # if defined(HK_DEBUG)
  24. HK_FORCE_INLINE int getSizeDebug() const { return m_debugSize; }
  25. # endif
  26. protected:
  27. HK_FORCE_INLINE hkFixedArray(){}
  28. hkPadSpu<T*> m_data;
  29. int m_debugSize; // only set in debug mode
  30. };
  31. /// A buffer going to stack memory.
  32. /// Similar to C-style arrays but with bounds checking.
  33. template <typename T>
  34. class hkLocalBuffer: public hkFixedArray<T>
  35. {
  36. public:
  37. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_ARRAY, hkLocalBuffer<T>);
  38. /// Creates a buffer of size n. All elements are uninitialized.
  39. HK_FORCE_INLINE hkLocalBuffer(int n, const char* what = 0 );
  40. /// Deallocates array memory.
  41. HK_FORCE_INLINE ~hkLocalBuffer();
  42. };
  43. template <typename T>
  44. HK_FORCE_INLINE hkLocalBuffer<T>::hkLocalBuffer( int capacity, const char* what )
  45. {
  46. this->m_data = hkAllocateStack<T>(capacity);
  47. HK_ON_DEBUG( this->m_debugSize = capacity );
  48. }
  49. template <typename T>
  50. HK_FORCE_INLINE hkLocalBuffer<T>::~hkLocalBuffer()
  51. {
  52. hkDeallocateStack( this->m_data.val() );
  53. }
  54. template <typename T>
  55. HK_FORCE_INLINE T& hkFixedArray<T>::operator[] (int i)
  56. {
  57. HK_ASSERT(0x394e9c6c,  i >= 0 && i < m_debugSize );
  58. return m_data[i];
  59. }
  60. template <typename T>
  61. HK_FORCE_INLINE const T& hkFixedArray<T>::operator[] (int i) const
  62. {
  63. HK_ASSERT(0x264718f3,  i >= 0 && i < m_debugSize  );
  64. return m_data[i];
  65. }
  66. template <typename T>
  67. T* hkFixedArray<T>::begin() 
  68. {
  69. return m_data;
  70. }
  71. template <typename T>
  72. const T* hkFixedArray<T>::begin() const
  73. {
  74. return m_data;
  75. }
  76. #endif // HKBASE_HK_LOCAL_BUFFER_H
  77. /*
  78. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  79. * Confidential Information of Havok.  (C) Copyright 1999-2009
  80. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  81. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  82. * rights, and intellectual property rights in the Havok software remain in
  83. * Havok and/or its suppliers.
  84. * Use of this software for evaluation purposes is subject to and indicates
  85. * acceptance of the End User licence Agreement for this product. A copy of
  86. * the license is included with this software and is also available at www.havok.com/tryhavok.
  87. */