Imported existing code
This commit is contained in:
347
indra/newview/llfloaterlandholdings.cpp
Normal file
347
indra/newview/llfloaterlandholdings.cpp
Normal file
@@ -0,0 +1,347 @@
|
||||
/**
|
||||
* @file llfloaterlandholdings.cpp
|
||||
* @brief "My Land" floater showing all your land parcels.
|
||||
*
|
||||
* $LicenseInfo:firstyear=2003&license=viewergpl$
|
||||
*
|
||||
* Copyright (c) 2003-2009, Linden Research, Inc.
|
||||
*
|
||||
* Second Life Viewer Source Code
|
||||
* The source code in this file ("Source Code") is provided by Linden Lab
|
||||
* to you under the terms of the GNU General Public License, version 2.0
|
||||
* ("GPL"), unless you have obtained a separate licensing agreement
|
||||
* ("Other License"), formally executed by you and Linden Lab. Terms of
|
||||
* the GPL can be found in doc/GPL-license.txt in this distribution, or
|
||||
* online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
|
||||
*
|
||||
* There are special exceptions to the terms and conditions of the GPL as
|
||||
* it is applied to this Source Code. View the full text of the exception
|
||||
* in the file doc/FLOSS-exception.txt in this software distribution, or
|
||||
* online at
|
||||
* http://secondlifegrid.net/programs/open_source/licensing/flossexception
|
||||
*
|
||||
* By copying, modifying or distributing this software, you acknowledge
|
||||
* that you have read and understood your obligations described above,
|
||||
* and agree to abide by those obligations.
|
||||
*
|
||||
* ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
|
||||
* WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
|
||||
* COMPLETENESS OR PERFORMANCE.
|
||||
* $/LicenseInfo$
|
||||
*/
|
||||
|
||||
#include "llviewerprecompiledheaders.h"
|
||||
|
||||
#include "llfloaterlandholdings.h"
|
||||
|
||||
#include "indra_constants.h"
|
||||
#include "llfontgl.h"
|
||||
#include "llqueryflags.h"
|
||||
#include "llparcel.h"
|
||||
#include "message.h"
|
||||
|
||||
#include "llagent.h"
|
||||
#include "llbutton.h"
|
||||
#include "llfloatergroupinfo.h"
|
||||
#include "llfloaterworldmap.h"
|
||||
#include "llproductinforequest.h"
|
||||
#include "llscrolllistctrl.h"
|
||||
#include "llstatusbar.h"
|
||||
#include "lltextbox.h"
|
||||
#include "lltrans.h"
|
||||
#include "lluiconstants.h"
|
||||
#include "llviewermessage.h"
|
||||
#include "lluictrlfactory.h"
|
||||
|
||||
// statics
|
||||
LLFloaterLandHoldings* LLFloaterLandHoldings::sInstance = NULL;
|
||||
|
||||
|
||||
// static
|
||||
void LLFloaterLandHoldings::show(void*)
|
||||
{
|
||||
LLFloaterLandHoldings* floater = new LLFloaterLandHoldings();
|
||||
LLUICtrlFactory::getInstance()->buildFloater(floater, "floater_land_holdings.xml");
|
||||
floater->center();
|
||||
|
||||
// query_id null is known to be us
|
||||
const LLUUID& query_id = LLUUID::null;
|
||||
|
||||
// look only for parcels we own
|
||||
U32 query_flags = DFQ_AGENT_OWNED;
|
||||
|
||||
send_places_query(query_id,
|
||||
LLUUID::null,
|
||||
"",
|
||||
query_flags,
|
||||
LLParcel::C_ANY,
|
||||
"");
|
||||
|
||||
// TODO: request updated L$ balance?
|
||||
floater->open(); /* Flawfinder: ignore */
|
||||
}
|
||||
|
||||
|
||||
// protected
|
||||
LLFloaterLandHoldings::LLFloaterLandHoldings()
|
||||
: LLFloater(std::string("land holdings floater")),
|
||||
mActualArea(0),
|
||||
mBillableArea(0),
|
||||
mFirstPacketReceived(FALSE),
|
||||
mSortColumn(""),
|
||||
mSortAscending(TRUE)
|
||||
{
|
||||
// Instance management.
|
||||
sInstance = this;
|
||||
}
|
||||
|
||||
BOOL LLFloaterLandHoldings::postBuild()
|
||||
{
|
||||
childSetAction("Teleport", onClickTeleport, this);
|
||||
childSetAction("Show on Map", onClickMap, this);
|
||||
|
||||
// Grant list
|
||||
childSetDoubleClickCallback("grant list", onGrantList);
|
||||
childSetUserData("grant list", this);
|
||||
|
||||
LLCtrlListInterface *list = childGetListInterface("grant list");
|
||||
if (!list) return TRUE;
|
||||
|
||||
S32 count = gAgent.mGroups.count();
|
||||
for(S32 i = 0; i < count; ++i)
|
||||
{
|
||||
LLUUID id(gAgent.mGroups.get(i).mID);
|
||||
|
||||
LLSD element;
|
||||
element["id"] = id;
|
||||
element["columns"][0]["column"] = "group";
|
||||
element["columns"][0]["value"] = gAgent.mGroups.get(i).mName;
|
||||
element["columns"][0]["font"] = "SANSSERIF";
|
||||
|
||||
LLUIString areastr = getString("area_string");
|
||||
areastr.setArg("[AREA]", llformat("%d", gAgent.mGroups.get(i).mContribution));
|
||||
element["columns"][1]["column"] = "area";
|
||||
element["columns"][1]["value"] = areastr;
|
||||
element["columns"][1]["font"] = "SANSSERIF";
|
||||
|
||||
list->addElement(element, ADD_SORTED);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
// protected
|
||||
LLFloaterLandHoldings::~LLFloaterLandHoldings()
|
||||
{
|
||||
sInstance = NULL;
|
||||
}
|
||||
|
||||
|
||||
void LLFloaterLandHoldings::draw()
|
||||
{
|
||||
refresh();
|
||||
|
||||
LLFloater::draw();
|
||||
}
|
||||
|
||||
|
||||
// public
|
||||
void LLFloaterLandHoldings::refresh()
|
||||
{
|
||||
LLCtrlSelectionInterface *list = childGetSelectionInterface("parcel list");
|
||||
BOOL enable_btns = FALSE;
|
||||
if (list && list->getFirstSelectedIndex()> -1)
|
||||
{
|
||||
enable_btns = TRUE;
|
||||
}
|
||||
|
||||
childSetEnabled("Teleport", enable_btns);
|
||||
childSetEnabled("Show on Map", enable_btns);
|
||||
|
||||
refreshAggregates();
|
||||
}
|
||||
|
||||
|
||||
// static
|
||||
void LLFloaterLandHoldings::processPlacesReply(LLMessageSystem* msg, void**)
|
||||
{
|
||||
LLFloaterLandHoldings* self = sInstance;
|
||||
|
||||
// Is this packet from an old, closed window?
|
||||
if (!self)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
LLCtrlListInterface *list = self->childGetListInterface("parcel list");
|
||||
if (!list) return;
|
||||
|
||||
// If this is the first packet, clear out the "loading..." indicator
|
||||
if (!self->mFirstPacketReceived)
|
||||
{
|
||||
self->mFirstPacketReceived = TRUE;
|
||||
list->operateOnAll(LLCtrlSelectionInterface::OP_DELETE);
|
||||
}
|
||||
|
||||
LLUUID owner_id;
|
||||
std::string name;
|
||||
std::string desc;
|
||||
S32 actual_area;
|
||||
S32 billable_area;
|
||||
U8 flags;
|
||||
F32 global_x;
|
||||
F32 global_y;
|
||||
std::string sim_name;
|
||||
std::string land_sku;
|
||||
std::string land_type;
|
||||
|
||||
S32 i;
|
||||
S32 count = msg->getNumberOfBlocks("QueryData");
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
msg->getUUID("QueryData", "OwnerID", owner_id, i);
|
||||
msg->getString("QueryData", "Name", name, i);
|
||||
msg->getString("QueryData", "Desc", desc, i);
|
||||
msg->getS32("QueryData", "ActualArea", actual_area, i);
|
||||
msg->getS32("QueryData", "BillableArea", billable_area, i);
|
||||
msg->getU8("QueryData", "Flags", flags, i);
|
||||
msg->getF32("QueryData", "GlobalX", global_x, i);
|
||||
msg->getF32("QueryData", "GlobalY", global_y, i);
|
||||
msg->getString("QueryData", "SimName", sim_name, i);
|
||||
|
||||
if ( msg->getSizeFast(_PREHASH_QueryData, i, _PREHASH_ProductSKU) > 0 )
|
||||
{
|
||||
msg->getStringFast( _PREHASH_QueryData, _PREHASH_ProductSKU, land_sku, i);
|
||||
llinfos << "Land sku: " << land_sku << llendl;
|
||||
land_type = LLProductInfoRequestManager::instance().getDescriptionForSku(land_sku);
|
||||
}
|
||||
else
|
||||
{
|
||||
land_sku.clear();
|
||||
land_type = LLTrans::getString("land_type_unknown");
|
||||
}
|
||||
|
||||
self->mActualArea += actual_area;
|
||||
self->mBillableArea += billable_area;
|
||||
|
||||
S32 region_x = llround(global_x) % REGION_WIDTH_UNITS;
|
||||
S32 region_y = llround(global_y) % REGION_WIDTH_UNITS;
|
||||
|
||||
std::string location;
|
||||
location = llformat("%s (%d, %d)", sim_name.c_str(), region_x, region_y);
|
||||
|
||||
std::string area;
|
||||
if(billable_area == actual_area)
|
||||
{
|
||||
area = llformat("%d", billable_area);
|
||||
}
|
||||
else
|
||||
{
|
||||
area = llformat("%d / %d", billable_area, actual_area);
|
||||
}
|
||||
|
||||
std::string hidden;
|
||||
hidden = llformat("%f %f", global_x, global_y);
|
||||
|
||||
LLSD element;
|
||||
element["columns"][0]["column"] = "name";
|
||||
element["columns"][0]["value"] = name;
|
||||
element["columns"][0]["font"] = "SANSSERIF";
|
||||
|
||||
element["columns"][1]["column"] = "location";
|
||||
element["columns"][1]["value"] = location;
|
||||
element["columns"][1]["font"] = "SANSSERIF";
|
||||
|
||||
element["columns"][2]["column"] = "area";
|
||||
element["columns"][2]["value"] = area;
|
||||
element["columns"][2]["font"] = "SANSSERIF";
|
||||
|
||||
element["columns"][3]["column"] = "type";
|
||||
element["columns"][3]["value"] = land_type;
|
||||
element["columns"][3]["font"] = "SANSSERIF";
|
||||
|
||||
// hidden is always last column
|
||||
element["columns"][4]["column"] = "hidden";
|
||||
element["columns"][4]["value"] = hidden;
|
||||
|
||||
list->addElement(element);
|
||||
}
|
||||
|
||||
self->refreshAggregates();
|
||||
}
|
||||
|
||||
void LLFloaterLandHoldings::buttonCore(S32 which)
|
||||
{
|
||||
LLScrollListCtrl *list = getChild<LLScrollListCtrl>("parcel list");
|
||||
if (!list) return;
|
||||
|
||||
S32 index = list->getFirstSelectedIndex();
|
||||
if (index < 0) return;
|
||||
|
||||
// hidden is always last column
|
||||
std::string location = list->getSelectedItemLabel(list->getNumColumns()-1);
|
||||
|
||||
F32 global_x = 0.f;
|
||||
F32 global_y = 0.f;
|
||||
sscanf(location.c_str(), "%f %f", &global_x, &global_y);
|
||||
|
||||
// Hack: Use the agent's z-height
|
||||
F64 global_z = gAgent.getPositionGlobal().mdV[VZ];
|
||||
|
||||
LLVector3d pos_global(global_x, global_y, global_z);
|
||||
|
||||
switch(which)
|
||||
{
|
||||
case 0:
|
||||
gAgent.teleportViaLocation(pos_global);
|
||||
gFloaterWorldMap->trackLocation(pos_global);
|
||||
break;
|
||||
case 1:
|
||||
gFloaterWorldMap->trackLocation(pos_global);
|
||||
LLFloaterWorldMap::show(NULL, TRUE);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// static
|
||||
void LLFloaterLandHoldings::onClickTeleport(void* data)
|
||||
{
|
||||
LLFloaterLandHoldings* self = (LLFloaterLandHoldings*)data;
|
||||
self->buttonCore(0);
|
||||
self->close();
|
||||
}
|
||||
|
||||
|
||||
// static
|
||||
void LLFloaterLandHoldings::onClickMap(void* data)
|
||||
{
|
||||
LLFloaterLandHoldings* self = (LLFloaterLandHoldings*)data;
|
||||
self->buttonCore(1);
|
||||
}
|
||||
|
||||
// static
|
||||
void LLFloaterLandHoldings::onGrantList(void* data)
|
||||
{
|
||||
LLFloaterLandHoldings* self = (LLFloaterLandHoldings*)data;
|
||||
LLCtrlSelectionInterface *list = self->childGetSelectionInterface("grant list");
|
||||
if (!list) return;
|
||||
LLUUID group_id = list->getCurrentID();
|
||||
if (group_id.notNull())
|
||||
{
|
||||
LLFloaterGroupInfo::showFromUUID(group_id);
|
||||
}
|
||||
}
|
||||
|
||||
void LLFloaterLandHoldings::refreshAggregates()
|
||||
{
|
||||
S32 allowed_area = gStatusBar->getSquareMetersCredit();
|
||||
S32 current_area = gStatusBar->getSquareMetersCommitted();
|
||||
S32 available_area = gStatusBar->getSquareMetersLeft();
|
||||
|
||||
childSetTextArg("allowed_text", "[AREA]", llformat("%d",allowed_area));
|
||||
childSetTextArg("current_text", "[AREA]", llformat("%d",current_area));
|
||||
childSetTextArg("available_text", "[AREA]", llformat("%d",available_area));
|
||||
}
|
||||
Reference in New Issue
Block a user