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

其他游戏

开发平台:

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_INTERFACE__H
  9. #define HAVOK_FILTER_INTERFACE__H
  10. /// The interface for all filters. Each filter needs to implement the methods below,
  11. /// the most important of which is process() - the one that does the job.
  12. /// Internally the actual filter is usually memory managed by Havok for instance,
  13. /// but any filter can use memory management as it sees fit.
  14. class hctFilterInterface : public hkReferencedObject
  15. {
  16. public:
  17. /// Constructor. It takes a pointer to the filter manager that owns it.
  18. hctFilterInterface (const class hctFilterManagerInterface* owner);
  19. /// Virtual destructor
  20. virtual ~hctFilterInterface ();
  21. /// Bring up a child dialog to allow the user to set options for this filter.
  22. /// It should return a handle to the dialog (that may get repositioned).
  23. /// hideOptions() will be called on it sometime in the future and it can delete the window.
  24. /// By default returns HK_NULL (no options to display).
  25. virtual HWND showOptions ( HWND owner );
  26. /// Hide the dialog brought up during showOptions.
  27. virtual void hideOptions ();
  28. /// Set the options for this filter based on the given buffer.
  29. virtual void setOptions (const void* optionData, int optionDataSize, unsigned int version);
  30. /// Must return the buffer size required to store the options for this filter.
  31. virtual int getOptionsSize () const;
  32. /// Must fill the given buffer with the option data for this filter (this will be stored with the
  33. /// configuration. This pointer is only valid until the filter is deleted and/or the filter dll is unloaded.
  34. virtual void getOptions (void* optionData) const;
  35. /// Process the given contents. The main method in any filter. There are different process modes, see filterInterafce->getProcessMode to 
  36. /// work out if you should show UI or not during processing.
  37. virtual void process ( class hkRootLevelContainer& contents ) = 0;
  38. /// Returns a pointer to the filter manager that created this filter.
  39. const hctFilterManagerInterface* getFilterManager () const;
  40. protected:
  41. const class hctFilterManagerInterface* m_filterManager;
  42. };
  43. #endif // HAVOK_FILTER_INTERFACE__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. */