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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lltoolcomp.cpp
  3.  * @brief Composite tools
  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 "lltoolcomp.h"
  34. #include "llfloaterreg.h"
  35. #include "llgl.h"
  36. #include "indra_constants.h"
  37. #include "llmanip.h"
  38. #include "llmaniprotate.h"
  39. #include "llmanipscale.h"
  40. #include "llmaniptranslate.h"
  41. #include "llmenugl.h" // for right-click menu hack
  42. #include "llselectmgr.h"
  43. #include "lltoolfocus.h"
  44. #include "lltoolgrab.h"
  45. #include "lltoolgun.h"
  46. #include "lltoolmgr.h"
  47. #include "lltoolselectrect.h"
  48. #include "lltoolplacer.h"
  49. #include "llviewermenu.h"
  50. #include "llviewerobject.h"
  51. #include "llviewerwindow.h"
  52. #include "llagent.h"
  53. #include "llfloatertools.h"
  54. #include "llviewercontrol.h"
  55. const S32 BUTTON_HEIGHT = 16;
  56. const S32 BUTTON_WIDTH_SMALL = 32;
  57. const S32 BUTTON_WIDTH_BIG = 48;
  58. const S32 HPAD = 4;
  59. extern LLControlGroup gSavedSettings;
  60. // we use this in various places instead of NULL
  61. static LLTool* sNullTool = new LLTool(std::string("null"), NULL); 
  62. //-----------------------------------------------------------------------
  63. // LLToolComposite
  64. //static
  65. void LLToolComposite::setCurrentTool( LLTool* new_tool )
  66. {
  67. if( mCur != new_tool )
  68. {
  69. if( mSelected )
  70. {
  71. mCur->handleDeselect();
  72. mCur = new_tool;
  73. mCur->handleSelect();
  74. }
  75. else
  76. {
  77. mCur = new_tool;
  78. }
  79. }
  80. }
  81. LLToolComposite::LLToolComposite(const std::string& name)
  82. : LLTool(name),
  83.   mCur(sNullTool), 
  84.   mDefault(sNullTool), 
  85.   mSelected(FALSE),
  86.   mMouseDown(FALSE), mManip(NULL), mSelectRect(NULL)
  87. {
  88. }
  89. // Returns to the default tool
  90. BOOL LLToolComposite::handleMouseUp(S32 x, S32 y, MASK mask)
  91. BOOL handled = mCur->handleMouseUp( x, y, mask );
  92. if( handled )
  93. {
  94. setCurrentTool( mDefault );
  95. }
  96.  return handled;
  97. }
  98. void LLToolComposite::onMouseCaptureLost()
  99. {
  100. mCur->onMouseCaptureLost();
  101. setCurrentTool( mDefault );
  102. }
  103. BOOL LLToolComposite::isSelecting()
  104. return mCur == mSelectRect; 
  105. }
  106. void LLToolComposite::handleSelect()
  107. {
  108. if (!gSavedSettings.getBOOL("EditLinkedParts"))
  109. {
  110. LLSelectMgr::getInstance()->promoteSelectionToRoot();
  111. }
  112. mCur = mDefault; 
  113. mCur->handleSelect(); 
  114. mSelected = TRUE; 
  115. }
  116. //----------------------------------------------------------------------------
  117. // LLToolCompInspect
  118. //----------------------------------------------------------------------------
  119. LLToolCompInspect::LLToolCompInspect()
  120. : LLToolComposite(std::string("Inspect"))
  121. {
  122. mSelectRect = new LLToolSelectRect(this);
  123. mDefault = mSelectRect;
  124. }
  125. LLToolCompInspect::~LLToolCompInspect()
  126. {
  127. delete mSelectRect;
  128. mSelectRect = NULL;
  129. }
  130. BOOL LLToolCompInspect::handleMouseDown(S32 x, S32 y, MASK mask)
  131. {
  132. mMouseDown = TRUE;
  133. gViewerWindow->pickAsync(x, y, mask, pickCallback);
  134. return TRUE;
  135. }
  136. void LLToolCompInspect::pickCallback(const LLPickInfo& pick_info)
  137. {
  138. LLViewerObject* hit_obj = pick_info.getObject();
  139. if (!LLToolCompInspect::getInstance()->mMouseDown)
  140. {
  141. // fast click on object, but mouse is already up...just do select
  142. LLToolCompInspect::getInstance()->mSelectRect->handleObjectSelection(pick_info, gSavedSettings.getBOOL("EditLinkedParts"), FALSE);
  143. return;
  144. }
  145. if( hit_obj )
  146. {
  147. if (LLSelectMgr::getInstance()->getSelection()->getObjectCount())
  148. {
  149. LLEditMenuHandler::gEditMenuHandler = LLSelectMgr::getInstance();
  150. }
  151. LLToolCompInspect::getInstance()->setCurrentTool( LLToolCompInspect::getInstance()->mSelectRect );
  152. LLToolCompInspect::getInstance()->mSelectRect->handlePick( pick_info );
  153. }
  154. else
  155. {
  156. LLToolCompInspect::getInstance()->setCurrentTool( LLToolCompInspect::getInstance()->mSelectRect );
  157. LLToolCompInspect::getInstance()->mSelectRect->handlePick( pick_info );
  158. }
  159. }
  160. BOOL LLToolCompInspect::handleDoubleClick(S32 x, S32 y, MASK mask)
  161. {
  162. return TRUE;
  163. }
  164. //----------------------------------------------------------------------------
  165. // LLToolCompTranslate
  166. //----------------------------------------------------------------------------
  167. LLToolCompTranslate::LLToolCompTranslate()
  168. : LLToolComposite(std::string("Move"))
  169. {
  170. mManip = new LLManipTranslate(this);
  171. mSelectRect = new LLToolSelectRect(this);
  172. mCur = mManip;
  173. mDefault = mManip;
  174. }
  175. LLToolCompTranslate::~LLToolCompTranslate()
  176. {
  177. delete mManip;
  178. mManip = NULL;
  179. delete mSelectRect;
  180. mSelectRect = NULL;
  181. }
  182. BOOL LLToolCompTranslate::handleHover(S32 x, S32 y, MASK mask)
  183. {
  184. if( !mCur->hasMouseCapture() )
  185. {
  186. setCurrentTool( mManip );
  187. }
  188. return mCur->handleHover( x, y, mask );
  189. }
  190. BOOL LLToolCompTranslate::handleMouseDown(S32 x, S32 y, MASK mask)
  191. {
  192. mMouseDown = TRUE;
  193. gViewerWindow->pickAsync(x, y, mask, pickCallback, TRUE);
  194. return TRUE;
  195. }
  196. void LLToolCompTranslate::pickCallback(const LLPickInfo& pick_info)
  197. {
  198. LLViewerObject* hit_obj = pick_info.getObject();
  199. LLToolCompTranslate::getInstance()->mManip->highlightManipulators(pick_info.mMousePt.mX, pick_info.mMousePt.mY);
  200. if (!LLToolCompTranslate::getInstance()->mMouseDown)
  201. {
  202. // fast click on object, but mouse is already up...just do select
  203. LLToolCompTranslate::getInstance()->mSelectRect->handleObjectSelection(pick_info, gSavedSettings.getBOOL("EditLinkedParts"), FALSE);
  204. return;
  205. }
  206. if( hit_obj || LLToolCompTranslate::getInstance()->mManip->getHighlightedPart() != LLManip::LL_NO_PART )
  207. {
  208. if (LLToolCompTranslate::getInstance()->mManip->getSelection()->getObjectCount())
  209. {
  210. LLEditMenuHandler::gEditMenuHandler = LLSelectMgr::getInstance();
  211. }
  212. BOOL can_move = LLToolCompTranslate::getInstance()->mManip->canAffectSelection();
  213. if( LLManip::LL_NO_PART != LLToolCompTranslate::getInstance()->mManip->getHighlightedPart() && can_move)
  214. {
  215. LLToolCompTranslate::getInstance()->setCurrentTool( LLToolCompTranslate::getInstance()->mManip );
  216. LLToolCompTranslate::getInstance()->mManip->handleMouseDownOnPart( pick_info.mMousePt.mX, pick_info.mMousePt.mY, pick_info.mKeyMask );
  217. }
  218. else
  219. {
  220. LLToolCompTranslate::getInstance()->setCurrentTool( LLToolCompTranslate::getInstance()->mSelectRect );
  221. LLToolCompTranslate::getInstance()->mSelectRect->handlePick( pick_info );
  222. // *TODO: add toggle to trigger old click-drag functionality
  223. // LLToolCompTranslate::getInstance()->mManip->handleMouseDownOnPart( XY_part, x, y, mask);
  224. }
  225. }
  226. else
  227. {
  228. LLToolCompTranslate::getInstance()->setCurrentTool( LLToolCompTranslate::getInstance()->mSelectRect );
  229. LLToolCompTranslate::getInstance()->mSelectRect->handlePick( pick_info );
  230. }
  231. }
  232. BOOL LLToolCompTranslate::handleMouseUp(S32 x, S32 y, MASK mask)
  233. {
  234. mMouseDown = FALSE;
  235. return LLToolComposite::handleMouseUp(x, y, mask);
  236. }
  237. LLTool* LLToolCompTranslate::getOverrideTool(MASK mask)
  238. {
  239. if (mask == MASK_CONTROL)
  240. {
  241. return LLToolCompRotate::getInstance();
  242. }
  243. else if (mask == (MASK_CONTROL | MASK_SHIFT))
  244. {
  245. return LLToolCompScale::getInstance();
  246. }
  247. return LLToolComposite::getOverrideTool(mask);
  248. }
  249. BOOL LLToolCompTranslate::handleDoubleClick(S32 x, S32 y, MASK mask)
  250. {
  251. if (mManip->getSelection()->isEmpty() && mManip->getHighlightedPart() == LLManip::LL_NO_PART)
  252. {
  253. // You should already have an object selected from the mousedown.
  254. // If so, show its properties
  255. LLFloaterReg::showInstance("build", "Content");
  256. return TRUE;
  257. }
  258. // Nothing selected means the first mouse click was probably
  259. // bad, so try again.
  260. return FALSE;
  261. }
  262. void LLToolCompTranslate::render()
  263. {
  264. mCur->render(); // removing this will not draw the RGB arrows and guidelines
  265. if( mCur != mManip )
  266. {
  267. LLGLDepthTest gls_depth(GL_TRUE, GL_FALSE);
  268. mManip->renderGuidelines();
  269. }
  270. }
  271. //-----------------------------------------------------------------------
  272. // LLToolCompScale
  273. LLToolCompScale::LLToolCompScale()
  274. : LLToolComposite(std::string("Stretch"))
  275. {
  276. mManip = new LLManipScale(this);
  277. mSelectRect = new LLToolSelectRect(this);
  278. mCur = mManip;
  279. mDefault = mManip;
  280. }
  281. LLToolCompScale::~LLToolCompScale()
  282. {
  283. delete mManip;
  284. delete mSelectRect;
  285. }
  286. BOOL LLToolCompScale::handleHover(S32 x, S32 y, MASK mask)
  287. {
  288. if( !mCur->hasMouseCapture() )
  289. {
  290. setCurrentTool(mManip );
  291. }
  292. return mCur->handleHover( x, y, mask );
  293. }
  294. BOOL LLToolCompScale::handleMouseDown(S32 x, S32 y, MASK mask)
  295. {
  296. mMouseDown = TRUE;
  297. gViewerWindow->pickAsync(x, y, mask, pickCallback);
  298. return TRUE;
  299. }
  300. void LLToolCompScale::pickCallback(const LLPickInfo& pick_info)
  301. {
  302. LLViewerObject* hit_obj = pick_info.getObject();
  303. LLToolCompScale::getInstance()->mManip->highlightManipulators(pick_info.mMousePt.mX, pick_info.mMousePt.mY);
  304. if (!LLToolCompScale::getInstance()->mMouseDown)
  305. {
  306. // fast click on object, but mouse is already up...just do select
  307. LLToolCompScale::getInstance()->mSelectRect->handleObjectSelection(pick_info, gSavedSettings.getBOOL("EditLinkedParts"), FALSE);
  308. return;
  309. }
  310. if( hit_obj || LLToolCompScale::getInstance()->mManip->getHighlightedPart() != LLManip::LL_NO_PART)
  311. {
  312. if (LLToolCompScale::getInstance()->mManip->getSelection()->getObjectCount())
  313. {
  314. LLEditMenuHandler::gEditMenuHandler = LLSelectMgr::getInstance();
  315. }
  316. if( LLManip::LL_NO_PART != LLToolCompScale::getInstance()->mManip->getHighlightedPart() )
  317. {
  318. LLToolCompScale::getInstance()->setCurrentTool( LLToolCompScale::getInstance()->mManip );
  319. LLToolCompScale::getInstance()->mManip->handleMouseDownOnPart( pick_info.mMousePt.mX, pick_info.mMousePt.mY, pick_info.mKeyMask );
  320. }
  321. else
  322. {
  323. LLToolCompScale::getInstance()->setCurrentTool( LLToolCompScale::getInstance()->mSelectRect );
  324. LLToolCompScale::getInstance()->mSelectRect->handlePick( pick_info );
  325. }
  326. }
  327. else
  328. {
  329. LLToolCompScale::getInstance()->setCurrentTool( LLToolCompScale::getInstance()->mSelectRect );
  330. LLToolCompScale::getInstance()->mSelectRect->handlePick( pick_info );
  331. }
  332. }
  333. BOOL LLToolCompScale::handleMouseUp(S32 x, S32 y, MASK mask)
  334. {
  335. mMouseDown = FALSE;
  336. return LLToolComposite::handleMouseUp(x, y, mask);
  337. }
  338. LLTool* LLToolCompScale::getOverrideTool(MASK mask)
  339. {
  340. if (mask == MASK_CONTROL)
  341. {
  342. return LLToolCompRotate::getInstance();
  343. }
  344. return LLToolComposite::getOverrideTool(mask);
  345. }
  346. BOOL LLToolCompScale::handleDoubleClick(S32 x, S32 y, MASK mask)
  347. {
  348. if (!mManip->getSelection()->isEmpty() && mManip->getHighlightedPart() == LLManip::LL_NO_PART)
  349. {
  350. // You should already have an object selected from the mousedown.
  351. // If so, show its properties
  352. LLFloaterReg::showInstance("build", "Content");
  353. return TRUE;
  354. }
  355. else
  356. {
  357. // Nothing selected means the first mouse click was probably
  358. // bad, so try again.
  359. return handleMouseDown(x, y, mask);
  360. }
  361. }
  362. void LLToolCompScale::render()
  363. {
  364. mCur->render();
  365. if( mCur != mManip )
  366. {
  367. LLGLDepthTest gls_depth(GL_TRUE, GL_FALSE);
  368. mManip->renderGuidelines();
  369. }
  370. }
  371. //-----------------------------------------------------------------------
  372. // LLToolCompCreate
  373. LLToolCompCreate::LLToolCompCreate()
  374. : LLToolComposite(std::string("Create"))
  375. {
  376. mPlacer = new LLToolPlacer();
  377. mSelectRect = new LLToolSelectRect(this);
  378. mCur = mPlacer;
  379. mDefault = mPlacer;
  380. mObjectPlacedOnMouseDown = FALSE;
  381. }
  382. LLToolCompCreate::~LLToolCompCreate()
  383. {
  384. delete mPlacer;
  385. delete mSelectRect;
  386. }
  387. BOOL LLToolCompCreate::handleMouseDown(S32 x, S32 y, MASK mask)
  388. {
  389. BOOL handled = FALSE;
  390. mMouseDown = TRUE;
  391. if ( (mask == MASK_SHIFT) || (mask == MASK_CONTROL) )
  392. {
  393. gViewerWindow->pickAsync(x, y, mask, pickCallback);
  394. handled = TRUE;
  395. }
  396. else
  397. {
  398. setCurrentTool( mPlacer );
  399. handled = mPlacer->placeObject( x, y, mask );
  400. }
  401. mObjectPlacedOnMouseDown = TRUE;
  402. return TRUE;
  403. }
  404. void LLToolCompCreate::pickCallback(const LLPickInfo& pick_info)
  405. {
  406. // *NOTE: We mask off shift and control, so you cannot
  407. // multi-select multiple objects with the create tool.
  408. MASK mask = (pick_info.mKeyMask & ~MASK_SHIFT);
  409. mask = (mask & ~MASK_CONTROL);
  410. LLToolCompCreate::getInstance()->setCurrentTool( LLToolCompCreate::getInstance()->mSelectRect );
  411. LLToolCompCreate::getInstance()->mSelectRect->handlePick( pick_info );
  412. }
  413. BOOL LLToolCompCreate::handleDoubleClick(S32 x, S32 y, MASK mask)
  414. {
  415. return handleMouseDown(x, y, mask);
  416. }
  417. BOOL LLToolCompCreate::handleMouseUp(S32 x, S32 y, MASK mask)
  418. {
  419. BOOL handled = FALSE;
  420. if ( mMouseDown && !mObjectPlacedOnMouseDown && !(mask == MASK_SHIFT) && !(mask == MASK_CONTROL) )
  421. {
  422. setCurrentTool( mPlacer );
  423. handled = mPlacer->placeObject( x, y, mask );
  424. }
  425. mObjectPlacedOnMouseDown = FALSE;
  426. mMouseDown = FALSE;
  427. if (!handled)
  428. {
  429. handled = LLToolComposite::handleMouseUp(x, y, mask);
  430. }
  431. return handled;
  432. }
  433. //-----------------------------------------------------------------------
  434. // LLToolCompRotate
  435. LLToolCompRotate::LLToolCompRotate()
  436. : LLToolComposite(std::string("Rotate"))
  437. {
  438. mManip = new LLManipRotate(this);
  439. mSelectRect = new LLToolSelectRect(this);
  440. mCur = mManip;
  441. mDefault = mManip;
  442. }
  443. LLToolCompRotate::~LLToolCompRotate()
  444. {
  445. delete mManip;
  446. delete mSelectRect;
  447. }
  448. BOOL LLToolCompRotate::handleHover(S32 x, S32 y, MASK mask)
  449. {
  450. if( !mCur->hasMouseCapture() )
  451. {
  452. setCurrentTool( mManip );
  453. }
  454. return mCur->handleHover( x, y, mask );
  455. }
  456. BOOL LLToolCompRotate::handleMouseDown(S32 x, S32 y, MASK mask)
  457. {
  458. mMouseDown = TRUE;
  459. gViewerWindow->pickAsync(x, y, mask, pickCallback);
  460. return TRUE;
  461. }
  462. void LLToolCompRotate::pickCallback(const LLPickInfo& pick_info)
  463. {
  464. LLViewerObject* hit_obj = pick_info.getObject();
  465. LLToolCompRotate::getInstance()->mManip->highlightManipulators(pick_info.mMousePt.mX, pick_info.mMousePt.mY);
  466. if (!LLToolCompRotate::getInstance()->mMouseDown)
  467. {
  468. // fast click on object, but mouse is already up...just do select
  469. LLToolCompRotate::getInstance()->mSelectRect->handleObjectSelection(pick_info, gSavedSettings.getBOOL("EditLinkedParts"), FALSE);
  470. return;
  471. }
  472. if( hit_obj || LLToolCompRotate::getInstance()->mManip->getHighlightedPart() != LLManip::LL_NO_PART)
  473. {
  474. if (LLToolCompRotate::getInstance()->mManip->getSelection()->getObjectCount())
  475. {
  476. LLEditMenuHandler::gEditMenuHandler = LLSelectMgr::getInstance();
  477. }
  478. if( LLManip::LL_NO_PART != LLToolCompRotate::getInstance()->mManip->getHighlightedPart() )
  479. {
  480. LLToolCompRotate::getInstance()->setCurrentTool( LLToolCompRotate::getInstance()->mManip );
  481. LLToolCompRotate::getInstance()->mManip->handleMouseDownOnPart( pick_info.mMousePt.mX, pick_info.mMousePt.mY, pick_info.mKeyMask );
  482. }
  483. else
  484. {
  485. LLToolCompRotate::getInstance()->setCurrentTool( LLToolCompRotate::getInstance()->mSelectRect );
  486. LLToolCompRotate::getInstance()->mSelectRect->handlePick( pick_info );
  487. }
  488. }
  489. else
  490. {
  491. LLToolCompRotate::getInstance()->setCurrentTool( LLToolCompRotate::getInstance()->mSelectRect );
  492. LLToolCompRotate::getInstance()->mSelectRect->handlePick( pick_info );
  493. }
  494. }
  495. BOOL LLToolCompRotate::handleMouseUp(S32 x, S32 y, MASK mask)
  496. {
  497. mMouseDown = FALSE;
  498. return LLToolComposite::handleMouseUp(x, y, mask);
  499. }
  500. LLTool* LLToolCompRotate::getOverrideTool(MASK mask)
  501. {
  502. if (mask == (MASK_CONTROL | MASK_SHIFT))
  503. {
  504. return LLToolCompScale::getInstance();
  505. }
  506. return LLToolComposite::getOverrideTool(mask);
  507. }
  508. BOOL LLToolCompRotate::handleDoubleClick(S32 x, S32 y, MASK mask)
  509. {
  510. if (!mManip->getSelection()->isEmpty() && mManip->getHighlightedPart() == LLManip::LL_NO_PART)
  511. {
  512. // You should already have an object selected from the mousedown.
  513. // If so, show its properties
  514. LLFloaterReg::showInstance("build", "Content");
  515. return TRUE;
  516. }
  517. else
  518. {
  519. // Nothing selected means the first mouse click was probably
  520. // bad, so try again.
  521. return handleMouseDown(x, y, mask);
  522. }
  523. }
  524. void LLToolCompRotate::render()
  525. {
  526. mCur->render();
  527. if( mCur != mManip )
  528. {
  529. LLGLDepthTest gls_depth(GL_TRUE, GL_FALSE);
  530. mManip->renderGuidelines();
  531. }
  532. }
  533. //-----------------------------------------------------------------------
  534. // LLToolCompGun
  535. LLToolCompGun::LLToolCompGun()
  536. : LLToolComposite(std::string("Mouselook"))
  537. {
  538. mGun = new LLToolGun(this);
  539. mGrab = new LLToolGrab(this);
  540. mNull = sNullTool;
  541. setCurrentTool(mGun);
  542. mDefault = mGun;
  543. }
  544. LLToolCompGun::~LLToolCompGun()
  545. {
  546. delete mGun;
  547. mGun = NULL;
  548. delete mGrab;
  549. mGrab = NULL;
  550. // don't delete a static object
  551. // delete mNull;
  552. mNull = NULL;
  553. }
  554. BOOL LLToolCompGun::handleHover(S32 x, S32 y, MASK mask)
  555. {
  556. // *NOTE: This hack is here to make mouselook kick in again after
  557. // item selected from context menu.
  558. if ( mCur == mNull && !gPopupMenuView->getVisible() )
  559. {
  560. LLSelectMgr::getInstance()->deselectAll();
  561. setCurrentTool( (LLTool*) mGrab );
  562. }
  563. // Note: if the tool changed, we can't delegate the current mouse event
  564. // after the change because tools can modify the mouse during selection and deselection.
  565. // Instead we let the current tool handle the event and then make the change.
  566. // The new tool will take effect on the next frame.
  567. mCur->handleHover( x, y, mask );
  568. // If mouse button not down...
  569. if( !gViewerWindow->getLeftMouseDown())
  570. {
  571. // let ALT switch from gun to grab
  572. if ( mCur == mGun && (mask & MASK_ALT) )
  573. {
  574. setCurrentTool( (LLTool*) mGrab );
  575. }
  576. else if ( mCur == mGrab && !(mask & MASK_ALT) )
  577. {
  578. setCurrentTool( (LLTool*) mGun );
  579. setMouseCapture(TRUE);
  580. }
  581. }
  582. return TRUE; 
  583. }
  584. BOOL LLToolCompGun::handleMouseDown(S32 x, S32 y, MASK mask)
  585. // if the left button is grabbed, don't put up the pie menu
  586. if (gAgent.leftButtonGrabbed())
  587. {
  588. gAgent.setControlFlags(AGENT_CONTROL_ML_LBUTTON_DOWN);
  589. return FALSE;
  590. }
  591. // On mousedown, start grabbing
  592. gGrabTransientTool = this;
  593. LLToolMgr::getInstance()->getCurrentToolset()->selectTool( (LLTool*) mGrab );
  594. return LLToolGrab::getInstance()->handleMouseDown(x, y, mask);
  595. }
  596. BOOL LLToolCompGun::handleDoubleClick(S32 x, S32 y, MASK mask)
  597. {
  598. // if the left button is grabbed, don't put up the pie menu
  599. if (gAgent.leftButtonGrabbed())
  600. {
  601. gAgent.setControlFlags(AGENT_CONTROL_ML_LBUTTON_DOWN);
  602. return FALSE;
  603. }
  604. // On mousedown, start grabbing
  605. gGrabTransientTool = this;
  606. LLToolMgr::getInstance()->getCurrentToolset()->selectTool( (LLTool*) mGrab );
  607. return LLToolGrab::getInstance()->handleDoubleClick(x, y, mask);
  608. }
  609. BOOL LLToolCompGun::handleRightMouseDown(S32 x, S32 y, MASK mask)
  610. {
  611. /* JC - suppress context menu 8/29/2002
  612. // On right mouse, go through some convoluted steps to
  613. // make the build menu appear.
  614. setCurrentTool( (LLTool*) mNull );
  615. // This should return FALSE, meaning the context menu will
  616. // be shown.
  617. return FALSE;
  618. */
  619. // Returning true will suppress the context menu
  620. return TRUE;
  621. }
  622. BOOL LLToolCompGun::handleMouseUp(S32 x, S32 y, MASK mask)
  623. {
  624. gAgent.setControlFlags(AGENT_CONTROL_ML_LBUTTON_UP);
  625. setCurrentTool( (LLTool*) mGun );
  626. return TRUE;
  627. }
  628. void LLToolCompGun::onMouseCaptureLost()
  629. {
  630. if (mComposite)
  631. {
  632. mComposite->onMouseCaptureLost();
  633. return;
  634. }
  635. mCur->onMouseCaptureLost();
  636. }
  637. void LLToolCompGun::handleSelect()
  638. {
  639. LLToolComposite::handleSelect();
  640. setMouseCapture(TRUE);
  641. }
  642. void LLToolCompGun::handleDeselect()
  643. {
  644. LLToolComposite::handleDeselect();
  645. setMouseCapture(FALSE);
  646. }
  647. BOOL LLToolCompGun::handleScrollWheel(S32 x, S32 y, S32 clicks)
  648. {
  649. if (clicks > 0)
  650. {
  651. gAgent.changeCameraToDefault();
  652. }
  653. return TRUE;
  654. }