hctConvertToPhantomActionFilter.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_CONVERT_TO_PHANTOM_ACTION_H
  9. #define HAVOK_FILTER_CONVERT_TO_PHANTOM_ACTION_H
  10. #include <ContentTools/Common/Filters/FilterTutorial/ConvertToPhantomAction/hctConvertToPhantomActionOptions.h>
  11. #include <Common/Base/Container/Array/hkObjectArray.h>
  12. /*
  13. ** This filter is part of the "Toolchain Integration" tutorial of the Havok Content Tools.
  14. ** Check the Havok Content Tools documentation for details
  15. */
  16. class hctConvertToPhantomActionFilter : public hctFilterInterface
  17. {
  18. public:
  19. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_EXPORT);
  20. // Constructor - takes a pointer to the filter manager that created the filter
  21. hctConvertToPhantomActionFilter(const hctFilterManagerInterface* owner);
  22. // Destructor
  23. /*virtual*/ ~hctConvertToPhantomActionFilter();
  24. // The main method in any filter, it does the job
  25. /*virtual*/ void process( class hkRootLevelContainer& data  );
  26. // Asks the filter to show its UI for options
  27. /*virtual*/ HWND showOptions(HWND owner);
  28. // Asks the fitler to close the options UI (and store any changes)
  29. /*virtual*/ void hideOptions();
  30. // Storage of option data
  31. /*virtual*/ void setOptions(const void* optionData, int optionDataSize, unsigned int version);
  32. /*virtual*/ int getOptionsSize() const;
  33. /*virtual*/ void getOptions(void* optionData) const;
  34. public:
  35. // The options dialog window
  36. HWND m_optionsDialog;
  37. // Called by other methods, it makes sure the stored options (m_options) match what the values in the UI
  38. void updateOptions();
  39. // The options associated with this filter
  40. hctConvertToPhantomActionOptions m_options;
  41. // A buffer for storing the options in XML form.
  42. mutable hkArray<char> m_optionsBuf;
  43. };
  44. // The filter descriptor is used by the filter manager to query information about the filter (name, category, etc)
  45. // as well as to create individual instances.
  46. class hctConvertToPhantomActionFilterDesc : public hctFilterDescriptor
  47. {
  48. public:
  49. /*virtual*/ unsigned int getID() const { return 0x9376be9a; }
  50. /*virtual*/ FilterCategory getCategory() const { return HK_CATEGORY_USER; }
  51. /*virtual*/ FilterBehaviour getFilterBehaviour() const { return HK_DATA_MUTATES_INPLACE; }
  52. /*virtual*/ const char* getShortName() const { return "Convert To Phantom Action"; }
  53. /*virtual*/ const char* getLongName() const { return "[TUTORIAL] Converts specific rigid bodies to phantom actions. Must be placed after the Create Rigid Bodies filter. "; }
  54. /*virtual*/ unsigned int getFilterVersion() const { return HCT_FILTER_VERSION(1,0,0); }
  55. /*virtual*/ hctFilterInterface* createFilter(const class hctFilterManagerInterface* owner) const { return new hctConvertToPhantomActionFilter(owner); }
  56. /*virtual*/ HavokComponentMask getRequiredHavokComponents () const { return HK_COMPONENT_PHYSICS; }
  57. };
  58. extern hctConvertToPhantomActionFilterDesc g_convertToPhantomActionDesc;
  59. #endif // HAVOK_FILTER_CONVERT_TO_PHANTOM_ACTION_H
  60. /*
  61. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  62. * Confidential Information of Havok.  (C) Copyright 1999-2009
  63. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  64. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  65. * rights, and intellectual property rights in the Havok software remain in
  66. * Havok and/or its suppliers.
  67. * Use of this software for evaluation purposes is subject to and indicates
  68. * acceptance of the End User licence Agreement for this product. A copy of
  69. * the license is included with this software and is also available at www.havok.com/tryhavok.
  70. */