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

其他游戏

开发平台:

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 HKFILTERTEXTURES_HKFILTERTEXTURESGATHERANDCONVERT_HKCLASS_H
  9. #define HKFILTERTEXTURES_HKFILTERTEXTURESGATHERANDCONVERT_HKCLASS_H
  10. /// hctGatherAndConvertTextureOptions meta information
  11. extern const class hkClass hctGatherAndConvertTextureFilterOptionsClass;
  12. /// Options detailing texture size reduction.
  13. class hctGatherAndConvertTextureFilterOptions
  14. {
  15. public:
  16. HK_DECLARE_REFLECTION();
  17. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_EXPORT, hctGatherAndConvertTextureFilterOptions); // required as we have a finsih ctor
  18. /// Default constructor
  19. hctGatherAndConvertTextureFilterOptions() { }
  20. hctGatherAndConvertTextureFilterOptions(hkFinishLoadedObjectFlag f) : m_perTextureOptions(f) { }
  21. //
  22. // Members
  23. //
  24. public:
  25. // A reasonable subset of the FreeImage 3.10 supported formats:
  26. enum OutputFormat
  27. {
  28. OF_BMP = 0,  // Supported by PC based HKG platforms
  29. OF_JPEG     = 2,
  30. OF_PNG = 13, // Supported by all HKG platforms
  31. OF_TARGA = 17, // Supported by all HKG platforms if one of the common uncomressed / simple styles
  32. OF_TIFF     = 18,
  33. OF_HDR = 26
  34. };
  35. enum DitherAlgo
  36. {
  37. DTH_NONE = -1,
  38. DTH_FS = 0,
  39. DTH_BAYER4x4 = 1,
  40. DTH_BAYER8x8 = 2,
  41. DTH_CLUSTER6x6 = 3,
  42. DTH_CLUSTER8x8 = 4,
  43. DTH_CLUSTER16x16= 5,
  44. DTH_BAYER16x16 = 6
  45. };
  46. enum ToneMapAlgo
  47. {
  48. TM_NONE       = -1,
  49. TM_DRAGO03  = 0,
  50. TM_REINHARD05 = 1,
  51. TM_FATTAL02
  52. };
  53. enum ResizeFilter
  54. {
  55. RF_NONE       = -1,
  56. RF_BOX   = 0,
  57. RF_BICUBIC   = 1,
  58. RF_BILINEAR   = 2,
  59. RF_BSPLINE   = 3,
  60. RF_CATMULLROM = 4,
  61. RF_LANCZOS3  
  62. };
  63. struct ConvertOptions
  64. HK_DECLARE_REFLECTION();
  65. char* m_textureName; // the texture these options are for
  66. hkEnum<enum OutputFormat, hkInt8> m_format;
  67. hkEnum<enum DitherAlgo, hkInt8> m_dither;
  68. hkEnum<enum ResizeFilter, hkInt8> m_resizeFilter;
  69. hkUint16 m_xTexels;
  70. hkUint16 m_yTexels;
  71. hkBool m_useOriginalFilename; // always use the original file as the source to load
  72. };
  73. // If sizeof m_options is 1, and texture name is null, then will be applied to all textures
  74. hkArray< struct ConvertOptions > m_perTextureOptions;
  75. char* m_outputTexturePath; // where to place file based textures (path will be stripped and this added, along with new file ext if one)
  76. hkBool m_allowOverwrite; 
  77. };
  78. #endif // HKFILTERTEXTURES_HKFILTERTEXTURESGATHERANDCONVERT_HKCLASS_H
  79. /*
  80. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  81. * Confidential Information of Havok.  (C) Copyright 1999-2009
  82. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  83. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  84. * rights, and intellectual property rights in the Havok software remain in
  85. * Havok and/or its suppliers.
  86. * Use of this software for evaluation purposes is subject to and indicates
  87. * acceptance of the End User licence Agreement for this product. A copy of
  88. * the license is included with this software and is also available at www.havok.com/tryhavok.
  89. */