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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llfloaterlandholdings.cpp
  3.  * @brief "My Land" floater showing all your land parcels.
  4.  *
  5.  * $LicenseInfo:firstyear=2003&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2003-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 "llfloaterlandholdings.h"
  34. #include "indra_constants.h"
  35. #include "llfontgl.h"
  36. #include "llqueryflags.h"
  37. #include "llparcel.h"
  38. #include "message.h"
  39. #include "llagent.h"
  40. #include "llfloaterreg.h"
  41. #include "llfloaterworldmap.h"
  42. #include "llproductinforequest.h"
  43. #include "llscrolllistctrl.h"
  44. #include "llstatusbar.h"
  45. #include "lltextbox.h"
  46. #include "llscrolllistctrl.h"
  47. #include "llscrolllistitem.h"
  48. #include "llscrolllistcell.h"
  49. #include "lltrans.h"
  50. #include "lluiconstants.h"
  51. #include "llviewermessage.h"
  52. #include "lluictrlfactory.h"
  53. #include "llgroupactions.h"
  54. // protected
  55. LLFloaterLandHoldings::LLFloaterLandHoldings(const LLSD& key)
  56. : LLFloater(key),
  57. mActualArea(0),
  58. mBillableArea(0),
  59. mFirstPacketReceived(FALSE),
  60. mSortColumn(""),
  61. mSortAscending(TRUE)
  62. {
  63. //  LLUICtrlFactory::getInstance()->buildFloater(floater, "floater_land_holdings.xml");
  64. }
  65. BOOL LLFloaterLandHoldings::postBuild()
  66. {
  67. childSetAction("Teleport", onClickTeleport, this);
  68. childSetAction("Show on Map", onClickMap, this);
  69. // Grant list
  70. getChild<LLScrollListCtrl>("grant list")->setDoubleClickCallback(onGrantList, this);
  71. LLCtrlListInterface *list = childGetListInterface("grant list");
  72. if (!list) return TRUE;
  73. S32 count = gAgent.mGroups.count();
  74. for(S32 i = 0; i < count; ++i)
  75. {
  76. LLUUID id(gAgent.mGroups.get(i).mID);
  77. LLSD element;
  78. element["id"] = id;
  79. element["columns"][0]["column"] = "group";
  80. element["columns"][0]["value"] = gAgent.mGroups.get(i).mName;
  81. element["columns"][0]["font"] = "SANSSERIF";
  82. LLUIString areastr = getString("area_string");
  83. areastr.setArg("[AREA]", llformat("%d", gAgent.mGroups.get(i).mContribution));
  84. element["columns"][1]["column"] = "area";
  85. element["columns"][1]["value"] = areastr;
  86. element["columns"][1]["font"] = "SANSSERIF";
  87. list->addElement(element, ADD_SORTED);
  88. }
  89. center();
  90. return TRUE;
  91. }
  92. // protected
  93. LLFloaterLandHoldings::~LLFloaterLandHoldings()
  94. {
  95. }
  96. void LLFloaterLandHoldings::onOpen(const LLSD& key)
  97. {
  98. // query_id null is known to be us
  99. const LLUUID& query_id = LLUUID::null;
  100. // look only for parcels we own
  101. U32 query_flags = DFQ_AGENT_OWNED;
  102. send_places_query(query_id,
  103.   LLUUID::null,
  104.   "",
  105.   query_flags,
  106.   LLParcel::C_ANY,
  107.   "");
  108. }
  109. void LLFloaterLandHoldings::draw()
  110. {
  111. refresh();
  112. LLFloater::draw();
  113. }
  114. // public
  115. void LLFloaterLandHoldings::refresh()
  116. {
  117. LLCtrlSelectionInterface *list = childGetSelectionInterface("parcel list");
  118. BOOL enable_btns = FALSE;
  119. if (list && list->getFirstSelectedIndex()> -1)
  120. {
  121. enable_btns = TRUE;
  122. }
  123. childSetEnabled("Teleport", enable_btns);
  124. childSetEnabled("Show on Map", enable_btns);
  125. refreshAggregates();
  126. }
  127. // static
  128. void LLFloaterLandHoldings::processPlacesReply(LLMessageSystem* msg, void**)
  129. {
  130. LLFloaterLandHoldings* self = LLFloaterReg::findTypedInstance<LLFloaterLandHoldings>("land_holdings");
  131. // Is this packet from an old, closed window?
  132. if (!self)
  133. {
  134. return;
  135. }
  136. LLCtrlListInterface *list = self->childGetListInterface("parcel list");
  137. if (!list) return;
  138. // If this is the first packet, clear out the "loading..." indicator
  139. if (!self->mFirstPacketReceived)
  140. {
  141. self->mFirstPacketReceived = TRUE;
  142. list->operateOnAll(LLCtrlSelectionInterface::OP_DELETE);
  143. }
  144. LLUUID owner_id;
  145. std::string name;
  146. std::string desc;
  147. S32 actual_area;
  148. S32 billable_area;
  149. U8 flags;
  150. F32 global_x;
  151. F32 global_y;
  152. std::string sim_name;
  153. std::string land_sku;
  154. std::string land_type;
  155. S32 i;
  156. S32 count = msg->getNumberOfBlocks("QueryData");
  157. for (i = 0; i < count; i++)
  158. {
  159. msg->getUUID("QueryData", "OwnerID", owner_id, i);
  160. msg->getString("QueryData", "Name", name, i);
  161. msg->getString("QueryData", "Desc", desc, i);
  162. msg->getS32("QueryData", "ActualArea", actual_area, i);
  163. msg->getS32("QueryData", "BillableArea", billable_area, i);
  164. msg->getU8("QueryData", "Flags", flags, i);
  165. msg->getF32("QueryData", "GlobalX", global_x, i);
  166. msg->getF32("QueryData", "GlobalY", global_y, i);
  167. msg->getString("QueryData", "SimName", sim_name, i);
  168. if ( msg->getSizeFast(_PREHASH_QueryData, i, _PREHASH_ProductSKU) > 0 )
  169. {
  170. msg->getStringFast( _PREHASH_QueryData, _PREHASH_ProductSKU, land_sku, i);
  171. llinfos << "Land sku: " << land_sku << llendl;
  172. land_type = LLProductInfoRequestManager::instance().getDescriptionForSku(land_sku);
  173. }
  174. else
  175. {
  176. land_sku.clear();
  177. land_type = LLTrans::getString("land_type_unknown");
  178. }
  179. if(owner_id.notNull())
  180. {
  181. self->mActualArea += actual_area;
  182. self->mBillableArea += billable_area;
  183. S32 region_x = llround(global_x) % REGION_WIDTH_UNITS;
  184. S32 region_y = llround(global_y) % REGION_WIDTH_UNITS;
  185. std::string location;
  186. location = llformat("%s (%d, %d)", sim_name.c_str(), region_x, region_y);
  187. std::string area;
  188. if(billable_area == actual_area)
  189. {
  190. area = llformat("%d", billable_area);
  191. }
  192. else
  193. {
  194. area = llformat("%d / %d", billable_area, actual_area);
  195. }
  196. std::string hidden;
  197. hidden = llformat("%f %f", global_x, global_y);
  198. LLSD element;
  199. element["columns"][0]["column"] = "name";
  200. element["columns"][0]["value"] = name;
  201. element["columns"][0]["font"] = "SANSSERIF";
  202. element["columns"][1]["column"] = "location";
  203. element["columns"][1]["value"] = location;
  204. element["columns"][1]["font"] = "SANSSERIF";
  205. element["columns"][2]["column"] = "area";
  206. element["columns"][2]["value"] = area;
  207. element["columns"][2]["font"] = "SANSSERIF";
  208. element["columns"][3]["column"] = "type";
  209. element["columns"][3]["value"] = land_type;
  210. element["columns"][3]["font"] = "SANSSERIF";
  211. // hidden is always last column
  212. element["columns"][4]["column"] = "hidden";
  213. element["columns"][4]["value"] = hidden;
  214. list->addElement(element);
  215. }
  216. }
  217. self->refreshAggregates();
  218. }
  219. void LLFloaterLandHoldings::buttonCore(S32 which)
  220. {
  221. LLScrollListCtrl *list = getChild<LLScrollListCtrl>("parcel list");
  222. if (!list) return;
  223. S32 index = list->getFirstSelectedIndex();
  224. if (index < 0) return;
  225. // hidden is always last column
  226. std::string location = list->getSelectedItemLabel(list->getNumColumns()-1);
  227. F32 global_x = 0.f;
  228. F32 global_y = 0.f;
  229. sscanf(location.c_str(), "%f %f", &global_x, &global_y);
  230. // Hack: Use the agent's z-height
  231. F64 global_z = gAgent.getPositionGlobal().mdV[VZ];
  232. LLVector3d pos_global(global_x, global_y, global_z);
  233. LLFloaterWorldMap* floater_world_map = LLFloaterWorldMap::getInstance();
  234. switch(which)
  235. {
  236. case 0:
  237. gAgent.teleportViaLocation(pos_global);
  238. if(floater_world_map) floater_world_map->trackLocation(pos_global);
  239. break;
  240. case 1:
  241. if(floater_world_map) floater_world_map->trackLocation(pos_global);
  242. LLFloaterReg::showInstance("world_map", "center");
  243. break;
  244. default:
  245. break;
  246. }
  247. }
  248. // static
  249. void LLFloaterLandHoldings::onClickTeleport(void* data)
  250. {
  251. LLFloaterLandHoldings* self = (LLFloaterLandHoldings*)data;
  252. self->buttonCore(0);
  253. self->closeFloater();
  254. }
  255. // static
  256. void LLFloaterLandHoldings::onClickMap(void* data)
  257. {
  258. LLFloaterLandHoldings* self = (LLFloaterLandHoldings*)data;
  259. self->buttonCore(1);
  260. }
  261. // static
  262. void LLFloaterLandHoldings::onGrantList(void* data)
  263. {
  264. LLFloaterLandHoldings* self = (LLFloaterLandHoldings*)data;
  265. LLCtrlSelectionInterface *list = self->childGetSelectionInterface("grant list");
  266. if (!list) return;
  267. LLUUID group_id = list->getCurrentID();
  268. if (group_id.notNull())
  269. {
  270. LLGroupActions::show(group_id);
  271. }
  272. }
  273. void LLFloaterLandHoldings::refreshAggregates()
  274. {
  275. S32 allowed_area = gStatusBar->getSquareMetersCredit();
  276. S32 current_area = gStatusBar->getSquareMetersCommitted();
  277. S32 available_area = gStatusBar->getSquareMetersLeft();
  278. childSetTextArg("allowed_text", "[AREA]", llformat("%d",allowed_area));
  279. childSetTextArg("current_text", "[AREA]", llformat("%d",current_area));
  280. childSetTextArg("available_text", "[AREA]", llformat("%d",available_area));
  281. }