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

其他游戏

开发平台:

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. inline void hkpPropertyValue::setReal( const hkReal r )
  9. {
  10. // Use a union to ensure that the hkReal is
  11. // always stored in the LSB end of m_data
  12. // regardless of platform endianness
  13. union {
  14. hkReal r;
  15. hkUint32 u;
  16. } u;
  17. u.r = r;
  18. m_data = u.u;
  19. }
  20. inline void hkpPropertyValue::setInt( const int i )
  21. {
  22. m_data = i;
  23. }
  24. inline void hkpPropertyValue::setPtr( void* p )
  25. {
  26. m_data = reinterpret_cast<hkUlong>(p);
  27. }
  28. // constructors here for inlining
  29. inline hkpPropertyValue::hkpPropertyValue( const int i )
  30. setInt(i);
  31. }
  32. inline hkpPropertyValue::hkpPropertyValue( const hkReal r )
  33. setReal(r);
  34. }
  35. inline hkpPropertyValue::hkpPropertyValue( void* p )
  36. setPtr(p);
  37. }
  38. inline hkReal hkpPropertyValue::getReal() const
  39. {
  40. // see comment in setReal
  41. union {
  42. hkReal r;
  43. hkUint32 u;
  44. } u;
  45. u.u = hkUint32(m_data);
  46. return u.r;
  47. }
  48. inline int hkpPropertyValue::getInt() const
  49. {
  50. return static_cast<int>(m_data);
  51. }
  52. inline void* hkpPropertyValue::getPtr() const
  53. {
  54. return reinterpret_cast<void*>(static_cast<hkUlong>(m_data));
  55. }
  56. inline hkpProperty::hkpProperty() 
  57. {
  58. }
  59. inline hkpProperty::hkpProperty( hkUint32 key, hkInt32 value ) 
  60. : m_key(key), m_value(value)
  61. }
  62. inline hkpProperty::hkpProperty( hkUint32 key, hkpPropertyValue value ) 
  63. : m_key(key), m_value(value)
  64. }
  65. /*
  66. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  67. * Confidential Information of Havok.  (C) Copyright 1999-2009
  68. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  69. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  70. * rights, and intellectual property rights in the Havok software remain in
  71. * Havok and/or its suppliers.
  72. * Use of this software for evaluation purposes is subject to and indicates
  73. * acceptance of the End User licence Agreement for this product. A copy of
  74. * the license is included with this software and is also available at www.havok.com/tryhavok.
  75. */