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

其他游戏

开发平台:

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_COMMAND_ROUTER
  9. #define HK_VISUALIZE_COMMAND_ROUTER
  10. #include <Common/Base/Container/PointerMap/hkPointerMap.h>
  11. class hkDisplaySerializeIStream;
  12. class hkProcess;
  13. /// A class to deserialize chunks of data that have come from the client to the server.
  14. /// For example the creation and deletion of viewers.
  15. class hkCommandRouter : public hkReferencedObject
  16. {
  17. public:
  18. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_VDB);
  19. enum
  20. {
  21. COMMAND_STEP = 0x00, // sent from Server to client on step
  22. COMMAND_ACK = 0xF0 // ack back to say full step recvd
  23. };
  24. /// Register handlers so that the stream can be understood
  25. /// it is not reference counted (handler (process) is just an interface)
  26. /// so should persist as long as this object or be removed before deleting itself
  27. void registerProcess(hkProcess* handler);
  28. void unregisterProcess(hkProcess* handler);
  29. /// Consume the commands until an ACK is reached or the stream is not OK anymore
  30. hkBool consumeCommands(hkDisplaySerializeIStream* stream);
  31. protected:
  32. hkPointerMap< hkUint8, hkProcess* > m_commandMap; // Commands to processes that understand them
  33. };
  34. #endif // HK_VISUALIZE_COMMAND_ROUTER
  35. /*
  36. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  37. * Confidential Information of Havok.  (C) Copyright 1999-2009
  38. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  39. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  40. * rights, and intellectual property rights in the Havok software remain in
  41. * Havok and/or its suppliers.
  42. * Use of this software for evaluation purposes is subject to and indicates
  43. * acceptance of the End User licence Agreement for this product. A copy of
  44. * the license is included with this software and is also available at www.havok.com/tryhavok.
  45. */