hkLocalArray.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 HKBASE_HKLOCALARRAY_H
  9. #define HKBASE_HKLOCALARRAY_H
  10. /// A array class which uses hkMemory stack based allocations.
  11. /// Stack allocation patterns can be much faster than heap allocations.
  12. /// See the hkMemory/Frame based allocation user guide section.
  13. /// When an hkLocalArray grows beyond its original specified capacity, it
  14. /// falls back on heap allocations so it is important to specify a good
  15. /// initial capacity.
  16. /// hkLocalArray should almost always be a local variable in a
  17. /// method and almost never a member of an object.
  18. template <typename T>
  19. class hkLocalArray : public hkArray<T>
  20. {
  21. public:
  22. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_ARRAY, hkLocalArray<T>);
  23. /// Create an array with zero size and given capacity.
  24. /// For maximum efficiency, the arrays capacity should never grow
  25. /// beyond the specified capacity.  If it does, the array falls back
  26. /// to using heap allocations which is safe, but the speed advantage
  27. /// of using the stack based allocation methods is lost.
  28. HK_FORCE_INLINE hkLocalArray( int capacity )
  29. {
  30. this->m_data = hkAllocateStack<T>(capacity);
  31. this->m_capacityAndFlags = capacity | hkArray<T>::DONT_DEALLOCATE_FLAG;
  32. m_localMemory = this->m_data;
  33. }
  34. /// Discard the current contents and resize to the given size. Memory is uninitialised.
  35. HK_FORCE_INLINE void discardAndResize(int newsize)
  36. {
  37. HK_ASSERT2(0x2cd92d9d, m_localMemory == this->m_data, "You cannot call discardAndResize on a localarray that has grown beyond its original specified capacity.");
  38. hkDeallocateStack<T>( m_localMemory );
  39. m_localMemory = this->m_data = hkAllocateStack<T>(newsize);
  40. this->m_size = newsize;
  41. this->m_capacityAndFlags = newsize | hkArray<T>::DONT_DEALLOCATE_FLAG;
  42. }
  43. void assertNotResized()
  44. {
  45. HK_ASSERT2(0x5f792e08, m_localMemory == this->m_data, "A localarray grew beyond its original specified capacity.");
  46. }
  47. hkBool wasReallocated() const
  48. {
  49. return m_localMemory != this->m_data;
  50. }
  51. /// Destroy the array.
  52. HK_FORCE_INLINE ~hkLocalArray()
  53. {
  54. hkDeallocateStack<T>( m_localMemory );
  55. }
  56. T* m_localMemory;
  57. };
  58. #endif // HKBASE_HKLOCALARRAY_H
  59. /*
  60. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  61. * Confidential Information of Havok.  (C) Copyright 1999-2009
  62. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  63. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  64. * rights, and intellectual property rights in the Havok software remain in
  65. * Havok and/or its suppliers.
  66. * Use of this software for evaluation purposes is subject to and indicates
  67. * acceptance of the End User licence Agreement for this product. A copy of
  68. * the license is included with this software and is also available at www.havok.com/tryhavok.
  69. */