hkpConstraintMotor.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_DYNAMICS2_CONSTRAINT_MOTOR_H
  9. #define HK_DYNAMICS2_CONSTRAINT_MOTOR_H
  10. #include <Common/Base/hkBase.h>
  11. #include <Physics/ConstraintSolver/Solve/hkpSolverResults.h>
  12. extern const hkClass hkpConstraintMotorClass; 
  13. /// takes 1DOF state as input, and calculates the data, which goes into 
  14. /// the constraint solver
  15. class hkpConstraintMotor : public hkReferencedObject
  16. {
  17. public:
  18. HK_DECLARE_CLASS_ALLOCATOR( HK_MEMORY_CLASS_CONSTRAINT );
  19. HK_DECLARE_REFLECTION();
  20. enum MotorType
  21. {
  22. TYPE_INVALID,
  23. TYPE_POSITION,
  24. TYPE_VELOCITY,
  25. TYPE_SPRING_DAMPER,
  26. TYPE_CALLBACK,
  27. TYPE_MAX
  28. };
  29. /// Constructor
  30. inline hkpConstraintMotor() : m_type(TYPE_INVALID) {}
  31. /// Clone the motor. As constraint data can be shared, but motors can't (normally, as they 
  32. /// have per instance targets in them) we use a motor clone method to create new ones if required.
  33. virtual hkpConstraintMotor* clone() const = 0;
  34. /// Gets the type of the motor.
  35. inline MotorType getType() const { return m_type; }
  36. public:
  37. hkEnum<MotorType, hkInt8> m_type;
  38. hkpConstraintMotor(hkFinishLoadedObjectFlag f) : hkReferencedObject(f) {}
  39. }; 
  40. class hkpMaxSizeConstraintMotor : public hkpConstraintMotor
  41. {
  42. public:
  43. hkpMaxSizeConstraintMotor() { m_type = TYPE_MAX; }
  44. virtual hkpConstraintMotor* clone() const  { HK_ASSERT2(0xad67ddab, false, "Dummy implementation used."); return HK_NULL; }
  45. // Padding up to 32 bytes
  46. #if HK_POINTER_SIZE == 4
  47. hkUint32 m_dummy[1+2*4];
  48. #else // HK_POINTER_SIZE == 8
  49. hkUint32 m_dummy[1+2*8];
  50. #endif
  51. };
  52. #endif // HK_DYNAMICS2_MOTOR_CONTROLLER_H
  53. /*
  54. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  55. * Confidential Information of Havok.  (C) Copyright 1999-2009
  56. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  57. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  58. * rights, and intellectual property rights in the Havok software remain in
  59. * Havok and/or its suppliers.
  60. * Use of this software for evaluation purposes is subject to and indicates
  61. * acceptance of the End User licence Agreement for this product. A copy of
  62. * the license is included with this software and is also available at www.havok.com/tryhavok.
  63. */