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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lltool.cpp
  3.  * @brief LLTool class implementation
  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. #include "llviewerprecompiledheaders.h"
  33. #include "lltool.h"
  34. #include "indra_constants.h"
  35. #include "llerror.h"
  36. #include "llview.h"
  37. #include "llviewerwindow.h"
  38. #include "lltoolcomp.h"
  39. #include "lltoolfocus.h"
  40. #include "llfocusmgr.h"
  41. #include "llagent.h"
  42. #include "llviewerjoystick.h"
  43. extern BOOL gDebugClicks;
  44. //static
  45. const std::string LLTool::sNameNull("null");
  46. LLTool::LLTool( const std::string& name, LLToolComposite* composite ) :
  47. mComposite( composite ),
  48. mName(name)
  49. {
  50. }
  51. LLTool::~LLTool()
  52. {
  53. if( hasMouseCapture() )
  54. {
  55. llwarns << "Tool deleted holding mouse capture.  Mouse capture removed." << llendl;
  56. gFocusMgr.removeMouseCaptureWithoutCallback( this );
  57. }
  58. }
  59. BOOL LLTool::handleAnyMouseClick(S32 x, S32 y, MASK mask, LLMouseHandler::EClickType clicktype, BOOL down)
  60. {
  61. BOOL result = LLMouseHandler::handleAnyMouseClick(x, y, mask, clicktype, down);
  62. // This behavior was moved here from LLViewerWindow::handleAnyMouseClick, so it can be selectively overridden by LLTool subclasses.
  63. if(down && result)
  64. {
  65. // This is necessary to force clicks in the world to cause edit
  66. // boxes that might have keyboard focus to relinquish it, and hence
  67. // cause a commit to update their value.  JC
  68. gFocusMgr.setKeyboardFocus(NULL);
  69. }
  70. return result;
  71. }
  72. BOOL LLTool::handleMouseDown(S32 x, S32 y, MASK mask)
  73. {
  74. if (gDebugClicks)
  75. {
  76. llinfos << "LLTool left mouse down" << llendl;
  77. }
  78. // by default, didn't handle it
  79. // llinfos << "LLTool::handleMouseDown" << llendl;
  80. gAgent.setControlFlags(AGENT_CONTROL_LBUTTON_DOWN);
  81. return TRUE;
  82. }
  83. BOOL LLTool::handleMouseUp(S32 x, S32 y, MASK mask)
  84. {
  85. if (gDebugClicks) 
  86. {
  87. llinfos << "LLTool left mouse up" << llendl;
  88. }
  89. // by default, didn't handle it
  90. // llinfos << "LLTool::handleMouseUp" << llendl;
  91. gAgent.setControlFlags(AGENT_CONTROL_LBUTTON_UP);
  92. return TRUE;
  93. }
  94. BOOL LLTool::handleHover(S32 x, S32 y, MASK mask)
  95. {
  96. gViewerWindow->setCursor(UI_CURSOR_ARROW);
  97. lldebugst(LLERR_USER_INPUT) << "hover handled by a tool" << llendl;
  98. // by default, do nothing, say we handled it
  99. return TRUE;
  100. }
  101. BOOL LLTool::handleScrollWheel(S32 x, S32 y, S32 clicks)
  102. {
  103. // by default, didn't handle it
  104. // llinfos << "LLTool::handleScrollWheel" << llendl;
  105. return FALSE;
  106. }
  107. BOOL LLTool::handleDoubleClick(S32 x,S32 y,MASK mask)
  108. {
  109. // llinfos << "LLTool::handleDoubleClick" << llendl;
  110. // by default, pretend it's a left click
  111. return FALSE;
  112. }
  113. BOOL LLTool::handleRightMouseDown(S32 x,S32 y,MASK mask)
  114. {
  115. // by default, didn't handle it
  116. // llinfos << "LLTool::handleRightMouseDown" << llendl;
  117. return FALSE;
  118. }
  119. BOOL LLTool::handleRightMouseUp(S32 x, S32 y, MASK mask)
  120. {
  121. // by default, didn't handle it
  122. // llinfos << "LLTool::handleRightMouseDown" << llendl;
  123. return FALSE;
  124. }
  125.  
  126. BOOL LLTool::handleMiddleMouseDown(S32 x,S32 y,MASK mask)
  127. {
  128. // by default, didn't handle it
  129. // llinfos << "LLTool::handleMiddleMouseDown" << llendl;
  130. return FALSE;
  131. }
  132. BOOL LLTool::handleMiddleMouseUp(S32 x, S32 y, MASK mask)
  133. {
  134. // by default, didn't handle it
  135. // llinfos << "LLTool::handleMiddleMouseUp" << llendl;
  136. return FALSE;
  137. }
  138. BOOL LLTool::handleToolTip(S32 x, S32 y, MASK mask)
  139. {
  140. // by default, didn't handle it
  141. // llinfos << "LLTool::handleToolTip" << llendl;
  142. return FALSE;
  143. }
  144. void LLTool::setMouseCapture( BOOL b )
  145. {
  146. if( b )
  147. {
  148. gFocusMgr.setMouseCapture(mComposite ? mComposite : this );
  149. }
  150. else
  151. if( hasMouseCapture() )
  152. {
  153. gFocusMgr.setMouseCapture( NULL );
  154. }
  155. }
  156. // virtual
  157. void LLTool::draw()
  158. { }
  159. BOOL LLTool::hasMouseCapture()
  160. {
  161. return gFocusMgr.getMouseCapture() == (mComposite ? mComposite : this);
  162. }
  163. BOOL LLTool::handleKey(KEY key, MASK mask)
  164. {
  165. return FALSE;
  166. }
  167. LLTool* LLTool::getOverrideTool(MASK mask)
  168. {
  169. // NOTE: if in flycam mode, ALT-ZOOM camera should be disabled
  170. if (LLViewerJoystick::getInstance()->getOverrideCamera())
  171. {
  172. return NULL;
  173. }
  174. if (mask & MASK_ALT)
  175. {
  176. return LLToolCamera::getInstance();
  177. }
  178. return NULL;
  179. }