hctModelessFilter.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_MODELESS_FILTER_H
  9. #define HAVOK_MODELESS_FILTER_H
  10. /// This class provides a default implementation for a modeless filter - it handles the creation of threads for processing.
  11. /// Filters inheriting from this class must implement modalProcess() instead of process() - inside modalProcess() they can/should
  12. /// operate modally (since a new thread is created for that call)
  13. /// The other abstract methods are required in order to properly handle "shutdown" requests from the filter manager.
  14. class hctModelessFilter : public hctFilterInterface
  15. {
  16. public:
  17. /// Constructor. It takes a pointer to the filter manager that owns it.
  18. hctModelessFilter (const class hctFilterManagerInterface* owner);
  19. /// Destructor - waits for thread, etc
  20. /*virtual*/ ~hctModelessFilter ();
  21. /// Filters subclassing from hctModelessFilter should implement their processing here instead of in process().
  22. /// This will be called from a new thread, so processing here can be modal.
  23. virtual void modalProcess ( class hkRootLevelContainer& contents ) = 0;
  24. /// Access to the descriptor.
  25. virtual class hctModelessFilterDescriptor& getDescriptor() const = 0;
  26. /// Notifies the (modeless) filter that it should close asap. Usually the filter will set a flag that is checked 
  27. /// by the modal processing method.
  28. virtual void tryToClose () = 0;
  29. /// Should return true if the filter is closing down (not blocked). Useful for filters that may take some time to close down,
  30. /// so the user/filter manager can distinguish between blocked filters and slow filters. By default it returns false - slow
  31. /// filters should implement this so it returns true when closing down.
  32. virtual bool isClosingDown () const;
  33. /// Modeless filters can be treated as modal if desired. Override this method in order to do so.
  34. /// Default implementation returns false;
  35. virtual bool behaveAsModal () const ;
  36. /// Inherited from hctFilterInterface, this implementation copies the contents and creates a new thread to process it,
  37. /// through the use of "modalProcess()".
  38. /*virtual*/ void process ( class hkRootLevelContainer& contents ); /* sealed */
  39. /// Returns true if the thread created for the modeless filter is still active
  40. bool isThreadActive () const ;
  41. protected:
  42. /// Storage data used to clone the scene
  43. hkArray<char> m_cloneStorage;
  44. protected:
  45. /// The thread used by this
  46. HANDLE m_filterThread;
  47. };
  48. #endif // HAVOK_MODELESS_FILTER_H
  49. /*
  50. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  51. * Confidential Information of Havok.  (C) Copyright 1999-2009
  52. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  53. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  54. * rights, and intellectual property rights in the Havok software remain in
  55. * Havok and/or its suppliers.
  56. * Use of this software for evaluation purposes is subject to and indicates
  57. * acceptance of the End User licence Agreement for this product. A copy of
  58. * the license is included with this software and is also available at www.havok.com/tryhavok.
  59. */