hctPlatformWriterFilter.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 HAVOK_FILTER_SCENE_PLATFORM_WRITER_H
  9. #define HAVOK_FILTER_SCENE_PLATFORM_WRITER_H
  10. #include <ContentTools/Common/Filters/FilterScene/PlatformWriter/hctPlatformWriterOptions.h>
  11. #include <Common/Serialize/Util/hkStructureLayout.h>
  12. // Short name
  13. typedef hctPlatformWriterOptions OPTTYPE;
  14. class hctPlatformWriterFilter : public hctFilterInterface
  15. {
  16. public: 
  17. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_EXPORT);
  18. hctPlatformWriterFilter(const hctFilterManagerInterface* owner);
  19. /*virtual*/ ~hctPlatformWriterFilter();
  20. /*virtual*/ void setOptions(const void* optionData, int optionDataSize, unsigned int version);
  21. /*virtual*/ HWND showOptions(HWND owner);
  22. /*virtual*/ void process( class hkRootLevelContainer& data );
  23. /// Option ptr only valid until the filter is deleted and/or the filter dll is unloaded
  24. /*virtual*/ int getOptionsSize() const;
  25. /*virtual*/ void getOptions(void* optionData) const;
  26. /*virtual*/ void hideOptions();
  27. // Public for the dialog
  28. public:
  29. void updateOptions();
  30. HWND m_optionsDialog;
  31. mutable hkString m_assetFolder;
  32. mutable hkString m_filename;
  33. mutable hctPlatformWriterOptions m_options;
  34. // A buffer for storing the options in XML form.
  35. mutable hkArray<char> m_optionsBuf;
  36. // Structure layout and presets
  37. struct OptionToLayoutEntry
  38. {
  39. OPTTYPE::Preset preset;
  40. const hkStructureLayout::LayoutRules* layout;
  41. char* label;
  42. };
  43. static OptionToLayoutEntry m_optionToLayoutTable[];
  44. static int m_optionToLayoutTableSize;
  45. // finds a specific preset in m_optionToLayoutTable
  46. static int findPresetIndex( hctPlatformWriterOptions::Preset p );
  47. };
  48. // Version history
  49. // 1.0.1 oldest
  50. // 1.1.0 added "m_tagfile"
  51. class hctPlatformWriterFilterDesc : public hctFilterDescriptor
  52. {
  53. public:
  54. /*virtual*/ unsigned int getID() const { return 0xab787565; }
  55. /*virtual*/ FilterCategory getCategory() const { return HK_CATEGORY_CORE; }
  56. /*virtual*/ FilterBehaviour getFilterBehaviour() const { return HK_DATA_MUTATES_EXTERNAL; }
  57. /*virtual*/ const char* getShortName() const { return "Write to Platform"; }
  58. /*virtual*/ const char* getLongName() const { return "Write binary data for any given platform."; }
  59. /*virtual*/ unsigned int getFilterVersion() const { return HCT_FILTER_VERSION(1,1,0); }
  60. /*virtual*/ hctFilterInterface* createFilter(const class hctFilterManagerInterface* owner) const { return new hctPlatformWriterFilter(owner); }
  61. /*virtual*/ HavokComponentMask getRequiredHavokComponents () const { return HK_COMPONENT_COMMON; }
  62. };
  63. extern hctPlatformWriterFilterDesc g_platformWriterDesc;
  64. #endif // HAVOK_FILTER_SCENE_PLATFORM_WRITER_H
  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. */