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

其他游戏

开发平台:

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_TEXTURES_REMOVE_PATHS__H
  8. #define HAVOK_FILTER_TEXTURES_REMOVE_PATHS__H
  9. class hctRemoveTexturePathsFilter : public hctFilterInterface
  10. {
  11. public: 
  12. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_EXPORT);
  13. hctRemoveTexturePathsFilter(const hctFilterManagerInterface* owner);
  14. /*virtual*/ ~hctRemoveTexturePathsFilter();
  15. /*virtual*/ void setOptions( const void* optionData, int optionDataSize, unsigned int version);
  16. /*virtual*/ HWND showOptions( HWND owner );
  17. /*virtual*/ void process(class hkRootLevelContainer& data  );
  18. /// Option ptr only valid until the filter is deleted and/or the filter dll is unloaded
  19. /*virtual*/ int getOptionsSize() const;
  20. /*virtual*/ void getOptions(void* optionData) const;
  21. /*virtual*/ void hideOptions();
  22. // public for the dialog
  23. public:
  24. void updateOptions();
  25. hkString m_paths; 
  26. // A buffer for storing the options in XML form.
  27. mutable hkArray<char> m_optionsBuf;
  28. HWND m_optionsDialog;
  29. };
  30. class hctRemoveTexturePathsFilterDesc : public hctFilterDescriptor
  31. {
  32. public:
  33. /*virtual*/ unsigned int getID() const { return 0x510040eb; }
  34. /*virtual*/ FilterCategory getCategory() const { return HK_CATEGORY_GRAPHICS; }
  35. /*virtual*/ FilterBehaviour getFilterBehaviour() const { return HK_DATA_MUTATES_INPLACE; }
  36. /*virtual*/ const char* getShortName() const { return "Remove Texture Paths"; }
  37. /*virtual*/ const char* getLongName() const { return "Remove paths with relation to given known texture paths"; }
  38. /*virtual*/ unsigned int getFilterVersion() const { return HCT_FILTER_VERSION(1,1,1); }
  39. /*virtual*/ hctFilterInterface* createFilter(const hctFilterManagerInterface* owner) const { return new hctRemoveTexturePathsFilter(owner); }
  40. /*virtual*/ HavokComponentMask getRequiredHavokComponents () const { return HK_COMPONENT_COMMON; }
  41. };
  42. extern hctRemoveTexturePathsFilterDesc g_removeTexturePathsDesc;
  43. #endif // HAVOK_FILTER_TEXTURES_REMOVE_PATHS__H
  44. /*
  45. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  46. * Confidential Information of Havok.  (C) Copyright 1999-2009
  47. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  48. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  49. * rights, and intellectual property rights in the Havok software remain in
  50. * Havok and/or its suppliers.
  51. * Use of this software for evaluation purposes is subject to and indicates
  52. * acceptance of the End User licence Agreement for this product. A copy of
  53. * the license is included with this software and is also available at www.havok.com/tryhavok.
  54. */