summaryrefslogtreecommitdiff
path: root/indra/newview/llattachmentsmgr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llattachmentsmgr.cpp')
-rwxr-xr-xindra/newview/llattachmentsmgr.cpp97
1 files changed, 90 insertions, 7 deletions
diff --git a/indra/newview/llattachmentsmgr.cpp b/indra/newview/llattachmentsmgr.cpp
index 256980eb04..a38bae207d 100755
--- a/indra/newview/llattachmentsmgr.cpp
+++ b/indra/newview/llattachmentsmgr.cpp
@@ -28,6 +28,7 @@
#include "llattachmentsmgr.h"
#include "llagent.h"
+#include "llappearancemgr.h"
#include "llinventorymodel.h"
#include "lltooldraganddrop.h" // pack_permissions_slam
#include "llviewerinventory.h"
@@ -47,6 +48,10 @@ void LLAttachmentsMgr::addAttachment(const LLUUID& item_id,
const U8 attachment_pt,
const BOOL add)
{
+ LLViewerInventoryItem *item = gInventory.getItem(item_id);
+ LL_DEBUGS("Avatar") << "ATT adding attachment to mPendingAttachments "
+ << (item ? item->getName() : "UNKNOWN") << " id " << item_id << LL_ENDL;
+
AttachmentsInfo attachment;
attachment.mItemID = item_id;
attachment.mAttachmentPt = attachment_pt;
@@ -68,12 +73,90 @@ void LLAttachmentsMgr::onIdle()
return;
}
- S32 obj_count = mPendingAttachments.size();
+ linkPendingAttachments();
+}
+
+class LLAttachAfterLinkCallback: public LLInventoryCallback
+{
+public:
+ LLAttachAfterLinkCallback(const LLAttachmentsMgr::attachments_vec_t& to_link_and_attach):
+ mToLinkAndAttach(to_link_and_attach)
+ {
+ }
+
+ ~LLAttachAfterLinkCallback()
+ {
+ LL_DEBUGS("Avatar") << "destructor" << LL_ENDL;
+ for (LLAttachmentsMgr::attachments_vec_t::const_iterator it = mToLinkAndAttach.begin();
+ it != mToLinkAndAttach.end(); ++it)
+ {
+ const LLAttachmentsMgr::AttachmentsInfo& att_info = *it;
+ if (!LLAppearanceMgr::instance().isLinkedInCOF(att_info.mItemID))
+ {
+ LLViewerInventoryItem *item = gInventory.getItem(att_info.mItemID);
+ LL_WARNS() << "ATT COF link creation failed for att item " << (item ? item->getName() : "UNKNOWN") << " id "
+ << att_info.mItemID << LL_ENDL;
+ }
+ }
+ LLAppearanceMgr::instance().requestServerAppearanceUpdate();
+ LLAttachmentsMgr::instance().requestAttachments(mToLinkAndAttach);
+ }
+
+ /* virtual */ void fire(const LLUUID& inv_item)
+ {
+ LL_DEBUGS("Avatar") << inv_item << LL_ENDL;
+ }
+
+private:
+ LLAttachmentsMgr::attachments_vec_t mToLinkAndAttach;
+};
+
+void LLAttachmentsMgr::linkPendingAttachments()
+{
+ if (mPendingAttachments.size())
+ {
+ LLPointer<LLInventoryCallback> cb = new LLAttachAfterLinkCallback(mPendingAttachments);
+ LLInventoryObject::const_object_list_t inv_items_to_link;
+ for (attachments_vec_t::const_iterator it = mPendingAttachments.begin();
+ it != mPendingAttachments.end(); ++it)
+ {
+ const AttachmentsInfo& att_info = *it;
+ LLViewerInventoryItem *item = gInventory.getItem(att_info.mItemID);
+ if (item)
+ {
+ inv_items_to_link.push_back(item);
+ }
+ else
+ {
+ LL_WARNS() << "ATT unable to link requested attachment " << att_info.mItemID
+ << ", item not found in inventory" << LL_ENDL;
+ }
+ }
+ link_inventory_array(LLAppearanceMgr::instance().getCOF(), inv_items_to_link, cb);
+
+ mPendingAttachments.clear();
+ }
+
+}
+
+// FIXME this is basically the same code as LLAgentWearables::userAttachMultipleAttachments(),
+// should consolidate.
+void LLAttachmentsMgr::requestAttachments(const attachments_vec_t& attachment_requests)
+{
+ // Make sure we got a region before trying anything else
+ if( !gAgent.getRegion() )
+ {
+ return;
+ }
+
+ S32 obj_count = attachment_requests.size();
if (obj_count == 0)
{
return;
}
-
+ LL_DEBUGS("Avatar") << "ATT [RezMultipleAttachmentsFromInv] attaching multiple from attachment_requests,"
+ " total obj_count " << obj_count << LL_ENDL;
+
// Limit number of packets to send
const S32 MAX_PACKETS_TO_SEND = 10;
const S32 OBJECTS_PER_PACKET = 4;
@@ -89,8 +172,8 @@ void LLAttachmentsMgr::onIdle()
S32 i = 0;
- for (attachments_vec_t::const_iterator iter = mPendingAttachments.begin();
- iter != mPendingAttachments.end();
+ for (attachments_vec_t::const_iterator iter = attachment_requests.begin();
+ iter != attachment_requests.end();
++iter)
{
if( 0 == (i % OBJECTS_PER_PACKET) )
@@ -110,9 +193,11 @@ void LLAttachmentsMgr::onIdle()
LLViewerInventoryItem* item = gInventory.getItem(attachment.mItemID);
if (!item)
{
- LL_INFOS() << "Attempted to add non-existant item ID:" << attachment.mItemID << LL_ENDL;
+ LL_INFOS() << "Attempted to add non-existent item ID:" << attachment.mItemID << LL_ENDL;
continue;
}
+ LL_DEBUGS("Avatar") << "ATT requesting from attachment_requests " << item->getName()
+ << " " << item->getLinkedUUID() << LL_ENDL;
S32 attachment_pt = attachment.mAttachmentPt;
if (attachment.mAdd)
attachment_pt |= ATTACHMENT_ADD;
@@ -132,6 +217,4 @@ void LLAttachmentsMgr::onIdle()
}
i++;
}
-
- mPendingAttachments.clear();
}