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

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  3.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  4.  * 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.
  5.  * 
  6.  */
  7. #ifndef HAVOK_FILTER_XML_PREVIEW__H
  8. #define HAVOK_FILTER_XML_PREVIEW__H
  9. #include <ContentTools/Common/Filters/FilterViewXml/ViewXml/hctViewXmlOptions.h>
  10. class hctViewXmlFilter : public hctModelessFilter
  11. {
  12. public: 
  13. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_EXPORT);
  14. hctViewXmlFilter(const hctFilterManagerInterface* owner);
  15. /*virtual*/ ~hctViewXmlFilter();
  16. /*
  17. ** From hkModelessfilter
  18. */
  19. /// Access to the descriptor.
  20. /*virtual*/ hctModelessFilterDescriptor& getDescriptor() const;
  21. // Processing
  22. /*virtual*/ void modalProcess ( class hkRootLevelContainer& data );
  23. /// The filter manager may request us to close as soon as possible
  24. /*virtual*/ void tryToClose();
  25. /// Returns true if the filter is closing down
  26. /*virtual*/ bool isClosingDown () const;
  27. /// Modeless filters can be treated as modal if desired. Override this method in order to do so.
  28. /// Default implementation returns false;
  29. /*virtual*/ bool behaveAsModal () const;
  30. /*
  31. ** From hctFilterInterface (options)
  32. */
  33. /*virtual*/ void setOptions ( const void* optionData, int optionDataSize, unsigned int version );
  34. /*virtual*/ HWND showOptions ( HWND owner );
  35. /*virtual*/ int getOptionsSize() const;
  36. /*virtual*/ void getOptions(void* optionData) const;
  37. /*virtual*/ void hideOptions();
  38. public : // public for dialog
  39. /// True if the user is trying to close us
  40. bool m_closeRequested;
  41. /// Options
  42. hctViewXmlOptions m_options;
  43. HWND m_optionsDialog;
  44. void updateOptions();
  45. // A buffer for storing the options in XML form.
  46. mutable hkArray<char> m_optionsBuf;
  47. };
  48. class hctViewXmlFilterDesc : public hctModelessFilterDescriptor
  49. {
  50. public:
  51. /*virtual*/ unsigned int getID() const { return 0x01f160c1; }
  52. /*virtual*/ FilterCategory getCategory() const { return HK_CATEGORY_CORE; }
  53. /*virtual*/ FilterBehaviour getFilterBehaviour() const { return HK_DATA_PASSTHRU; }
  54. /*virtual*/ const char* getShortName() const { return "View XML"; }
  55. /*virtual*/ const char* getLongName() const { return "Inspect the scene during export as an XML file."; }
  56. /*virtual*/ unsigned int getFilterVersion() const { return HCT_FILTER_VERSION(1,1,0); }
  57. /*virtual*/ hctFilterInterface* createFilter(const hctFilterManagerInterface* owner) const { return new hctViewXmlFilter(owner); }
  58. /*virtual*/ HavokComponentMask getRequiredHavokComponents () const { return HK_COMPONENT_COMMON; }
  59. };
  60. extern hctViewXmlFilterDesc g_viewXmlDesc;
  61. #endif // HAVOK_FILTER_XML_PREVIEW__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. */