PageRenderTime 32ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/indra/newview/llbreastmotion.h

https://bitbucket.org/lindenlab/viewer-beta/
C++ Header | 154 lines | 59 code | 32 blank | 63 comment | 0 complexity | 27e35be669b582a0b7bc0131b9908929 MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file llbreastmotion.h
  3. * @brief Implementation of LLBreastMotion class.
  4. *
  5. * $LicenseInfo:firstyear=2011&license=viewerlgpl$
  6. * Second Life Viewer Source Code
  7. * Copyright (C) 2011, Linden Research, Inc.
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation;
  12. * version 2.1 of the License only.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with this library; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. *
  23. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  24. * $/LicenseInfo$
  25. */
  26. #ifndef LL_LLBREASTMOTION_H
  27. #define LL_LLBREASTMOTION_H
  28. //-----------------------------------------------------------------------------
  29. // Header files
  30. //-----------------------------------------------------------------------------
  31. #include "llmotion.h"
  32. #include "llframetimer.h"
  33. #define BREAST_MOTION_FADEIN_TIME 1.0f
  34. #define BREAST_MOTION_FADEOUT_TIME 1.0f
  35. class LLViewerVisualParam;
  36. //-----------------------------------------------------------------------------
  37. // class LLBreastMotion
  38. //-----------------------------------------------------------------------------
  39. class LLBreastMotion :
  40. public LLMotion
  41. {
  42. public:
  43. // Constructor
  44. LLBreastMotion(const LLUUID &id);
  45. // Destructor
  46. virtual ~LLBreastMotion();
  47. public:
  48. //-------------------------------------------------------------------------
  49. // functions to support MotionController and MotionRegistry
  50. //-------------------------------------------------------------------------
  51. // static constructor
  52. // all subclasses must implement such a function and register it
  53. static LLMotion *create(const LLUUID &id) { return new LLBreastMotion(id); }
  54. public:
  55. //-------------------------------------------------------------------------
  56. // animation callbacks to be implemented by subclasses
  57. //-------------------------------------------------------------------------
  58. // motions must specify whether or not they loop
  59. virtual BOOL getLoop() { return TRUE; }
  60. // motions must report their total duration
  61. virtual F32 getDuration() { return 0.0; }
  62. // motions must report their "ease in" duration
  63. virtual F32 getEaseInDuration() { return BREAST_MOTION_FADEIN_TIME; }
  64. // motions must report their "ease out" duration.
  65. virtual F32 getEaseOutDuration() { return BREAST_MOTION_FADEOUT_TIME; }
  66. // called to determine when a motion should be activated/deactivated based on avatar pixel coverage
  67. virtual F32 getMinPixelArea();
  68. // motions must report their priority
  69. virtual LLJoint::JointPriority getPriority() { return LLJoint::MEDIUM_PRIORITY; }
  70. virtual LLMotionBlendType getBlendType() { return ADDITIVE_BLEND; }
  71. // run-time (post constructor) initialization,
  72. // called after parameters have been set
  73. // must return true to indicate success and be available for activation
  74. virtual LLMotionInitStatus onInitialize(LLCharacter *character);
  75. // called when a motion is activated
  76. // must return TRUE to indicate success, or else
  77. // it will be deactivated
  78. virtual BOOL onActivate();
  79. // called per time step
  80. // must return TRUE while it is active, and
  81. // must return FALSE when the motion is completed.
  82. virtual BOOL onUpdate(F32 time, U8* joint_mask);
  83. // called when a motion is deactivated
  84. virtual void onDeactivate();
  85. protected:
  86. LLVector3 toLocal(const LLVector3 &world_vector);
  87. LLVector3 calculateVelocity_local(const F32 time_delta);
  88. LLVector3 calculateAcceleration_local(const LLVector3 &new_char_velocity_local_vec,
  89. const F32 time_delta);
  90. F32 calculateTimeDelta();
  91. private:
  92. //-------------------------------------------------------------------------
  93. // joint states to be animated
  94. //-------------------------------------------------------------------------
  95. LLPointer<LLJointState> mChestState;
  96. LLCharacter* mCharacter;
  97. //-------------------------------------------------------------------------
  98. // miscellaneous parameters
  99. //-------------------------------------------------------------------------
  100. LLViewerVisualParam *mBreastParamsUser[3];
  101. LLViewerVisualParam *mBreastParamsDriven[3];
  102. LLVector3 mBreastParamsMin;
  103. LLVector3 mBreastParamsMax;
  104. LLVector3 mCharLastPosition_world_pt; // Last position of the avatar
  105. LLVector3 mCharLastVelocity_local_vec; // How fast the character is moving
  106. LLVector3 mCharLastAcceleration_local_vec; // Change in character velocity
  107. LLVector3 mBreastLastPosition_local_pt; // Last parameters for breast
  108. LLVector3 mBreastVelocity_local_vec; // How fast the breast params are moving
  109. LLVector3 mBreastLastUpdatePosition_local_pt; // Last parameters when visual update was sent
  110. F32 mBreastMassParam;
  111. F32 mBreastGravityParam;
  112. U32 mBreastSmoothingParam;
  113. LLVector3 mBreastSpringParam;
  114. LLVector3 mBreastDampingParam;
  115. LLVector3 mBreastGainParam;
  116. LLVector3 mBreastMaxVelocityParam;
  117. LLVector3 mBreastDragParam;
  118. LLFrameTimer mTimer;
  119. F32 mLastTime;
  120. U32 mFileTicks;
  121. };
  122. #endif // LL_LLBREASTMOTION_H