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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lltoolpipette.cpp
  3.  * @brief LLToolPipette class implementation
  4.  *
  5.  * $LicenseInfo:firstyear=2006&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2006-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. /**
  33.  * A tool to pick texture entry infro from objects in world (color/texture)
  34.  */
  35. #include "llviewerprecompiledheaders.h"
  36. // File includes
  37. #include "lltoolpipette.h" 
  38. // Library includes
  39. #include "lltooltip.h"
  40. // Viewer includes
  41. #include "llviewerobjectlist.h"
  42. #include "llviewerwindow.h"
  43. #include "llselectmgr.h"
  44. #include "lltoolmgr.h"
  45. //
  46. // Member functions
  47. //
  48. LLToolPipette::LLToolPipette()
  49. : LLTool(std::string("Pipette")),
  50. mSuccess(TRUE)
  51. }
  52. LLToolPipette::~LLToolPipette()
  53. { }
  54. BOOL LLToolPipette::handleMouseDown(S32 x, S32 y, MASK mask)
  55. {
  56. mSuccess = TRUE;
  57. mTooltipMsg.clear();
  58. setMouseCapture(TRUE);
  59. gViewerWindow->pickAsync(x, y, mask, pickCallback);
  60. return TRUE;
  61. }
  62. BOOL LLToolPipette::handleMouseUp(S32 x, S32 y, MASK mask)
  63. {
  64. mSuccess = TRUE;
  65. LLSelectMgr::getInstance()->unhighlightAll();
  66. // *NOTE: This assumes the pipette tool is a transient tool.
  67. LLToolMgr::getInstance()->clearTransientTool();
  68. setMouseCapture(FALSE);
  69. return TRUE;
  70. }
  71. BOOL LLToolPipette::handleHover(S32 x, S32 y, MASK mask)
  72. {
  73. gViewerWindow->setCursor(mSuccess ? UI_CURSOR_PIPETTE : UI_CURSOR_NO);
  74. if (hasMouseCapture()) // mouse button is down
  75. {
  76. gViewerWindow->pickAsync(x, y, mask, pickCallback);
  77. return TRUE;
  78. }
  79. return FALSE;
  80. }
  81. BOOL LLToolPipette::handleToolTip(S32 x, S32 y, MASK mask)
  82. {
  83. if (mTooltipMsg.empty())
  84. {
  85. return FALSE;
  86. }
  87. LLRect sticky_rect;
  88. sticky_rect.setCenterAndSize(x, y, 20, 20);
  89. LLToolTipMgr::instance().show(LLToolTip::Params()
  90. .message(mTooltipMsg)
  91. .sticky_rect(sticky_rect));
  92. return TRUE;
  93. }
  94. void LLToolPipette::setTextureEntry(const LLTextureEntry* entry)
  95. {
  96. if (entry)
  97. {
  98. mTextureEntry = *entry;
  99. mSignal(mTextureEntry);
  100. }
  101. }
  102. void LLToolPipette::pickCallback(const LLPickInfo& pick_info)
  103. {
  104. LLViewerObject* hit_obj = pick_info.getObject();
  105. LLSelectMgr::getInstance()->unhighlightAll();
  106. // if we clicked on a face of a valid prim, save off texture entry data
  107. if (hit_obj && 
  108. hit_obj->getPCode() == LL_PCODE_VOLUME &&
  109. pick_info.mObjectFace != -1)
  110. {
  111. //TODO: this should highlight the selected face only
  112. LLSelectMgr::getInstance()->highlightObjectOnly(hit_obj);
  113. const LLTextureEntry* entry = hit_obj->getTE(pick_info.mObjectFace);
  114. LLToolPipette::getInstance()->setTextureEntry(entry);
  115. }
  116. }
  117. void LLToolPipette::setResult(BOOL success, const std::string& msg)
  118. {
  119. mTooltipMsg = msg;
  120. mSuccess = success;
  121. }