hkpSimulationIslandViewer.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_UTILITIES2_SIMULATION_ISLAND_VIEWER_H
  9. #define HK_UTILITIES2_SIMULATION_ISLAND_VIEWER_H
  10. #include <Common/Base/hkBase.h>
  11. #include <Common/Base/Container/Array/hkObjectArray.h>
  12. #include <Physics/Utilities/VisualDebugger/Viewer/Dynamics/hkpWorldViewerBase.h>
  13. #include <Physics/Dynamics/World/Listener/hkpWorldPostSimulationListener.h>
  14. #include <Common/Visualize/Shape/hkDisplayAABB.h>
  15. class hkDebugDisplayHandler;
  16. class hkpWorld;
  17. /// Displays the bounding boxes of all simulation islands in the world.  The the boxes will
  18. /// be blue for active simulation islands and green for inactive simulation islands.
  19. class hkpSimulationIslandViewer : public hkpWorldViewerBase, protected hkpWorldPostSimulationListener
  20. {
  21. public:
  22. /// Creates a hkpSimulationIslandViewer.
  23. static hkProcess* HK_CALL create( const hkArray<hkProcessContext*>& contexts );
  24. /// Registers the hkpSimulationIslandViewer with the hkViewerFactory.
  25. static void HK_CALL registerViewer();
  26. /// Gets the tag associated with this viewer type
  27. virtual int getProcessTag() { return m_tag; }
  28. static inline const char* HK_CALL getName() { return "Simulation Islands"; }
  29. // Control the state of the simulation island viewer
  30. hkBool m_showActiveIslands;
  31. hkBool m_showInactiveIslands;
  32. protected:
  33. hkpSimulationIslandViewer( const hkArray<hkProcessContext*>& contexts );
  34. virtual ~hkpSimulationIslandViewer();
  35. virtual void postSimulationCallback(hkpWorld* world );
  36. virtual void worldAddedCallback( hkpWorld* world );
  37. virtual void worldRemovedCallback( hkpWorld* world );
  38. hkObjectArray<hkDisplayAABB> m_inactiveIslandDisplayGeometries;
  39. hkObjectArray<hkDisplayAABB> m_activeIslandDisplayGeometries;
  40. static int m_tag;
  41. };
  42. #endif // HK_UTILITIES2_SIMULATION_ISLAND_VIEWER_H
  43. /*
  44. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  45. * Confidential Information of Havok.  (C) Copyright 1999-2009
  46. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  47. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  48. * rights, and intellectual property rights in the Havok software remain in
  49. * Havok and/or its suppliers.
  50. * Use of this software for evaluation purposes is subject to and indicates
  51. * acceptance of the End User licence Agreement for this product. A copy of
  52. * the license is included with this software and is also available at www.havok.com/tryhavok.
  53. */