hkpMousePickingViewer.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_MOUSE_PICKING_VIEWER
  9. #define HK_MOUSE_PICKING_VIEWER
  10. #include <Physics/Utilities/VisualDebugger/Viewer/Dynamics/hkpWorldViewerBase.h>
  11. class hkpWorld;
  12. class hkVector4;
  13. class hkpMouseSpringAction;
  14. /// Server side mouse picking implementation.
  15. class hkpMousePickingViewer : public hkpWorldViewerBase
  16. {
  17. public:
  18. enum Command // for serialization
  19. {
  20. HK_PICK_OBJECT = 0xB0,
  21. HK_DRAG_OBJECT,
  22. HK_RELEASE_OBJECT
  23. };
  24. static hkProcess* HK_CALL create(const hkArray<hkProcessContext*>& contexts);
  25. /// Registers the hkDebugDisplayProcess with the hkProcessFactory.
  26. static void HK_CALL registerViewer();
  27. /// Gets the tag associated with this viewer type
  28. virtual int getProcessTag() { return m_tag; }
  29. static inline const char* HK_CALL getName() { return "Mouse Picking"; }
  30. //
  31. // Process interface
  32. //
  33. virtual void getConsumableCommands( hkUint8*& commands, int& numCommands );
  34. /// Given a command (that has already been parsed from
  35. /// the stream), consume the rest of the data.
  36. virtual void consumeCommand( hkUint8 command );
  37. virtual void worldRemovedCallback( hkpWorld* world );
  38. //
  39. // Own interface
  40. //
  41. /// Attaches a hkpMouseSpringAction to an object in the world
  42. hkBool pickObject( hkUint64 displayObject, const hkVector4& worldPosition );
  43. /// Move the fixed point of the hkpMouseSpringAction
  44. void dragObject( const hkVector4& newWorldSpacePoint );
  45. /// Removes the hkpMouseSpringAction from the world freeing the attached object.
  46. void releaseObject();
  47. protected:
  48. /// Constructor.
  49. hkpMousePickingViewer(const hkArray<hkProcessContext*>& contexts);
  50. /// Destructor.
  51. ~hkpMousePickingViewer();
  52. hkpWorld* m_currentWorld; 
  53. hkpMouseSpringAction* m_mouseSpring;
  54. hkReal m_mouseSpringMaxRelativeForce;
  55. static int m_tag;
  56. };
  57. #endif // HK_MOUSE_PICKING_HANDLER
  58. /*
  59. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  60. * Confidential Information of Havok.  (C) Copyright 1999-2009
  61. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  62. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  63. * rights, and intellectual property rights in the Havok software remain in
  64. * Havok and/or its suppliers.
  65. * Use of this software for evaluation purposes is subject to and indicates
  66. * acceptance of the End User licence Agreement for this product. A copy of
  67. * the license is included with this software and is also available at www.havok.com/tryhavok.
  68. */