hctFilterOptionsHeaderData.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 HKFILTERMANAGER_HKFILTEROPTIONSHEADERDATA_HKCLASS_H
  9. #define HKFILTERMANAGER_HKFILTEROPTIONSHEADERDATA_HKCLASS_H
  10. /// hctFilterData meta information.
  11. extern const class hkClass hctFilterDataClass;
  12. /// hctConfigurationData meta information.
  13. extern const class hkClass hctConfigurationDataClass;
  14. /// hctConfigurationSetData meta information.
  15. extern const class hkClass hctConfigurationSetDataClass;
  16. /// This class describes a filter; it is used internally by the filter manager as a header for each filter options.
  17. class hctFilterData
  18. {
  19. public:
  20. HK_DECLARE_REFLECTION();
  21. // Struct holding default values
  22. struct DefaultStruct;
  23. /// Default constructor
  24. hctFilterData() { }
  25. //
  26. // Members
  27. //
  28. public:
  29. /// The filter's unique id.
  30. unsigned m_id;
  31. /// The version of the filter.
  32. unsigned m_ver;
  33. /// Whether the filter has options or not.
  34. hkBool m_hasOptions;
  35. };
  36. /// This class describes a single configuration ; it is used internally by the filter manager.
  37. class hctConfigurationData
  38. {
  39. public:
  40. HK_DECLARE_REFLECTION();
  41. // Struct holding default values
  42. struct DefaultStruct;
  43. /// Default constructor
  44. hctConfigurationData() { }
  45. //
  46. // Members
  47. //
  48. public:
  49. /// The name of the configuration.
  50. const char* m_configurationName;
  51. /// The number of filters in the configuration.
  52. int m_numFilters;
  53. };
  54. /// This class describes a configuration set - the information used internally by the filter manager and stored 
  55. /// with the max/maya/xsi asset.
  56. class hctConfigurationSetData
  57. {
  58. public:
  59. HK_DECLARE_REFLECTION();
  60. // Struct holding default values
  61. struct DefaultStruct;
  62. /// Default constructor
  63. hctConfigurationSetData() { }
  64. //
  65. // Members
  66. //
  67. public:
  68. /// The filter manager version used to create the configuration set.
  69. unsigned m_filterManagerVersion;
  70. /// The configuration to display in the filter manager when the set is loaded.
  71. int m_activeConfiguration;
  72. };
  73. #endif // HKFILTERMANAGER_HKFILTEROPTIONSHEADERDATA_HKCLASS_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. */