PageRenderTime 136ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/indra/newview/llemote.h

https://bitbucket.org/lindenlab/viewer-beta/
C++ Header | 122 lines | 35 code | 30 blank | 57 comment | 0 complexity | d7c7b690bbbf8eda2c34f551a53e6112 MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file llemote.h
  3. * @brief Definition of LLEmote class
  4. *
  5. * $LicenseInfo:firstyear=2002&license=viewerlgpl$
  6. * Second Life Viewer Source Code
  7. * Copyright (C) 2010, 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_LLEMOTE_H
  27. #define LL_LLEMOTE_H
  28. //-----------------------------------------------------------------------------
  29. // Header files
  30. //-----------------------------------------------------------------------------
  31. #include "llmotion.h"
  32. #include "lltimer.h"
  33. #define MIN_REQUIRED_PIXEL_AREA_EMOTE 2000.f
  34. #define EMOTE_MORPH_FADEIN_TIME 0.3f
  35. #define EMOTE_MORPH_IN_TIME 1.1f
  36. #define EMOTE_MORPH_FADEOUT_TIME 1.4f
  37. class LLVisualParam;
  38. //-----------------------------------------------------------------------------
  39. // class LLEmote
  40. //-----------------------------------------------------------------------------
  41. class LLEmote :
  42. public LLMotion
  43. {
  44. public:
  45. // Constructor
  46. LLEmote(const LLUUID &id);
  47. // Destructor
  48. virtual ~LLEmote();
  49. public:
  50. //-------------------------------------------------------------------------
  51. // functions to support MotionController and MotionRegistry
  52. //-------------------------------------------------------------------------
  53. // static constructor
  54. // all subclasses must implement such a function and register it
  55. static LLMotion *create(const LLUUID &id) { return new LLEmote(id); }
  56. public:
  57. //-------------------------------------------------------------------------
  58. // animation callbacks to be implemented by subclasses
  59. //-------------------------------------------------------------------------
  60. // motions must specify whether or not they loop
  61. virtual BOOL getLoop() { return FALSE; }
  62. // motions must report their total duration
  63. virtual F32 getDuration() { return EMOTE_MORPH_FADEIN_TIME + EMOTE_MORPH_IN_TIME + EMOTE_MORPH_FADEOUT_TIME; }
  64. // motions must report their "ease in" duration
  65. virtual F32 getEaseInDuration() { return EMOTE_MORPH_FADEIN_TIME; }
  66. // motions must report their "ease out" duration.
  67. virtual F32 getEaseOutDuration() { return EMOTE_MORPH_FADEOUT_TIME; }
  68. // called to determine when a motion should be activated/deactivated based on avatar pixel coverage
  69. virtual F32 getMinPixelArea() { return MIN_REQUIRED_PIXEL_AREA_EMOTE; }
  70. // motions must report their priority
  71. virtual LLJoint::JointPriority getPriority() { return LLJoint::MEDIUM_PRIORITY; }
  72. virtual LLMotionBlendType getBlendType() { return NORMAL_BLEND; }
  73. // run-time (post constructor) initialization,
  74. // called after parameters have been set
  75. // must return true to indicate success and be available for activation
  76. virtual LLMotionInitStatus onInitialize(LLCharacter *character);
  77. // called when a motion is activated
  78. // must return TRUE to indicate success, or else
  79. // it will be deactivated
  80. virtual BOOL onActivate();
  81. // called per time step
  82. // must return TRUE while it is active, and
  83. // must return FALSE when the motion is completed.
  84. virtual BOOL onUpdate(F32 time, U8* joint_mask);
  85. // called when a motion is deactivated
  86. virtual void onDeactivate();
  87. virtual BOOL canDeprecate() { return FALSE; }
  88. protected:
  89. LLCharacter* mCharacter;
  90. LLVisualParam* mParam;
  91. };
  92. #endif // LL_LLEMOTE_H