hkServerProcessHandler.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_SERVER_PROCESS_SCHEDULER_H
  9. #define HK_VISUALIZE_SERVER_PROCESS_SCHEDULER_H
  10. #include <Common/Base/Container/Array/hkObjectArray.h>
  11. #include <Common/Visualize/hkProcess.h>
  12. #include <Common/Visualize/hkProcessFactory.h>
  13. #include <Common/Visualize/hkProcessContext.h>
  14. #include <Common/Visualize/hkCommandRouter.h>
  15. #include <Common/Visualize/hkProcessHandler.h>
  16. #include <Common/Visualize/hkServerDebugDisplayHandler.h>
  17. class hkDisplaySerializeIStream;
  18. class hkDisplaySerializeOStream;
  19. class hkStreamReader;
  20. class hkStreamWriter;
  21. /// This holds the control over Processes and their life cycle.
  22. /// It is in itself a master process (can send and recv process related commands too)
  23. class hkServerProcessHandler : public hkReferencedObject,
  24. public hkProcessHandler, public hkProcess
  25. {
  26. public:
  27. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_VDB);
  28. hkServerProcessHandler( hkArray<hkProcessContext*>& contexts, 
  29. hkStreamReader* inStream, 
  30. hkStreamWriter* outStream);
  31. ~hkServerProcessHandler();
  32. virtual void getConsumableCommands( hkUint8*& commands, int& numCommands );
  33. virtual void consumeCommand( hkUint8 command );
  34. // Client Implemented
  35. virtual hkResult registerProcess(const char* name, int tag);
  36. virtual hkResult selectProcess(int tag);
  37. // Server Implemented
  38. virtual hkResult createProcess(int tag);
  39. virtual hkResult deleteProcess(int tag);
  40. // Util funcs
  41. virtual int getProcessId(const char* name) { return hkProcessFactory::getInstance().getProcessId( name ); }
  42. virtual const char* getProcessName( int tag ) { return hkProcessFactory::getInstance().getProcessName( tag ); }
  43. /// Will step all processes forward in time (if the impl step)
  44. /// and will then write a step chunk (0x0) to the out stream.
  45. void step( hkReal frameTimeInMs );
  46. virtual int getProcessTag() { return m_tag; } // always just 0;
  47. hkResult registerAllAvailableProcesss();
  48. const hkArray<hkProcess*>& getProcessList() const { return m_processList; }
  49. protected:
  50. int findProcessByTag(int tag);
  51. hkCommandRouter m_commandRouter; // maps incoming data to Processes that want to service that commnd
  52. hkArray<hkProcess*> m_processList; // owned
  53. hkArray<hkProcessContext*> m_contexts; // not owned.
  54. static int m_tag;
  55. };
  56. #endif // HK_VISUALIZE_SERVER_PROCESS_SCHEDULER_H
  57. /*
  58. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  59. * Confidential Information of Havok.  (C) Copyright 1999-2009
  60. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  61. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  62. * rights, and intellectual property rights in the Havok software remain in
  63. * Havok and/or its suppliers.
  64. * Use of this software for evaluation purposes is subject to and indicates
  65. * acceptance of the End User licence Agreement for this product. A copy of
  66. * the license is included with this software and is also available at www.havok.com/tryhavok.
  67. */