hkProcess.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 HK_VISUALIZE_REMOTE_PROCESS_H
  9. #define HK_VISUALIZE_REMOTE_PROCESS_H
  10. #include <Common/Visualize/Serialize/hkDisplaySerializeOStream.h>
  11. class hkDisplaySerializeIStream;
  12. class hkDebugDisplayHandler;
  13. class hkProcessHandler;
  14. class hkProcess 
  15. {
  16. public:
  17. /// Virtual destructor for base class.
  18. hkProcess( hkBool selectable ) 
  19. : m_selectable(selectable) {}
  20. virtual ~hkProcess() {}
  21. virtual int getProcessTag() = 0;
  22. //
  23. // General state and settings
  24. //
  25. hkBool m_selectable; // can it be selected by the client or is just always on on the server
  26. //
  27. // The streams and interfaces the process can use to communticate.
  28. //
  29. hkDisplaySerializeIStream* m_inStream; 
  30. hkDisplaySerializeOStream* m_outStream; 
  31. hkDebugDisplayHandler* m_displayHandler;
  32. hkProcessHandler* m_processHandler;
  33. //
  34. // Command Interface (How it processes incoming data)
  35. //
  36. /// Get the commands this handler understands so 
  37. /// that this handler can be mapped correctly and process only 
  38. /// called when appropriate
  39. virtual void getConsumableCommands( hkUint8*& commands, int& numCommands ) { commands = HK_NULL; numCommands = 0; }
  40. /// given a input stream and a command (that has already been parsed from
  41. /// the stream), consume the data.
  42. virtual void consumeCommand( hkUint8 command ) { }
  43. /// We can say, for any current process we have, that it is 
  44. /// ok if its output stream is still ok ( alot don't use input, but all use output)
  45. virtual bool isOk() { return m_outStream && m_outStream->isOk(); }
  46. //
  47. // Process step interface
  48. //
  49. virtual void init() { } // after the process handler has created the process, it sets up the stream ptrs etc, then calls this init func
  50. /// step (a lot don't bother to impl this as driven by callbacks)
  51. virtual void step( hkReal frameTimeInMs  ) { }
  52. };
  53. #endif // HK_VISUALIZE_REMOTE_PROCESS_H
  54. /*
  55. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  56. * Confidential Information of Havok.  (C) Copyright 1999-2009
  57. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  58. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  59. * rights, and intellectual property rights in the Havok software remain in
  60. * Havok and/or its suppliers.
  61. * Use of this software for evaluation purposes is subject to and indicates
  62. * acceptance of the End User licence Agreement for this product. A copy of
  63. * the license is included with this software and is also available at www.havok.com/tryhavok.
  64. */