hctGatherAndConvertTextureFilter.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_TEXTURES_GATHER_AND_CONVERT__H
  8. #define HAVOK_FILTER_TEXTURES_GATHER_AND_CONVERT__H
  9. #include <ContentTools/Common/Filters/FilterTexture/GatherAndConvertTexture/hctGatherAndConvertTextureFilterOptions.h>
  10. class hctGatherAndConvertTextureFilter : public hctFilterInterface
  11. {
  12. public: 
  13. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_EXPORT);
  14. hctGatherAndConvertTextureFilter(const hctFilterManagerInterface* owner);
  15. /*virtual*/ ~hctGatherAndConvertTextureFilter();
  16. /*virtual*/ void setOptions(const void* optionData, int optionDataSize, unsigned int version);
  17. /*virtual*/ HWND showOptions(HWND owner);
  18. /*virtual*/ void process( class hkRootLevelContainer& data );
  19. /// Option ptr only valid until the filter is deleted and/or the filter dll is unloaded
  20. /*virtual*/ int getOptionsSize() const;
  21. /*virtual*/ void getOptions(void* optionData) const;
  22. virtual void hideOptions();
  23. void updateOptions();
  24. // filter options
  25. hctGatherAndConvertTextureFilterOptions m_options;
  26. hkObjectArray< hkString > m_nameStrings;
  27. hkArray< hkxTextureFile* > m_listedFileTextures;
  28. hkArray< hkxTextureInplace* > m_listedInplaceTextures;
  29. hkArray< int > m_currentEditOptionIndices;
  30. hkRootLevelContainer* m_optionSceneData; 
  31. hctFilterMemoryTracker m_optionSceneDataTracker;
  32. // A buffer for storing the options in XML form.
  33. mutable hkArray<char> m_getOptionsBuf;
  34. mutable hkArray<char> m_setOptionsBuf;
  35. // dialog
  36. HWND m_optionsDialog;
  37. };
  38. class hctGatherAndConvertTextureFilterDesc : public hctFilterDescriptor
  39. {
  40. public:
  41. /*virtual*/ unsigned int getID() const { return 0x7382abaa; }
  42. /*virtual*/ FilterCategory getCategory() const { return HK_CATEGORY_GRAPHICS; }
  43. /*virtual*/ FilterBehaviour getFilterBehaviour() const { return HK_DATA_MUTATES_INPLACE; }
  44. /*virtual*/ const char* getShortName() const { return "GatherAndConvertTextures"; }
  45. /*virtual*/ const char* getLongName() const { return "Convert textures using FreeImage (so a lot of file types supported). Creates new file or new inplace texture depending on input."; }
  46. /*virtual*/ unsigned int getFilterVersion() const { return HCT_FILTER_VERSION(1,1,1); }
  47. /*virtual*/ hctFilterInterface* createFilter(const hctFilterManagerInterface* owner) const { return new hctGatherAndConvertTextureFilter(owner); }
  48. /*virtual*/ HavokComponentMask getRequiredHavokComponents () const { return HK_COMPONENT_COMMON; }
  49. };
  50. extern hctGatherAndConvertTextureFilterDesc g_gatherAndConvertTextureDesc;
  51. #endif // HAVOK_FILTER_TEXTURES_GATHER_AND_CONVERT__H
  52. /*
  53. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  54. * Confidential Information of Havok.  (C) Copyright 1999-2009
  55. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  56. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  57. * rights, and intellectual property rights in the Havok software remain in
  58. * Havok and/or its suppliers.
  59. * Use of this software for evaluation purposes is subject to and indicates
  60. * acceptance of the End User licence Agreement for this product. A copy of
  61. * the license is included with this software and is also available at www.havok.com/tryhavok.
  62. */