hkpPhantomDisplayViewer.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_PHANTOM_DISPLAY_VIEWER_H
  9. #define HK_UTILITIES2_PHANTOM_DISPLAY_VIEWER_H
  10. #include <Physics/Utilities/VisualDebugger/Viewer/Dynamics/hkpWorldViewerBase.h>
  11. #include <Physics/Dynamics/World/Listener/hkpWorldPostSimulationListener.h>
  12. #include <Physics/Dynamics/Phantom/hkpPhantomListener.h>
  13. #include <Physics/Dynamics/Phantom/hkpPhantomType.h>
  14. #include <Common/Visualize/Shape/hkDisplayAABB.h>
  15. class hkDebugDisplayHandler;
  16. class hkpWorld;
  17. class hkpWorldObject;
  18. /// Displays all the entities in a world.
  19. class hkpPhantomDisplayViewer : public hkpWorldViewerBase, 
  20. protected hkpPhantomListener, protected hkpWorldPostSimulationListener
  21. {
  22. public:
  23. /// Creates a hkpPhantomDisplayViewer.
  24. static hkProcess* HK_CALL create(const hkArray<hkProcessContext*>& contexts);
  25. /// Registers the hkpPhantomDisplayViewer with the hkViewerFactory.
  26. static void HK_CALL registerViewer();
  27. /// Gets the tag associated with this viewer type
  28. virtual int getProcessTag() { return m_tag; }
  29. virtual void init();
  30. static inline const char* HK_CALL getName() { return "Phantoms"; }
  31. protected:
  32. hkpPhantomDisplayViewer(const hkArray<hkProcessContext*>& contexts);
  33. virtual ~hkpPhantomDisplayViewer();
  34. virtual void phantomAddedCallback( hkpPhantom* entity );
  35. virtual void phantomRemovedCallback( hkpPhantom* entity );
  36. virtual void postSimulationCallback( hkpWorld* world );
  37. virtual void worldAddedCallback( hkpWorld* world );
  38. virtual void worldRemovedCallback( hkpWorld* world );
  39. protected:
  40. void removeAllGeometries();
  41. void addWorld( hkpWorld* world );
  42. void removeWorld( hkpWorld* world );
  43. protected:
  44. static int m_tag;
  45. hkArray<hkpWorldObject*> m_phantomShapesCreated;
  46. };
  47. /// This singleton allows you to register hkPhantomTypes user types
  48. /// as being hkShapePhantoms and thus allowing the auto display of the shapes held.
  49. class hkpUserShapePhantomTypeIdentifier : public hkReferencedObject, public hkSingleton<hkpUserShapePhantomTypeIdentifier>
  50. {
  51. //+vtable(true)
  52. public:
  53. hkpUserShapePhantomTypeIdentifier() {}
  54. void registerShapePhantomType( hkpPhantomType t );
  55. public:
  56. hkArray< hkpPhantomType > m_shapePhantomTypes;
  57. };
  58. #endif // HK_UTILITIES2_SHAPE_DISPLAY_VIEWER_H
  59. /*
  60. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  61. * Confidential Information of Havok.  (C) Copyright 1999-2009
  62. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  63. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  64. * rights, and intellectual property rights in the Havok software remain in
  65. * Havok and/or its suppliers.
  66. * Use of this software for evaluation purposes is subject to and indicates
  67. * acceptance of the End User licence Agreement for this product. A copy of
  68. * the license is included with this software and is also available at www.havok.com/tryhavok.
  69. */