diff options
Diffstat (limited to 'indra/newview')
45 files changed, 485 insertions, 309 deletions
| diff --git a/indra/newview/VIEWER_VERSION.txt b/indra/newview/VIEWER_VERSION.txt index 1523336b0d..ef239df8cd 100644 --- a/indra/newview/VIEWER_VERSION.txt +++ b/indra/newview/VIEWER_VERSION.txt @@ -1 +1 @@ -3.7.29 +3.7.30 diff --git a/indra/newview/llagentwearables.cpp b/indra/newview/llagentwearables.cpp index f06ffb4fb3..5589ab4aa7 100755 --- a/indra/newview/llagentwearables.cpp +++ b/indra/newview/llagentwearables.cpp @@ -633,10 +633,13 @@ void LLAgentWearables::wearableUpdated(LLWearable *wearable, BOOL removed)  		// the versions themselves are compatible. This code can be removed before release.  		if( wearable->getDefinitionVersion() == 24 )  		{ -			wearable->setDefinitionVersion(22); -			U32 index = getWearableIndex(wearable); -			LL_INFOS() << "forcing wearable type " << wearable->getType() << " to version 22 from 24" << LL_ENDL; -			saveWearable(wearable->getType(),index); +			U32 index; +			if (getWearableIndex(wearable,index)) +			{ +				LL_INFOS() << "forcing wearable type " << wearable->getType() << " to version 22 from 24" << LL_ENDL; +				wearable->setDefinitionVersion(22); +				saveWearable(wearable->getType(),index); +			}  		}  		checkWearableAgainstInventory(viewer_wearable); @@ -949,7 +952,7 @@ void LLAgentWearables::removeWearableFinal(const LLWearableType::EType type, boo  			LLViewerWearable* old_wearable = getViewerWearable(type,i);  			if (old_wearable)  			{ -				popWearable(old_wearable); +				eraseWearable(old_wearable);  				old_wearable->removeFromAvatar();  			}  		} @@ -961,7 +964,7 @@ void LLAgentWearables::removeWearableFinal(const LLWearableType::EType type, boo  		if (old_wearable)  		{ -			popWearable(old_wearable); +			eraseWearable(old_wearable);  			old_wearable->removeFromAvatar();  		}  	} @@ -1163,7 +1166,13 @@ bool LLAgentWearables::onSetWearableDialog(const LLSD& notification, const LLSD&  {  	S32 option = LLNotificationsUtil::getSelectedOption(notification, response);  	LLInventoryItem* new_item = gInventory.getItem(notification["payload"]["item_id"].asUUID()); -	U32 index = gAgentWearables.getWearableIndex(wearable); +	U32 index; +	if (!gAgentWearables.getWearableIndex(wearable,index)) +	{ +		LL_WARNS() << "Wearable not found" << LL_ENDL; +		delete wearable; +		return false; +	}  	if (!new_item)  	{  		delete wearable; diff --git a/indra/newview/llagentwearables.h b/indra/newview/llagentwearables.h index 1004482020..7dc23c6402 100755 --- a/indra/newview/llagentwearables.h +++ b/indra/newview/llagentwearables.h @@ -38,6 +38,7 @@  #include "llviewerinventory.h"  #include "llavatarappearancedefines.h"  #include "llwearabledata.h" +#include "llinitdestroyclass.h"  class LLInventoryItem;  class LLVOAvatarSelf; diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index a64d5b50b3..b3317e937e 100755 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -1338,90 +1338,113 @@ void wear_on_avatar_cb(const LLUUID& inv_item, bool do_replace = false)  	}  } -bool LLAppearanceMgr::wearItemOnAvatar(const LLUUID& item_id_to_wear, +void LLAppearanceMgr::wearItemsOnAvatar(const uuid_vec_t& item_ids_to_wear, +                                        bool do_update, +                                        bool replace, +                                        LLPointer<LLInventoryCallback> cb) +{ +    bool first = true; + +    LLInventoryObject::const_object_list_t items_to_link; + +    for (uuid_vec_t::const_iterator it = item_ids_to_wear.begin(); +         it != item_ids_to_wear.end(); +         ++it) +    { +        replace = first && replace; +        first = false; + +        const LLUUID& item_id_to_wear = *it; + +        if (item_id_to_wear.isNull()) continue; + +        LLViewerInventoryItem* item_to_wear = gInventory.getItem(item_id_to_wear); +        if (!item_to_wear) continue; + +        if (gInventory.isObjectDescendentOf(item_to_wear->getUUID(), gInventory.getLibraryRootFolderID())) +        { +            LLPointer<LLInventoryCallback> cb = new LLBoostFuncInventoryCallback(boost::bind(wear_on_avatar_cb,_1,replace)); +            copy_inventory_item(gAgent.getID(), item_to_wear->getPermissions().getOwner(), item_to_wear->getUUID(), LLUUID::null, std::string(), cb); +            continue; +        }  +        else if (!gInventory.isObjectDescendentOf(item_to_wear->getUUID(), gInventory.getRootFolderID())) +        { +            continue; // not in library and not in agent's inventory +        } +        else if (gInventory.isObjectDescendentOf(item_to_wear->getUUID(), gInventory.findCategoryUUIDForType(LLFolderType::FT_TRASH))) +        { +            LLNotificationsUtil::add("CannotWearTrash"); +            continue; +        } +        else if (isLinkedInCOF(item_to_wear->getUUID())) // EXT-84911 +        { +            continue; +        } + +        switch (item_to_wear->getType()) +        { +            case LLAssetType::AT_CLOTHING: +            { +                if (gAgentWearables.areWearablesLoaded()) +                { +                    if (!cb && do_update) +                    { +                        cb = new LLUpdateAppearanceAndEditWearableOnDestroy(item_id_to_wear); +                    } +                    LLWearableType::EType type = item_to_wear->getWearableType(); +                    S32 wearable_count = gAgentWearables.getWearableCount(type); +                    if ((replace && wearable_count != 0) || !gAgentWearables.canAddWearable(type)) +                    { +                        LLUUID item_id = gAgentWearables.getWearableItemID(item_to_wear->getWearableType(), +                                                                           wearable_count-1); +                        removeCOFItemLinks(item_id, cb); +                    } +                     +                    items_to_link.push_back(item_to_wear); +                }  +            } +            break; + +            case LLAssetType::AT_BODYPART: +            { +                // TODO: investigate wearables may not be loaded at this point EXT-8231 +                 +                // Remove the existing wearables of the same type. +                // Remove existing body parts anyway because we must not be able to wear e.g. two skins. +                removeCOFLinksOfType(item_to_wear->getWearableType()); +                if (!cb && do_update) +                { +                    cb = new LLUpdateAppearanceAndEditWearableOnDestroy(item_id_to_wear); +                } +                items_to_link.push_back(item_to_wear); +            } +            break; +                 +            case LLAssetType::AT_OBJECT: +            { +                rez_attachment(item_to_wear, NULL, replace); +            } +            break; + +            default: continue; +        } +    } + +    // Batch up COF link creation - more efficient if using AIS. +    if (items_to_link.size()) +    { +        link_inventory_array(getCOF(), items_to_link, cb);  +    } +} + +void LLAppearanceMgr::wearItemOnAvatar(const LLUUID& item_id_to_wear,  									   bool do_update,  									   bool replace,  									   LLPointer<LLInventoryCallback> cb)  { - -	if (item_id_to_wear.isNull()) return false; - -	// *TODO: issue with multi-wearable should be fixed: -	// in this case this method will be called N times - loading started for each item -	// and than N times will be called - loading completed for each item. -	// That means subscribers will be notified that loading is done after first item in a batch is worn. -	// (loading indicator disappears for example before all selected items are worn) -	// Have not fix this issue for 2.1 because of stability reason. EXT-7777. - -	// Disabled for now because it is *not* acceptable to call updateAppearanceFromCOF() multiple times -//	gAgentWearables.notifyLoadingStarted(); - -	LLViewerInventoryItem* item_to_wear = gInventory.getItem(item_id_to_wear); -	if (!item_to_wear) return false; - -	if (gInventory.isObjectDescendentOf(item_to_wear->getUUID(), gInventory.getLibraryRootFolderID())) -	{ -		LLPointer<LLInventoryCallback> cb = new LLBoostFuncInventoryCallback(boost::bind(wear_on_avatar_cb,_1,replace)); -		copy_inventory_item(gAgent.getID(), item_to_wear->getPermissions().getOwner(), item_to_wear->getUUID(), LLUUID::null, std::string(), cb); -		return false; -	}  -	else if (!gInventory.isObjectDescendentOf(item_to_wear->getUUID(), gInventory.getRootFolderID())) -	{ -		return false; // not in library and not in agent's inventory -	} -	else if (gInventory.isObjectDescendentOf(item_to_wear->getUUID(), gInventory.findCategoryUUIDForType(LLFolderType::FT_TRASH))) -	{ -		LLNotificationsUtil::add("CannotWearTrash"); -		return false; -	} -	else if (isLinkedInCOF(item_to_wear->getUUID())) // EXT-84911 -	{ -		return false; -	} - -	switch (item_to_wear->getType()) -	{ -		case LLAssetType::AT_CLOTHING: -		if (gAgentWearables.areWearablesLoaded()) -		{ -			if (!cb && do_update) -			{ -				cb = new LLUpdateAppearanceAndEditWearableOnDestroy(item_id_to_wear); -			} -			S32 wearable_count = gAgentWearables.getWearableCount(item_to_wear->getWearableType()); -			if ((replace && wearable_count != 0) || -				(wearable_count >= LLAgentWearables::MAX_CLOTHING_PER_TYPE) ) -			{ -				LLUUID item_id = gAgentWearables.getWearableItemID(item_to_wear->getWearableType(), -																   wearable_count-1); -				removeCOFItemLinks(item_id, cb); -			} - -			addCOFItemLink(item_to_wear, cb); -		}  -		break; - -		case LLAssetType::AT_BODYPART: -		// TODO: investigate wearables may not be loaded at this point EXT-8231 -		 -		// Remove the existing wearables of the same type. -		// Remove existing body parts anyway because we must not be able to wear e.g. two skins. -		removeCOFLinksOfType(item_to_wear->getWearableType()); -		if (!cb && do_update) -		{ -			cb = new LLUpdateAppearanceAndEditWearableOnDestroy(item_id_to_wear); -		} -		addCOFItemLink(item_to_wear, cb); -		break; - -		case LLAssetType::AT_OBJECT: -		rez_attachment(item_to_wear, NULL, replace); -		break; - -		default: return false;; -	} - -	return true; +    uuid_vec_t ids; +    ids.push_back(item_id_to_wear); +    wearItemsOnAvatar(ids, do_update, replace, cb);  }  // Update appearance from outfit folder. @@ -1782,6 +1805,49 @@ bool LLAppearanceMgr::getCanReplaceCOF(const LLUUID& outfit_cat_id)  	return items.size() > 0;  } +// Moved from LLWearableList::ContextMenu for wider utility. +bool LLAppearanceMgr::canAddWearables(const uuid_vec_t& item_ids) +{ +	// TODO: investigate wearables may not be loaded at this point EXT-8231 + +	U32 n_objects = 0; +	U32 n_clothes = 0; + +	// Count given clothes (by wearable type) and objects. +	for (uuid_vec_t::const_iterator it = item_ids.begin(); it != item_ids.end(); ++it) +	{ +		LLViewerInventoryItem* item = gInventory.getItem(*it); +		if (!item) +		{ +			return false; +		} + +		if (item->getType() == LLAssetType::AT_OBJECT) +		{ +			++n_objects; +		} +		else if (item->getType() == LLAssetType::AT_CLOTHING) +		{ +			++n_clothes; +		} +		else +		{ +			LL_WARNS() << "Unexpected wearable type" << LL_ENDL; +			return false; +		} +	} + +	// Check whether we can add all the objects. +	if (!isAgentAvatarValid() || !gAgentAvatarp->canAttachMoreObjects(n_objects)) +	{ +		return false; +	} + +	// Check whether we can add all the clothes. +    U32 sum_clothes = n_clothes + gAgentWearables.getClothingLayerCount(); +    return sum_clothes <= LLAgentWearables::MAX_CLOTHING_LAYERS; +} +  void LLAppearanceMgr::purgeBaseOutfitLink(const LLUUID& category, LLPointer<LLInventoryCallback> cb)  {  	LLInventoryModel::cat_array_t cats; @@ -1804,25 +1870,39 @@ void LLAppearanceMgr::purgeBaseOutfitLink(const LLUUID& category, LLPointer<LLIn  // Keep the last N wearables of each type.  For viewer 2.0, N is 1 for  // both body parts and clothing items.  void LLAppearanceMgr::filterWearableItems( -	LLInventoryModel::item_array_t& items, S32 max_per_type) -{ -	// Divvy items into arrays by wearable type. -	std::vector<LLInventoryModel::item_array_t> items_by_type(LLWearableType::WT_COUNT); -	divvyWearablesByType(items, items_by_type); - -	// rebuild items list, retaining the last max_per_type of each array -	items.clear(); -	for (S32 i=0; i<LLWearableType::WT_COUNT; i++) -	{ -		S32 size = items_by_type[i].size(); -		if (size <= 0) -			continue; -		S32 start_index = llmax(0,size-max_per_type); -		for (S32 j = start_index; j<size; j++) -		{ -			items.push_back(items_by_type[i][j]); -		} -	} +	LLInventoryModel::item_array_t& items, S32 max_per_type, S32 max_total) +{ +    // Restrict by max total items first. +    if ((max_total > 0) && (items.size() > max_total)) +    { +        LLInventoryModel::item_array_t items_to_keep; +        for (S32 i=0; i<max_total; i++) +        { +            items_to_keep.push_back(items[i]); +        } +        items = items_to_keep; +    } + +    if (max_per_type > 0) +    { +        // Divvy items into arrays by wearable type. +        std::vector<LLInventoryModel::item_array_t> items_by_type(LLWearableType::WT_COUNT); +        divvyWearablesByType(items, items_by_type); + +        // rebuild items list, retaining the last max_per_type of each array +        items.clear(); +        for (S32 i=0; i<LLWearableType::WT_COUNT; i++) +        { +            S32 size = items_by_type[i].size(); +            if (size <= 0) +                continue; +            S32 start_index = llmax(0,size-max_per_type); +            for (S32 j = start_index; j<size; j++) +            { +                items.push_back(items_by_type[i][j]); +            } +        } +    }  }  void LLAppearanceMgr::updateCOF(const LLUUID& category, bool append) @@ -1864,7 +1944,7 @@ void LLAppearanceMgr::updateCOF(const LLUUID& category, bool append)  		reverse(body_items.begin(), body_items.end());  	// Reduce body items to max of one per type.  	removeDuplicateItems(body_items); -	filterWearableItems(body_items, 1); +	filterWearableItems(body_items, 1, 0);  	// - Wearables: include COF contents only if appending.  	LLInventoryModel::item_array_t wear_items; @@ -1873,7 +1953,7 @@ void LLAppearanceMgr::updateCOF(const LLUUID& category, bool append)  	getDescendentsOfAssetType(category, wear_items, LLAssetType::AT_CLOTHING);  	// Reduce wearables to max of one per type.  	removeDuplicateItems(wear_items); -	filterWearableItems(wear_items, LLAgentWearables::MAX_CLOTHING_PER_TYPE); +	filterWearableItems(wear_items, 0, LLAgentWearables::MAX_CLOTHING_LAYERS);  	// - Attachments: include COF contents only if appending.  	LLInventoryModel::item_array_t obj_items; @@ -2062,7 +2142,8 @@ void item_array_diff(LLInventoryModel::item_array_t& full_list,  S32 LLAppearanceMgr::findExcessOrDuplicateItems(const LLUUID& cat_id,  												 LLAssetType::EType type, -												 S32 max_items, +												 S32 max_items_per_type, +												 S32 max_items_total,  												 LLInventoryObject::object_list_t& items_to_kill)  {  	S32 to_kill_count = 0; @@ -2071,9 +2152,9 @@ S32 LLAppearanceMgr::findExcessOrDuplicateItems(const LLUUID& cat_id,  	getDescendentsOfAssetType(cat_id, items, type);  	LLInventoryModel::item_array_t curr_items = items;  	removeDuplicateItems(items); -	if (max_items > 0) +	if (max_items_per_type > 0 || max_items_total > 0)  	{ -		filterWearableItems(items, max_items); +		filterWearableItems(items, max_items_per_type, max_items_total);  	}  	LLInventoryModel::item_array_t kill_items;  	item_array_diff(curr_items,items,kill_items); @@ -2092,11 +2173,11 @@ void LLAppearanceMgr::findAllExcessOrDuplicateItems(const LLUUID& cat_id,  													LLInventoryObject::object_list_t& items_to_kill)  {  	findExcessOrDuplicateItems(cat_id,LLAssetType::AT_BODYPART, -							   1, items_to_kill); +							   1, 0, items_to_kill);  	findExcessOrDuplicateItems(cat_id,LLAssetType::AT_CLOTHING, -							   LLAgentWearables::MAX_CLOTHING_PER_TYPE, items_to_kill); +							   0, LLAgentWearables::MAX_CLOTHING_LAYERS, items_to_kill);  	findExcessOrDuplicateItems(cat_id,LLAssetType::AT_OBJECT, -							   -1, items_to_kill); +							   0, 0, items_to_kill);  }  void LLAppearanceMgr::enforceCOFItemRestrictions(LLPointer<LLInventoryCallback> cb) @@ -2588,7 +2669,6 @@ void LLAppearanceMgr::addCOFItemLink(const LLInventoryItem *item,  								  item_array,  								  LLInventoryModel::EXCLUDE_TRASH);  	bool linked_already = false; -	U32 count = 0;  	for (S32 i=0; i<item_array.size(); i++)  	{  		// Are these links to the same object? @@ -2608,14 +2688,13 @@ void LLAppearanceMgr::addCOFItemLink(const LLInventoryItem *item,  		// type? If so, new item will replace old.  		else if ((vitem->isWearableType()) && (vitem->getWearableType() == wearable_type))  		{ -			++count; -			if (is_body_part && inv_item->getIsLinkType()  && (vitem->getWearableType() == wearable_type)) +			if (is_body_part && inv_item->getIsLinkType())  			{  				remove_inventory_item(inv_item->getUUID(), cb);  			} -			else if (count >= LLAgentWearables::MAX_CLOTHING_PER_TYPE) +			else if (!gAgentWearables.canAddWearable(wearable_type))  			{ -				// MULTI-WEARABLES: make sure we don't go over MAX_CLOTHING_PER_TYPE +				// MULTI-WEARABLES: make sure we don't go over clothing limits  				remove_inventory_item(inv_item->getUUID(), cb);  			}  		} @@ -4071,16 +4150,7 @@ void callAfterCategoryFetch(const LLUUID& cat_id, nullary_func_t cb)  void wear_multiple(const uuid_vec_t& ids, bool replace)  {  	LLPointer<LLInventoryCallback> cb = new LLUpdateAppearanceOnDestroy; -	 -	bool first = true; -	uuid_vec_t::const_iterator it; -	for (it = ids.begin(); it != ids.end(); ++it) -	{ -		// if replace is requested, the first item worn will replace the current top -		// item, and others will be added. -		LLAppearanceMgr::instance().wearItemOnAvatar(*it,false,first && replace,cb); -		first = false; -	} +    LLAppearanceMgr::instance().wearItemsOnAvatar(ids, false, replace, cb);  }  // SLapp for easy-wearing of a stock (library) avatar diff --git a/indra/newview/llappearancemgr.h b/indra/newview/llappearancemgr.h index 7742a19c07..ee9d3b7209 100755 --- a/indra/newview/llappearancemgr.h +++ b/indra/newview/llappearancemgr.h @@ -67,7 +67,8 @@ public:  	void addCategoryToCurrentOutfit(const LLUUID& cat_id);  	S32 findExcessOrDuplicateItems(const LLUUID& cat_id,  								   LLAssetType::EType type, -								   S32 max_items, +								   S32 max_items_per_type, +								   S32 max_items_total,  								   LLInventoryObject::object_list_t& items_to_kill);  	void findAllExcessOrDuplicateItems(const LLUUID& cat_id,  									  LLInventoryObject::object_list_t& items_to_kill); @@ -99,6 +100,9 @@ public:  	// Determine whether we can replace current outfit with the given one.  	bool getCanReplaceCOF(const LLUUID& outfit_cat_id); +    // Can we add all referenced items to the avatar? +    bool canAddWearables(const uuid_vec_t& item_ids); +      	// Copy all items in a category.  	void shallowCopyCategoryContents(const LLUUID& src_id, const LLUUID& dst_id,  									 LLPointer<LLInventoryCallback> cb); @@ -117,8 +121,13 @@ public:  	// find the UUID of the currently worn outfit (Base Outfit)  	const LLUUID getBaseOutfitUUID(); +    void wearItemsOnAvatar(const uuid_vec_t& item_ids_to_wear, +                           bool do_update, +                           bool replace, +                           LLPointer<LLInventoryCallback> cb = NULL); +  	// Wear/attach an item (from a user's inventory) on the agent -	bool wearItemOnAvatar(const LLUUID& item_to_wear, bool do_update, bool replace = false, +	void wearItemOnAvatar(const LLUUID& item_to_wear, bool do_update, bool replace = false,  						  LLPointer<LLInventoryCallback> cb = NULL);  	// Update the displayed outfit name in UI. @@ -235,7 +244,7 @@ protected:  private: -	void filterWearableItems(LLInventoryModel::item_array_t& items, S32 max_per_type); +	void filterWearableItems(LLInventoryModel::item_array_t& items, S32 max_per_type, S32 max_total);  	void getDescendentsOfAssetType(const LLUUID& category,   										  LLInventoryModel::item_array_t& items, diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 6dc71bc94e..6a64f67f9c 100755 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -226,6 +226,7 @@  #include "llsecapi.h"  #include "llmachineid.h"  #include "llmainlooprepeater.h" +#include "llcleanup.h"  #include "llviewereventrecorder.h" @@ -1764,7 +1765,7 @@ bool LLAppViewer::cleanup()  	gTransferManager.cleanup();  #endif -	LLLocalBitmapMgr::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLLocalBitmapMgr);  	// Note: this is where gWorldMap used to be deleted. @@ -1872,11 +1873,11 @@ bool LLAppViewer::cleanup()  	LLViewerObject::cleanupVOClasses(); -	LLAvatarAppearance::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLAvatarAppearance); -	LLAvatarAppearance::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLAvatarAppearance); -	LLPostProcess::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLPostProcess);  	LLTracker::cleanupInstance(); @@ -1902,12 +1903,12 @@ bool LLAppViewer::cleanup()   	//end_messaging_system(); -	LLFollowCamMgr::cleanupClass(); -	//LLVolumeMgr::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLFollowCamMgr); +	//SUBSYSTEM_CLEANUP(LLVolumeMgr);  	LLPrimitive::cleanupVolumeManager(); -	LLWorldMapView::cleanupClass(); -	LLFolderViewItem::cleanupClass(); -	LLUI::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLWorldMapView); +	SUBSYSTEM_CLEANUP(LLFolderViewItem); +	SUBSYSTEM_CLEANUP(LLUI);  	//  	// Shut down the VFS's AFTER the decode manager cleans up (since it cleans up vfiles). @@ -1916,7 +1917,7 @@ bool LLAppViewer::cleanup()  	//  	LL_INFOS() << "Cleaning up VFS" << LL_ENDL; -	LLVFile::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLVFile);  	LL_INFOS() << "Saving Data" << LL_ENDL; @@ -2020,7 +2021,7 @@ bool LLAppViewer::cleanup()  	// *NOTE:Mani - The following call is not thread safe.   	LL_CHECK_MEMORY -	LLCurl::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLCurl);  	LL_CHECK_MEMORY  	// Non-LLCurl libcurl library @@ -2029,9 +2030,9 @@ bool LLAppViewer::cleanup()  	// NOTE The following call is not thread safe.   	ll_cleanup_ares(); -	LLFilePickerThread::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLFilePickerThread); -	//MUST happen AFTER LLCurl::cleanupClass +	//MUST happen AFTER SUBSYSTEM_CLEANUP(LLCurl)  	delete sTextureCache;      sTextureCache = NULL;  	delete sTextureFetch; @@ -2060,17 +2061,17 @@ bool LLAppViewer::cleanup()  	LL_INFOS() << "Cleaning up Media and Textures" << LL_ENDL;  	//Note: -	//LLViewerMedia::cleanupClass() has to be put before gTextureList.shutdown() +	//SUBSYSTEM_CLEANUP(LLViewerMedia) has to be put before gTextureList.shutdown()  	//because some new image might be generated during cleaning up media. --bao -	LLViewerMedia::cleanupClass(); -	LLViewerParcelMedia::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLViewerMedia); +	SUBSYSTEM_CLEANUP(LLViewerParcelMedia);  	gTextureList.shutdown(); // shutdown again in case a callback added something  	LLUIImageList::getInstance()->cleanUp();  	// This should eventually be done in LLAppViewer -	LLImage::cleanupClass(); -	LLVFSThread::cleanupClass(); -	LLLFSThread::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLImage); +	SUBSYSTEM_CLEANUP(LLVFSThread); +	SUBSYSTEM_CLEANUP(LLLFSThread);  #ifndef LL_RELEASE_FOR_DOWNLOAD  	LL_INFOS() << "Auditing VFS" << LL_ENDL; @@ -2113,9 +2114,9 @@ bool LLAppViewer::cleanup()  		LL_INFOS() << "File launched." << LL_ENDL;  	}  	LL_INFOS() << "Cleaning up LLProxy." << LL_ENDL; -	LLProxy::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLProxy); -	LLWearableType::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLWearableType);  	LLMainLoopRepeater::instance().stop(); diff --git a/indra/newview/llassetuploadresponders.cpp b/indra/newview/llassetuploadresponders.cpp index d2b1dcbf35..620274c1a5 100755 --- a/indra/newview/llassetuploadresponders.cpp +++ b/indra/newview/llassetuploadresponders.cpp @@ -334,7 +334,7 @@ void LLAssetUploadResponder::uploadFailure(const LLSD& content)  	// deal with L$ errors  	if (reason == "insufficient funds")  	{ -		S32 price = LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(); +		S32 price = LLGlobalEconomy::getInstance()->getPriceUpload();  		LLStringUtil::format_map_t args;  		args["AMOUNT"] = llformat("%d", price);  		LLBuyCurrencyHTML::openCurrencyFloater( LLTrans::getString("uploading_costs", args), price ); @@ -405,7 +405,7 @@ void LLNewAgentInventoryResponder::uploadComplete(const LLSD& content)  		asset_type == LLAssetType::AT_MESH)  	{  		expected_upload_cost =  -			LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(); +			LLGlobalEconomy::getInstance()->getPriceUpload();  	}  	on_new_single_inventory_upload_complete( @@ -467,7 +467,7 @@ void LLNewAgentInventoryResponder::uploadComplete(const LLSD& content)  			everyone_perms,  			display_name,  			callback, -			LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(), +			LLGlobalEconomy::getInstance()->getPriceUpload(),  			userdata);  	} diff --git a/indra/newview/llfavoritesbar.h b/indra/newview/llfavoritesbar.h index a370724947..574617fa63 100755 --- a/indra/newview/llfavoritesbar.h +++ b/indra/newview/llfavoritesbar.h @@ -34,6 +34,7 @@  #include "llinventoryobserver.h"  #include "llinventorymodel.h"  #include "llviewerinventory.h" +#include "llinitdestroyclass.h"  class LLMenuItemCallGL;  class LLToggleableMenu; diff --git a/indra/newview/llfloaterbvhpreview.cpp b/indra/newview/llfloaterbvhpreview.cpp index 669ffa7c59..75cbc6561a 100755 --- a/indra/newview/llfloaterbvhpreview.cpp +++ b/indra/newview/llfloaterbvhpreview.cpp @@ -993,7 +993,7 @@ void LLFloaterBvhPreview::onBtnOK(void* userdata)  				std::string name = floaterp->getChild<LLUICtrl>("name_form")->getValue().asString();  				std::string desc = floaterp->getChild<LLUICtrl>("description_form")->getValue().asString();  				LLAssetStorage::LLStoreAssetCallback callback = NULL; -				S32 expected_upload_cost = LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(); +				S32 expected_upload_cost = LLGlobalEconomy::getInstance()->getPriceUpload();  				void *userdata = NULL;  				upload_new_resource(floaterp->mTransactionID, // tid  						    LLAssetType::AT_ANIMATION, diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp index ab57e8c170..cacd66aee9 100755 --- a/indra/newview/llfloaterimcontainer.cpp +++ b/indra/newview/llfloaterimcontainer.cpp @@ -101,7 +101,7 @@ LLFloaterIMContainer::~LLFloaterIMContainer()  	gSavedPerAccountSettings.setBOOL("ConversationsMessagePaneCollapsed", mMessagesPane->isCollapsed());  	gSavedPerAccountSettings.setBOOL("ConversationsParticipantListCollapsed", !isParticipantListExpanded()); -	if (!LLSingleton<LLIMMgr>::destroyed()) +	if (LLIMMgr::instanceExists())  	{  		LLIMMgr::getInstance()->removeSessionObserver(this);  	} diff --git a/indra/newview/llfloaternamedesc.cpp b/indra/newview/llfloaternamedesc.cpp index 0cca715fe2..a889ca2545 100755 --- a/indra/newview/llfloaternamedesc.cpp +++ b/indra/newview/llfloaternamedesc.cpp @@ -121,7 +121,7 @@ BOOL LLFloaterNameDesc::postBuild()  	// Cancel button  	getChild<LLUICtrl>("cancel_btn")->setCommitCallback(boost::bind(&LLFloaterNameDesc::onBtnCancel, this)); -	getChild<LLUICtrl>("ok_btn")->setLabelArg("[AMOUNT]", llformat("%d", LLGlobalEconomy::Singleton::getInstance()->getPriceUpload() )); +	getChild<LLUICtrl>("ok_btn")->setLabelArg("[AMOUNT]", llformat("%d", LLGlobalEconomy::getInstance()->getPriceUpload() ));  	setDefaultBtn("ok_btn"); @@ -160,7 +160,7 @@ void LLFloaterNameDesc::onBtnOK( )  	getChildView("ok_btn")->setEnabled(FALSE); // don't allow inadvertent extra uploads  	LLAssetStorage::LLStoreAssetCallback callback = NULL; -	S32 expected_upload_cost = LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(); // kinda hack - assumes that unsubclassed LLFloaterNameDesc is only used for uploading chargeable assets, which it is right now (it's only used unsubclassed for the sound upload dialog, and THAT should be a subclass). +	S32 expected_upload_cost = LLGlobalEconomy::getInstance()->getPriceUpload(); // kinda hack - assumes that unsubclassed LLFloaterNameDesc is only used for uploading chargeable assets, which it is right now (it's only used unsubclassed for the sound upload dialog, and THAT should be a subclass).  	void *nruserdata = NULL;  	std::string display_name = LLStringUtil::null; diff --git a/indra/newview/llhints.h b/indra/newview/llhints.h index ebffe561b9..dd6195a9ce 100755 --- a/indra/newview/llhints.h +++ b/indra/newview/llhints.h @@ -29,6 +29,7 @@  #include "llpanel.h"  #include "llnotifications.h" +#include "llinitdestroyclass.h"  class LLHints :  public LLInitClass<LLHints> diff --git a/indra/newview/llimview.h b/indra/newview/llimview.h index f92eff4845..79be6fd9d3 100755 --- a/indra/newview/llimview.h +++ b/indra/newview/llimview.h @@ -33,6 +33,7 @@  #include "lllogchat.h"  #include "llvoicechannel.h" +#include "llinitdestroyclass.h"  class LLAvatarName;  class LLFriendObserver; diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 1dc5558555..a047ed6fee 100755 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -74,6 +74,7 @@  #include "llviewerwindow.h"  #include "llvoavatarself.h"  #include "llwearablelist.h" +#include "llwearableitemslist.h"  #include "lllandmarkactions.h"  #include "llpanellandmarks.h" @@ -557,6 +558,46 @@ BOOL LLInvFVBridge::isClipboardPasteableAsLink() const  	return TRUE;  } +void disable_context_entries_if_present(LLMenuGL& menu, +                                        const menuentry_vec_t &disabled_entries) +{ +	const LLView::child_list_t *list = menu.getChildList(); +	for (LLView::child_list_t::const_iterator itor = list->begin();  +		 itor != list->end();  +		 ++itor) +	{ +		LLView *menu_item = (*itor); +		std::string name = menu_item->getName(); + +		// descend into split menus: +		LLMenuItemBranchGL* branchp = dynamic_cast<LLMenuItemBranchGL*>(menu_item); +		if ((name == "More") && branchp) +		{ +			disable_context_entries_if_present(*branchp->getBranch(), disabled_entries); +		} + +		bool found = false; +		menuentry_vec_t::const_iterator itor2; +		for (itor2 = disabled_entries.begin(); itor2 != disabled_entries.end(); ++itor2) +		{ +			if (*itor2 == name) +			{ +				found = true; +				break; +			} +		} + +        if (found) +        { +			menu_item->setVisible(TRUE); +			// A bit of a hack so we can remember that some UI element explicitly set this to be visible +			// so that some other UI element from multi-select doesn't later set this invisible. +			menu_item->pushVisible(TRUE); + +			menu_item->setEnabled(FALSE); +        } +    } +}  void hide_context_entries(LLMenuGL& menu,   						  const menuentry_vec_t &entries_to_show,  						  const menuentry_vec_t &disabled_entries) @@ -765,6 +806,31 @@ void LLInvFVBridge::buildContextMenu(LLMenuGL& menu, U32 flags)  	hide_context_entries(menu, items, disabled_items);  } +bool get_selection_item_uuids(LLFolderView::selected_items_t& selected_items, uuid_vec_t& ids) +{ +	uuid_vec_t results; +    S32 non_item = 0; +	for(LLFolderView::selected_items_t::iterator it = selected_items.begin(); it != selected_items.end(); ++it) +	{ +		LLItemBridge *view_model = dynamic_cast<LLItemBridge *>((*it)->getViewModelItem()); + +		if(view_model && view_model->getUUID().notNull()) +		{ +			results.push_back(view_model->getUUID()); +		} +        else +        { +            non_item++; +        } +	} +	if (non_item == 0) +	{ +		ids = results; +		return true; +	} +	return false; +} +  void LLInvFVBridge::addTrashContextMenuOptions(menuentry_vec_t &items,  											   menuentry_vec_t &disabled_items)  { @@ -1120,7 +1186,7 @@ LLInvFVBridge* LLInvFVBridge::createBridge(LLAssetType::EType asset_type,  			{  				LL_WARNS() << LLAssetType::lookup(asset_type) << " asset has inventory type " << LLInventoryType::lookupHumanReadable(inv_type) << " on uuid " << uuid << LL_ENDL;  			} -			new_listener = new LLWearableBridge(inventory, root, uuid, asset_type, inv_type, (LLWearableType::EType)flags); +			new_listener = new LLWearableBridge(inventory, root, uuid, asset_type, inv_type, LLWearableType::inventoryFlagsToWearableType(flags));  			break;  		case LLAssetType::AT_CATEGORY:  			if (actual_asset_type == LLAssetType::AT_LINK_FOLDER) @@ -3585,7 +3651,7 @@ void LLFolderBridge::buildContextMenu(LLMenuGL& menu, U32 flags)  	if(!model) return;  	buildContextMenuOptions(flags, items, disabled_items); -        hide_context_entries(menu, items, disabled_items); +    hide_context_entries(menu, items, disabled_items);  	// Reposition the menu, in case we're adding items to an existing menu.  	menu.needsArrange(); @@ -5770,7 +5836,7 @@ void LLWearableBridge::buildContextMenu(LLMenuGL& menu, U32 flags)  					if (LLWearableType::getAllowMultiwear(mWearableType))  					{  						items.push_back(std::string("Wearable Add")); -						if (gAgentWearables.getWearableCount(mWearableType) >= LLAgentWearables::MAX_CLOTHING_PER_TYPE) +						if (!gAgentWearables.canAddWearable(mWearableType))  						{  							disabled_items.push_back(std::string("Wearable Add"));  						} @@ -6439,4 +6505,22 @@ LLInvFVBridge* LLRecentInventoryBridgeBuilder::createBridge(  	return new_listener;  } +LLFolderViewGroupedItemBridge::LLFolderViewGroupedItemBridge() +{ +} + +void LLFolderViewGroupedItemBridge::groupFilterContextMenu(folder_view_item_deque& selected_items, LLMenuGL& menu) +{ +    uuid_vec_t ids; +	menuentry_vec_t disabled_items; +    if (get_selection_item_uuids(selected_items, ids)) +    { +        if (!LLAppearanceMgr::instance().canAddWearables(ids)) +        { +			disabled_items.push_back(std::string("Wearable Add")); +        } +    } +	disable_context_entries_if_present(menu, disabled_items); +} +  // EOF diff --git a/indra/newview/llinventorybridge.h b/indra/newview/llinventorybridge.h index f8ef15991d..300cef7deb 100755 --- a/indra/newview/llinventorybridge.h +++ b/indra/newview/llinventorybridge.h @@ -37,6 +37,7 @@  #include "llviewerwearable.h"  #include "lltooldraganddrop.h"  #include "lllandmarklist.h" +#include "llfolderviewitem.h"  class LLInventoryFilter;  class LLInventoryPanel; @@ -689,4 +690,11 @@ void hide_context_entries(LLMenuGL& menu,  						  const menuentry_vec_t &entries_to_show,   						  const menuentry_vec_t &disabled_entries); +class LLFolderViewGroupedItemBridge: public LLFolderViewGroupedItemModel +{ +public: +    LLFolderViewGroupedItemBridge(); +    virtual void groupFilterContextMenu(folder_view_item_deque& selected_items, LLMenuGL& menu); +}; +  #endif // LL_LLINVENTORYBRIDGE_H diff --git a/indra/newview/llinventoryfunctions.cpp b/indra/newview/llinventoryfunctions.cpp index 1abc09bf3b..2546db546b 100755 --- a/indra/newview/llinventoryfunctions.cpp +++ b/indra/newview/llinventoryfunctions.cpp @@ -45,6 +45,7 @@  // newview includes  #include "llappearancemgr.h"  #include "llappviewer.h" +#include "llavataractions.h"  #include "llclipboard.h"  #include "lldonotdisturbnotificationstorage.h"  #include "llfloaterinventory.h" @@ -1114,16 +1115,35 @@ void LLInventoryAction::doToSelected(LLInventoryModel* model, LLFolderView* root  		LLFloater::setFloaterHost(multi_propertiesp);  	} -	std::set<LLFolderViewItem*>::iterator set_iter; - -	for (set_iter = selected_items.begin(); set_iter != selected_items.end(); ++set_iter) -	{ -		LLFolderViewItem* folder_item = *set_iter; -		if(!folder_item) continue; -		LLInvFVBridge* bridge = (LLInvFVBridge*)folder_item->getViewModelItem(); -		if(!bridge) continue; -		bridge->performAction(model, action); -	} +     +	std::set<LLUUID> selected_uuid_set = LLAvatarActions::getInventorySelectedUUIDs(); +    uuid_vec_t ids; +    std::copy(selected_uuid_set.begin(), selected_uuid_set.end(), std::back_inserter(ids)); +    // Check for actions that get handled in bulk +    if (action == "wear") +    { +        wear_multiple(ids, true); +    } +    else if (action == "wear_add") +    { +        wear_multiple(ids, false); +    } +    else if (action == "take_off" || action == "detach") +    { +        LLAppearanceMgr::instance().removeItemsFromAvatar(ids); +    } +    else +    { +        std::set<LLFolderViewItem*>::iterator set_iter; +        for (set_iter = selected_items.begin(); set_iter != selected_items.end(); ++set_iter) +        { +            LLFolderViewItem* folder_item = *set_iter; +            if(!folder_item) continue; +            LLInvFVBridge* bridge = (LLInvFVBridge*)folder_item->getViewModelItem(); +            if(!bridge) continue; +            bridge->performAction(model, action); +        } +    }  	LLFloater::setFloaterHost(NULL);  	if (multi_previewp) diff --git a/indra/newview/llinventoryicon.cpp b/indra/newview/llinventoryicon.cpp index b7c4ec6f8b..013a5a7629 100755 --- a/indra/newview/llinventoryicon.cpp +++ b/indra/newview/llinventoryicon.cpp @@ -183,6 +183,6 @@ const std::string& LLInventoryIcon::getIconName(LLInventoryType::EIconName idx)  LLInventoryType::EIconName LLInventoryIcon::assignWearableIcon(U32 misc_flag)  { -	const LLWearableType::EType wearable_type = LLWearableType::EType(LLInventoryItemFlags::II_FLAGS_WEARABLES_MASK & misc_flag); +	const LLWearableType::EType wearable_type = LLWearableType::inventoryFlagsToWearableType(misc_flag);  	return LLWearableType::getIconName(wearable_type);  } diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp index 3546317471..4a230accb6 100755 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -146,7 +146,8 @@ LLInventoryPanel::LLInventoryPanel(const LLInventoryPanel::Params& p) :  	mShowEmptyMessage(p.show_empty_message),  	mViewsInitialized(false),  	mInvFVBridgeBuilder(NULL), -	mInventoryViewModel(p.name) +	mInventoryViewModel(p.name), +	mGroupedItemBridge(new LLFolderViewGroupedItemBridge)  {  	mInvFVBridgeBuilder = &INVENTORY_BRIDGE_BUILDER; @@ -186,6 +187,7 @@ LLFolderView * LLInventoryPanel::createFolderRoot(LLUUID root_id )  																	NULL,  																	root_id);      p.view_model = &mInventoryViewModel; +	p.grouped_item_model = mGroupedItemBridge;      p.use_label_suffix = mParams.use_label_suffix;      p.allow_multiselect = mAllowMultiSelect;      p.show_empty_message = mShowEmptyMessage; diff --git a/indra/newview/llinventorypanel.h b/indra/newview/llinventorypanel.h index a490dfce5d..bc4c10e441 100755 --- a/indra/newview/llinventorypanel.h +++ b/indra/newview/llinventorypanel.h @@ -43,6 +43,7 @@ class LLInvFVBridge;  class LLInventoryFolderViewModelBuilder;  class LLInvPanelComplObserver;  class LLFolderViewModelInventory; +class LLFolderViewGroupedItemBridge;  namespace LLInitParam  { @@ -240,6 +241,7 @@ protected:  	LLScrollContainer*			mScroller;  	LLFolderViewModelInventory	mInventoryViewModel; +    LLPointer<LLFolderViewGroupedItemBridge> mGroupedItemBridge;  	Params						mParams;	// stored copy of parameter block  	std::map<LLUUID, LLFolderViewItem*> mItemMap; diff --git a/indra/newview/lllocalbitmaps.cpp b/indra/newview/lllocalbitmaps.cpp index 8fb7550169..1380345164 100755 --- a/indra/newview/lllocalbitmaps.cpp +++ b/indra/newview/lllocalbitmaps.cpp @@ -545,12 +545,14 @@ void LLLocalBitmap::updateUserLayers(LLUUID old_id, LLUUID new_id, LLWearableTyp  					LLAvatarAppearanceDefines::ETextureIndex reg_texind = getTexIndex(type, baked_texind);  					if (reg_texind != LLAvatarAppearanceDefines::TEX_NUM_INDICES)  					{ -						U32 index = gAgentWearables.getWearableIndex(wearable); -						gAgentAvatarp->setLocalTexture(reg_texind, gTextureList.getImage(new_id), FALSE, index); -						gAgentAvatarp->wearableUpdated(type); - -						/* telling the manager to rebake once update cycle is fully done */ -						LLLocalBitmapMgr::setNeedsRebake(); +						U32 index; +						if (gAgentWearables.getWearableIndex(wearable,index)) +						{ +							gAgentAvatarp->setLocalTexture(reg_texind, gTextureList.getImage(new_id), FALSE, index); +							gAgentAvatarp->wearableUpdated(type); +							/* telling the manager to rebake once update cycle is fully done */ +							LLLocalBitmapMgr::setNeedsRebake(); +						}  					}  				} diff --git a/indra/newview/llmutelist.cpp b/indra/newview/llmutelist.cpp index 65ac11092c..88bfefa8b8 100755 --- a/indra/newview/llmutelist.cpp +++ b/indra/newview/llmutelist.cpp @@ -47,6 +47,7 @@  #include "pipeline.h"  #include <boost/tokenizer.hpp> +#include <boost/bind.hpp>  #include "lldispatcher.h"  #include "llxfermanager.h" @@ -146,22 +147,6 @@ std::string LLMute::getDisplayType() const  	}  } - -/* static */ -LLMuteList* LLMuteList::getInstance() -{ -	// Register callbacks at the first time that we find that the message system has been created. -	static BOOL registered = FALSE; -	if( !registered && gMessageSystem != NULL) -	{ -		registered = TRUE; -		// Register our various callbacks -		gMessageSystem->setHandlerFuncFast(_PREHASH_MuteListUpdate, processMuteListUpdate); -		gMessageSystem->setHandlerFuncFast(_PREHASH_UseCachedMuteList, processUseCachedMuteList); -	} -	return LLSingleton<LLMuteList>::getInstance(); // Call the "base" implementation. -} -  //-----------------------------------------------------------------------------  // LLMuteList()  //----------------------------------------------------------------------------- @@ -169,6 +154,18 @@ LLMuteList::LLMuteList() :  	mIsLoaded(FALSE)  {  	gGenericDispatcher.addHandler("emptymutelist", &sDispatchEmptyMuteList); + +	// Register our callbacks. We may be constructed before gMessageSystem, so +	// use callWhenReady() to register them as soon as gMessageSystem becomes +	// available. +	// When using bind(), must be explicit about default arguments such as +	// that last NULL. +	gMessageSystem.callWhenReady(boost::bind(&LLMessageSystem::setHandlerFuncFast, _1, +											 _PREHASH_MuteListUpdate, processMuteListUpdate, +											 static_cast<void**>(NULL))); +	gMessageSystem.callWhenReady(boost::bind(&LLMessageSystem::setHandlerFuncFast, _1, +											 _PREHASH_UseCachedMuteList, processUseCachedMuteList, +											 static_cast<void**>(NULL)));  }  //----------------------------------------------------------------------------- diff --git a/indra/newview/llmutelist.h b/indra/newview/llmutelist.h index 3e998b4f0e..d315f225bf 100755 --- a/indra/newview/llmutelist.h +++ b/indra/newview/llmutelist.h @@ -84,11 +84,6 @@ public:  	LLMuteList();  	~LLMuteList(); -	// Implemented locally so that we can perform some delayed initialization.  -	// Callers should be careful to call this one and not LLSingleton<LLMuteList>::getInstance() -	// which would circumvent that mechanism. -MG -	static LLMuteList* getInstance(); -  	void addObserver(LLMuteListObserver* observer);  	void removeObserver(LLMuteListObserver* observer); diff --git a/indra/newview/llnavigationbar.h b/indra/newview/llnavigationbar.h index 7878bab24e..de12a39547 100755 --- a/indra/newview/llnavigationbar.h +++ b/indra/newview/llnavigationbar.h @@ -29,6 +29,7 @@  #include "llpanel.h"  #include "llbutton.h" +#include "llinitdestroyclass.h"  class LLLocationInputCtrl;  class LLMenuGL; diff --git a/indra/newview/llpaneleditwearable.cpp b/indra/newview/llpaneleditwearable.cpp index 19a86cdcea..9bd6007772 100755 --- a/indra/newview/llpaneleditwearable.cpp +++ b/indra/newview/llpaneleditwearable.cpp @@ -925,17 +925,17 @@ void LLPanelEditWearable::onCommitSexChange()          if (!isAgentAvatarValid()) return;          LLWearableType::EType type = mWearablePtr->getType(); -        U32 index = gAgentWearables.getWearableIndex(mWearablePtr); - -        if( !gAgentWearables.isWearableModifiable(type, index)) +        U32 index; +        if( !gAgentWearables.getWearableIndex(mWearablePtr, index) || +			!gAgentWearables.isWearableModifiable(type, index))          { -                return; +			return;          }          LLViewerVisualParam* param = static_cast<LLViewerVisualParam*>(gAgentAvatarp->getVisualParam( "male" ));          if( !param )          { -                return; +			return;          }          bool is_new_sex_male = (gSavedSettings.getU32("AvatarSex") ? SEX_MALE : SEX_FEMALE) == SEX_MALE; @@ -978,10 +978,17 @@ void LLPanelEditWearable::onTexturePickerCommit(const LLUICtrl* ctrl)                          }                          if (getWearable())                          { -                                U32 index = gAgentWearables.getWearableIndex(getWearable()); -                                gAgentAvatarp->setLocalTexture(entry->mTextureIndex, image, FALSE, index); -                                LLVisualParamHint::requestHintUpdates(); -                                gAgentAvatarp->wearableUpdated(type); +							U32 index; +							if (gAgentWearables.getWearableIndex(getWearable(), index)) +							{ +								gAgentAvatarp->setLocalTexture(entry->mTextureIndex, image, FALSE, index); +								LLVisualParamHint::requestHintUpdates(); +								gAgentAvatarp->wearableUpdated(type); +							} +							else +							{ +								LL_WARNS() << "wearable not found in gAgentWearables" << LL_ENDL; +							}                          }                  }                  else @@ -1058,7 +1065,12 @@ void LLPanelEditWearable::saveChanges(bool force_save_as)                  return;          } -        U32 index = gAgentWearables.getWearableIndex(mWearablePtr); +        U32 index; +		if (!gAgentWearables.getWearableIndex(mWearablePtr, index)) +		{ +			LL_WARNS() << "wearable not found" << LL_ENDL; +			return; +		}          std::string new_name = mNameEditor->getText(); @@ -1574,6 +1586,12 @@ void LLPanelEditWearable::onInvisibilityCommit(LLCheckBoxCtrl* checkbox_ctrl, LL          LL_INFOS() << "onInvisibilityCommit, self " << this << " checkbox_ctrl " << checkbox_ctrl << LL_ENDL; +		U32 index; +		if (!gAgentWearables.getWearableIndex(getWearable(),index)) +		{ +			LL_WARNS() << "wearable not found" << LL_ENDL; +			return; +		}          bool new_invis_state = checkbox_ctrl->get();          if (new_invis_state)          { @@ -1581,9 +1599,8 @@ void LLPanelEditWearable::onInvisibilityCommit(LLCheckBoxCtrl* checkbox_ctrl, LL                  mPreviousAlphaTexture[te] = lto->getID();                  LLViewerFetchedTexture* image = LLViewerTextureManager::getFetchedTexture( IMG_INVISIBLE ); -                U32 index = gAgentWearables.getWearableIndex(getWearable()); -                gAgentAvatarp->setLocalTexture(te, image, FALSE, index); -                gAgentAvatarp->wearableUpdated(getWearable()->getType()); +				gAgentAvatarp->setLocalTexture(te, image, FALSE, index); +				gAgentAvatarp->wearableUpdated(getWearable()->getType());          }          else          { @@ -1598,7 +1615,6 @@ void LLPanelEditWearable::onInvisibilityCommit(LLCheckBoxCtrl* checkbox_ctrl, LL                  LLViewerFetchedTexture* image = LLViewerTextureManager::getFetchedTexture(prev_id);                  if (!image) return; -                U32 index = gAgentWearables.getWearableIndex(getWearable());                  gAgentAvatarp->setLocalTexture(te, image, FALSE, index);                  gAgentAvatarp->wearableUpdated(getWearable()->getType());          } diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp index 17c0b226d0..06a7346f2a 100755 --- a/indra/newview/llpanelmaininventory.cpp +++ b/indra/newview/llpanelmaininventory.cpp @@ -1278,7 +1278,7 @@ void LLPanelMainInventory::setUploadCostIfNeeded()  		LLMenuItemBranchGL* upload_menu = mMenuAdd->findChild<LLMenuItemBranchGL>("upload");  		if(upload_menu)  		{ -			S32 upload_cost = LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(); +			S32 upload_cost = LLGlobalEconomy::getInstance()->getPriceUpload();  			std::string cost_str;  			// getPriceUpload() returns -1 if no data available yet. diff --git a/indra/newview/llpanelsnapshotinventory.cpp b/indra/newview/llpanelsnapshotinventory.cpp index c8a201a5c8..48948a7567 100755 --- a/indra/newview/llpanelsnapshotinventory.cpp +++ b/indra/newview/llpanelsnapshotinventory.cpp @@ -78,7 +78,7 @@ BOOL LLPanelSnapshotInventory::postBuild()  // virtual  void LLPanelSnapshotInventory::onOpen(const LLSD& key)  { -	getChild<LLUICtrl>("hint_lbl")->setTextArg("[UPLOAD_COST]", llformat("%d", LLGlobalEconomy::Singleton::getInstance()->getPriceUpload())); +	getChild<LLUICtrl>("hint_lbl")->setTextArg("[UPLOAD_COST]", llformat("%d", LLGlobalEconomy::getInstance()->getPriceUpload()));  	LLPanelSnapshot::onOpen(key);  } diff --git a/indra/newview/llpanelsnapshotoptions.cpp b/indra/newview/llpanelsnapshotoptions.cpp index 0fc9ceec83..2a44674802 100755 --- a/indra/newview/llpanelsnapshotoptions.cpp +++ b/indra/newview/llpanelsnapshotoptions.cpp @@ -75,12 +75,12 @@ LLPanelSnapshotOptions::LLPanelSnapshotOptions()  	mCommitCallbackRegistrar.add("Snapshot.SendToFacebook",		boost::bind(&LLPanelSnapshotOptions::onSendToFacebook, this));  	mCommitCallbackRegistrar.add("Snapshot.SendToTwitter",		boost::bind(&LLPanelSnapshotOptions::onSendToTwitter, this));  	mCommitCallbackRegistrar.add("Snapshot.SendToFlickr",		boost::bind(&LLPanelSnapshotOptions::onSendToFlickr, this)); -	LLGlobalEconomy::Singleton::getInstance()->addObserver(this); +	LLGlobalEconomy::getInstance()->addObserver(this);  }  LLPanelSnapshotOptions::~LLPanelSnapshotOptions()  { -	LLGlobalEconomy::Singleton::getInstance()->removeObserver(this); +	LLGlobalEconomy::getInstance()->removeObserver(this);  }  // virtual @@ -97,7 +97,7 @@ void LLPanelSnapshotOptions::onOpen(const LLSD& key)  void LLPanelSnapshotOptions::updateUploadCost()  { -	S32 upload_cost = LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(); +	S32 upload_cost = LLGlobalEconomy::getInstance()->getPriceUpload();  	getChild<LLUICtrl>("save_to_inventory_btn")->setLabelArg("[AMOUNT]", llformat("%d", upload_cost));  } diff --git a/indra/newview/llpaneltopinfobar.h b/indra/newview/llpaneltopinfobar.h index f37bd9c048..274d70c6f9 100755 --- a/indra/newview/llpaneltopinfobar.h +++ b/indra/newview/llpaneltopinfobar.h @@ -28,6 +28,7 @@  #define LLPANELTOPINFOBAR_H_  #include "llpanel.h" +#include "llinitdestroyclass.h"  class LLButton;  class LLTextBox; diff --git a/indra/newview/llsearchhistory.h b/indra/newview/llsearchhistory.h index 3309a8fcac..ade81675c2 100755 --- a/indra/newview/llsearchhistory.h +++ b/indra/newview/llsearchhistory.h @@ -28,6 +28,7 @@  #define LL_LLSEARCHHISTORY_H  #include "llsingleton.h" +#include "llinitdestroyclass.h"  #include "llui.h"  /** diff --git a/indra/newview/llsidepanelappearance.cpp b/indra/newview/llsidepanelappearance.cpp index 64f24cd291..ea7cf82674 100755 --- a/indra/newview/llsidepanelappearance.cpp +++ b/indra/newview/llsidepanelappearance.cpp @@ -212,7 +212,8 @@ void LLSidepanelAppearance::updateToVisibility(const LLSD &new_visibility)  			}  			if (is_wearable_edit_visible)  			{ -				if (gAgentWearables.getWearableIndex(wearable_ptr) == LLAgentWearables::MAX_CLOTHING_PER_TYPE) +				U32 index; +				if (!gAgentWearables.getWearableIndex(wearable_ptr,index))  				{  					// we're no longer wearing the wearable we were last editing, switch back to outfit editor  					showOutfitEditPanel(); diff --git a/indra/newview/llsnapshotlivepreview.cpp b/indra/newview/llsnapshotlivepreview.cpp index 0ae8a338e0..2e9df1f13f 100644 --- a/indra/newview/llsnapshotlivepreview.cpp +++ b/indra/newview/llsnapshotlivepreview.cpp @@ -1005,7 +1005,7 @@ void LLSnapshotLivePreview::saveTexture()  		std::string who_took_it;  		LLAgentUI::buildFullname(who_took_it);  		LLAssetStorage::LLStoreAssetCallback callback = NULL; -		S32 expected_upload_cost = LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(); +		S32 expected_upload_cost = LLGlobalEconomy::getInstance()->getPriceUpload();  		void *userdata = NULL;  		upload_new_resource(tid,	// tid  			LLAssetType::AT_TEXTURE, diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 42fc300187..3a85468bda 100755 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -194,6 +194,7 @@  #include "llevents.h"  #include "llstartuplistener.h"  #include "lltoolbarview.h" +#include "llcleanup.h"  #if LL_WINDOWS  #include "lldxhardware.h" @@ -2826,7 +2827,7 @@ void LLStartUp::initNameCache()  void LLStartUp::cleanupNameCache()  { -	LLAvatarNameCache::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLAvatarNameCache);  	delete gCacheName;  	gCacheName = NULL; diff --git a/indra/newview/llsyswellwindow.h b/indra/newview/llsyswellwindow.h index 71b41476f5..cff3711bb9 100755 --- a/indra/newview/llsyswellwindow.h +++ b/indra/newview/llsyswellwindow.h @@ -32,6 +32,7 @@  #include "llscreenchannel.h"  #include "llsyswellitem.h"  #include "lltransientdockablefloater.h" +#include "llinitdestroyclass.h"  class LLAvatarName;  class LLChiclet; diff --git a/indra/newview/llviewerinventory.cpp b/indra/newview/llviewerinventory.cpp index d6c8ba10f6..d112118082 100755 --- a/indra/newview/llviewerinventory.cpp +++ b/indra/newview/llviewerinventory.cpp @@ -2106,7 +2106,7 @@ LLWearableType::EType LLViewerInventoryItem::getWearableType() const  	{  		return LLWearableType::WT_INVALID;  	} -	return LLWearableType::EType(getFlags() & LLInventoryItemFlags::II_FLAGS_WEARABLES_MASK); +	return LLWearableType::inventoryFlagsToWearableType(getFlags());  } diff --git a/indra/newview/llviewerinventory.h b/indra/newview/llviewerinventory.h index ca92565600..78b61d4fbc 100755 --- a/indra/newview/llviewerinventory.h +++ b/indra/newview/llviewerinventory.h @@ -30,7 +30,7 @@  #include "llinventory.h"  #include "llframetimer.h"  #include "llwearable.h" -#include "llui.h" //for LLDestroyClass +#include "llinitdestroyclass.h" //for LLDestroyClass  #include <boost/signals2.hpp>	// boost::signals2::trackable diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index 3b0adcf7f4..ee2abaab4b 100755 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -130,6 +130,7 @@  #include "llpathfindingmanager.h"  #include "llstartup.h"  #include "boost/unordered_map.hpp" +#include "llcleanup.h"  using namespace LLAvatarAppearanceDefines; @@ -8416,7 +8417,7 @@ class LLWorldPostProcess : public view_listener_t  void handle_flush_name_caches()  { -	LLAvatarNameCache::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLAvatarNameCache);  	if (gCacheName) gCacheName->clear();  } @@ -8460,7 +8461,7 @@ class LLToggleUIHints : public view_listener_t  void LLUploadCostCalculator::calculateCost()  { -	S32 upload_cost = LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(); +	S32 upload_cost = LLGlobalEconomy::getInstance()->getPriceUpload();  	// getPriceUpload() returns -1 if no data available yet.  	if(upload_cost >= 0) diff --git a/indra/newview/llviewermenufile.cpp b/indra/newview/llviewermenufile.cpp index f8e50ba463..deba6e130e 100755 --- a/indra/newview/llviewermenufile.cpp +++ b/indra/newview/llviewermenufile.cpp @@ -83,7 +83,7 @@ class LLFileEnableUpload : public view_listener_t  {  	bool handleEvent(const LLSD& userdata)  	{ -		bool new_value = gStatusBar && LLGlobalEconomy::Singleton::getInstance() && (gStatusBar->getBalance() >= LLGlobalEconomy::Singleton::getInstance()->getPriceUpload()); +		bool new_value = gStatusBar && LLGlobalEconomy::getInstance() && (gStatusBar->getBalance() >= LLGlobalEconomy::getInstance()->getPriceUpload());  		return new_value;  	}  }; @@ -433,7 +433,7 @@ class LLFileUploadBulk : public view_listener_t  			std::string display_name = LLStringUtil::null;  			LLAssetStorage::LLStoreAssetCallback callback = NULL; -			S32 expected_upload_cost = LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(); +			S32 expected_upload_cost = LLGlobalEconomy::getInstance()->getPriceUpload();  			void *userdata = NULL;  			upload_new_resource( diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 5cd92c9920..6f36317265 100755 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -6222,9 +6222,9 @@ void process_frozen_message(LLMessageSystem *msgsystem, void **user_data)  // do some extra stuff once we get our economy data  void process_economy_data(LLMessageSystem *msg, void** /*user_data*/)  { -	LLGlobalEconomy::processEconomyData(msg, LLGlobalEconomy::Singleton::getInstance()); +	LLGlobalEconomy::processEconomyData(msg, LLGlobalEconomy::getInstance()); -	S32 upload_cost = LLGlobalEconomy::Singleton::getInstance()->getPriceUpload(); +	S32 upload_cost = LLGlobalEconomy::getInstance()->getPriceUpload();  	LL_INFOS_ONCE("Messaging") << "EconomyData message arrived; upload cost is L$" << upload_cost << LL_ENDL; diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp index a2c0a91ea6..f463c620d3 100755 --- a/indra/newview/llviewerobject.cpp +++ b/indra/newview/llviewerobject.cpp @@ -102,6 +102,7 @@  #include "llmediaentry.h"  #include "llfloaterperms.h"  #include "llvocache.h" +#include "llcleanup.h"  //#define DEBUG_UPDATE_TYPE @@ -527,11 +528,11 @@ void LLViewerObject::initVOClasses()  void LLViewerObject::cleanupVOClasses()  { -	LLVOGrass::cleanupClass(); -	LLVOWater::cleanupClass(); -	LLVOTree::cleanupClass(); -	LLVOAvatar::cleanupClass(); -	LLVOVolume::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLVOGrass); +	SUBSYSTEM_CLEANUP(LLVOWater); +	SUBSYSTEM_CLEANUP(LLVOTree); +	SUBSYSTEM_CLEANUP(LLVOAvatar); +	SUBSYSTEM_CLEANUP(LLVOVolume);  	sObjectDataMap.clear();  } diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index e317989f04..12ff88c517 100755 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -208,6 +208,7 @@  #include "llwindowlistener.h"  #include "llviewerwindowlistener.h"  #include "llpaneltopinfobar.h" +#include "llcleanup.h"  #if LL_WINDOWS  #include <tchar.h> // For Unicode conversion methods @@ -2124,7 +2125,7 @@ void LLViewerWindow::shutdownGL()  	// Shutdown GL cleanly.  Order is very important here.  	//--------------------------------------------------------  	LLFontGL::destroyDefaultFonts(); -	LLFontManager::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLFontManager);  	stop_glerror();  	gSky.cleanup(); @@ -2147,7 +2148,7 @@ void LLViewerWindow::shutdownGL()  	LLWorldMapView::cleanupTextures();  	LLViewerTextureManager::cleanup() ; -	LLImageGL::cleanupClass() ; +	SUBSYSTEM_CLEANUP(LLImageGL) ;  	LL_INFOS() << "All textures and llimagegl images are destroyed!" << LL_ENDL ; @@ -2160,7 +2161,7 @@ void LLViewerWindow::shutdownGL()  	gGL.shutdown(); -	LLVertexBuffer::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLVertexBuffer);  	LL_INFOS() << "LLVertexBuffer cleaned." << LL_ENDL ;  } diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index 1e9945b514..56997c928a 100755 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -1570,8 +1570,16 @@ BOOL LLVOAvatarSelf::isTextureVisible(LLAvatarAppearanceDefines::ETextureIndex t  		return LLVOAvatar::isTextureVisible(type);  	} -	U32 index = gAgentWearables.getWearableIndex(wearable); -	return isTextureVisible(type,index); +	U32 index; +	if (gAgentWearables.getWearableIndex(wearable,index)) +	{ +		return isTextureVisible(type,index); +	} +	else +	{ +		LL_WARNS() << "Wearable not found" << LL_ENDL; +		return FALSE; +	}  }  bool LLVOAvatarSelf::areTexturesCurrent() const diff --git a/indra/newview/llwearableitemslist.cpp b/indra/newview/llwearableitemslist.cpp index fac0fd63ee..888ead0613 100755 --- a/indra/newview/llwearableitemslist.cpp +++ b/indra/newview/llwearableitemslist.cpp @@ -894,13 +894,13 @@ void LLWearableItemsList::ContextMenu::updateItemsVisibility(LLContextMenu* menu  	setMenuItemVisible(menu, "wear_wear", 			n_already_worn == 0 && n_worn == 0 && can_be_worn);  	setMenuItemEnabled(menu, "wear_wear", 			n_already_worn == 0 && n_worn == 0);  	setMenuItemVisible(menu, "wear_add",			wear_add_visible); -	setMenuItemEnabled(menu, "wear_add",			canAddWearables(ids)); +	setMenuItemEnabled(menu, "wear_add",			LLAppearanceMgr::instance().canAddWearables(ids));  	setMenuItemVisible(menu, "wear_replace",		n_worn == 0 && n_already_worn != 0 && can_be_worn);  	//visible only when one item selected and this item is worn  	setMenuItemVisible(menu, "edit",				!standalone && mask & (MASK_CLOTHING|MASK_BODYPART) && n_worn == n_items && n_worn == 1);  	setMenuItemEnabled(menu, "edit",				n_editable == 1 && n_worn == 1 && n_items == 1);  	setMenuItemVisible(menu, "create_new",			mask & (MASK_CLOTHING|MASK_BODYPART) && n_items == 1); -	setMenuItemEnabled(menu, "create_new",			canAddWearables(ids)); +	setMenuItemEnabled(menu, "create_new",			LLAppearanceMgr::instance().canAddWearables(ids));  	setMenuItemVisible(menu, "show_original",		!standalone);  	setMenuItemEnabled(menu, "show_original",		n_items == 1 && n_links == n_items);  	setMenuItemVisible(menu, "take_off",			mask == MASK_CLOTHING && n_worn == n_items); @@ -1004,65 +1004,4 @@ void LLWearableItemsList::ContextMenu::createNewWearable(const LLUUID& item_id)  	LLAgentWearables::createWearable(item->getWearableType(), true);  } -// Returns true if all the given objects and clothes can be added. -// static -bool LLWearableItemsList::ContextMenu::canAddWearables(const uuid_vec_t& item_ids) -{ -	// TODO: investigate wearables may not be loaded at this point EXT-8231 - -	U32 n_objects = 0; -	boost::unordered_map<LLWearableType::EType, U32> clothes_by_type; - -	// Count given clothes (by wearable type) and objects. -	for (uuid_vec_t::const_iterator it = item_ids.begin(); it != item_ids.end(); ++it) -	{ -		LLViewerInventoryItem* item = gInventory.getItem(*it); -		if (!item) -		{ -			return false; -		} - -		if (item->getType() == LLAssetType::AT_OBJECT) -		{ -			++n_objects; -		} -		else if (item->getType() == LLAssetType::AT_CLOTHING) -		{ -			++clothes_by_type[item->getWearableType()]; -		} -		else -		{ -			LL_WARNS() << "Unexpected wearable type" << LL_ENDL; -			return false; -		} -	} - -	// Check whether we can add all the objects. -	if (!isAgentAvatarValid() || !gAgentAvatarp->canAttachMoreObjects(n_objects)) -	{ -		return false; -	} - -	// Check whether we can add all the clothes. -	boost::unordered_map<LLWearableType::EType, U32>::const_iterator m_it; -	for (m_it = clothes_by_type.begin(); m_it != clothes_by_type.end(); ++m_it) -	{ -		LLWearableType::EType w_type	= m_it->first; -		U32 n_clothes					= m_it->second; - -		U32 wearable_count = gAgentWearables.getWearableCount(w_type); -		if ((wearable_count > 0) && !LLWearableType::getAllowMultiwear(w_type)) -		{ -			return false; -		} -		if ((wearable_count + n_clothes) > LLAgentWearables::MAX_CLOTHING_PER_TYPE) -		{ -			return false; -		} - -	} - -	return true; -} -  // EOF diff --git a/indra/newview/llwearableitemslist.h b/indra/newview/llwearableitemslist.h index c731a7d6cf..e6788ab249 100755 --- a/indra/newview/llwearableitemslist.h +++ b/indra/newview/llwearableitemslist.h @@ -429,7 +429,6 @@ public:  		static void setMenuItemEnabled(LLContextMenu* menu, const std::string& name, bool val);  		static void updateMask(U32& mask, LLAssetType::EType at);  		static void createNewWearable(const LLUUID& item_id); -		static bool canAddWearables(const uuid_vec_t& item_ids);  		LLWearableItemsList*	mParent;  	}; diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 03712c1065..9c1b78626f 100755 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -115,6 +115,7 @@  #include "llpathfindingpathtool.h"  #include "llscenemonitor.h"  #include "llprogressview.h" +#include "llcleanup.h"  #ifdef _DEBUG  // Debug indices is disabled for now for debug performance - djs 4/24/02 @@ -7373,7 +7374,7 @@ void LLPipeline::doResetVertexBuffers(bool forced)  	}  	LLVOPartGroup::destroyGL(); -	LLVertexBuffer::cleanupClass(); +	SUBSYSTEM_CLEANUP(LLVertexBuffer);  	//delete all name pool caches  	LLGLNamePool::cleanupPools(); diff --git a/indra/newview/tests/llremoteparcelrequest_test.cpp b/indra/newview/tests/llremoteparcelrequest_test.cpp index c49b0350e9..5e3649fdae 100755 --- a/indra/newview/tests/llremoteparcelrequest_test.cpp +++ b/indra/newview/tests/llremoteparcelrequest_test.cpp @@ -33,6 +33,7 @@  #include "../llagent.h"  #include "message.h"  #include "llurlentry.h" +#include "llpounceable.h"  namespace {  	const LLUUID TEST_PARCEL_ID("11111111-1111-1111-1111-111111111111"); @@ -61,7 +62,7 @@ void LLMessageSystem::addUUID(char const *,LLUUID const &) { }  void LLMessageSystem::addUUIDFast(char const *,LLUUID const &) { }  void LLMessageSystem::nextBlockFast(char const *) { }  void LLMessageSystem::newMessage(char const *) { } -LLMessageSystem * gMessageSystem; +LLPounceable<LLMessageSystem*, LLPounceableStatic> gMessageSystem;  char const* const _PREHASH_AgentID = 0;   // never dereferenced during this test  char const* const _PREHASH_AgentData = 0; // never dereferenced during this test  LLAgent gAgent; | 
