hkpConstraintDrawer.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_CONSTRAINTDRAWER_H
  9. #define HK_CONSTRAINTDRAWER_H
  10. #include <Physics/Utilities/VisualDebugger/Viewer/Dynamics/Constraint/Drawer/hkpPrimitiveDrawer.h>
  11. /// Base class for constraint drawers
  12. class hkpConstraintInstance;
  13. class hkpConstraintDrawer 
  14. {
  15. public:
  16. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_VDB, hkpConstraintDrawer );
  17. hkpConstraintDrawer();
  18. /// Sets the size of lines drawn.
  19. void setLineLength(hkReal lineLength);
  20. /// Sets the radius of arcs drawn.
  21. void setArcRadius(hkReal arcRadius);
  22. /// Allows the user to up the number of segments used when displaying curved geometry.
  23. void setNumArcSegments(int numSegments);
  24. /// Set the size of the pivots drawn.
  25. void setPivotSize(hkReal size);
  26. /// Sets the size of arrows drawn.
  27. void setArrowSize(hkReal arrrowSize);
  28. /// Sets the scale of all drawing
  29. void setScale(hkReal scale);
  30. protected:
  31. void drawPivots(int tag);
  32. void drawBodyFrames(int tag);
  33. void updateCommonParameters(const hkpConstraintInstance* constraint, hkTransform& refLocalToWorld, hkTransform& attLocalToWorld);
  34. private:
  35. hkReal m_lineLength;
  36. hkReal m_arcRadius;
  37. hkReal m_pivotSize;
  38. hkReal m_arrowSize;
  39. hkReal m_coneSize;
  40. hkReal m_planeSize;
  41. int    m_numArcSegments;
  42. hkReal m_scale;
  43. protected:
  44. hkReal getLineLengthForDraw()
  45. {
  46. return m_scale * m_lineLength;
  47. }
  48. hkReal getArrowSizeForDraw()
  49. {
  50. return m_scale * m_arrowSize;
  51. }
  52. hkReal getConeSizeForDraw()
  53. {
  54. return m_scale * m_coneSize;
  55. }
  56. hkReal getPlaneSizeForDraw()
  57. {
  58. return m_scale * m_planeSize;
  59. }
  60. hkReal getPivotSizeForDraw()
  61. {
  62. return m_scale * m_pivotSize;
  63. }
  64. hkReal getArcRadiusForDraw()
  65. {
  66. return m_scale * m_arcRadius;
  67. }
  68. int getNumArcSegmentsForDraw()
  69. {
  70. return m_numArcSegments;
  71. }
  72. protected:
  73. // world positions
  74. hkVector4 m_bodyAWPos;
  75. hkVector4 m_bodyBWPos;
  76. // world positions of pivots
  77. hkVector4 m_bodyAWPivot;
  78. hkVector4 m_bodyBWPivot;
  79. hkRotation m_RA;
  80. hkRotation m_RB;
  81. hkpPrimitiveDrawer m_primitiveDrawer;
  82. };
  83. #endif 
  84. /*
  85. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  86. * Confidential Information of Havok.  (C) Copyright 1999-2009
  87. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  88. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  89. * rights, and intellectual property rights in the Havok software remain in
  90. * Havok and/or its suppliers.
  91. * Use of this software for evaluation purposes is subject to and indicates
  92. * acceptance of the End User licence Agreement for this product. A copy of
  93. * the license is included with this software and is also available at www.havok.com/tryhavok.
  94. */