aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra
diff options
context:
space:
mode:
authorMcCabe Maxsted2009-03-22 12:27:26 -0700
committerMcCabe Maxsted2009-03-22 12:27:26 -0700
commitca7fb9c8bbc1fab2f5ed0c4940ffa12be0ad542f (patch)
treea19b3c1d8e021ffb8187a5032fc0a7cd9a9da276 /linden/indra
parentRemoved slviewer-0-v12160-RememberStatsPosAndSize.patch (diff)
downloadmeta-impy-ca7fb9c8bbc1fab2f5ed0c4940ffa12be0ad542f.zip
meta-impy-ca7fb9c8bbc1fab2f5ed0c4940ffa12be0ad542f.tar.gz
meta-impy-ca7fb9c8bbc1fab2f5ed0c4940ffa12be0ad542f.tar.bz2
meta-impy-ca7fb9c8bbc1fab2f5ed0c4940ffa12be0ad542f.tar.xz
Removed slviewer-0-v12160-VisitedLandmarks.patch
Diffstat (limited to 'linden/indra')
-rw-r--r--linden/indra/newview/llfloaterurldisplay.cpp3
-rw-r--r--linden/indra/newview/llinventorybridge.cpp13
-rw-r--r--linden/indra/newview/llpanelinventory.cpp6
-rw-r--r--linden/indra/newview/llpanelplace.cpp6
-rw-r--r--linden/indra/newview/llpanelplace.h2
-rw-r--r--linden/indra/newview/llpreviewlandmark.cpp2
-rw-r--r--linden/indra/newview/llviewermessage.cpp6
7 files changed, 13 insertions, 25 deletions
diff --git a/linden/indra/newview/llfloaterurldisplay.cpp b/linden/indra/newview/llfloaterurldisplay.cpp
index 457d8b6..563eaf6 100644
--- a/linden/indra/newview/llfloaterurldisplay.cpp
+++ b/linden/indra/newview/llfloaterurldisplay.cpp
@@ -75,8 +75,7 @@ void LLFloaterURLDisplay::displayParcelInfo(U64 region_handle, const LLVector3&
75 75
76 LLUUID region_id; // don't know this 76 LLUUID region_id; // don't know this
77 LLUUID landmark_asset_id; // don't know this either 77 LLUUID landmark_asset_id; // don't know this either
78 LLUUID landmark_item_id; // don't know this either 78 mPlacePanel->displayParcelInfo(pos_local, landmark_asset_id, region_id, pos_global);
79 mPlacePanel->displayParcelInfo(pos_local, landmark_asset_id, landmark_item_id, region_id, pos_global);
80 79
81 this->setVisible(true); 80 this->setVisible(true);
82 this->setFrontmost(true); 81 this->setFrontmost(true);
diff --git a/linden/indra/newview/llinventorybridge.cpp b/linden/indra/newview/llinventorybridge.cpp
index 9506786..34277f7 100644
--- a/linden/indra/newview/llinventorybridge.cpp
+++ b/linden/indra/newview/llinventorybridge.cpp
@@ -2606,7 +2606,7 @@ void LLLandmarkBridge::performAction(LLFolderView* folder, LLInventoryModel* mod
2606 // because you'll probably arrive at a telehub instead 2606 // because you'll probably arrive at a telehub instead
2607 if( gFloaterWorldMap ) 2607 if( gFloaterWorldMap )
2608 { 2608 {
2609 gFloaterWorldMap->trackLandmark(item->getUUID()); // remember this must be the item UUID, not the asset UUID 2609 gFloaterWorldMap->trackLandmark( item->getAssetUUID() );
2610 } 2610 }
2611 } 2611 }
2612 } 2612 }
@@ -2651,19 +2651,20 @@ void open_landmark(LLViewerInventoryItem* inv_item,
2651 2651
2652static void open_landmark_callback(S32 option, void* data) 2652static void open_landmark_callback(S32 option, void* data)
2653{ 2653{
2654 LLInventoryItem* itemp = (LLInventoryItem*)data; 2654 LLUUID* asset_idp = (LLUUID*)data;
2655 if (option == 0) 2655 if (option == 0)
2656 { 2656 {
2657 // HACK: This is to demonstrate teleport on double click for landmarks 2657 // HACK: This is to demonstrate teleport on double click for landmarks
2658 gAgent.teleportViaLandmark( itemp->getAssetUUID() ); 2658 gAgent.teleportViaLandmark( *asset_idp );
2659 2659
2660 // we now automatically track the landmark you're teleporting to 2660 // we now automatically track the landmark you're teleporting to
2661 // because you'll probably arrive at a telehub instead 2661 // because you'll probably arrive at a telehub instead
2662 if( gFloaterWorldMap ) 2662 if( gFloaterWorldMap )
2663 { 2663 {
2664 gFloaterWorldMap->trackLandmark( itemp->getUUID() ); // remember this is the item UUID not the asset UUID 2664 gFloaterWorldMap->trackLandmark( *asset_idp );
2665 } 2665 }
2666 } 2666 }
2667 delete asset_idp;
2667} 2668}
2668 2669
2669void LLLandmarkBridge::openItem() 2670void LLLandmarkBridge::openItem()
@@ -2674,9 +2675,9 @@ void LLLandmarkBridge::openItem()
2674 // Opening (double-clicking) a landmark immediately teleports, 2675 // Opening (double-clicking) a landmark immediately teleports,
2675 // but warns you the first time. 2676 // but warns you the first time.
2676 // open_landmark(item, std::string(" ") + getPrefix() + item->getName(), FALSE); 2677 // open_landmark(item, std::string(" ") + getPrefix() + item->getName(), FALSE);
2678 LLUUID* asset_idp = new LLUUID(item->getAssetUUID());
2677 LLAlertDialog::showXml("TeleportFromLandmark", 2679 LLAlertDialog::showXml("TeleportFromLandmark",
2678 // send the full inventory item so the callback can use both asset UUID and inventory item id 2680 open_landmark_callback, (void*)asset_idp);
2679 open_landmark_callback, (void*)item);
2680 } 2681 }
2681} 2682}
2682 2683
diff --git a/linden/indra/newview/llpanelinventory.cpp b/linden/indra/newview/llpanelinventory.cpp
index 631733a..7277f05 100644
--- a/linden/indra/newview/llpanelinventory.cpp
+++ b/linden/indra/newview/llpanelinventory.cpp
@@ -1080,11 +1080,7 @@ LLTaskLandmarkBridge::LLTaskLandmarkBridge(
1080 1080
1081LLUIImagePtr LLTaskLandmarkBridge::getIcon() const 1081LLUIImagePtr LLTaskLandmarkBridge::getIcon() const
1082{ 1082{
1083 LLInventoryItem* item = findItem(); 1083 return get_item_icon(LLAssetType::AT_LANDMARK, LLInventoryType::IT_LANDMARK, 0, FALSE);
1084 BOOL visited = FALSE;
1085 if(item->getFlags() & LLInventoryItem::II_FLAGS_LANDMARK_VISITED) visited=TRUE;
1086 // attachment point parameter in get_item_icon is used for visited/unvisited landmark
1087 return get_item_icon(LLAssetType::AT_LANDMARK, LLInventoryType::IT_LANDMARK, visited, FALSE);
1088} 1084}
1089 1085
1090 1086
diff --git a/linden/indra/newview/llpanelplace.cpp b/linden/indra/newview/llpanelplace.cpp
index 42134f3..d8813b3 100644
--- a/linden/indra/newview/llpanelplace.cpp
+++ b/linden/indra/newview/llpanelplace.cpp
@@ -333,7 +333,6 @@ void LLPanelPlace::processParcelInfoReply(LLMessageSystem *msg, void **)
333 333
334void LLPanelPlace::displayParcelInfo(const LLVector3& pos_region, 334void LLPanelPlace::displayParcelInfo(const LLVector3& pos_region,
335 const LLUUID& landmark_asset_id, 335 const LLUUID& landmark_asset_id,
336 const LLUUID& landmark_item_id, // item_id to be able to send map correct id
337 const LLUUID& region_id, 336 const LLUUID& region_id,
338 const LLVector3d& pos_global) 337 const LLVector3d& pos_global)
339{ 338{
@@ -341,7 +340,6 @@ void LLPanelPlace::displayParcelInfo(const LLVector3& pos_region,
341 mPosRegion = pos_region; 340 mPosRegion = pos_region;
342 mPosGlobal = pos_global; 341 mPosGlobal = pos_global;
343 mLandmarkAssetID = landmark_asset_id; 342 mLandmarkAssetID = landmark_asset_id;
344 mLandmarkItemID = landmark_item_id;
345 std::string url = gAgent.getRegion()->getCapability("RemoteParcelRequest"); 343 std::string url = gAgent.getRegion()->getCapability("RemoteParcelRequest");
346 if (!url.empty()) 344 if (!url.empty())
347 { 345 {
@@ -381,8 +379,8 @@ void LLPanelPlace::onClickTeleport(void* data)
381 if(self->mLandmarkAssetID.notNull()) 379 if(self->mLandmarkAssetID.notNull())
382 { 380 {
383 gAgent.teleportViaLandmark(self->mLandmarkAssetID); 381 gAgent.teleportViaLandmark(self->mLandmarkAssetID);
384 // remember this must be an inventory item id, not an asset UUID 382 gFloaterWorldMap->trackLandmark(self->mLandmarkAssetID);
385 gFloaterWorldMap->trackLandmark(self->mLandmarkItemID); 383
386 } 384 }
387 else if (!self->mPosGlobal.isExactlyZero()) 385 else if (!self->mPosGlobal.isExactlyZero())
388 { 386 {
diff --git a/linden/indra/newview/llpanelplace.h b/linden/indra/newview/llpanelplace.h
index 0478d93..df53013 100644
--- a/linden/indra/newview/llpanelplace.h
+++ b/linden/indra/newview/llpanelplace.h
@@ -70,7 +70,6 @@ public:
70 void sendParcelInfoRequest(); 70 void sendParcelInfoRequest();
71 void displayParcelInfo(const LLVector3& pos_region, 71 void displayParcelInfo(const LLVector3& pos_region,
72 const LLUUID& landmark_asset_id, 72 const LLUUID& landmark_asset_id,
73 const LLUUID& landmark_item_id, // so we can send map floater the correct inventory item id
74 const LLUUID& region_id, 73 const LLUUID& region_id,
75 const LLVector3d& pos_global); 74 const LLVector3d& pos_global);
76 static void processParcelInfoReply(LLMessageSystem* msg, void**); 75 static void processParcelInfoReply(LLMessageSystem* msg, void**);
@@ -91,7 +90,6 @@ protected:
91 LLUUID mRequestedID; 90 LLUUID mRequestedID;
92 LLUUID mRegionID; 91 LLUUID mRegionID;
93 LLUUID mLandmarkAssetID; 92 LLUUID mLandmarkAssetID;
94 LLUUID mLandmarkItemID;
95 // Absolute position of the location for teleport, may not 93 // Absolute position of the location for teleport, may not
96 // be available (hence zero) 94 // be available (hence zero)
97 LLVector3d mPosGlobal; 95 LLVector3d mPosGlobal;
diff --git a/linden/indra/newview/llpreviewlandmark.cpp b/linden/indra/newview/llpreviewlandmark.cpp
index 3a92f5a..20b0ee5 100644
--- a/linden/indra/newview/llpreviewlandmark.cpp
+++ b/linden/indra/newview/llpreviewlandmark.cpp
@@ -189,7 +189,7 @@ void LLPreviewLandmark::draw()
189 LLUUID region_id; 189 LLUUID region_id;
190 mLandmark->getRegionID(region_id); // might find null? 190 mLandmark->getRegionID(region_id); // might find null?
191 LLVector3d pos_global = getPositionGlobal(); // might be 0 191 LLVector3d pos_global = getPositionGlobal(); // might be 0
192 mPlacePanel->displayParcelInfo(pos_region, landmark_asset_id, getItem()->getUUID(), region_id, pos_global); 192 mPlacePanel->displayParcelInfo(pos_region, landmark_asset_id, region_id, pos_global);
193 } 193 }
194 } 194 }
195 195
diff --git a/linden/indra/newview/llviewermessage.cpp b/linden/indra/newview/llviewermessage.cpp
index 86eca8f..221de59 100644
--- a/linden/indra/newview/llviewermessage.cpp
+++ b/linden/indra/newview/llviewermessage.cpp
@@ -2768,11 +2768,7 @@ void process_agent_movement_complete(LLMessageSystem* msg, void**)
2768 LLVector3 beacon_dir(agent_pos.mV[VX] - (F32)fmod(beacon_pos.mdV[VX], 256.0), agent_pos.mV[VY] - (F32)fmod(beacon_pos.mdV[VY], 256.0), 0); 2768 LLVector3 beacon_dir(agent_pos.mV[VX] - (F32)fmod(beacon_pos.mdV[VX], 256.0), agent_pos.mV[VY] - (F32)fmod(beacon_pos.mdV[VY], 256.0), 0);
2769 if (beacon_dir.magVecSquared() < 25.f) 2769 if (beacon_dir.magVecSquared() < 25.f)
2770 { 2770 {
2771 // do not stop tracking landmarks here, so they can properly be marked as visited in LLTracker() 2771 LLTracker::stopTracking(NULL);
2772 if(LLTracker::getTrackingStatus()!=LLTracker::TRACKING_LANDMARK)
2773 {
2774 LLTracker::stopTracking(NULL);
2775 }
2776 } 2772 }
2777 else if ( is_teleport ) 2773 else if ( is_teleport )
2778 { 2774 {