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