hkPointerMultiMap.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:4k
源码类别:

其他游戏

开发平台:

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_SERIALIZE_POINTER_MULTIMAP_H
  9. #define HK_SERIALIZE_POINTER_MULTIMAP_H
  10. #include <Common/Base/Container/PointerMap/hkPointerMap.h>
  11. #include <Common/Base/Reflection/hkTypeInfo.h>
  12. /// Maintains a list of values for each key.
  13. template <typename KEY, typename VALUE>
  14. class hkPointerMultiMap
  15. {
  16. protected:
  17. int getFreeIndex();
  18. public:
  19. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_EXPORT, hkPointerMultiMap);
  20. /// A linked list of pointer references.
  21. /// 'next' is the index of the next reference in the list.
  22. struct Value
  23. {
  24. Value(const VALUE& v, int n) : value(v), next(n) { }
  25. VALUE value;
  26. int next;
  27. private:
  28. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_SERIALIZE, hkPointerMultiMap::Value );
  29. };
  30. /// Create an empty hkPointerMultiMap.
  31. hkPointerMultiMap() : m_freeChainStart(-1) {}
  32. /// Get the index of the references to p or -1.
  33. /// Get subsequent reference indices from Reference.next
  34. int getFirstIndex( KEY k ) const;
  35. /// Read the i'th value.
  36. /// Usually used with an index from getFirstIndex().
  37. const VALUE& getValue( int i ) const { return m_valueChain[i].value; }
  38. /// Get the i+1'th index.
  39. int getNextIndex( int i ) const { return m_valueChain[i].next; }
  40. /// Associate a value v with key k. Return true if the key is new and
  41. /// false if the key already existed.
  42. hkBool32 insert( KEY k, const VALUE& v );
  43. /// A value which is associated with a not-yet-created object.
  44. /// When the pointer key is available, call realizePendingPointer
  45. /// with the return value of this method.
  46. int addPendingValue( const VALUE& v, int nextIndex );
  47. /// A pending object has been created.
  48. void realizePendingKey( KEY k, int index );
  49. /// Return number of keys in the map.
  50. int getNumKeys() const;
  51. /// Remove all keys and values.
  52. void clear();
  53. /// Remove value at index and return next index or -1 if this
  54. /// is the last index in the list.
  55. int removeByIndex( KEY k, int index );
  56. /// Remove value v from key.
  57. void removeByValue( KEY k, const VALUE& v);
  58. /// Remove key and all its values.
  59. void removeKey( KEY k );
  60. /// Assign all values of oldKey to newKey and remove oldKey.
  61. /// It is an error if oldKey does not exist or newKey exists.
  62. void changeKey( KEY oldKey, KEY newKey );
  63. public:
  64. // Multiple singly-linked lists of values.
  65. // Start index is given by m_indexMap.
  66. hkArray<Value> m_valueChain;
  67. // Map of pointer to index into m_valueChain.
  68. hkPointerMap<KEY, int> m_indexMap;
  69. // Chain free list
  70. int m_freeChainStart;
  71. };
  72. #include <Common/Serialize/Util/hkPointerMultiMap.inl>
  73. #endif // HK_SERIALIZE_POINTER_MULTIMAP_H
  74. /*
  75. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  76. * Confidential Information of Havok.  (C) Copyright 1999-2009
  77. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  78. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  79. * rights, and intellectual property rights in the Havok software remain in
  80. * Havok and/or its suppliers.
  81. * Use of this software for evaluation purposes is subject to and indicates
  82. * acceptance of the End User licence Agreement for this product. A copy of
  83. * the license is included with this software and is also available at www.havok.com/tryhavok.
  84. */