hkDataObjectNative.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_DATA_NATIVE_OBJECT
  9. #define HK_DATA_NATIVE_OBJECT
  10. #include <Common/Serialize/Data/hkDataObject.h>
  11. class hkPackfileReader;
  12. class hkPackfileData;
  13. class hkDataClassNative;
  14. class hkVtableClassRegistry;
  15. class hkClassNameRegistry;
  16. /// This class implements the native type of hkDataWorld and
  17. /// can be used only for read access and in-place modifications
  18. /// of native objects.
  19. /// 
  20. /// You also may use this class to save object contents to a tagfile
  21. /// with a pointer and hkClass.
  22. class hkDataWorldNative : public hkDataWorld
  23. {
  24. public:
  25. /// Constructor.
  26. hkDataWorldNative();
  27. /// Destructor.
  28. ~hkDataWorldNative();
  29. /// Implements hkDataWorld::getContents().
  30. virtual hkDataObject getContents() const;
  31. // Not implemented for native world.
  32. virtual hkDataObjectImpl* newObject(const hkDataClass& klass) const;
  33. // Not implemented for native world.
  34. virtual hkDataClassImpl* newClass(const ClassCinfo& cinfo);
  35. // Not implemented for native world.
  36. virtual hkDataArrayImpl* newArray(hkDataObject& obj, const hkDataClass::MemberInfo& minfo) const;
  37. /// Implements hkDataWorld::getType(). Return hkDataWorld::TYPE_NATIVE.
  38. virtual hkEnum<hkDataWorld::DataWorldType, hkInt32> getType() const;
  39. /// Implements hkDataWorld::findAllClasses().
  40. virtual void findAllClasses(hkArray<hkDataClassImpl*>& classesOut) const;
  41. /// Implements hkDataWorld::findAllClasses().
  42. virtual hkDataClassImpl* findClass(const char* name) const;
  43. /// Wrap native object based on the given pointer and hkClass.
  44. hkDataObjectImpl* wrapObject(void* object, const hkClass& klass) const;
  45. /// Set top level object with the given pointer and hkClass.
  46. /// The hkClass must be from the set class name registry.
  47. /// If 'klass' is not found then the world's top level object is set to HK_NULL.
  48. void setContents(void* object, const hkClass& klass);
  49. /// Set class name registry.
  50. /// Classes from this registry are used to wrap and access native objects.
  51. void setClassRegistry(const hkClassNameRegistry* r);
  52. /// Set vtable registry.
  53. /// This registry is used to find the most-derived class when wrapping native virtual objects.
  54. void setVtableRegistry(const hkVtableClassRegistry* vt);
  55. // Used internally.
  56. hkRefPtr<const hkClassNameRegistry> m_reg;
  57. hkRefPtr<const hkVtableClassRegistry> m_vtable;
  58. mutable hkStringMap<hkDataClassNative*> m_classes;
  59. hkVariant m_contents;
  60. };
  61. #endif // HK_DATA_NATIVE_OBJECT
  62. /*
  63. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  64. * Confidential Information of Havok.  (C) Copyright 1999-2009
  65. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  66. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  67. * rights, and intellectual property rights in the Havok software remain in
  68. * Havok and/or its suppliers.
  69. * Use of this software for evaluation purposes is subject to and indicates
  70. * acceptance of the End User licence Agreement for this product. A copy of
  71. * the license is included with this software and is also available at www.havok.com/tryhavok.
  72. */