hkpTyremarksInfo.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:5k
源码类别:

其他游戏

开发平台:

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 HKVEHICLE_TYREMARKS_hkTyremarksInfo_XML_H
  9. #define HKVEHICLE_TYREMARKS_hkTyremarksInfo_XML_H
  10. #include <Common/Base/hkBase.h>
  11. class hkpVehicleInstance;
  12. class hkpVehicleData;
  13. /// A tyremark point is defined by two points (left and right and the strength of
  14. /// the tyremark). Having two points instead of one allows for thickness in
  15. /// tyremarks. The strength is a user value that can be used, for example, to
  16. /// shade tyremarks depending on the amount of skidding 
  17. struct hkpTyremarkPoint
  18. {
  19. public:
  20. HK_DECLARE_REFLECTION();
  21. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_VEHICLE, hkpTyremarkPoint);
  22. /// Default constructor
  23. hkpTyremarkPoint();
  24. //
  25. // Methods
  26. //
  27. /// The strength of a tyremarkPoint is stored in the w-component
  28. /// of the vectors.  The strength is in the range 0.0f to 255.0f.
  29. hkReal getTyremarkStrength() const;
  30. //
  31. // Members
  32. //
  33. public:
  34. /// The left position of the tyremark.
  35. hkVector4 m_pointLeft;
  36. /// The right position of the tyremark.
  37. hkVector4 m_pointRight;
  38. public: 
  39. hkpTyremarkPoint(hkFinishLoadedObjectFlag f) { }
  40. };
  41. /// hkpTyremarksWheel stores a list of tyremarks associated with a particular wheel.
  42. /// This is a circular array, so old tyremarks eventually get replaced by new
  43. /// tyremarks.
  44. class hkpTyremarksWheel : public hkReferencedObject
  45. {
  46. public:
  47. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_VEHICLE);
  48. HK_DECLARE_REFLECTION();
  49. /// Default constructor
  50. hkpTyremarksWheel();
  51. virtual ~hkpTyremarksWheel() {}
  52. //
  53. // Methods
  54. //
  55. /// Sets the number of tyre mark points that can be stored.
  56. void setNumPoints(int num_points);
  57. /// Add a tyreMarkPoint to the array.
  58. void addTyremarkPoint( hkpTyremarkPoint& point);
  59. /// Returns the i-th stored tyremark point in the object.
  60. const hkpTyremarkPoint& getTyremarkPoint(int point) const;
  61. //
  62. // Members
  63. //
  64. public:
  65. /// Current position in the array of tyremarkPoints.
  66. int m_currentPosition;
  67. /// The number of points in the array
  68. int m_numPoints;
  69. /// Circular array of tyreMarkPoints.
  70. hkArray<struct hkpTyremarkPoint> m_tyremarkPoints;
  71. public: 
  72. hkpTyremarksWheel(hkFinishLoadedObjectFlag f) :
  73. hkReferencedObject(f), m_tyremarkPoints(f) { }
  74. };
  75. /// hkpTyremarksInfo stores a list of hkpTyremarksWheel for a particular vehicle
  76. class hkpTyremarksInfo : public hkReferencedObject
  77. {
  78. public:
  79. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_VEHICLE);
  80. HK_DECLARE_REFLECTION();
  81. //
  82. // Methods
  83. //
  84. /// Updates Tyremark information
  85. virtual void updateTyremarksInfo(hkReal timestep, const hkpVehicleInstance* vehicle);
  86. /// Retrieves the Tyremark information in the form of a strip
  87. virtual void getWheelTyremarksStrips(const hkpVehicleInstance* vehicle, int wheel, hkVector4* strips_out) const;
  88. /// The constructor takes a hkpVehicleData object and the number of skidmark
  89. /// points to store.
  90. hkpTyremarksInfo(const hkpVehicleData& data, int num_points);
  91. virtual ~hkpTyremarksInfo();
  92. //
  93. // Members
  94. //
  95. public:
  96. /// The minimum energy a tyremark should have.  The actual strength of a point will
  97. /// be scaled to be between 0.0f and 255.0f.
  98. hkReal m_minTyremarkEnergy;
  99. /// The maximum energy a tyremark should have.  The actual strength of a point will
  100. /// be scaled to be between 0.0f and 255.0f.
  101. hkReal m_maxTyremarkEnergy;
  102. /// There is a hkpTyremarksWheel for each wheel.
  103. hkArray<class hkpTyremarksWheel*> m_tyremarksWheel;
  104. public: 
  105. void calcContentStatistics( hkStatisticsCollector* collector, const hkClass* cls) const;
  106. hkpTyremarksInfo(hkFinishLoadedObjectFlag f) :
  107. hkReferencedObject(f), m_tyremarksWheel(f) { }
  108. };
  109. #endif // HKVEHICLE_TYREMARKS_hkTyremarksInfo_XML_H
  110. /*
  111. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  112. * Confidential Information of Havok.  (C) Copyright 1999-2009
  113. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  114. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  115. * rights, and intellectual property rights in the Havok software remain in
  116. * Havok and/or its suppliers.
  117. * Use of this software for evaluation purposes is subject to and indicates
  118. * acceptance of the End User licence Agreement for this product. A copy of
  119. * the license is included with this software and is also available at www.havok.com/tryhavok.
  120. */