hctSceneTransformFilter.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_SCENE_TRANSFORM_COMPRESSION_H
  9. #define HAVOK_FILTER_SCENE_TRANSFORM_COMPRESSION_H
  10. #include <ContentTools/Common/Filters/FilterScene/SceneTransform/hctSceneTransformOptions.h>
  11. #include <Common/SceneData/Scene/hkxSceneUtils.h>
  12. class hctSceneTransformFilter : public hctFilterInterface
  13. {
  14. private:
  15. struct ResourceDataTransformInfo : public hkxSceneUtils::TransformInfo
  16. {
  17. public:
  18. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_SCENE_DATA, hctSceneTransformFilter::ResourceDataTransformInfo );
  19. hkReal m_floatScale;
  20. hkReal m_angleMultiplier;
  21. };
  22. public: 
  23. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_EXPORT);
  24. hctSceneTransformFilter(const hctFilterManagerInterface* owner);
  25. /*virtual*/ ~hctSceneTransformFilter();
  26. /*virtual*/ void setOptions(const void* optionData, int optionDataSize, unsigned int version);
  27. /*virtual*/ HWND showOptions(HWND owner);
  28. /*virtual*/ void process( class hkRootLevelContainer& data  );
  29. /// Option ptr only valid until the filter is deleted and/or the filter dll is unloaded
  30. /*virtual*/ int getOptionsSize() const;
  31. /*virtual*/ void getOptions(void* optionData) const;
  32. /*virtual*/ void hideOptions();
  33. private:
  34. void transformResourceData(const hkxSceneUtils::SceneTransformOptions& options, class hkResourceContainer* resourceContainer);
  35. void transformResourceMember(ResourceDataTransformInfo& resourceDataTransformInfo, const hkClassMember& member, void* object, hkPointerMap<void*, int>& processedObjects);
  36. // Public for the dialog
  37. public:
  38. HWND m_optionsDialog;
  39. hkBool m_fillingControls; // True when we are setting up the data in the controls; avoids recursion
  40. hkBool m_doNotRefreshEdit; // To avoid the custom samples edit box being updated constantly and cursor being lost
  41. hctSceneTransformOptions m_options;
  42. // A buffer for storing the options in XML form.
  43. mutable hkArray<char> m_optionsBuf;
  44. // Dialog handling stuff
  45. void setControlsFromData();
  46. void setDataFromControls();
  47. };
  48. class hctSceneTransformFilterDesc : public hctFilterDescriptor
  49. {
  50. public:
  51. /*virtual*/ unsigned int getID() const { return 0xaa786565; }
  52. /*virtual*/ FilterCategory getCategory() const { return HK_CATEGORY_CORE; }
  53. /*virtual*/ FilterBehaviour getFilterBehaviour() const { return HK_DATA_MUTATES_INPLACE; }
  54. /*virtual*/ const char* getShortName() const { return "Transform Scene"; }
  55. /*virtual*/ const char* getLongName() const { return "Scene Transformation Filter"; }
  56. /*virtual*/ unsigned int getFilterVersion() const { return HCT_FILTER_VERSION(1,2,1); }
  57. /*virtual*/ hctFilterInterface* createFilter(const class hctFilterManagerInterface* owner) const { return new hctSceneTransformFilter(owner); }
  58. /*virtual*/ HavokComponentMask getRequiredHavokComponents () const { return HK_COMPONENT_COMMON; }
  59. };
  60. extern hctSceneTransformFilterDesc g_sceneTransformDesc;
  61. #endif // HAVOK_FILTER_SCENE_TRANSFORM_COMPRESSION_H
  62. /*
  63. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  64. * Confidential Information of Havok.  (C) Copyright 1999-2009
  65. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  66. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  67. * rights, and intellectual property rights in the Havok software remain in
  68. * Havok and/or its suppliers.
  69. * Use of this software for evaluation purposes is subject to and indicates
  70. * acceptance of the End User licence Agreement for this product. A copy of
  71. * the license is included with this software and is also available at www.havok.com/tryhavok.
  72. */