hkaFootstepAnalysisInfo.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_FOOTSTEP_ANALYSIS_INFO_H
  9. #define HK_FOOTSTEP_ANALYSIS_INFO_H
  10. /// hkaAnimationBinding meta information
  11. extern const class hkClass hkaFootstepAnalysisInfoClass;
  12. extern const class hkClass hkaFootstepAnalysisInfoContainerClass;
  13. /// The hkaFootstepAnalysisInfo class stores visulazation
  14. /// information for footstep analysis.  It is indended for use by
  15. /// the content tool chain.
  16. class hkaFootstepAnalysisInfo
  17. {
  18. public:
  19. HK_DECLARE_REFLECTION();
  20. // Constructor
  21. hkaFootstepAnalysisInfo( int numFrames, hkReal duration, hkReal posTol, hkReal velTol,
  22.  const char* name, const char* nameStrike, const char* nameLift, const char* nameLock, const char* nameUnlock );
  23. ~hkaFootstepAnalysisInfo();
  24. // Update state information for a given frame
  25. void updatePosition( int frame, hkReal value );
  26. void updateVelocity( int frame, hkReal value );
  27. void updateBones( int frame, hkBool isDown );
  28. // Utility functions
  29. static hkReal getMax( const hkArray< hkReal >& arr );
  30. static hkReal getMin( const hkArray< hkReal >& arr );
  31. // Name information
  32. hkArray< char > m_name;
  33. hkArray< char > m_nameStrike;
  34. hkArray< char > m_nameLift;
  35. hkArray< char > m_nameLock;
  36. hkArray< char > m_nameUnlock;
  37. // Position and velocity information per frame
  38. hkArray< hkReal > m_minPos;
  39. hkArray< hkReal > m_maxPos;
  40. hkArray< hkReal > m_minVel;
  41. hkArray< hkReal > m_maxVel;
  42. // Foot state information per frame 0.0=down, 1.0=up (driven by the need to simplify display)
  43. hkArray< hkReal > m_allBonesDown;
  44. hkArray< hkReal > m_anyBonesDown;
  45. // Tolerances used for analysis
  46. hkReal m_posTol;
  47. hkReal m_velTol;
  48. hkReal m_duration;
  49. };
  50. // Utility class to store hkaFootstepAnalysisInfo objects
  51. class hkaFootstepAnalysisInfoContainer
  52. {
  53. public:
  54. HK_DECLARE_REFLECTION();
  55. hkaFootstepAnalysisInfoContainer();
  56. ~hkaFootstepAnalysisInfoContainer();
  57. // Creates a new hkaFootstepAnalysisInfo object and adds it to this container
  58. hkaFootstepAnalysisInfo* newPreviewInfo( int numFrames, hkReal duration, hkReal posTol, hkReal velTol,
  59. const char* name, const char* nameStrike, const char* nameLift, const char* nameLock, const char* nameUnlock );
  60. // Storage for hkaFootstepAnalysisInfo objects
  61. class hkaFootstepAnalysisInfo** m_previewInfo;
  62. hkInt32 m_numPreviewInfo;
  63. };
  64. #endif // HK_FOOTSTEP_ANALYSIS_INFO_H
  65. /*
  66. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  67. * Confidential Information of Havok.  (C) Copyright 1999-2009
  68. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  69. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  70. * rights, and intellectual property rights in the Havok software remain in
  71. * Havok and/or its suppliers.
  72. * Use of this software for evaluation purposes is subject to and indicates
  73. * acceptance of the End User licence Agreement for this product. A copy of
  74. * the license is included with this software and is also available at www.havok.com/tryhavok.
  75. */