hkTypedUnion.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 HK_BASE_UNION_H
  9. #define HK_BASE_UNION_H
  10. #include <Common/Base/Reflection/hkClassMember.h>
  11. /// Class that can be set to hold any type specified in hkClassMember::Type.
  12. /// Basic POD types are copied, objects are referenced.
  13. class hkTypedUnion
  14. {
  15. public:
  16. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_BASE, hkTypedUnion);
  17. /// Empty constructor.
  18. inline hkTypedUnion();
  19. /// Return HK_SUCCESS if the value held is of the right type, HK_FAILURE otherwise.
  20. /*template<typename VALUE_T>
  21. inline hkResult getValue(VALUE_T& dest) const;
  22. /// Sets the value for basic types
  23. template<typename VALUE_T>
  24. inline void setSimple(const VALUE_T& orig);*/
  25. /// For pointers to reflected objects, you need to provide the hkClass too.
  26. inline void setObject(const void* orig, const hkClass* klass);
  27. /// For enum values, you need to provide the hkClass too.
  28. inline void setEnum(int value, const hkClassEnum* eclass);
  29. /// Generic setValue, only works for POD types. 
  30. inline hkResult setSimple(const void* orig, const hkClassMember::Type type);
  31. /// Like a hkVariant, but for enums.
  32. struct EnumVariant
  33. {
  34. int m_value;
  35. const hkClassEnum* m_enum;
  36. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_BASE_CLASS, hkTypedUnion::EnumVariant );
  37. };
  38. ///
  39. union Storage
  40. {
  41. bool m_bool;
  42. char m_char;
  43. hkInt8 m_int8;
  44. hkUint8 m_uint8;
  45. hkInt16 m_int16;
  46. hkUint16 m_uint16;
  47. hkInt32 m_int32;
  48. hkUint32 m_uint32;
  49. hkInt64 m_int64;
  50. hkUint64 m_uint64;
  51. float m_float;
  52. float m_float4[4];
  53. float m_float12[12];
  54. float m_float16[16];
  55. hkVariant m_variant;
  56. EnumVariant m_enumVariant;
  57. hkUlong m_ulong;
  58. hkInt32 m_maxSize[16];
  59. };
  60. /// Query the stored type.
  61. inline hkClassMember::Type getType() const;
  62. /// Access the stored value.
  63. inline const Storage& getStorage() const;
  64. private:   
  65. /// Type of the value held.
  66. hkEnum<hkClassMember::Type, hkInt32> m_type;
  67. /// Storage element.
  68. HK_ALIGN16( Storage m_elem );  
  69. };
  70. #include <Common/Base/Types/hkTypedUnion.inl>
  71. #endif //HK_BASE_UNION_H
  72. /*
  73. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  74. * Confidential Information of Havok.  (C) Copyright 1999-2009
  75. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  76. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  77. * rights, and intellectual property rights in the Havok software remain in
  78. * Havok and/or its suppliers.
  79. * Use of this software for evaluation purposes is subject to and indicates
  80. * acceptance of the End User licence Agreement for this product. A copy of
  81. * the license is included with this software and is also available at www.havok.com/tryhavok.
  82. */