hkProcessHandler.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_PROCESS_HANDLER
  9. #define HK_VISUALIZE_PROCESS_HANDLER
  10. /// This class defines the interface to control the state of viewers 
  11. /// in the visual debugger.  Implementations exist on both the client 
  12. /// and server side.
  13. class hkProcessHandler
  14. {
  15. public:
  16. enum Command // for serialization
  17. {
  18. HK_REGISTER_PROCESS = 0xC0, 
  19. HK_SELECT_PROCESS,
  20. HK_CREATE_PROCESS,
  21. HK_DELETE_PROCESS
  22. };
  23. virtual ~hkProcessHandler() {}
  24. /// Informs the plugin handler about a viewer.  It and then be created and
  25. /// destroyed by calling the createViewer and deleteViewer methods.
  26. virtual hkResult registerProcess(const char* name, int id) = 0;
  27. /// Query for the id of a named process type.
  28. virtual int getProcessId(const char* name) = 0;
  29. /// Query for the name of a given id.
  30. virtual const char* getProcessName( int id ) = 0;
  31. /// Instructs the plugin handler to create a viewer by default when a
  32. /// a connection is made to the visual debugger.  When the server (or
  33. /// simulation) calls selectViewer(id) this will cause the client to send
  34. /// back a createViewer(id) without intervention from the user.  This is
  35. /// used to make sure that geometry data and debug points and lines are
  36. /// always displayed by default when a new connection is made to a visual
  37. /// debugger server.
  38. virtual hkResult selectProcess(int id) = 0;
  39. /// Creates an instance of the viewer identified by id in the server (or simulation).
  40. /// The viewer is only created if one does not already exist.
  41. virtual hkResult createProcess(int id) = 0;
  42. /// Deletes a viewer, identified by id, from the server.
  43. virtual hkResult deleteProcess(int id) = 0;
  44. };
  45. #endif // HK_VISUALIZE_PROCESS_HANDLER
  46. /*
  47. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  48. * Confidential Information of Havok.  (C) Copyright 1999-2009
  49. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  50. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  51. * rights, and intellectual property rights in the Havok software remain in
  52. * Havok and/or its suppliers.
  53. * Use of this software for evaluation purposes is subject to and indicates
  54. * acceptance of the End User licence Agreement for this product. A copy of
  55. * the license is included with this software and is also available at www.havok.com/tryhavok.
  56. */