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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file llpanelcontents.cpp
  3.  * @brief Object contents panel in the tools floater.
  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. // file include
  34. #include "llpanelcontents.h"
  35. // linden library includes
  36. #include "lleconomy.h"
  37. #include "llerror.h"
  38. #include "llfloaterreg.h"
  39. #include "llfontgl.h"
  40. #include "llmaterialtable.h"
  41. #include "llpermissionsflags.h"
  42. #include "llrect.h"
  43. #include "llstring.h"
  44. #include "llui.h"
  45. #include "m3math.h"
  46. #include "material_codes.h"
  47. // project includes
  48. #include "llagent.h"
  49. #include "llpanelobjectinventory.h"
  50. #include "llpreviewscript.h"
  51. #include "llresmgr.h"
  52. #include "llselectmgr.h"
  53. #include "lltool.h"
  54. #include "lltoolcomp.h"
  55. #include "lltoolmgr.h"
  56. #include "lltrans.h"
  57. #include "llviewerassettype.h"
  58. #include "llviewerinventory.h"
  59. #include "llviewerobject.h"
  60. #include "llviewerregion.h"
  61. #include "llviewerwindow.h"
  62. #include "llworld.h"
  63. //
  64. // Imported globals
  65. //
  66. //
  67. // Globals
  68. //
  69. const char* LLPanelContents::TENTATIVE_SUFFIX = "_tentative";
  70. const char* LLPanelContents::PERMS_OWNER_INTERACT_KEY = "perms_owner_interact";
  71. const char* LLPanelContents::PERMS_OWNER_CONTROL_KEY = "perms_owner_control";
  72. const char* LLPanelContents::PERMS_GROUP_INTERACT_KEY = "perms_group_interact";
  73. const char* LLPanelContents::PERMS_GROUP_CONTROL_KEY = "perms_group_control";
  74. const char* LLPanelContents::PERMS_ANYONE_INTERACT_KEY = "perms_anyone_interact";
  75. const char* LLPanelContents::PERMS_ANYONE_CONTROL_KEY = "perms_anyone_control";
  76. BOOL LLPanelContents::postBuild()
  77. {
  78. LLRect rect = this->getRect();
  79. setMouseOpaque(FALSE);
  80. childSetAction("button new script",&LLPanelContents::onClickNewScript, this);
  81. childSetAction("button permissions",&LLPanelContents::onClickPermissions, this);
  82. mPanelInventoryObject = getChild<LLPanelObjectInventory>("contents_inventory");
  83. return TRUE;
  84. }
  85. LLPanelContents::LLPanelContents()
  86. : LLPanel(),
  87. mPanelInventoryObject(NULL)
  88. {
  89. }
  90. LLPanelContents::~LLPanelContents()
  91. {
  92. // Children all cleaned up by default view destructor.
  93. }
  94. void LLPanelContents::getState(LLViewerObject *objectp )
  95. {
  96. if( !objectp )
  97. {
  98. childSetEnabled("button new script",FALSE);
  99. return;
  100. }
  101. LLUUID group_id; // used for SL-23488
  102. LLSelectMgr::getInstance()->selectGetGroup(group_id);  // sets group_id as a side effect SL-23488
  103. // BUG? Check for all objects being editable?
  104. bool editable = gAgent.isGodlike()
  105. || (objectp->permModify()
  106.        && ( objectp->permYouOwner() || ( !group_id.isNull() && gAgent.isInGroup(group_id) )));  // solves SL-23488
  107. BOOL all_volume = LLSelectMgr::getInstance()->selectionAllPCode( LL_PCODE_VOLUME );
  108. // Edit script button - ok if object is editable and there's an unambiguous destination for the object.
  109. childSetEnabled("button new script",
  110. editable &&
  111. all_volume &&
  112. ((LLSelectMgr::getInstance()->getSelection()->getRootObjectCount() == 1)
  113. || (LLSelectMgr::getInstance()->getSelection()->getObjectCount() == 1)));
  114. }
  115. void LLPanelContents::refresh()
  116. {
  117. const BOOL children_ok = TRUE;
  118. LLViewerObject* object = LLSelectMgr::getInstance()->getSelection()->getFirstRootObject(children_ok);
  119. getState(object);
  120. if (mPanelInventoryObject)
  121. {
  122. mPanelInventoryObject->refresh();
  123. }
  124. }
  125. //
  126. // Static functions
  127. //
  128. // static
  129. void LLPanelContents::onClickNewScript(void *userdata)
  130. {
  131. const BOOL children_ok = TRUE;
  132. LLViewerObject* object = LLSelectMgr::getInstance()->getSelection()->getFirstRootObject(children_ok);
  133. if(object)
  134. {
  135. LLPermissions perm;
  136. perm.init(gAgent.getID(), gAgent.getID(), LLUUID::null, LLUUID::null);
  137. perm.initMasks(
  138. PERM_ALL,
  139. PERM_ALL,
  140. PERM_NONE,
  141. PERM_NONE,
  142. PERM_MOVE | PERM_TRANSFER);
  143. std::string desc;
  144. LLViewerAssetType::generateDescriptionFor(LLAssetType::AT_LSL_TEXT, desc);
  145. LLPointer<LLViewerInventoryItem> new_item =
  146. new LLViewerInventoryItem(
  147. LLUUID::null,
  148. LLUUID::null,
  149. perm,
  150. LLUUID::null,
  151. LLAssetType::AT_LSL_TEXT,
  152. LLInventoryType::IT_LSL,
  153. LLTrans::getString("PanelContentsNewScript"),
  154. desc,
  155. LLSaleInfo::DEFAULT,
  156. LLViewerInventoryItem::II_FLAGS_NONE,
  157. time_corrected());
  158. object->saveScript(new_item, TRUE, true);
  159. // *NOTE: In order to resolve SL-22177, we needed to create
  160. // the script first, and then you have to click it in
  161. // inventory to edit it.
  162. // *TODO: The script creation should round-trip back to the
  163. // viewer so the viewer can auto-open the script and start
  164. // editing ASAP.
  165. #if 0
  166. LLFloaterReg::showInstance("preview_scriptedit", LLSD(inv_item->getUUID()), TAKE_FOCUS_YES);
  167. #endif
  168. }
  169. }
  170. // static
  171. void LLPanelContents::onClickPermissions(void *userdata)
  172. {
  173. LLPanelContents* self = (LLPanelContents*)userdata;
  174. gFloaterView->getParentFloater(self)->addDependentFloater(LLFloaterReg::showInstance("bulk_perms"));
  175. }