saveAsZero.h
上传用户: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. #ifndef HKSERIALIZE_SAVE_AS_ZERO_H
  9. #define HKSERIALIZE_SAVE_AS_ZERO_H
  10. extern const class hkClass TestZeroClass;
  11. class TestZero
  12. {
  13. public:
  14. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_SERIALIZE, TestZero );
  15. HK_DECLARE_REFLECTION();
  16. enum Value
  17. {
  18. VALUE_0=0,
  19. VALUE_1=1,
  20. VALUE_2=2,
  21. VALUE_3=3,
  22. VALUE_8=8,
  23. VALUE_16=16,
  24. VALUE_32=32,
  25. };
  26. TestZero()
  27. :
  28. m_value8( VALUE_8 ),
  29. m_value16( VALUE_16 ),
  30. m_value32( VALUE_32 ),
  31. m_zero8( VALUE_8 ),
  32. m_zero16( VALUE_16 ),
  33. m_zero32( VALUE_32 )
  34. {
  35. }
  36. public:
  37. hkEnum<Value, hkInt8> m_value8;
  38. hkEnum<Value, hkInt16> m_value16;
  39. hkEnum<Value, hkInt32> m_value32;
  40. hkEnum<Value, hkInt8> m_zero8; //+nosave
  41. hkEnum<Value, hkInt16> m_zero16; //+nosave
  42. hkEnum<Value, hkInt32> m_zero32; //+nosave
  43. };
  44. extern const hkClass TestArrayNullsClass;
  45. class TestArrayNulls
  46. {
  47. public:
  48. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_SERIALIZE, TestArrayNulls );
  49. HK_DECLARE_REFLECTION();
  50. TestArrayNulls()
  51. {
  52. m_array.pushBack(HK_NULL);
  53. m_array.pushBack(this);
  54. m_array.pushBack(HK_NULL);
  55. m_array.pushBack(HK_NULL);
  56. m_array.pushBack(this);
  57. m_array.pushBack(HK_NULL);
  58. }
  59. hkArray<class ::TestArrayNulls*> m_array;
  60. };
  61. #endif // HKSERIALIZE_SAVE_AS_ZERO_H
  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. */