hkServerDebugDisplayHandler.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_VISUALIZE_SERVER_DEBUG_DISPLAY_HANDLER
  9. #define HK_VISUALIZE_SERVER_DEBUG_DISPLAY_HANDLER
  10. #include <Common/Visualize/hkDebugDisplayHandler.h>
  11. class hkDisplaySerializeOStream;
  12. class hkServerDebugDisplayHandler : public hkReferencedObject, public hkDebugDisplayHandler
  13. {
  14. public:
  15. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_VDB);
  16. /// Serializes hkDisplayHandler messages, the stream must be writable.
  17. hkServerDebugDisplayHandler(hkDisplaySerializeOStream* stream);
  18. /// Destructor.
  19. virtual ~hkServerDebugDisplayHandler();
  20. //
  21. // Display handler functions
  22. //
  23. virtual hkResult addGeometry(const hkArray<hkDisplayGeometry*>& geometries, const hkTransform& transform, hkUlong id, int tag, hkUlong shapeIdHint);
  24. virtual hkResult addGeometryInstance(hkUlong originalInstanceID, const hkTransform& transform, hkUlong id, int tag, hkUlong shapeIdHint);
  25. virtual hkResult setGeometryColor(int color, hkUlong id, int tag);
  26. virtual hkResult updateGeometry(const hkTransform& transform, hkUlong id, int tag);
  27. virtual hkResult removeGeometry(hkUlong id, int tag, hkUlong shapeIdHint);
  28. virtual hkResult updateCamera(const hkVector4& from, const hkVector4& to, const hkVector4& up, hkReal nearPlane, hkReal farPlane, hkReal fov, const char* name);
  29. virtual hkResult updateBehavior(hkArray<int>& wordVarIdx, hkArray<int>& wordStack, hkArray<int>& quadVarIdx, hkArray<hkVector4>& quadStack,
  30.  hkArray<char*>& activeNodes, hkArray<int>& activeStateIds, hkArray<int>& activeTransitions, hkArray<hkQsTransform>& transforms);
  31. virtual hkResult displayPoint(const hkVector4& position, int colour, int tag);
  32. virtual hkResult displayLine(const hkVector4& start, const hkVector4& end, int color, int tag);
  33. virtual hkResult displayTriangle(const hkVector4& a, const hkVector4& b, const hkVector4& c, int color, int tag);
  34. virtual hkResult displayText(const char* text, int length, int tag);
  35. virtual hkResult display3dText(const char* text, const hkVector4& pos, int length, int tag);
  36. virtual hkResult displayGeometry(const hkArray<hkDisplayGeometry*>& geometries, const hkTransform& transform, int color, int tag);
  37. virtual hkResult displayGeometry(const hkArray<hkDisplayGeometry*>& geometries, int color, int tag);
  38. virtual hkResult sendMemStatsDump(const char* data, int length);
  39. virtual hkResult holdImmediate();
  40. protected:
  41. hkDisplaySerializeOStream* m_outStream; 
  42. /// A critical section to ensure that writing to m_outStream will be
  43. /// thread-safe.
  44. mutable class hkCriticalSection* m_outstreamLock;
  45. void sendGeometryData(const hkArray<hkDisplayGeometry*>& geometries);
  46. };
  47. #endif // HK_VISUALIZE_SERVER_DEBUG_DISPLAY_HANDLER
  48. /*
  49. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  50. * Confidential Information of Havok.  (C) Copyright 1999-2009
  51. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  52. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  53. * rights, and intellectual property rights in the Havok software remain in
  54. * Havok and/or its suppliers.
  55. * Use of this software for evaluation purposes is subject to and indicates
  56. * acceptance of the End User licence Agreement for this product. A copy of
  57. * the license is included with this software and is also available at www.havok.com/tryhavok.
  58. */