hctAlignSceneToNodeFilter.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 HAVOK_FILTER_ALIGN_SCENE_TO_NODE_H
  9. #define HAVOK_FILTER_ALIGN_SCENE_TO_NODE_H
  10. #include <ContentTools/Common/Filters/FilterScene/AlignSceneToNode/hctAlignSceneToNodeOptions.h>
  11. #include <ContentTools/Common/Filters/FilterScene/AlignSceneToNode/hctAlignSceneToNodeFilter.h>
  12. #include <Common/SceneData/Scene/hkxSceneUtils.h>
  13. /// This class is a duplicate of hkAlignSceneToNodeOptions.h.
  14. /// Please do not change one without changing the other.
  15. /// For further information, please refer to EXP-1655 and EXP-1656
  16. class hctAlignSceneToNodeFilter : public hctFilterInterface
  17. {
  18. public: 
  19. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_EXPORT);
  20. hctAlignSceneToNodeFilter(const hctFilterManagerInterface* owner);
  21. /*virtual*/ ~hctAlignSceneToNodeFilter();
  22. /*virtual*/ void setOptions(const void* optionData, int optionDataSize, unsigned int version);
  23. /*virtual*/ HWND showOptions(HWND owner);
  24. /*virtual*/ void process( class hkRootLevelContainer& data );
  25. /// Option ptr only valid until the filter is deleted and/or the filter dll is unloaded
  26. /*virtual*/ int getOptionsSize() const;
  27. /*virtual*/ void getOptions(void* optionData) const;
  28. /*virtual*/ void hideOptions();
  29. // Public for the dialog
  30. public:
  31. HWND m_optionsDialog;
  32. hkBool m_fillingControls; // True when we are setting up the data in the controls; avoids recursion
  33. hkBool m_doNotRefreshEdit; // To avoid the custom samples edit box being updated constantly and cursor being lost
  34. hctAlignSceneToNodeOptions m_options;
  35. // A buffer for storing the options in XML form.
  36. mutable hkArray<char> m_optionsBuf;
  37. // Dialog handling stuff
  38. void setControlsFromData();
  39. void setDataFromControls();
  40. private:
  41. // Similarity transform: result = T^-1 M T
  42. static void HK_CALL similarity( hkMatrix4& result, const hkMatrix4& T, const hkMatrix4& M );
  43. };
  44. class hctAlignSceneToNodeFilterDesc : public hctFilterDescriptor
  45. {
  46. public:
  47. /*virtual*/ unsigned int getID() const { return 0x5010d60b; }
  48. /*virtual*/ FilterCategory getCategory() const { return HK_CATEGORY_CORE; }
  49. /*virtual*/ FilterBehaviour getFilterBehaviour() const { return HK_DATA_MUTATES_INPLACE; }
  50. /*virtual*/ const char* getShortName() const { return "Align Scene To Node"; }
  51. /*virtual*/ const char* getLongName() const { return "Align Scene To Node Filter"; }
  52. /*virtual*/ unsigned int getFilterVersion() const { return HCT_FILTER_VERSION(1,0,0); }
  53. /*virtual*/ hctFilterInterface* createFilter(const class hctFilterManagerInterface* owner) const { return new hctAlignSceneToNodeFilter(owner); }
  54. /*virtual*/ HavokComponentMask getRequiredHavokComponents () const { return HK_COMPONENT_COMMON; }
  55. };
  56. extern hctAlignSceneToNodeFilterDesc g_alignSceneToNodeDesc;
  57. #endif // HAVOK_FILTER_ALIGN_SCENE_TO_NODE_H
  58. /*
  59. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  60. * Confidential Information of Havok.  (C) Copyright 1999-2009
  61. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  62. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  63. * rights, and intellectual property rights in the Havok software remain in
  64. * Havok and/or its suppliers.
  65. * Use of this software for evaluation purposes is subject to and indicates
  66. * acceptance of the End User licence Agreement for this product. A copy of
  67. * the license is included with this software and is also available at www.havok.com/tryhavok.
  68. */