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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpanelland.cpp
  3.  * @brief Land information in the tool floater, NOT the "About Land" floater
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-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 "llpanelland.h"
  34. #include "llparcel.h"
  35. #include "llagent.h"
  36. #include "llbutton.h"
  37. #include "llcheckboxctrl.h"
  38. #include "llfloaterland.h"
  39. #include "llfloaterreg.h"
  40. #include "lltextbox.h"
  41. #include "llviewercontrol.h"
  42. #include "llviewerparcelmgr.h"
  43. #include "llviewerregion.h"
  44. #include "llviewerwindow.h"
  45. #include "roles_constants.h"
  46. #include "lluictrlfactory.h"
  47. LLPanelLandSelectObserver* LLPanelLandInfo::sObserver = NULL;
  48. LLPanelLandInfo* LLPanelLandInfo::sInstance = NULL;
  49. class LLPanelLandSelectObserver : public LLParcelObserver
  50. {
  51. public:
  52. LLPanelLandSelectObserver() {}
  53. virtual ~LLPanelLandSelectObserver() {}
  54. virtual void changed() { LLPanelLandInfo::refreshAll(); }
  55. };
  56. BOOL LLPanelLandInfo::postBuild()
  57. {
  58. childSetAction("button buy land",onClickClaim,this);
  59. childSetAction("button abandon land",onClickRelease,this);
  60. childSetAction("button subdivide land",onClickDivide,this);
  61. childSetAction("button join land",onClickJoin,this);
  62. childSetAction("button about land",onClickAbout,this);
  63. mCheckShowOwners = getChild<LLCheckBoxCtrl>("checkbox show owners");
  64. childSetValue("checkbox show owners", gSavedSettings.getBOOL("ShowParcelOwners"));
  65. return TRUE;
  66. }
  67. //
  68. // Methods
  69. //
  70. LLPanelLandInfo::LLPanelLandInfo()
  71. : LLPanel(),
  72. mCheckShowOwners(NULL)
  73. {
  74. if (!sInstance)
  75. {
  76. sInstance = this;
  77. }
  78. if (!sObserver)
  79. {
  80. sObserver = new LLPanelLandSelectObserver();
  81. LLViewerParcelMgr::getInstance()->addObserver( sObserver );
  82. }
  83. }
  84. // virtual
  85. LLPanelLandInfo::~LLPanelLandInfo()
  86. {
  87. LLViewerParcelMgr::getInstance()->removeObserver( sObserver );
  88. delete sObserver;
  89. sObserver = NULL;
  90. sInstance = NULL;
  91. }
  92. // static
  93. void LLPanelLandInfo::refreshAll()
  94. {
  95. if (sInstance)
  96. {
  97. sInstance->refresh();
  98. }
  99. }
  100. // public
  101. void LLPanelLandInfo::refresh()
  102. {
  103. LLParcel *parcel = LLViewerParcelMgr::getInstance()->getParcelSelection()->getParcel();
  104. LLViewerRegion *regionp = LLViewerParcelMgr::getInstance()->getSelectionRegion();
  105. if (!parcel || !regionp)
  106. {
  107. // nothing selected, disable panel
  108. childSetVisible("label_area_price",false);
  109. childSetVisible("label_area",false);
  110. //mTextPrice->setText(LLStringUtil::null);
  111. childSetText("textbox price",LLStringUtil::null);
  112. childSetEnabled("button buy land",FALSE);
  113. childSetEnabled("button abandon land",FALSE);
  114. childSetEnabled("button subdivide land",FALSE);
  115. childSetEnabled("button join land",FALSE);
  116. childSetEnabled("button about land",FALSE);
  117. }
  118. else
  119. {
  120. // something selected, hooray!
  121. const LLUUID& owner_id = parcel->getOwnerID();
  122. const LLUUID& auth_buyer_id = parcel->getAuthorizedBuyerID();
  123. BOOL is_public = parcel->isPublic();
  124. BOOL is_for_sale = parcel->getForSale()
  125. && ((parcel->getSalePrice() > 0) || (auth_buyer_id.notNull()));
  126. BOOL can_buy = (is_for_sale
  127. && (owner_id != gAgent.getID())
  128. && ((gAgent.getID() == auth_buyer_id)
  129. || (auth_buyer_id.isNull())));
  130. if (is_public)
  131. {
  132. childSetEnabled("button buy land",TRUE);
  133. }
  134. else
  135. {
  136. childSetEnabled("button buy land",can_buy);
  137. }
  138. BOOL owner_release = LLViewerParcelMgr::isParcelOwnedByAgent(parcel, GP_LAND_RELEASE);
  139. BOOL owner_divide =  LLViewerParcelMgr::isParcelOwnedByAgent(parcel, GP_LAND_DIVIDE_JOIN);
  140. BOOL manager_releaseable = ( gAgent.canManageEstate()
  141.   && (parcel->getOwnerID() == regionp->getOwner()) );
  142. BOOL manager_divideable = ( gAgent.canManageEstate()
  143. && ((parcel->getOwnerID() == regionp->getOwner()) || owner_divide) );
  144. childSetEnabled("button abandon land",owner_release || manager_releaseable || gAgent.isGodlike());
  145. // only mainland sims are subdividable by owner
  146. if (regionp->getRegionFlags() && REGION_FLAGS_ALLOW_PARCEL_CHANGES)
  147. {
  148. childSetEnabled("button subdivide land",owner_divide || manager_divideable || gAgent.isGodlike());
  149. }
  150. else
  151. {
  152. childSetEnabled("button subdivide land",manager_divideable || gAgent.isGodlike());
  153. }
  154. // To join land, must have something selected,
  155. // not just a single unit of land,
  156. // you must own part of it,
  157. // and it must not be a whole parcel.
  158. if (LLViewerParcelMgr::getInstance()->getSelectedArea() > PARCEL_UNIT_AREA
  159. //&& LLViewerParcelMgr::getInstance()->getSelfCount() > 1
  160. && !LLViewerParcelMgr::getInstance()->getParcelSelection()->getWholeParcelSelected())
  161. {
  162. childSetEnabled("button join land",TRUE);
  163. }
  164. else
  165. {
  166. lldebugs << "Invalid selection for joining land" << llendl;
  167. childSetEnabled("button join land",FALSE);
  168. }
  169. childSetEnabled("button about land",TRUE);
  170. // show pricing information
  171. S32 area;
  172. S32 claim_price;
  173. S32 rent_price;
  174. BOOL for_sale;
  175. F32 dwell;
  176. LLViewerParcelMgr::getInstance()->getDisplayInfo(&area,
  177.    &claim_price,
  178.    &rent_price,
  179.    &for_sale,
  180.    &dwell);
  181. if(is_public || (is_for_sale && LLViewerParcelMgr::getInstance()->getParcelSelection()->getWholeParcelSelected()))
  182. {
  183. childSetTextArg("label_area_price","[PRICE]", llformat("%d",claim_price));
  184. childSetTextArg("label_area_price","[AREA]", llformat("%d",area));
  185. childSetVisible("label_area_price",true);
  186. childSetVisible("label_area",false);
  187. }
  188. else
  189. {
  190. childSetVisible("label_area_price",false);
  191. childSetTextArg("label_area","[AREA]", llformat("%d",area));
  192. childSetVisible("label_area",true);
  193. }
  194. }
  195. }
  196. //static
  197. void LLPanelLandInfo::onClickClaim(void*)
  198. {
  199. LLViewerParcelMgr::getInstance()->startBuyLand();
  200. }
  201. //static
  202. void LLPanelLandInfo::onClickRelease(void*)
  203. {
  204. LLViewerParcelMgr::getInstance()->startReleaseLand();
  205. }
  206. // static
  207. void LLPanelLandInfo::onClickDivide(void*)
  208. {
  209. LLViewerParcelMgr::getInstance()->startDivideLand();
  210. }
  211. // static
  212. void LLPanelLandInfo::onClickJoin(void*)
  213. {
  214. LLViewerParcelMgr::getInstance()->startJoinLand();
  215. }
  216. //static
  217. void LLPanelLandInfo::onClickAbout(void*)
  218. {
  219. // Promote the rectangle selection to a parcel selection
  220. if (!LLViewerParcelMgr::getInstance()->getParcelSelection()->getWholeParcelSelected())
  221. {
  222. LLViewerParcelMgr::getInstance()->selectParcelInRectangle();
  223. }
  224. LLFloaterReg::showInstance("about_land");
  225. }