lljoystickbutton.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:6k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lljoystickbutton.h
  3.  * @brief LLJoystick class definition
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LLJOYSTICKBUTTON_H
  33. #define LL_LLJOYSTICKBUTTON_H
  34. #include "llbutton.h"
  35. #include "llcoord.h"
  36. #include "llviewertexture.h"
  37. typedef enum e_joystick_quadrant
  38. {
  39. JQ_ORIGIN,
  40. JQ_UP,
  41. JQ_DOWN,
  42. JQ_LEFT,
  43. JQ_RIGHT
  44. } EJoystickQuadrant;
  45. struct QuadrantNames : public LLInitParam::TypeValuesHelper<EJoystickQuadrant, QuadrantNames>
  46. {
  47. static void declareValues();
  48. };
  49. class LLJoystick
  50. : public LLButton
  51. {
  52. public:
  53. struct Params 
  54. : public LLInitParam::Block<Params, LLButton::Params>
  55. {
  56. Optional<EJoystickQuadrant, QuadrantNames> quadrant;
  57. Params()
  58. : quadrant("quadrant", JQ_ORIGIN)
  59. {
  60. label = "";
  61. }
  62. };
  63. LLJoystick(const Params&);
  64. virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask);
  65. virtual BOOL handleMouseUp(S32 x, S32 y, MASK mask);
  66. virtual BOOL handleHover(S32 x, S32 y, MASK mask);
  67. virtual void onMouseUp() {}
  68. virtual void onHeldDown() = 0;
  69. F32 getElapsedHeldDownTime();
  70. static void onBtnHeldDown(void *userdata); // called by llbutton callback handler
  71. void            setInitialQuadrant(EJoystickQuadrant initial) { mInitialQuadrant = initial; };
  72. /**
  73.  * Checks if click location is inside joystick circle.
  74.  *
  75.  * Image containing circle is square and this square has adherent points with joystick
  76.  * circle. Make sure to change method according to shape other than square. 
  77.  */
  78. bool pointInCircle(S32 x, S32 y) const;
  79. static std::string nameFromQuadrant(const EJoystickQuadrant quadrant);
  80. static EJoystickQuadrant quadrantFromName(const std::string& name);
  81. static EJoystickQuadrant selectQuadrant(LLXMLNodePtr node);
  82. protected:
  83. virtual void updateSlop(); // recompute slop margins
  84. protected:
  85. EJoystickQuadrant mInitialQuadrant; // mousedown = click in this quadrant
  86. LLCoordGL mInitialOffset; // pretend mouse started here
  87. LLCoordGL mLastMouse; // where was mouse on last hover event
  88. LLCoordGL mFirstMouse; // when mouse clicked, where was it
  89. S32 mVertSlopNear; // where the slop regions end
  90. S32 mVertSlopFar; // where the slop regions end
  91. S32 mHorizSlopNear; // where the slop regions end
  92. S32 mHorizSlopFar; // where the slop regions end
  93. BOOL mHeldDown;
  94. LLFrameTimer mHeldDownTimer;
  95. };
  96. // Turn agent left and right, move forward and back
  97. class LLJoystickAgentTurn
  98. : public LLJoystick
  99. {
  100. public:
  101. struct Params : public LLJoystick::Params {};
  102. LLJoystickAgentTurn(const Params& p) : LLJoystick(p) {}
  103. virtual void onHeldDown();
  104. };
  105. // Slide left and right, move forward and back
  106. class LLJoystickAgentSlide
  107. : public LLJoystick
  108. {
  109. public:
  110. struct Params : public LLJoystick::Params {};
  111. LLJoystickAgentSlide(const Params& p) : LLJoystick(p) {}
  112. virtual void onHeldDown();
  113. virtual void onMouseUp();
  114. };
  115. // Rotate camera around the focus point
  116. class LLJoystickCameraRotate
  117. : public LLJoystick
  118. {
  119. public:
  120. struct Params 
  121. : public LLInitParam::Block<Params, LLJoystick::Params>
  122. {
  123. Params()
  124. {
  125. held_down_delay.seconds(0.0);
  126. }
  127. };
  128. LLJoystickCameraRotate(const LLJoystickCameraRotate::Params&);
  129. virtual void setToggleState( BOOL left, BOOL top, BOOL right, BOOL bottom );
  130. virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask);
  131. virtual void onHeldDown();
  132. virtual void draw();
  133. protected:
  134. F32 getOrbitRate();
  135. virtual void updateSlop();
  136. void drawRotatedImage( LLPointer<LLUIImage> image, S32 rotations );
  137. protected:
  138. BOOL mInLeft;
  139. BOOL mInTop;
  140. BOOL mInRight;
  141. BOOL mInBottom;
  142. };
  143. // Track the camera focus point forward/backward and side to side
  144. class LLJoystickCameraTrack
  145. : public LLJoystickCameraRotate
  146. {
  147. public:
  148. struct Params 
  149. : public LLInitParam::Block<Params, LLJoystickCameraRotate::Params>
  150. {
  151. Params();
  152. };
  153. LLJoystickCameraTrack(const LLJoystickCameraTrack::Params&);
  154. virtual void onHeldDown();
  155. };
  156. // Zoom the camera in and out
  157. class LLJoystickCameraZoom
  158. : public LLJoystick
  159. {
  160. public:
  161. struct Params 
  162. : public LLInitParam::Block<Params, LLJoystick::Params>
  163. {
  164. Optional<LLUIImage*> plus_image;
  165. Optional<LLUIImage*> minus_image;
  166. Params()
  167. : plus_image ("plus_image", NULL),
  168.   minus_image ("minus_image", NULL)
  169. {
  170. held_down_delay.seconds(0.0);
  171. }
  172. };
  173. LLJoystickCameraZoom(const Params&);
  174. virtual void setToggleState( BOOL top, BOOL bottom );
  175. virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask);
  176. virtual void onHeldDown();
  177. virtual void draw();
  178. protected:
  179. virtual void updateSlop();
  180. F32 getOrbitRate();
  181. protected:
  182. BOOL mInTop;
  183. BOOL mInBottom;
  184. LLUIImagePtr mPlusInImage;
  185. LLUIImagePtr mMinusInImage;
  186. };
  187. #endif  // LL_LLJOYSTICKBUTTON_H