hkInspectProcess.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 HK_INSPECT_PROCESS_H
  9. #define HK_INSPECT_PROCESS_H
  10. #include <Common/Visualize/hkProcess.h>
  11. #include <Common/Visualize/hkProcessContext.h>
  12. /// Given a set of tracked objects (as given by the list in hkVisualDebugger)
  13. /// give the attached client the list, and upon request drill down and supply the 
  14. /// actual data.
  15. #define HK_INSPECT_FLAG_AUTOUPDATE 0x01
  16. #define HK_INSPECT_FLAG_RECURSE    0x02
  17. class hkInspectProcess : public hkReferencedObject, public hkProcess
  18. {
  19. public:
  20. enum Command // for serialization
  21. {
  22. HK_SETUP = 0x20,
  23. HK_ADD_TOPLEVEL, // Add a top level object (two ids, one for object and one for the class) (server->client)
  24. HK_REMOVE_TOPLEVEL, // Remove a top level object (one id, just the object) (server->client)
  25. HK_REQUEST_OBJECT, // Request the data for a given object id (client->server)
  26. HK_ADD_OBJECT, // New object (can be a class) data or just refreshed. (bidirectional potentially)
  27. HK_UPDATE_MEMBER // Update the data for a given member. Sent over is the object id, along with enoygh nformation to odentify the exact member item (down to a data item)
  28. };
  29. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_VDB);
  30. static hkProcess* HK_CALL create(const hkArray<hkProcessContext*>& contexts);
  31. static void HK_CALL registerProcess();
  32. virtual void getConsumableCommands( hkUint8*& commands, int& numCommands );
  33. virtual void consumeCommand( hkUint8 command );
  34. /// Gets the tag associated with this viewer type
  35. virtual int getProcessTag() { return m_tag; }
  36. static inline const char* HK_CALL getName() { return "ObjectInspection"; }
  37. // step only preforms work if auto update is turned on for any objects
  38. // ie: m_autoUpdateList is not empyt
  39. virtual void step(hkReal frameTimeInMs);
  40. virtual void init();
  41. // internal stuff (public for the callbacks)
  42. public:
  43. struct ObjectPair
  44. {
  45. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_UTILITIES, hkInspectProcess::ObjectPair );
  46. const void* obj;
  47. const hkClass* klass;
  48. };
  49. int writeObject( const void* ptr, const hkClass& klass, hkBool recurse, hkArray<ObjectPair>& recursionStack );
  50. int addTopLevelObject( void* ptr, const hkClass& klass );
  51. int removeTopLevelObject( void* ptr );
  52. hkArray<ObjectPair> m_autoUpdateList;
  53. class hkVisualDebugger* m_vdb;
  54. hkInspectProcess(const hkArray<hkProcessContext*>& contexts);
  55. virtual ~hkInspectProcess();
  56. protected:
  57. static int m_tag;
  58. };
  59. #endif // HK_INSPECT_PROCESS_H
  60. /*
  61. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  62. * Confidential Information of Havok.  (C) Copyright 1999-2009
  63. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  64. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  65. * rights, and intellectual property rights in the Havok software remain in
  66. * Havok and/or its suppliers.
  67. * Use of this software for evaluation purposes is subject to and indicates
  68. * acceptance of the End User licence Agreement for this product. A copy of
  69. * the license is included with this software and is also available at www.havok.com/tryhavok.
  70. */