hctCreateTangentsFilter.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_CREATE_TANGENTS_H
  8. #define HAVOK_FILTER_TEXTURES_CREATE_TANGENTS_H
  9. class hctCreateTangentsFilter : public hctFilterInterface
  10. {
  11. public: 
  12. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_EXPORT);
  13. hctCreateTangentsFilter(const hctFilterManagerInterface* owner);
  14. /*virtual*/ ~hctCreateTangentsFilter();
  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:
  23. void updateOptions();
  24. HWND m_optionsDialog;
  25. bool m_splitVertices;
  26. hkObjectArray< hkString > m_meshList; // the name of the nodes that reference specific meshes.
  27. // A buffer for storing the options in XML form.
  28. mutable hkArray<char> m_optionsBuf;
  29. };
  30. class hctCreateTangentsFilterDesc : public hctFilterDescriptor
  31. {
  32. public:
  33. /*virtual*/ unsigned int getID() const { return 0x5382aca8; }
  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 "Create Tangents"; }
  37. /*virtual*/ const char* getLongName() const { return "Using a given set of texture coordinates, auto generate the tangents and binormals for selected meshes."; }
  38. /*virtual*/ unsigned int getFilterVersion() const { return HCT_FILTER_VERSION(1,0,2); }
  39. /*virtual*/ hctFilterInterface* createFilter(const class hctFilterManagerInterface* ownerInstance) const { return new hctCreateTangentsFilter(ownerInstance); }
  40. /*virtual*/ HavokComponentMask getRequiredHavokComponents () const { return HK_COMPONENT_COMMON; }
  41. };
  42. extern hctCreateTangentsFilterDesc g_createTangentsDesc;
  43. #endif // HAVOK_FILTER_TEXTURES_CREATE_TANGENTS_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. */