hctEmbedTextureFilter.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_EMBED__H
  8. #define HAVOK_FILTER_TEXTURES_EMBED__H
  9. #include <ContentTools/Common/Filters/FilterTexture/EmbedTexture/hctEmbedTextureFilterOptions.h>
  10. class hctEmbedTextureFilter : public hctFilterInterface
  11. {
  12. public: 
  13. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_EXPORT);
  14. hctEmbedTextureFilter(const hctFilterManagerInterface* owner);
  15. /*virtual*/ ~hctEmbedTextureFilter();
  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. void findSceneMaterials( hkxScene& scene, hkArray<hkxMaterial*>& sceneMaterials);
  25. void findFileTextures( hkxScene& scene, hkArray<hkxTextureFile*>& fileBasedTextures );
  26. // filter options
  27. hctEmbedTextureFilterOptions m_options;
  28. hkObjectArray< hkString > m_nameStrings;
  29. hkArray< hkxTextureFile* > m_listedTextures;
  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 hctEmbedTextureFilterDesc : public hctFilterDescriptor
  39. {
  40. public:
  41. /*virtual*/ unsigned int getID() const { return 0xf3429cad; }
  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 "Embed Texture"; }
  45. /*virtual*/ const char* getLongName() const { return "Embeds file based textures in the scene data. Note this may result in loss of texture data sharing across files at runtime."; }
  46. /*virtual*/ unsigned int getFilterVersion() const { return HCT_FILTER_VERSION(1,1,1); }
  47. /*virtual*/ hctFilterInterface* createFilter(const hctFilterManagerInterface* owner) const { return new hctEmbedTextureFilter(owner); }
  48. /*virtual*/ HavokComponentMask getRequiredHavokComponents () const { return HK_COMPONENT_COMMON; }
  49. };
  50. extern hctEmbedTextureFilterDesc g_embedTextureDesc;
  51. #endif // HAVOK_FILTER_TEXTURES_EMBED__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. */