diff options
Diffstat (limited to 'indra/newview')
77 files changed, 1032 insertions, 531 deletions
| diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index e1f2ecff0c..5ea847599b 100755 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -35,6 +35,17 @@      <key>Value</key>      <integer>768</integer>    </map> +  <key>ImporterPreprocessDAE</key> +  <map> +    <key>Comment</key> +    <string>Enable preprocessing for DAE files to fix some ColladaDOM related problems (like support for space characters within names and ids).</string> +    <key>Persist</key> +    <integer>1</integer> +    <key>Type</key> +    <string>Boolean</string> +    <key>Value</key> +    <integer>1</integer> +  </map>      <key>IMShowTime</key>      <map>        <key>Comment</key> diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index 0393f41666..eb9b35191c 100755 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -3205,7 +3205,7 @@ void LLAgent::initOriginGlobal(const LLVector3d &origin_global)  }  BOOL LLAgent::leftButtonGrabbed() const	 -{  +{  	const BOOL camera_mouse_look = gAgentCamera.cameraMouselook();  	return (!camera_mouse_look && mControlsTakenCount[CONTROL_LBUTTON_DOWN_INDEX] > 0)   		|| (camera_mouse_look && mControlsTakenCount[CONTROL_ML_LBUTTON_DOWN_INDEX] > 0) @@ -3213,6 +3213,13 @@ BOOL LLAgent::leftButtonGrabbed() const  		|| (camera_mouse_look && mControlsTakenPassedOnCount[CONTROL_ML_LBUTTON_DOWN_INDEX] > 0);  } +BOOL LLAgent::leftButtonBlocked() const +{ +    const BOOL camera_mouse_look = gAgentCamera.cameraMouselook(); +    return (!camera_mouse_look && mControlsTakenCount[CONTROL_LBUTTON_DOWN_INDEX] > 0) +        || (camera_mouse_look && mControlsTakenCount[CONTROL_ML_LBUTTON_DOWN_INDEX] > 0); +} +  BOOL LLAgent::rotateGrabbed() const		  {   	return (mControlsTakenCount[CONTROL_YAW_POS_INDEX] > 0) @@ -3670,7 +3677,14 @@ BOOL LLAgent::anyControlGrabbed() const  BOOL LLAgent::isControlGrabbed(S32 control_index) const  { -	return mControlsTakenCount[control_index] > 0; +    if (gAgent.mControlsTakenCount[control_index] > 0) +        return TRUE; +    return gAgent.mControlsTakenPassedOnCount[control_index] > 0; +} + +BOOL LLAgent::isControlBlocked(S32 control_index) const +{ +    return mControlsTakenCount[control_index] > 0;  }  void LLAgent::forceReleaseControls() @@ -3849,6 +3863,7 @@ void LLAgent::startTeleportRequest()      }  	if (hasPendingTeleportRequest())  	{ +        mTeleportCanceled.reset();  		if  (!isMaturityPreferenceSyncedWithServer())  		{  			gTeleportDisplay = TRUE; @@ -3878,6 +3893,7 @@ void LLAgent::startTeleportRequest()  void LLAgent::handleTeleportFinished()  {  	clearTeleportRequest(); +    mTeleportCanceled.reset();  	if (mIsMaturityRatingChangingDuringTeleport)  	{  		// notify user that the maturity preference has been changed @@ -4021,13 +4037,25 @@ void LLAgent::teleportCancel()  			msg->addUUIDFast(_PREHASH_AgentID, getID());  			msg->addUUIDFast(_PREHASH_SessionID, getSessionID());  			sendReliableMessage(); -		}	 +		} +		mTeleportCanceled = mTeleportRequest;  	}  	clearTeleportRequest();  	gAgent.setTeleportState( LLAgent::TELEPORT_NONE );  	gPipeline.resetVertexBuffers();  } +void LLAgent::restoreCanceledTeleportRequest() +{ +    if (mTeleportCanceled != NULL) +    { +        gAgent.setTeleportState( LLAgent::TELEPORT_REQUESTED ); +        mTeleportRequest = mTeleportCanceled; +        mTeleportCanceled.reset(); +        gTeleportDisplay = TRUE; +        gTeleportDisplayTimer.reset(); +    } +}  void LLAgent::teleportViaLocation(const LLVector3d& pos_global)  { diff --git a/indra/newview/llagent.h b/indra/newview/llagent.h index 4830cb754b..9e8550e280 100755 --- a/indra/newview/llagent.h +++ b/indra/newview/llagent.h @@ -432,7 +432,8 @@ private:  	// Grab  	//--------------------------------------------------------------------  public: -	BOOL 			leftButtonGrabbed() const; +    BOOL 			leftButtonGrabbed() const; +    BOOL 			leftButtonBlocked() const;  	BOOL 			rotateGrabbed() const;  	BOOL 			forwardGrabbed() const;  	BOOL 			backwardGrabbed() const; @@ -449,8 +450,9 @@ public:  	BOOL			controlFlagsDirty() const;  	void			enableControlFlagReset();  	void 			resetControlFlags(); -	BOOL			anyControlGrabbed() const; 		// True iff a script has taken over a control -	BOOL			isControlGrabbed(S32 control_index) const; +	BOOL			anyControlGrabbed() const; 		// True if a script has taken over any control +    BOOL			isControlGrabbed(S32 control_index) const; // True if a script has taken over a control +    BOOL			isControlBlocked(S32 control_index) const; // Control should be ignored or won't be passed  	// Send message to simulator to force grabbed controls to be  	// released, in case of a poorly written script.  	void			forceReleaseControls(); @@ -616,6 +618,7 @@ public:  	void 			teleportViaLocation(const LLVector3d& pos_global);		// To a global location - this will probably need to be deprecated  	void			teleportViaLocationLookAt(const LLVector3d& pos_global);// To a global location, preserving camera rotation  	void 			teleportCancel();										// May or may not be allowed by server +    void            restoreCanceledTeleportRequest();  	bool			getTeleportKeepsLookAt() { return mbTeleportKeepsLookAt; } // Whether look-at reset after teleport  protected:  	bool 			teleportCore(bool is_local = false); 					// Stuff for all teleports; returns true if the teleport can proceed @@ -638,6 +641,7 @@ private:  	friend class LLTeleportRequestViaLocationLookAt;  	LLTeleportRequestPtr        mTeleportRequest; +	LLTeleportRequestPtr        mTeleportCanceled;  	boost::signals2::connection mTeleportFinishedSlot;  	boost::signals2::connection mTeleportFailedSlot; diff --git a/indra/newview/llagentcamera.cpp b/indra/newview/llagentcamera.cpp index d22c88a8a0..e335eabd1a 100755 --- a/indra/newview/llagentcamera.cpp +++ b/indra/newview/llagentcamera.cpp @@ -879,7 +879,7 @@ void LLAgentCamera::cameraZoomIn(const F32 fraction)  	}  	LLObjectSelectionHandle selection = LLSelectMgr::getInstance()->getSelection(); -	if (selection->getObjectCount() && selection->getSelectType() == SELECT_TYPE_HUD) +	if (LLToolMgr::getInstance()->inBuildMode() && selection->getObjectCount() && selection->getSelectType() == SELECT_TYPE_HUD)  	{  		// just update hud zoom level  		mHUDTargetZoom /= fraction; diff --git a/indra/newview/llaisapi.cpp b/indra/newview/llaisapi.cpp index 714b456ae7..d8b6cc729d 100755 --- a/indra/newview/llaisapi.cpp +++ b/indra/newview/llaisapi.cpp @@ -567,13 +567,25 @@ void AISUpdate::parseCategory(const LLSD& category_map)  		parseDescendentCount(category_id, category_map["_embedded"]);  	} -	LLPointer<LLViewerInventoryCategory> new_cat(new LLViewerInventoryCategory(category_id)); +	LLPointer<LLViewerInventoryCategory> new_cat;  	LLViewerInventoryCategory *curr_cat = gInventory.getCategory(category_id);  	if (curr_cat)  	{  		// Default to current values where not provided. -		new_cat->copyViewerCategory(curr_cat); -	} +        new_cat = new LLViewerInventoryCategory(curr_cat); +    } +    else +    { +        if (category_map.has("agent_id")) +        { +            new_cat = new LLViewerInventoryCategory(category_map["agent_id"].asUUID()); +        } +        else +        { +            LL_DEBUGS() << "No owner provided, folder might be assigned wrong owner" << LL_ENDL; +            new_cat = new LLViewerInventoryCategory(LLUUID::null); +        } +    }  	BOOL rv = new_cat->unpackMessage(category_map);  	// *NOTE: unpackMessage does not unpack version or descendent count.  	//if (category_map.has("version")) diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index b74b4885d9..c661141940 100755 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -4542,7 +4542,13 @@ void LLAppViewer::purgeCache()  	LL_INFOS("AppCache") << "Purging Cache and Texture Cache..." << LL_ENDL;  	LLAppViewer::getTextureCache()->purgeCache(LL_PATH_CACHE);  	LLVOCache::getInstance()->removeCache(LL_PATH_CACHE); -	gDirUtilp->deleteFilesInDir(gDirUtilp->getExpandedFilename(LL_PATH_CACHE, ""), "*.*"); +	std::string browser_cache = gDirUtilp->getExpandedFilename(LL_PATH_CACHE, "cef_cache"); +	if (LLFile::isdir(browser_cache)) +	{ +		// cef does not support clear_cache and clear_cookies, so clear what we can manually. +		gDirUtilp->deleteDirAndContents(browser_cache); +	} +	gDirUtilp->deleteFilesInDir(gDirUtilp->getExpandedFilename(LL_PATH_CACHE, ""), "*");  }  //purge cache immediately, do not wait until the next login. diff --git a/indra/newview/llavatariconctrl.cpp b/indra/newview/llavatariconctrl.cpp index 25a5df9781..932326acae 100755 --- a/indra/newview/llavatariconctrl.cpp +++ b/indra/newview/llavatariconctrl.cpp @@ -182,38 +182,12 @@ LLAvatarIconCtrl::LLAvatarIconCtrl(const LLAvatarIconCtrl::Params& p)  	mSymbolPos(p.symbol_pos)  {  	mPriority = LLViewerFetchedTexture::BOOST_ICON; -	 -	LLRect rect = p.rect; - -	// BottomRight is the default position -	S32 left = rect.getWidth() - mSymbolSize - mSymbolHpad; -	S32 bottom = mSymbolVpad; -	switch(mSymbolPos) -	{ -	case LLAvatarIconCtrlEnums::BOTTOM_LEFT: -	{ -		left = mSymbolHpad; -		bottom = mSymbolVpad; -	} - -	case LLAvatarIconCtrlEnums::TOP_LEFT: -	{ -		left = mSymbolHpad; -		bottom = rect.getHeight() - mSymbolSize - mSymbolVpad; -	} - -	case LLAvatarIconCtrlEnums::TOP_RIGHT: -	{ -		left = rect.getWidth() - mSymbolSize - mSymbolHpad; -		bottom = rect.getHeight() - mSymbolSize - mSymbolVpad; -	} - -	case LLAvatarIconCtrlEnums::BOTTOM_RIGHT: -		// fallthrough, is default -	default: -		rect.setOriginAndSize(left, bottom, mSymbolSize, mSymbolSize); -	} +    // don't request larger image then necessary to save gl memory, +    // but ensure that quality is sufficient +    LLRect rect = p.rect; +    mMaxHeight = llmax((S32)p.min_height, rect.getHeight()); +    mMaxWidth = llmax((S32)p.min_width, rect.getWidth());  	if (p.avatar_id.isProvided())  	{ diff --git a/indra/newview/llchatmsgbox.cpp b/indra/newview/llchatmsgbox.cpp index aa6c9c094c..38f58abba6 100755 --- a/indra/newview/llchatmsgbox.cpp +++ b/indra/newview/llchatmsgbox.cpp @@ -56,9 +56,9 @@ public:  		return mEditor->getDocumentView()->getRect().getWidth();  	} -	/*virtual*/ F32	draw(S32 start, S32 end, S32 selection_start, S32 selection_end, const LLRect& draw_rect) +	/*virtual*/ F32	draw(S32 start, S32 end, S32 selection_start, S32 selection_end, const LLRectf& draw_rect)  	{ -		gl_line_2d(draw_rect.mLeft + 5, draw_rect.getCenterY(), draw_rect.mRight - 5, draw_rect.getCenterY(), LLColor4::grey); +		gl_line_2d((S32)(draw_rect.mLeft + 5), (S32)draw_rect.getCenterY(), (S32)(draw_rect.mRight - 5), (S32)draw_rect.getCenterY(), LLColor4::grey);  		return draw_rect.getWidth();  	} diff --git a/indra/newview/llcolorswatch.cpp b/indra/newview/llcolorswatch.cpp index a03178adf6..80d810d159 100755 --- a/indra/newview/llcolorswatch.cpp +++ b/indra/newview/llcolorswatch.cpp @@ -292,7 +292,7 @@ void LLColorSwatchCtrl::onColorChanged ( void* data, EColorPickOp pick_op )  									subject->mColor.mV[VALPHA] ); // keep current alpha  			subject->mColor = updatedColor;  			subject->setControlValue(updatedColor.getValue()); - +			pickerp->setRevertOnCancel(TRUE);  			if (pick_op == COLOR_CANCEL && subject->mOnCancelCallback)  			{  				subject->mOnCancelCallback( subject, LLSD()); diff --git a/indra/newview/llexpandabletextbox.cpp b/indra/newview/llexpandabletextbox.cpp index 61b5748201..4dbed114bb 100755 --- a/indra/newview/llexpandabletextbox.cpp +++ b/indra/newview/llexpandabletextbox.cpp @@ -77,7 +77,7 @@ public:  			return 0;  		}  	} -	/*virtual*/ F32		draw(S32 start, S32 end, S32 selection_start, S32 selection_end, const LLRect& draw_rect) +	/*virtual*/ F32		draw(S32 start, S32 end, S32 selection_start, S32 selection_end, const LLRectf& draw_rect)  	{  		F32 right_x;  		mStyle->getFont()->renderUTF8(mExpanderLabel, start,  diff --git a/indra/newview/llfavoritesbar.cpp b/indra/newview/llfavoritesbar.cpp index b779d8f461..d614d612ff 100755 --- a/indra/newview/llfavoritesbar.cpp +++ b/indra/newview/llfavoritesbar.cpp @@ -969,6 +969,7 @@ BOOL LLFavoritesBarCtrl::collectFavoriteItems(LLInventoryModel::item_array_t &it  		{  			LLFavoritesOrderStorage::instance().setSortIndex((*i), ++sortField);  		} +		LLFavoritesOrderStorage::instance().mSaveOnExit = true;  	}  	return TRUE; @@ -1530,10 +1531,10 @@ void LLFavoritesOrderStorage::destroyClass()  	{  		file.close();  		LLFile::remove(filename); -		if(mSaveOnExit) -		{ -			LLFavoritesOrderStorage::instance().saveFavoritesRecord(true); -		} +	} +	if(mSaveOnExit) +	{ +	    LLFavoritesOrderStorage::instance().saveFavoritesRecord(true);  	}  } @@ -1799,6 +1800,16 @@ BOOL LLFavoritesOrderStorage::saveFavoritesRecord(bool pref_changed)  	    }  	} +	for (std::set<LLUUID>::iterator it = mMissingSLURLs.begin(); it != mMissingSLURLs.end(); it++) +	{ +		slurls_map_t::iterator slurl_iter = mSLURLs.find(*it); +		if (slurl_iter != mSLURLs.end()) +		{ +			pref_changed = true; +			break; +		} +	} +  	if((items != mPrevFavorites) || name_changed || pref_changed)  	{  	    std::string filename = getStoredFavoritesFilename(); @@ -1819,6 +1830,7 @@ BOOL LLFavoritesOrderStorage::saveFavoritesRecord(bool pref_changed)  			LLSD user_llsd;  			S32 fav_iter = 0; +			mMissingSLURLs.clear();  			for (LLInventoryModel::item_array_t::iterator it = items.begin(); it != items.end(); it++)  			{  				LLSD value; @@ -1836,8 +1848,10 @@ BOOL LLFavoritesOrderStorage::saveFavoritesRecord(bool pref_changed)  					else  					{  						getSLURL((*it)->getAssetUUID()); +						value["slurl"] = ""; +						user_llsd[fav_iter] = value;  						mUpdateRequired = true; -						return FALSE; +						mMissingSLURLs.insert((*it)->getAssetUUID());  					}  				}  				else @@ -1868,7 +1882,6 @@ BOOL LLFavoritesOrderStorage::saveFavoritesRecord(bool pref_changed)  												<< "' at '" << filename << "' " << LL_ENDL;  			}  		} -  		mPrevFavorites = items;  	} diff --git a/indra/newview/llfavoritesbar.h b/indra/newview/llfavoritesbar.h index 846d62227a..2115f77cf3 100755 --- a/indra/newview/llfavoritesbar.h +++ b/indra/newview/llfavoritesbar.h @@ -245,7 +245,7 @@ private:  	typedef std::map<LLUUID, std::string> slurls_map_t;  	slurls_map_t mSLURLs; - +	std::set<LLUUID> mMissingSLURLs;  	bool mIsDirty;  	struct IsNotInFavorites diff --git a/indra/newview/llfloatercolorpicker.cpp b/indra/newview/llfloatercolorpicker.cpp index 535cb368bd..ec2c9740af 100755 --- a/indra/newview/llfloatercolorpicker.cpp +++ b/indra/newview/llfloatercolorpicker.cpp @@ -173,6 +173,7 @@ void LLFloaterColorPicker::showUI ()  	openFloater(getKey());  	setVisible ( TRUE );  	setFocus ( TRUE ); +	setRevertOnCancel(FALSE);  	// HACK: if system color picker is required - close the SL one we made and use default system dialog  	if ( gSavedSettings.getBOOL ( "UseDefaultColorPicker" ) ) @@ -390,7 +391,10 @@ void LLFloaterColorPicker::onClickCancel ( void* data )  		if ( self )  		{ -			self->cancelSelection (); +		    if(self->getRevertOnCancel()) +		    { +		        self->cancelSelection (); +		    }  			self->closeFloater();  		}  	} @@ -447,8 +451,7 @@ void LLFloaterColorPicker::onImmediateCheck( LLUICtrl* ctrl, void* data)  	if (self)  	{  		gSavedSettings.setBOOL("ApplyColorImmediately", self->mApplyImmediateCheck->get()); - -		if (self->mApplyImmediateCheck->get()) +		if (self->mApplyImmediateCheck->get() && self->isColorChanged())  		{  			LLColorSwatchCtrl::onColorChanged ( self->getSwatch (), LLColorSwatchCtrl::COLOR_CHANGE );  		} @@ -473,6 +476,11 @@ F32 LLFloaterColorPicker::getSwatchTransparency()  	return getTransparencyType() == TT_ACTIVE ? 1.f : LLFloater::getCurrentTransparency();  } +BOOL LLFloaterColorPicker::isColorChanged() +{ +    return ((getOrigR() != getCurR()) || (getOrigG() != getCurG()) || (getOrigB() != getCurB())); +} +  //////////////////////////////////////////////////////////////////////////////  //  void LLFloaterColorPicker::draw() diff --git a/indra/newview/llfloatercolorpicker.h b/indra/newview/llfloatercolorpicker.h index 8c16ebdf03..16974a872e 100755 --- a/indra/newview/llfloatercolorpicker.h +++ b/indra/newview/llfloatercolorpicker.h @@ -104,6 +104,11 @@ class LLFloaterColorPicker  		void setMouseDownInSwatch (BOOL mouse_down_in_swatch);  		BOOL getMouseDownInSwatch () { return mMouseDownInSwatch; } +		void setRevertOnCancel (BOOL revertOnCancel) { mRevertOnCancel = revertOnCancel; }; +		BOOL getRevertOnCancel () { return mRevertOnCancel; } + +		BOOL isColorChanged (); +  		// called when text entries (RGB/HSL etc.) are changed by user  		void onTextEntryChanged ( LLUICtrl* ctrl ); @@ -144,6 +149,8 @@ class LLFloaterColorPicker  		BOOL mMouseDownInHueRegion;  		BOOL mMouseDownInSwatch; +		BOOL mRevertOnCancel; +  		const S32 mRGBViewerImageLeft;  		const S32 mRGBViewerImageTop;  		const S32 mRGBViewerImageWidth; diff --git a/indra/newview/llfloatermodelpreview.cpp b/indra/newview/llfloatermodelpreview.cpp index de9eb2b6a5..4170d42a3e 100755 --- a/indra/newview/llfloatermodelpreview.cpp +++ b/indra/newview/llfloatermodelpreview.cpp @@ -610,7 +610,7 @@ void LLFloaterModelPreview::onAutoFillCommit(LLUICtrl* ctrl, void* userdata)  {  	LLFloaterModelPreview* fp = (LLFloaterModelPreview*) userdata; -	fp->mModelPreview->genLODs(); +    fp->mModelPreview->queryLODs();  }  void LLFloaterModelPreview::onLODParamCommit(S32 lod, bool enforce_tri_limit) @@ -638,7 +638,12 @@ void LLFloaterModelPreview::onLODParamCommit(S32 lod, bool enforce_tri_limit)  //-----------------------------------------------------------------------------  void LLFloaterModelPreview::draw()  { -	LLFloater::draw(); +    LLFloater::draw(); + +    if (!mModelPreview) +    { +        return; +    }  	mModelPreview->update(); @@ -668,7 +673,7 @@ void LLFloaterModelPreview::draw()  	childSetTextArg("prim_cost", "[PRIM_COST]", llformat("%d", mModelPreview->mResourceCost));  	childSetTextArg("description_label", "[TEXTURES]", llformat("%d", mModelPreview->mTextureSet.size())); -	if (mModelPreview) +    if (mModelPreview->lodsReady())  	{  		gGL.color3f(1.f, 1.f, 1.f); @@ -1178,6 +1183,7 @@ void LLFloaterModelPreview::onMouseCaptureLostModelPreview(LLMouseHandler* handl  LLModelPreview::LLModelPreview(S32 width, S32 height, LLFloater* fmp)  : LLViewerDynamicTexture(width, height, 3, ORDER_MIDDLE, FALSE), LLMutex(NULL) +, mLodsQuery()  , mPelvisZOffset( 0.0f )  , mLegacyRigValid( false )  , mRigValidJointUpload( false ) @@ -1543,9 +1549,18 @@ void LLModelPreview::rebuildUploadData()  					}  					instance.mLOD[i] = lod_model;  				} -				else if (importerDebug) +				else  				{ -					LL_INFOS() << "List of models does not include " << instance.mLabel << LL_ENDL; +					if (i < LLModel::LOD_HIGH && !lodsReady()) +					{ +						// assign a placeholder from previous LOD until lod generation is complete. +						// Note: we might need to assign it regardless of conditions like named search does, to prevent crashes. +						instance.mLOD[i] = instance.mLOD[i + 1]; +					} +					if (importerDebug) +					{ +						LL_INFOS() << "List of models does not include " << instance.mLabel << LL_ENDL; +					}  				}  			} @@ -1778,7 +1793,8 @@ void LLModelPreview::loadModel(std::string filename, S32 lod, bool force_disable  		mJointsFromNode,          joint_alias_map,  		LLSkinningUtil::getMaxJointCount(), -		gSavedSettings.getU32("ImporterModelLimit")); +		gSavedSettings.getU32("ImporterModelLimit"), +		gSavedSettings.getBOOL("ImporterPreprocessDAE"));  	if (force_disable_slm)  	{ @@ -2591,112 +2607,6 @@ void LLModelPreview::genLODs(S32 which_lod, U32 decimation, bool enforce_tri_lim  		shader->bind();  	}  } -void LLModelPreview::genModelBBox() -{ -	LLVector3 min, max; -	min = this->mModelLoader->mExtents[0]; -	max = this->mModelLoader->mExtents[1]; -	std::vector<LLVector3> v_list; -	v_list.resize(4); -	std::map<U8, std::vector<LLVector3> > face_list; - -	// Face 0 -	v_list[0] = LLVector3(min.mV[VX], max.mV[VY], max.mV[VZ]); -	v_list[1] = LLVector3(min.mV[VX], min.mV[VY], max.mV[VZ]); -	v_list[2] = LLVector3(max.mV[VX], min.mV[VY], max.mV[VZ]); -	v_list[3] = LLVector3(max.mV[VX], max.mV[VY], max.mV[VZ]); -	face_list.insert(std::pair<U8, std::vector<LLVector3> >(0, v_list)); - -	// Face 1 -	v_list[0] = LLVector3(max.mV[VX], min.mV[VY], max.mV[VZ]); -	v_list[1] = LLVector3(max.mV[VX], min.mV[VY], min.mV[VZ]); -	v_list[2] = LLVector3(max.mV[VX], max.mV[VY], min.mV[VZ]); -	v_list[3] = LLVector3(max.mV[VX], max.mV[VY], max.mV[VZ]); -	face_list.insert(std::pair<U8, std::vector<LLVector3> >(1, v_list)); - -	// Face 2 -	v_list[0] = LLVector3(min.mV[VX], max.mV[VY], min.mV[VZ]); -	v_list[1] = LLVector3(min.mV[VX], max.mV[VY], max.mV[VZ]); -	v_list[2] = LLVector3(max.mV[VX], max.mV[VY], max.mV[VZ]); -	v_list[3] = LLVector3(max.mV[VX], max.mV[VY], min.mV[VZ]); -	face_list.insert(std::pair<U8, std::vector<LLVector3> >(2, v_list)); - -	// Face 3 -	v_list[0] = LLVector3(min.mV[VX], max.mV[VY], max.mV[VZ]); -	v_list[1] = LLVector3(min.mV[VX], max.mV[VY], min.mV[VZ]); -	v_list[2] = LLVector3(min.mV[VX], min.mV[VY], min.mV[VZ]); -	v_list[3] = LLVector3(min.mV[VX], min.mV[VY], max.mV[VZ]); -	face_list.insert(std::pair<U8, std::vector<LLVector3> >(3, v_list)); - -	// Face 4 -	v_list[0] = LLVector3(min.mV[VX], min.mV[VY], max.mV[VZ]); -	v_list[1] = LLVector3(min.mV[VX], min.mV[VY], min.mV[VZ]); -	v_list[2] = LLVector3(max.mV[VX], min.mV[VY], min.mV[VZ]); -	v_list[3] = LLVector3(max.mV[VX], min.mV[VY], max.mV[VZ]); -	face_list.insert(std::pair<U8, std::vector<LLVector3> >(4, v_list)); - -	// Face 5 -	v_list[0] = LLVector3(min.mV[VX], min.mV[VY], min.mV[VZ]); -	v_list[1] = LLVector3(min.mV[VX], max.mV[VY], min.mV[VZ]); -	v_list[2] = LLVector3(max.mV[VX], max.mV[VY], min.mV[VZ]); -	v_list[3] = LLVector3(max.mV[VX], min.mV[VY], min.mV[VZ]); -	face_list.insert(std::pair<U8, std::vector<LLVector3> >(5, v_list)); - -	U16 Idx[] = { 0, 1, 2, 3, 0, 2, }; - -	U32 type_mask = LLVertexBuffer::MAP_VERTEX | LLVertexBuffer::MAP_NORMAL | LLVertexBuffer::MAP_TEXCOORD0; -	LLPointer<LLVertexBuffer> buff = new LLVertexBuffer(type_mask, 0); -	buff->allocateBuffer(4, 6, true); - -	LLStrider<LLVector3> pos; -	LLStrider<U16> idx; -	LLStrider<LLVector3> norm; -	LLStrider<LLVector2> tc; - -	buff->getVertexStrider(pos); -	buff->getIndexStrider(idx); - -	buff->getNormalStrider(norm); -	buff->getTexCoord0Strider(tc); - -	for (U32 i = 0; i < 6; ++i) -	{ -		idx[i] = Idx[i]; -	} - -	LLVolumeParams volume_params; -	volume_params.setType(LL_PCODE_PROFILE_SQUARE, LL_PCODE_PATH_LINE); -	LLModel* mdl = new LLModel(volume_params, 0.f); -	mdl->mLabel = "BBOX";  // please adopt name from high LOD (mBaseModel) or from original model otherwise it breaks search mechanics which is name based - -	mdl->setNumVolumeFaces(6); -	for (U8 i = 0; i < 6; ++i) -	{ -		for (U8 j = 0; j < 4; ++j) -		{ -			pos[j] = face_list[i][j]; -		} - -		mdl->setVolumeFaceData(i, pos, norm, tc, idx, buff->getNumVerts(), buff->getNumIndices()); -	} - -	if (validate_model(mdl)) -	{ -		LLMatrix4 mat; -		std::map<std::string, LLImportMaterial> materials; -		std::vector<LLModelInstance> instance_list; -		instance_list.push_back(LLModelInstance(mdl, mdl->mLabel, mat, materials)); - -		for (S32 i = LLModel::LOD_HIGH - 1; i >= 0; i--) -		{ -			mModel[i].clear(); -			mModel[i].push_back(mdl); - -			mScene[i].clear(); -			mScene[i].insert(std::pair<LLMatrix4, std::vector<LLModelInstance> >(mat, instance_list)); -		} -	} -}  void LLModelPreview::updateStatusMessages()  { @@ -3440,14 +3350,25 @@ void LLModelPreview::genBuffers(S32 lod, bool include_skin_weights)  void LLModelPreview::update()  {      if (mGenLOD) -	{ -		mGenLOD = false; -		genLODs(); -		refresh(); -		updateStatusMessages(); -	} +    { +        bool subscribe_for_generation = mLodsQuery.empty(); +        mGenLOD = false; +        mDirty = true; +        mLodsQuery.clear(); + +        for (S32 lod = LLModel::LOD_HIGH; lod >= 0; --lod) +        { +            // adding all lods into query for generation +            mLodsQuery.push_back(lod); +        } + +        if (subscribe_for_generation) +        { +            doOnIdleRepeating(lodQueryCallback); +        } +    } -	if (mDirty) +    if (mDirty && mLodsQuery.empty())  	{  		mDirty = false;  		mResourceCost = calcResourceCost(); @@ -4339,6 +4260,29 @@ void LLModelPreview::textureLoadedCallback(  	}  } +// static +bool LLModelPreview::lodQueryCallback() +{ +    // not the best solution, but model preview belongs to floater +    // so it is an easy way to check that preview still exists. +    LLFloaterModelPreview* fmp = LLFloaterModelPreview::sInstance; +    if (fmp && fmp->mModelPreview) +    { +        LLModelPreview* preview = fmp->mModelPreview; +        if (preview->mLodsQuery.size() > 0) +        { +            S32 lod = preview->mLodsQuery.back(); +            preview->mLodsQuery.pop_back(); +            preview->genLODs(lod); + +            // return false to continue cycle +            return false; +        } +    } +    // nothing to process +    return true; +} +  void LLModelPreview::onLODParamCommit(S32 lod, bool enforce_tri_limit)  {  	if (!mLODFrozen) diff --git a/indra/newview/llfloatermodelpreview.h b/indra/newview/llfloatermodelpreview.h index 9b07af478e..0930b7bed2 100755 --- a/indra/newview/llfloatermodelpreview.h +++ b/indra/newview/llfloatermodelpreview.h @@ -262,8 +262,9 @@ public:      void getJointAliases(JointMap& joint_map);  	void loadModel(std::string filename, S32 lod, bool force_disable_slm = false);  	void loadModelCallback(S32 lod); +    bool lodsReady() { return !mGenLOD && mLodsQuery.empty(); } +    void queryLODs() { mGenLOD = true; };  	void genLODs(S32 which_lod = -1, U32 decimation = 3, bool enforce_tri_limit = false); -	void genModelBBox(); // Generate just a model BBox if we can't generate proper LOD  	void generateNormals();  	void restoreNormals();  	U32 calcResourceCost(); @@ -291,6 +292,7 @@ public:  	void setLegacyRigValid( bool rigValid ) { mLegacyRigValid = rigValid; }		  	static void	textureLoadedCallback( BOOL success, LLViewerFetchedTexture *src_vi, LLImageRaw* src, LLImageRaw* src_aux, S32 discard_level, BOOL final, void* userdata ); +    static bool lodQueryCallback();  	boost::signals2::connection setDetailsCallback( const details_signal_t::slot_type& cb ){  return mDetailsSignal.connect(cb);  }  	boost::signals2::connection setModelLoadedCallback( const model_loaded_signal_t::slot_type& cb ){  return mModelLoadedSignal.connect(cb);  } @@ -300,6 +302,7 @@ public:  	U32 getLoadState() { return mLoadState; }  	static bool 		sIgnoreLoadedCallback; +    std::vector<S32> mLodsQuery;  protected: diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp index 8784829aa7..b3dd395e8a 100755 --- a/indra/newview/llfloaterpreference.cpp +++ b/indra/newview/llfloaterpreference.cpp @@ -481,6 +481,10 @@ BOOL LLFloaterPreference::postBuild()  	LLLogChat::setSaveHistorySignal(boost::bind(&LLFloaterPreference::onLogChatHistorySaved, this)); +	LLSliderCtrl* fov_slider = getChild<LLSliderCtrl>("camera_fov"); +	fov_slider->setMinValue(LLViewerCamera::getInstance()->getMinView()); +	fov_slider->setMaxValue(LLViewerCamera::getInstance()->getMaxView()); +  	return TRUE;  } diff --git a/indra/newview/llfloaterregioninfo.cpp b/indra/newview/llfloaterregioninfo.cpp index 5d1e01c1f7..16566bea73 100755 --- a/indra/newview/llfloaterregioninfo.cpp +++ b/indra/newview/llfloaterregioninfo.cpp @@ -2049,6 +2049,8 @@ void LLPanelEstateInfo::updateControls(LLViewerRegion* region)  	BOOL manager = (region && region->isEstateManager());  	setCtrlsEnabled(god || owner || manager); +	getChildView("apply_btn")->setEnabled(FALSE); +  	BOOL has_allowed_avatar = getChild<LLNameListCtrl>("allowed_avatar_name_list")->getFirstSelected() ?  TRUE : FALSE;  	BOOL has_allowed_group = getChild<LLNameListCtrl>("allowed_group_name_list")->getFirstSelected() ?  TRUE : FALSE;  	BOOL has_banned_agent = getChild<LLNameListCtrl>("banned_avatar_name_list")->getFirstSelected() ?  TRUE : FALSE; diff --git a/indra/newview/llfriendcard.cpp b/indra/newview/llfriendcard.cpp index 307e259006..62cbea6401 100755 --- a/indra/newview/llfriendcard.cpp +++ b/indra/newview/llfriendcard.cpp @@ -162,6 +162,7 @@ void LLInitialFriendCardsFetch::done()  // LLFriendCardsManager Constructor / Destructor  LLFriendCardsManager::LLFriendCardsManager() +:   mState(INIT)  {  	LLAvatarTracker::instance().addObserver(this);  } @@ -423,6 +424,7 @@ void LLFriendCardsManager::ensureFriendsFolderExists()  	LLUUID friends_folder_ID = findFriendFolderUUIDImpl();  	if (friends_folder_ID.notNull())  	{ +        mState = LOADING_FRIENDS_FOLDER;  		fetchAndCheckFolderDescendents(friends_folder_ID,  				boost::bind(&LLFriendCardsManager::ensureFriendsAllFolderExists, this));  	} @@ -452,6 +454,7 @@ void LLFriendCardsManager::ensureFriendsAllFolderExists()  	LLUUID friends_all_folder_ID = findFriendAllSubfolderUUIDImpl();  	if (friends_all_folder_ID.notNull())  	{ +        mState = LOADING_ALL_FOLDER;  		fetchAndCheckFolderDescendents(friends_all_folder_ID,  				boost::bind(&LLFriendCardsManager::syncFriendsFolder, this));  	} @@ -506,6 +509,9 @@ void LLFriendCardsManager::syncFriendsFolder()  							  NULL);  	} +    // All folders created and updated. +    mState = MANAGER_READY; +  	// 2. Add missing Friend Cards for friends  	LLAvatarTracker::buddy_map_t::const_iterator buddy_it = all_buddies.begin();  	LL_INFOS() << "try to build friends, count: " << all_buddies.size() << LL_ENDL; @@ -540,6 +546,12 @@ void LLFriendCardsManager::addFriendCardToInventory(const LLUUID& avatarID)  		<< ", id: " << avatarID  		<< LL_ENDL;  +    if (shouldBeAdded && !isManagerReady()) +    { +        shouldBeAdded = false; +        LL_DEBUGS() << "Calling cards manager not ready, state: " << getManagerState() << LL_ENDL; +    } +  	if (shouldBeAdded && findFriendCardInventoryUUIDImpl(avatarID).notNull())  	{  		shouldBeAdded = false; @@ -583,13 +595,30 @@ void LLFriendCardsManager::onFriendListUpdate(U32 changed_mask)  	switch(changed_mask) {  	case LLFriendObserver::ADD:  		{ -			const std::set<LLUUID>& changed_items = at.getChangedIDs(); -			std::set<LLUUID>::const_iterator id_it = changed_items.begin(); -			std::set<LLUUID>::const_iterator id_end = changed_items.end(); -			for (;id_it != id_end; ++id_it) -			{ -				LLFriendCardsManager::instance().addFriendCardToInventory(*id_it); -			} +            LLFriendCardsManager& cards_manager = LLFriendCardsManager::instance(); +            if (cards_manager.isManagerReady()) +            { +                // Try to add cards into inventory. +                // If cards already exist they won't be created. +                const std::set<LLUUID>& changed_items = at.getChangedIDs(); +                std::set<LLUUID>::const_iterator id_it = changed_items.begin(); +                std::set<LLUUID>::const_iterator id_end = changed_items.end(); +                for (; id_it != id_end; ++id_it) +                { +                    cards_manager.addFriendCardToInventory(*id_it); +                } +            } +            else +            { +                // User either removed calling cards' folders and manager is loading them +                // or update came too early, before viewer had chance to load all folders. +                // Either way don't process 'add' operation - manager will recreate all +                // cards after fetching folders. +                LL_INFOS_ONCE() << "Calling cards manager not ready, state: " +                    << cards_manager.getManagerState() +                    << ", postponing update." +                    << LL_ENDL; +            }  		}  		break;  	case LLFriendObserver::REMOVE: diff --git a/indra/newview/llfriendcard.h b/indra/newview/llfriendcard.h index 48a9f70079..ae3800e17b 100755 --- a/indra/newview/llfriendcard.h +++ b/indra/newview/llfriendcard.h @@ -45,6 +45,14 @@ class LLFriendCardsManager  public:  	typedef std::map<LLUUID, uuid_vec_t > folderid_buddies_map_t; +    enum EManagerState +    { +        INIT = 1, +        LOADING_FRIENDS_FOLDER, +        LOADING_ALL_FOLDER, +        MANAGER_READY +    }; +  	// LLFriendObserver implementation  	void changed(U32 mask)  	{ @@ -71,7 +79,14 @@ public:  	/**  	 *	Checks is the specified category is a Friend folder or any its subfolder  	 */ -	bool isAnyFriendCategory(const LLUUID& catID) const; +    bool isAnyFriendCategory(const LLUUID& catID) const; + +    /** +    *	Indicates that all calling card related folders are created or loaded +    */ +    bool isManagerReady() const { return mState == MANAGER_READY; } + +    EManagerState getManagerState() const { return mState; }  	/**  	 *	Checks whether "Friends" and "Friends/All" folders exist in "Calling Cards" category @@ -144,6 +159,8 @@ private:  	typedef std::set<LLUUID> avatar_uuid_set_t;  	avatar_uuid_set_t mBuddyIDSet; +    EManagerState mState; +  };  #endif // LL_LLFRIENDCARD_H diff --git a/indra/newview/llgiveinventory.cpp b/indra/newview/llgiveinventory.cpp index 813d2081ce..a9bf8a9a50 100755 --- a/indra/newview/llgiveinventory.cpp +++ b/indra/newview/llgiveinventory.cpp @@ -139,8 +139,10 @@ bool LLGiveInventory::isInventoryGiveAcceptable(const LLInventoryItem* item)  			BOOL copyable = false;  			if (item->getPermissions().allowCopyBy(gAgentID)) copyable = true; -			if (!copyable || get_is_item_worn(item->getUUID())) +			if (!copyable && get_is_item_worn(item->getUUID()))  			{ +				// worn no-copy items can't be transfered, +				// but it is valid to transfer a copy of a worn item  				acceptable = false;  			}  		} diff --git a/indra/newview/llgroupiconctrl.cpp b/indra/newview/llgroupiconctrl.cpp index 6abf9ea637..1974a073dd 100755 --- a/indra/newview/llgroupiconctrl.cpp +++ b/indra/newview/llgroupiconctrl.cpp @@ -37,7 +37,10 @@ LLGroupIconCtrl::Params::Params()  :	group_id("group_id"),  	draw_tooltip("draw_tooltip", true),  	default_icon_name("default_icon_name") -{} +{ +    changeDefault(min_width, 32); +    changeDefault(min_height, 32); +}  LLGroupIconCtrl::LLGroupIconCtrl(const LLGroupIconCtrl::Params& p) @@ -48,6 +51,12 @@ LLGroupIconCtrl::LLGroupIconCtrl(const LLGroupIconCtrl::Params& p)  {  	mPriority = LLViewerFetchedTexture::BOOST_ICON; +    // don't request larger image then necessary to save gl memory, +    // but ensure that quality is sufficient +    LLRect rect = p.rect; +    mMaxHeight = llmax((S32)p.min_height, rect.getHeight()); +    mMaxWidth = llmax((S32)p.min_width, rect.getWidth()); +  	if (p.group_id.isProvided())  	{  		LLSD value(p.group_id); diff --git a/indra/newview/llgroupmgr.cpp b/indra/newview/llgroupmgr.cpp index e1315adfde..012a4fdb2f 100755 --- a/indra/newview/llgroupmgr.cpp +++ b/indra/newview/llgroupmgr.cpp @@ -1053,6 +1053,11 @@ void LLGroupMgr::processGroupMembersReply(LLMessageSystem* msg, void** data)  void LLGroupMgr::processGroupPropertiesReply(LLMessageSystem* msg, void** data)  {  	LL_DEBUGS() << "LLGroupMgr::processGroupPropertiesReply" << LL_ENDL; +	if (!msg) +	{ +		LL_ERRS() << "Can't access the messaging system" << LL_ENDL; +		return; +	}  	LLUUID agent_id;  	msg->getUUIDFast(_PREHASH_AgentData, _PREHASH_AgentID, agent_id );  	if (gAgent.getID() != agent_id) diff --git a/indra/newview/llhudtext.cpp b/indra/newview/llhudtext.cpp index 2c204170f2..52e83fe412 100755 --- a/indra/newview/llhudtext.cpp +++ b/indra/newview/llhudtext.cpp @@ -53,6 +53,7 @@ const F32 VERTICAL_PADDING = 12.f;  const F32 BUFFER_SIZE = 2.f;  const F32 HUD_TEXT_MAX_WIDTH = 190.f;  const F32 HUD_TEXT_MAX_WIDTH_NO_BUBBLE = 1000.f; +const F32 MAX_DRAW_DISTANCE = 64.f;  std::set<LLPointer<LLHUDText> > LLHUDText::sTextObjects;  std::vector<LLPointer<LLHUDText> > LLHUDText::sVisibleTextObjects; @@ -373,7 +374,7 @@ void LLHUDText::updateVisibility()  		mVisible = FALSE;  		return;  	} -		 +  	if (vec_from_camera * LLViewerCamera::getInstance()->getAtAxis() <= LLViewerCamera::getInstance()->getNear() + 0.1f + mSourceObject->getVObjRadius())  	{  		mPositionAgent = LLViewerCamera::getInstance()->getOrigin() + vec_from_camera * ((LLViewerCamera::getInstance()->getNear() + 0.1f) / (vec_from_camera * LLViewerCamera::getInstance()->getAtAxis())); @@ -391,6 +392,15 @@ void LLHUDText::updateVisibility()  		return;  	} +	LLVector3 pos_agent_center = gAgent.getPosAgentFromGlobal(mPositionGlobal) - dir_from_camera; +	F32 last_distance_center = (pos_agent_center - LLViewerCamera::getInstance()->getOrigin()).magVec(); +	if(last_distance_center > MAX_DRAW_DISTANCE) +	{ +		mVisible = FALSE; +		return; +	} + +  	LLVector3 x_pixel_vec;  	LLVector3 y_pixel_vec; diff --git a/indra/newview/llinspectgroup.cpp b/indra/newview/llinspectgroup.cpp index 76617b55bf..8e91af321e 100755 --- a/indra/newview/llinspectgroup.cpp +++ b/indra/newview/llinspectgroup.cpp @@ -42,16 +42,13 @@  #include "lltrans.h"  #include "lluictrl.h" -class LLFetchGroupData; - -  //////////////////////////////////////////////////////////////////////////////  // LLInspectGroup  //////////////////////////////////////////////////////////////////////////////  /// Group Inspector, a small information window used when clicking  /// on group names in the 2D UI -class LLInspectGroup : public LLInspect +class LLInspectGroup : public LLInspect, public LLGroupMgrObserver  {  	friend class LLFloaterReg; @@ -65,12 +62,16 @@ public:  	// (for example, inspector about same group but in different position)  	/*virtual*/ void onOpen(const LLSD& group_id); +	void setGroupID(const LLUUID& group_id); +  	// When closing they should close their gear menu   	/*virtual*/ void onClose(bool app_quitting);  	// Update view based on information from group manager  	void processGroupData(); -	 + +	virtual void changed(LLGroupChange gc); +  	// Make network requests for all the data to display in this view.  	// Used on construction and if avatar id changes.  	void requestUpdate(); @@ -88,53 +89,12 @@ public:  private:  	LLUUID				mGroupID; -	// an in-flight network request for group properties  -	// is represented by this object -	LLFetchGroupData*	mPropertiesRequest;  }; -////////////////////////////////////////////////////////////////////////////// -// LLFetchGroupData -////////////////////////////////////////////////////////////////////////////// - -// This object represents a pending request for avatar properties information -class LLFetchGroupData : public LLGroupMgrObserver -{ -public: -	// If the inspector closes it will delete the pending request object, so the -	// inspector pointer will be valid for the lifetime of this object -	LLFetchGroupData(const LLUUID& group_id, LLInspectGroup* inspector) -	:	LLGroupMgrObserver(group_id), -		mInspector(inspector) -	{ -		LLGroupMgr* mgr = LLGroupMgr::getInstance(); -		// register ourselves as an observer -		mgr->addObserver(this); -		// send a request -		mgr->sendGroupPropertiesRequest(group_id); -	} -	 -	~LLFetchGroupData() -	{ -		// remove ourselves as an observer -		LLGroupMgr::getInstance()->removeObserver(this); -	} -	 -	void changed(LLGroupChange gc) -	{ -		if (gc == GC_PROPERTIES) -		{ -			mInspector->processGroupData(); -		} -	} -	 -	LLInspectGroup* mInspector; -};  LLInspectGroup::LLInspectGroup(const LLSD& sd)  :	LLInspect( LLSD() ),	// single_instance, doesn't really need key -	mGroupID(),			// set in onOpen() -	mPropertiesRequest(NULL) +	mGroupID()			// set in onOpen()  {  	mCommitCallbackRegistrar.add("InspectGroup.ViewProfile",  		boost::bind(&LLInspectGroup::onClickViewProfile, this)); @@ -149,10 +109,7 @@ LLInspectGroup::LLInspectGroup(const LLSD& sd)  LLInspectGroup::~LLInspectGroup()  { -	// clean up any pending requests so they don't call back into a deleted -	// view -	delete mPropertiesRequest; -	mPropertiesRequest = NULL; +    LLGroupMgr::getInstance()->removeObserver(this);  } @@ -164,7 +121,7 @@ void LLInspectGroup::onOpen(const LLSD& data)  	// start fade animation  	LLInspect::onOpen(data); -	mGroupID = data["group_id"]; +	setGroupID(data["group_id"]);  	// Position the inspector relative to the mouse cursor  	// Similar to how tooltips are positioned @@ -185,7 +142,8 @@ void LLInspectGroup::onOpen(const LLSD& data)  // virtual  void LLInspectGroup::onClose(bool app_quitting)  { -	// *TODO: If we add a gear menu, close it here +    LLGroupMgr::getInstance()->removeObserver(this); +    // *TODO: If we add a gear menu, close it here  }	  void LLInspectGroup::requestUpdate() @@ -213,9 +171,15 @@ void LLInspectGroup::requestUpdate()  	getChild<LLUICtrl>("leave_btn")->setVisible(false);  	getChild<LLUICtrl>("join_btn")->setVisible(false); -	// Make a new request for properties -	delete mPropertiesRequest; -	mPropertiesRequest = new LLFetchGroupData(mGroupID, this); +	LLGroupMgrGroupData* gdatap = LLGroupMgr::getInstance()->getGroupData(mGroupID); +	if (!gdatap || !gdatap->isGroupPropertiesDataComplete() ) +	{ +	    LLGroupMgr::getInstance()->sendGroupPropertiesRequest(mGroupID); +	} +	else +	{ +	    processGroupData(); +	}  	// Name lookup will be faster out of cache, use that  	gCacheName->getGroup(mGroupID, @@ -223,6 +187,16 @@ void LLInspectGroup::requestUpdate()  			this, _1, _2, _3));  } +void LLInspectGroup::setGroupID(const LLUUID& group_id) +{ +    LLGroupMgr::getInstance()->removeObserver(this); + +    mID = group_id; +    mGroupID = group_id; + +    LLGroupMgr::getInstance()->addObserver(this); +} +  void LLInspectGroup::nameUpdatedCallback(  	const LLUUID& id,  	const std::string& name, @@ -236,6 +210,14 @@ void LLInspectGroup::nameUpdatedCallback(  	// Otherwise possibly a request for an older inspector, ignore it  } +void LLInspectGroup::changed(LLGroupChange gc) +{ +    if (gc == GC_PROPERTIES) +    { +        processGroupData(); +    } +} +  void LLInspectGroup::processGroupData()  {  	LLGroupMgrGroupData* data = @@ -288,10 +270,6 @@ void LLInspectGroup::processGroupData()  		bool can_join = !is_member && data->mOpenEnrollment;  		getChild<LLUICtrl>("join_btn")->setEnabled(can_join);  	} - -	// Delete the request object as it has been satisfied -	delete mPropertiesRequest; -	mPropertiesRequest = NULL;  }  void LLInspectGroup::onClickViewProfile() diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp index 0bad4702e0..e123a3e68a 100755 --- a/indra/newview/llinventorymodel.cpp +++ b/indra/newview/llinventorymodel.cpp @@ -1075,7 +1075,7 @@ void LLInventoryModel::updateCategory(const LLViewerInventoryCategory* cat, U32  	else  	{  		// add this category -		LLPointer<LLViewerInventoryCategory> new_cat = new LLViewerInventoryCategory(cat->getParentUUID()); +		LLPointer<LLViewerInventoryCategory> new_cat = new LLViewerInventoryCategory(cat->getOwnerID());  		new_cat->copyViewerCategory(cat);  		addCategory(new_cat); diff --git a/indra/newview/lllocalbitmaps.cpp b/indra/newview/lllocalbitmaps.cpp index 46c1ffa789..366b9ac034 100755 --- a/indra/newview/lllocalbitmaps.cpp +++ b/indra/newview/lllocalbitmaps.cpp @@ -135,7 +135,7 @@ LLLocalBitmap::~LLLocalBitmap()  	}  	// delete self from gimagelist -	LLViewerFetchedTexture* image = gTextureList.findImage(mWorldID); +	LLViewerFetchedTexture* image = gTextureList.findImage(mWorldID, TEX_LIST_DISCARD);  	gTextureList.deleteImage(image);  	if (image) @@ -207,7 +207,7 @@ bool LLLocalBitmap::updateSelf(EUpdateType optional_firstupdate)  					texture->setCachedRawImage(LL_LOCAL_DISCARD_LEVEL, raw_image);  					texture->ref();  -					gTextureList.addImage(texture); +					gTextureList.addImage(texture, TEX_LIST_DISCARD);  					if (optional_firstupdate != UT_FIRSTUSE)  					{ @@ -215,7 +215,7 @@ bool LLLocalBitmap::updateSelf(EUpdateType optional_firstupdate)  						replaceIDs(old_id, mWorldID);  						// remove old_id from gimagelist -						LLViewerFetchedTexture* image = gTextureList.findImage(old_id); +						LLViewerFetchedTexture* image = gTextureList.findImage(old_id, TEX_LIST_DISCARD);  						if (image != NULL)  						{  							gTextureList.deleteImage(image); @@ -384,7 +384,7 @@ void LLLocalBitmap::replaceIDs(LLUUID old_id, LLUUID new_id)  std::vector<LLViewerObject*> LLLocalBitmap::prepUpdateObjects(LLUUID old_id, U32 channel)  {  	std::vector<LLViewerObject*> obj_list; -	LLViewerFetchedTexture* old_texture = gTextureList.findImage(old_id); +	LLViewerFetchedTexture* old_texture = gTextureList.findImage(old_id, TEX_LIST_DISCARD);  	for(U32 face_iterator = 0; face_iterator < old_texture->getNumFaces(channel); face_iterator++)  	{ @@ -502,7 +502,7 @@ void LLLocalBitmap::updateUserPrims(LLUUID old_id, LLUUID new_id, U32 channel)  void LLLocalBitmap::updateUserSculpts(LLUUID old_id, LLUUID new_id)  { -	LLViewerFetchedTexture* old_texture = gTextureList.findImage(old_id); +	LLViewerFetchedTexture* old_texture = gTextureList.findImage(old_id, TEX_LIST_DISCARD);  	for(U32 volume_iter = 0; volume_iter < old_texture->getNumVolumes(); volume_iter++)  	{  		LLVOVolume* volume_to_object = (*old_texture->getVolumeList())[volume_iter]; diff --git a/indra/newview/llnamelistctrl.cpp b/indra/newview/llnamelistctrl.cpp index 5510598ae7..fe75ab8e50 100755 --- a/indra/newview/llnamelistctrl.cpp +++ b/indra/newview/llnamelistctrl.cpp @@ -345,7 +345,7 @@ LLScrollListItem* LLNameListCtrl::addNameItemRow(  					}  					mAvatarNameCacheConnections.erase(it);  				} -				mAvatarNameCacheConnections[id] = LLAvatarNameCache::get(id,boost::bind(&LLNameListCtrl::onAvatarNameCache,this, _1, _2, suffix, item->getHandle())); +				mAvatarNameCacheConnections[id] = LLAvatarNameCache::get(id,boost::bind(&LLNameListCtrl::onAvatarNameCache,this, _1, _2, suffix, prefix, item->getHandle()));  				if(mPendingLookupsRemaining <= 0)  				{ @@ -418,6 +418,7 @@ void LLNameListCtrl::removeNameItem(const LLUUID& agent_id)  void LLNameListCtrl::onAvatarNameCache(const LLUUID& agent_id,  									   const LLAvatarName& av_name,  									   std::string suffix, +									   std::string prefix,  									   LLHandle<LLNameListItem> item)  {  	avatar_name_cache_connection_map_t::iterator it = mAvatarNameCacheConnections.find(agent_id); @@ -442,6 +443,11 @@ void LLNameListCtrl::onAvatarNameCache(const LLUUID& agent_id,  		name.append(suffix);  	} +	if (!prefix.empty()) +	{ +	    name.insert(0, prefix); +	} +  	LLNameListItem* list_item = item.get();  	if (list_item && list_item->getUUID() == agent_id)  	{ diff --git a/indra/newview/llnamelistctrl.h b/indra/newview/llnamelistctrl.h index 19ce3c7aed..677b49e667 100755 --- a/indra/newview/llnamelistctrl.h +++ b/indra/newview/llnamelistctrl.h @@ -170,7 +170,7 @@ public:  	/*virtual*/ void mouseOverHighlightNthItem( S32 index );  private:  	void showInspector(const LLUUID& avatar_id, bool is_group, bool is_experience = false); -	void onAvatarNameCache(const LLUUID& agent_id, const LLAvatarName& av_name, std::string suffix, LLHandle<LLNameListItem> item); +	void onAvatarNameCache(const LLUUID& agent_id, const LLAvatarName& av_name, std::string suffix, std::string prefix, LLHandle<LLNameListItem> item);  private:  	S32    			mNameColumnIndex; diff --git a/indra/newview/llnotificationlistitem.cpp b/indra/newview/llnotificationlistitem.cpp index 8cdc2d7c0b..cbcf9cac9c 100644 --- a/indra/newview/llnotificationlistitem.cpp +++ b/indra/newview/llnotificationlistitem.cpp @@ -381,7 +381,7 @@ LLGroupNoticeNotificationListItem::LLGroupNoticeNotificationListItem(const Param      buildFromFile("panel_notification_list_item.xml");  } -LLGroupNoticeNotificationListItem::~LLGroupNoticeNotificationListItem() +LLGroupNotificationListItem::~LLGroupNotificationListItem()  {  	LLGroupMgr::getInstance()->removeObserver(this);  } @@ -539,7 +539,6 @@ void LLGroupNoticeNotificationListItem::close()          mInventoryOffer->forceResponse(IOR_DECLINE);          mInventoryOffer = NULL;      } -    LLGroupMgr::getInstance()->removeObserver(this);  }  void LLGroupNoticeNotificationListItem::onClickAttachment() diff --git a/indra/newview/llnotificationlistitem.h b/indra/newview/llnotificationlistitem.h index 9a4ce2be4b..3dd52986b0 100644 --- a/indra/newview/llnotificationlistitem.h +++ b/indra/newview/llnotificationlistitem.h @@ -136,6 +136,7 @@ class LLGroupNotificationListItem      : public LLNotificationListItem, public LLGroupMgrObserver  {  public: +	virtual ~LLGroupNotificationListItem();      virtual BOOL postBuild();      void setGroupId(const LLUUID& value); @@ -192,7 +193,6 @@ class LLGroupNoticeNotificationListItem      : public LLGroupNotificationListItem  {  public: -	~LLGroupNoticeNotificationListItem();      static std::set<std::string> getTypes();      virtual BOOL postBuild(); diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp index 21d8b4248c..551495c6ad 100755 --- a/indra/newview/llpanelface.cpp +++ b/indra/newview/llpanelface.cpp @@ -2214,7 +2214,7 @@ void LLPanelFace::LLSelectedTE::getTexId(LLUUID& id, bool& identical)  				LLTextureEntry *te = object->getTE(te_index);  				if (te)  				{ -					LLViewerTexture* tex = te->getID().notNull() ? gTextureList.findImage(te->getID()) : NULL; +					LLViewerTexture* tex = te->getID().notNull() ? gTextureList.findImage(te->getID(), TEX_LIST_DISCARD) : NULL;  					if(!tex)  					{  						tex = LLViewerFetchedTexture::sDefaultImagep; diff --git a/indra/newview/llpanelgroupexperiences.cpp b/indra/newview/llpanelgroupexperiences.cpp index 76b68122fb..2d7690895f 100644 --- a/indra/newview/llpanelgroupexperiences.cpp +++ b/indra/newview/llpanelgroupexperiences.cpp @@ -102,7 +102,7 @@ void LLPanelGroupExperiences::activate()  	}  	// search for experiences owned by the current group -	std::string url = gAgent.getRegion()->getCapability("GroupExperiences");  +	std::string url = (gAgent.getRegion()) ? gAgent.getRegion()->getCapability("GroupExperiences") : LLStringUtil::null;  	if (!url.empty())  	{  		url += "?" + getGroupID().asString(); diff --git a/indra/newview/llpanelgroupinvite.cpp b/indra/newview/llpanelgroupinvite.cpp index 866cb8dbef..82ea8377de 100755 --- a/indra/newview/llpanelgroupinvite.cpp +++ b/indra/newview/llpanelgroupinvite.cpp @@ -501,25 +501,22 @@ void LLPanelGroupInvite::addUsers(uuid_vec_t& agent_ids)  		}  		else  		{ -			//looks like user try to invite offline friend +			//looks like user try to invite offline avatar (or the avatar from the other region)  			//for offline avatar_id gObjectList.findObject() will return null  			//so we need to do this additional search in avatar tracker, see EXT-4732 -			if (LLAvatarTracker::instance().isBuddy(agent_id)) +			LLAvatarName av_name; +			if (!LLAvatarNameCache::get(agent_id, &av_name))  			{ -				LLAvatarName av_name; -				if (!LLAvatarNameCache::get(agent_id, &av_name)) -				{ -					// actually it should happen, just in case -					//LLAvatarNameCache::get(LLUUID(agent_id), boost::bind(&LLPanelGroupInvite::addUserCallback, this, _1, _2)); -					// for this special case! -					//when there is no cached name we should remove resident from agent_ids list to avoid breaking of sequence -					// removed id will be added in callback -					agent_ids.erase(agent_ids.begin() + i); -				} -				else -				{ -					names.push_back(av_name.getAccountName()); -				} +				// actually it should happen, just in case +				//LLAvatarNameCache::get(LLUUID(agent_id), boost::bind(&LLPanelGroupInvite::addUserCallback, this, _1, _2)); +				// for this special case! +				//when there is no cached name we should remove resident from agent_ids list to avoid breaking of sequence +				// removed id will be added in callback +				agent_ids.erase(agent_ids.begin() + i); +			} +			else +			{ +				names.push_back(av_name.getAccountName());  			}  		}  	} diff --git a/indra/newview/llpanellogin.cpp b/indra/newview/llpanellogin.cpp index 953f234a53..8374eea2e0 100755 --- a/indra/newview/llpanellogin.cpp +++ b/indra/newview/llpanellogin.cpp @@ -858,12 +858,17 @@ void LLPanelLogin::onClickConnect(void *)  		// The start location SLURL has already been sent to LLStartUp::setStartSLURL  		std::string username = sInstance->getChild<LLUICtrl>("username_combo")->getValue().asString(); +		std::string password = sInstance->getChild<LLUICtrl>("password_edit")->getValue().asString();  		if(username.empty())  		{  			// user must type in something into the username field  			LLNotificationsUtil::add("MustHaveAccountToLogIn");  		} +		else if(password.empty()) +		{ +		    LLNotificationsUtil::add("MustEnterPasswordToLogIn"); +		}  		else  		{  			LLPointer<LLCredential> cred; diff --git a/indra/newview/llpaneloutfitedit.cpp b/indra/newview/llpaneloutfitedit.cpp index 01a22df9e1..8331c152e2 100755 --- a/indra/newview/llpaneloutfitedit.cpp +++ b/indra/newview/llpaneloutfitedit.cpp @@ -850,7 +850,7 @@ void LLPanelOutfitEdit::onShopButtonClicked()  		url = url_resolver.resolveURL(LLWearableType::WT_NONE, SEX_FEMALE);  	} -	LLWeb::loadURLExternal(url); +	LLWeb::loadURL(url);  }  LLWearableType::EType LLPanelOutfitEdit::getCOFWearablesSelectionType() const diff --git a/indra/newview/llpanelpermissions.cpp b/indra/newview/llpanelpermissions.cpp index ce9231d6f2..263c73dc0e 100755 --- a/indra/newview/llpanelpermissions.cpp +++ b/indra/newview/llpanelpermissions.cpp @@ -590,25 +590,49 @@ void LLPanelPermissions::refresh()  																			&next_owner_mask_on,  																			&next_owner_mask_off); -	 +  	if (gSavedSettings.getBOOL("DebugPermissions") )  	{  		if (valid_base_perms)  		{  			getChild<LLUICtrl>("B:")->setValue("B: " + mask_to_string(base_mask_on)); -			getChildView("B:")->setVisible(							TRUE); -			 +			getChildView("B:")->setVisible(TRUE);  			getChild<LLUICtrl>("O:")->setValue("O: " + mask_to_string(owner_mask_on)); -			getChildView("O:")->setVisible(							TRUE); -			 +			getChildView("O:")->setVisible(TRUE);  			getChild<LLUICtrl>("G:")->setValue("G: " + mask_to_string(group_mask_on)); -			getChildView("G:")->setVisible(							TRUE); -			 +			getChildView("G:")->setVisible(TRUE);  			getChild<LLUICtrl>("E:")->setValue("E: " + mask_to_string(everyone_mask_on)); -			getChildView("E:")->setVisible(							TRUE); -			 +			getChildView("E:")->setVisible(TRUE);  			getChild<LLUICtrl>("N:")->setValue("N: " + mask_to_string(next_owner_mask_on)); -			getChildView("N:")->setVisible(							TRUE); +			getChildView("N:")->setVisible(TRUE); +		} +		else if(!root_selected) +		{ +			if(object_count == 1) +			{ +				LLSelectNode* node = LLSelectMgr::getInstance()->getSelection()->getFirstNode(); +				if (node && node->mValid) +				{ +					getChild<LLUICtrl>("B:")->setValue("B: " + mask_to_string( node->mPermissions->getMaskBase())); +					getChildView("B:")->setVisible(TRUE); +					getChild<LLUICtrl>("O:")->setValue("O: " + mask_to_string(node->mPermissions->getMaskOwner())); +					getChildView("O:")->setVisible(TRUE); +					getChild<LLUICtrl>("G:")->setValue("G: " + mask_to_string(node->mPermissions->getMaskGroup())); +					getChildView("G:")->setVisible(TRUE); +					getChild<LLUICtrl>("E:")->setValue("E: " + mask_to_string(node->mPermissions->getMaskEveryone())); +					getChildView("E:")->setVisible(TRUE); +					getChild<LLUICtrl>("N:")->setValue("N: " + mask_to_string(node->mPermissions->getMaskNextOwner())); +					getChildView("N:")->setVisible(TRUE); +				} +			} +		} +		else +		{ +		    getChildView("B:")->setVisible(FALSE); +		    getChildView("O:")->setVisible(FALSE); +		    getChildView("G:")->setVisible(FALSE); +		    getChildView("E:")->setVisible(FALSE); +		    getChildView("N:")->setVisible(FALSE);  		}  		U32 flag_mask = 0x0; diff --git a/indra/newview/llpanelprimmediacontrols.cpp b/indra/newview/llpanelprimmediacontrols.cpp index f42df221e4..763657ebad 100755 --- a/indra/newview/llpanelprimmediacontrols.cpp +++ b/indra/newview/llpanelprimmediacontrols.cpp @@ -314,12 +314,14 @@ void LLPanelPrimMediaControls::updateShape()  	if (objectp)  	{ +		bool hasPermsControl = true;  		bool mini_controls = false;  		LLMediaEntry *media_data = objectp->getTE(mTargetObjectFace)->getMediaData();  		if (media_data && NULL != dynamic_cast<LLVOVolume*>(objectp))  		{  			// Don't show the media controls if we do not have permissions  			enabled = dynamic_cast<LLVOVolume*>(objectp)->hasMediaPermission(media_data, LLVOVolume::MEDIA_PERM_CONTROL); +			hasPermsControl = dynamic_cast<LLVOVolume*>(objectp)->hasMediaPermission(media_data, LLVOVolume::MEDIA_PERM_CONTROL);  			mini_controls = (LLMediaEntry::MINI == media_data->getControls());  		}  		const bool is_hud = objectp->isHUDAttachment(); @@ -562,7 +564,32 @@ void LLPanelPrimMediaControls::updateShape()  			}  		} -		setVisible(enabled); +		// MAINT-1392 If this is a HUD always set it visible, but hide each control if user has no perms. +		// When setting it invisible it won't receive any mouse messages anymore + +		if( !is_hud ) +			setVisible(enabled); +		else +		{ +			if( !hasPermsControl ) +			{ +				mBackCtrl->setVisible(false); +				mFwdCtrl->setVisible(false); +				mReloadCtrl->setVisible(false); +				mStopCtrl->setVisible(false); +				mHomeCtrl->setVisible(false); +				mZoomCtrl->setVisible(false); +				mUnzoomCtrl->setVisible(false); +				mOpenCtrl->setVisible(false); +				mMediaAddressCtrl->setVisible(false); +				mMediaPlaySliderPanel->setVisible(false); +				mVolumeCtrl->setVisible(false); +				mMediaProgressPanel->setVisible(false); +				mVolumeSliderCtrl->setVisible(false); +			} + +			setVisible(true); +		}  		//  		// Calculate position and shape of the controls @@ -767,10 +794,18 @@ void LLPanelPrimMediaControls::draw()  	// ignore space from right bookend padding  	controls_bg_area.mRight -= mRightBookend->getRect().getWidth() - space - 2; -		 +  	// draw control background UI image -	mBackgroundImage->draw( controls_bg_area, UI_VERTEX_COLOR % alpha); +	LLViewerObject* objectp = getTargetObject(); +	LLMediaEntry *media_data(0); + +	if( objectp ) +		media_data = objectp->getTE(mTargetObjectFace)->getMediaData(); + +	if( !dynamic_cast<LLVOVolume*>(objectp) || !media_data || dynamic_cast<LLVOVolume*>(objectp)->hasMediaPermission(media_data, LLVOVolume::MEDIA_PERM_CONTROL) ) +		mBackgroundImage->draw( controls_bg_area, UI_VERTEX_COLOR % alpha); +  	// draw volume slider background UI image  	if (mVolumeSliderCtrl->getVisible())  	{ diff --git a/indra/newview/llpanelvolume.cpp b/indra/newview/llpanelvolume.cpp index f1f87e212d..c9f8683e0e 100755 --- a/indra/newview/llpanelvolume.cpp +++ b/indra/newview/llpanelvolume.cpp @@ -713,7 +713,7 @@ void LLPanelVolume::onLightCancelTexture(const LLSD& data)  	if (LightTextureCtrl)  	{ -		LightTextureCtrl->setImageAssetID(LLUUID::null); +        LightTextureCtrl->setImageAssetID(mLightSavedTexture);  	}  	LLVOVolume *volobjp = (LLVOVolume *) mObject.get(); @@ -722,7 +722,16 @@ void LLPanelVolume::onLightCancelTexture(const LLSD& data)  		// Cancel the light texture as requested  		// NORSPEC-292  		// -		volobjp->setLightTextureID(LLUUID::null); +        bool is_spotlight = volobjp->isLightSpotlight(); +        volobjp->setLightTextureID(mLightSavedTexture); //updates spotlight + +        if (!is_spotlight && mLightSavedTexture.notNull()) +        { +            LLVector3 spot_params = volobjp->getSpotLightParams(); +            getChild<LLUICtrl>("Light FOV")->setValue(spot_params.mV[0]); +            getChild<LLUICtrl>("Light Focus")->setValue(spot_params.mV[1]); +            getChild<LLUICtrl>("Light Ambiance")->setValue(spot_params.mV[2]); +        }  	}  } @@ -821,7 +830,12 @@ void LLPanelVolume::onCommitLight( LLUICtrl* ctrl, void* userdata )  				self->getChild<LLUICtrl>("Light Ambiance")->setValue(spot_params.mV[2]);  			}  			else -			{ //modifying existing params +			{ //modifying existing params, this time volobjp won't change params on its own. +                if (volobjp->getLightTextureID() != id) +                { +                    volobjp->setLightTextureID(id); +                } +  				LLVector3 spot_params;  				spot_params.mV[0] = (F32) self->getChild<LLUICtrl>("Light FOV")->getValue().asReal();  				spot_params.mV[1] = (F32) self->getChild<LLUICtrl>("Light Focus")->getValue().asReal(); diff --git a/indra/newview/llpreviewscript.cpp b/indra/newview/llpreviewscript.cpp index 67832c5994..33847b7885 100755 --- a/indra/newview/llpreviewscript.cpp +++ b/indra/newview/llpreviewscript.cpp @@ -1961,7 +1961,8 @@ LLLiveLSLEditor::LLLiveLSLEditor(const LLSD& key) :  	mCloseAfterSave(FALSE),  	mPendingUploads(0),  	mIsModifiable(FALSE), -	mIsNew(false) +	mIsNew(false), +	mIsSaving(FALSE)  {  	mFactoryMap["script ed panel"] = LLCallbackMap(LLLiveLSLEditor::createScriptEdPanel, this);  } @@ -2002,6 +2003,8 @@ void LLLiveLSLEditor::callbackLSLCompileSucceeded(const LLUUID& task_id,  	LL_DEBUGS() << "LSL Bytecode saved" << LL_ENDL;  	mScriptEd->mErrorList->setCommentText(LLTrans::getString("CompileSuccessful"));  	mScriptEd->mErrorList->setCommentText(LLTrans::getString("SaveComplete")); +	getChild<LLCheckBoxCtrl>("running")->set(is_script_running); +	mIsSaving = FALSE;  	closeIfNeeded();  } @@ -2022,6 +2025,7 @@ void LLLiveLSLEditor::callbackLSLCompileFailed(const LLSD& compile_errors)  		mScriptEd->mErrorList->addElement(row);  	}  	mScriptEd->selectFirstError(); +	mIsSaving = FALSE;  	closeIfNeeded();  } @@ -2249,12 +2253,12 @@ void LLLiveLSLEditor::draw()  		if(object->permAnyOwner())  		{  			runningCheckbox->setLabel(getString("script_running")); -			runningCheckbox->setEnabled(TRUE); +			runningCheckbox->setEnabled(!mIsSaving);  			if(object->permAnyOwner())  			{  				runningCheckbox->setLabel(getString("script_running")); -				runningCheckbox->setEnabled(TRUE); +				runningCheckbox->setEnabled(!mIsSaving);  			}  			else  			{ @@ -2387,6 +2391,7 @@ void LLLiveLSLEditor::saveIfNeeded(bool sync /*= true*/)  	getWindow()->incBusyCount();  	mPendingUploads++;  	BOOL is_running = getChild<LLCheckBoxCtrl>( "running")->get(); +	mIsSaving = TRUE;  	if (!url.empty())  	{  		uploadAssetViaCaps(url, filename, mObjectUUID, mItemUUID, is_running, mScriptEd->getAssociatedExperience()); diff --git a/indra/newview/llpreviewscript.h b/indra/newview/llpreviewscript.h index 5f65be7383..d403214c22 100755 --- a/indra/newview/llpreviewscript.h +++ b/indra/newview/llpreviewscript.h @@ -315,6 +315,8 @@ private:  	// need to save both text and script, so need to decide when done  	S32					mPendingUploads; +	BOOL                mIsSaving; +  	BOOL getIsModifiable() const { return mIsModifiable; } // Evaluated on load assert  	LLCheckBoxCtrl*	mMonoCheckbox; diff --git a/indra/newview/llpreviewtexture.cpp b/indra/newview/llpreviewtexture.cpp index c8cf0faa15..2a2c51be40 100755 --- a/indra/newview/llpreviewtexture.cpp +++ b/indra/newview/llpreviewtexture.cpp @@ -89,8 +89,12 @@ LLPreviewTexture::~LLPreviewTexture()  	{  		getWindow()->decBusyCount();  	} -	mImage->setBoostLevel(mImageOldBoostLevel); -	mImage = NULL; + +	if (mImage.notNull()) +	{ +		mImage->setBoostLevel(mImageOldBoostLevel); +		mImage = NULL; +	}  }  // virtual diff --git a/indra/newview/llscreenchannel.cpp b/indra/newview/llscreenchannel.cpp index 6d94b178dd..ba2c37ce7c 100755 --- a/indra/newview/llscreenchannel.cpp +++ b/indra/newview/llscreenchannel.cpp @@ -36,7 +36,7 @@  #include "llviewerwindow.h"  #include "llfloaterreg.h"  #include "lltrans.h" - +#include "llagent.h"  #include "lldockablefloater.h"  #include "llsyswellwindow.h"  #include "llfloaterimsession.h" @@ -265,7 +265,11 @@ void LLScreenChannel::addToast(const LLToast::Params& p)  	if(!show_toast && !store_toast)  	{ -		LLNotificationPtr notification = LLNotifications::instance().find(p.notif_id); +	    if(gAgent.isDoNotDisturb()) +        { +	        return; +        } +	    LLNotificationPtr notification = LLNotifications::instance().find(p.notif_id);  		if (notification &&  			(!notification->canLogToIM() || !notification->hasFormElements())) diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp index 7620046ee3..323689b788 100755 --- a/indra/newview/llselectmgr.cpp +++ b/indra/newview/llselectmgr.cpp @@ -1628,7 +1628,11 @@ void LLSelectMgr::selectionSetImage(const LLUUID& imageid)  		f(LLViewerInventoryItem* item, const LLUUID& id) : mItem(item), mImageID(id) {}  		bool apply(LLViewerObject* objectp, S32 te)  		{ -			if (mItem) +		    if(objectp && !objectp->permModify()) +		    { +		        return false; +		    } +		    if (mItem)  			{  				if (te == -1) // all faces  				{ @@ -6742,7 +6746,8 @@ LLBBox LLSelectMgr::getBBoxOfSelection() const  //-----------------------------------------------------------------------------  BOOL LLSelectMgr::canUndo() const  { -	return const_cast<LLSelectMgr*>(this)->mSelectedObjects->getFirstEditableObject() != NULL; // HACK: casting away constness - MG +	// Can edit or can move +	return const_cast<LLSelectMgr*>(this)->mSelectedObjects->getFirstUndoEnabledObject() != NULL; // HACK: casting away constness - MG;  }  //----------------------------------------------------------------------------- @@ -7668,6 +7673,22 @@ LLViewerObject* LLObjectSelection::getFirstMoveableObject(BOOL get_parent)  }  //----------------------------------------------------------------------------- +// getFirstUndoEnabledObject() +//----------------------------------------------------------------------------- +LLViewerObject* LLObjectSelection::getFirstUndoEnabledObject(BOOL get_parent) +{ +    struct f : public LLSelectedNodeFunctor +    { +        bool apply(LLSelectNode* node) +        { +            LLViewerObject* obj = node->getObject(); +            return obj && (obj->permModify() || (obj->permMove() && !obj->isPermanentEnforced())); +        } +    } func; +    return getFirstSelectedObject(&func, get_parent); +} + +//-----------------------------------------------------------------------------  // Position + Rotation update methods called from LLViewerJoystick  //-----------------------------------------------------------------------------  bool LLSelectMgr::selectionMove(const LLVector3& displ, diff --git a/indra/newview/llselectmgr.h b/indra/newview/llselectmgr.h index 90f7fdfe13..bc50e443f8 100755 --- a/indra/newview/llselectmgr.h +++ b/indra/newview/llselectmgr.h @@ -305,6 +305,7 @@ public:  	LLViewerObject*	getFirstCopyableObject(BOOL get_parent = FALSE);  	LLViewerObject* getFirstDeleteableObject();  	LLViewerObject*	getFirstMoveableObject(BOOL get_parent = FALSE); +	LLViewerObject*	getFirstUndoEnabledObject(BOOL get_parent = FALSE);  	/// Return the object that lead to this selection, possible a child  	LLViewerObject* getPrimaryObject() { return mPrimaryObject; } diff --git a/indra/newview/llsidepanelinventory.cpp b/indra/newview/llsidepanelinventory.cpp index 0e23e2ad10..6743a78dcb 100755 --- a/indra/newview/llsidepanelinventory.cpp +++ b/indra/newview/llsidepanelinventory.cpp @@ -452,7 +452,7 @@ void LLSidepanelInventory::onShareButtonClicked()  void LLSidepanelInventory::onShopButtonClicked()  { -	LLWeb::loadURLExternal(gSavedSettings.getString("MarketplaceURL")); +	LLWeb::loadURL(gSavedSettings.getString("MarketplaceURL"));  }  void LLSidepanelInventory::performActionOnSelection(const std::string &action) diff --git a/indra/newview/llsidepaneltaskinfo.cpp b/indra/newview/llsidepaneltaskinfo.cpp index 2548d730f0..403ca7bcbf 100755 --- a/indra/newview/llsidepaneltaskinfo.cpp +++ b/indra/newview/llsidepaneltaskinfo.cpp @@ -380,6 +380,10 @@ void LLSidepanelTaskInfo::refresh()  		mDACreatorName->setValue(creator_name);  		mCreatorID = creator_id;  	} +	if(mDACreatorName->getValue().asString() == LLStringUtil::null) +	{ +	    mDACreatorName->setValue(creator_name); +	}  	mDACreatorName->setEnabled(TRUE);  	// Update owner text field @@ -415,6 +419,11 @@ void LLSidepanelTaskInfo::refresh()  		mDAOwnerName->setValue(owner_name);  		mOwnerID = owner_id;  	} +	if(mDAOwnerName->getValue().asString() == LLStringUtil::null) +	{ +	    mDAOwnerName->setValue(owner_name); +	} +  	getChildView("Owner Name")->setEnabled(TRUE);  	// update group text field diff --git a/indra/newview/llstatusbar.cpp b/indra/newview/llstatusbar.cpp index 2d4b23d892..c839ed48b5 100755 --- a/indra/newview/llstatusbar.cpp +++ b/indra/newview/llstatusbar.cpp @@ -163,7 +163,7 @@ BOOL LLStatusBar::postBuild()  	getChild<LLUICtrl>("buyL")->setCommitCallback(  		boost::bind(&LLStatusBar::onClickBuyCurrency, this)); -	getChild<LLUICtrl>("goShop")->setCommitCallback(boost::bind(&LLWeb::loadURLExternal, gSavedSettings.getString("MarketplaceURL"))); +    getChild<LLUICtrl>("goShop")->setCommitCallback(boost::bind(&LLWeb::loadURL, gSavedSettings.getString("MarketplaceURL"), LLStringUtil::null, LLStringUtil::null));  	mBoxBalance = getChild<LLTextBox>("balance");  	mBoxBalance->setClickedCallback( &LLStatusBar::onClickBalance, this ); diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index 17b273f316..27d754bed2 100755 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -2066,11 +2066,18 @@ void LLTextureFetchWorker::onCompleted(LLCore::HttpHandle handle, LLCore::HttpRe  	if (log_texture_traffic && data_size > 0)  	{ -		LLViewerTexture* tex = LLViewerTextureManager::findTexture(mID); -		if (tex) -		{ -			gTotalTextureBytesPerBoostLevel[tex->getBoostLevel()] += data_size ; -		} +        // one worker per multiple textures +        std::vector<LLViewerTexture*> textures; +        LLViewerTextureManager::findTextures(mID, textures); +        std::vector<LLViewerTexture*>::iterator iter = textures.begin(); +        while (iter != textures.end()) +        { +            LLViewerTexture* tex = *iter++; +            if (tex) +            { +                gTotalTextureBytesPerBoostLevel[tex->getBoostLevel()] += data_size; +            } +        }  	}  	mFetcher->removeFromHTTPQueue(mID, data_size); @@ -4326,26 +4333,33 @@ bool LLTextureFetchDebugger::processStartDebug(F32 max_time)  			fetched_textures.insert(mFetchingHistory[i].mID);  			in_list = false;  		} -		 -		LLViewerFetchedTexture* tex = LLViewerTextureManager::findFetchedTexture(mFetchingHistory[i].mID); -		if(tex && tex->isJustBound()) //visible -		{ -			if(!in_list) -			{ -				mNumVisibleFetchedTextures++; -			} -			mNumVisibleFetchingRequests++; -	 -			mVisibleFetchedData += mFetchingHistory[i].mFetchedSize; -			mVisibleDecodedData += mFetchingHistory[i].mDecodedSize; -	 -			if(tex->getDiscardLevel() >= mFetchingHistory[i].mDecodedLevel) -			{ -				mRenderedData += mFetchingHistory[i].mFetchedSize; -				mRenderedDecodedData += mFetchingHistory[i].mDecodedSize; -				mRenderedPixels += tex->getWidth() * tex->getHeight(); -			} -		} + +        std::vector<LLViewerFetchedTexture*> textures; +        LLViewerTextureManager::findFetchedTextures(mFetchingHistory[i].mID, textures); +        std::vector<LLViewerFetchedTexture*>::iterator iter = textures.begin(); +        while (iter != textures.end()) +        { +            LLViewerFetchedTexture* tex = *iter++; +            // fetched data will be counted for both ui and regular elements +            if (tex && tex->isJustBound()) //visible +            { +                if (!in_list) +                { +                    mNumVisibleFetchedTextures++; +                } +                mNumVisibleFetchingRequests++; + +                mVisibleFetchedData += mFetchingHistory[i].mFetchedSize; +                mVisibleDecodedData += mFetchingHistory[i].mDecodedSize; + +                if (tex->getDiscardLevel() >= mFetchingHistory[i].mDecodedLevel) +                { +                    mRenderedData += mFetchingHistory[i].mFetchedSize; +                    mRenderedDecodedData += mFetchingHistory[i].mDecodedSize; +                    mRenderedPixels += tex->getWidth() * tex->getHeight(); +                } +            } +        }  	}  	mNumFetchedTextures = fetched_textures.size(); @@ -4445,7 +4459,8 @@ void LLTextureFetchDebugger::addHistoryEntry(LLTextureFetchWorker* worker)  			mRefetchedAllPixels += worker->mRawImage->getWidth() * worker->mRawImage->getHeight();  			mRefetchedAllData += worker->mFormattedImage->getDataSize(); -			LLViewerFetchedTexture* tex = LLViewerTextureManager::findFetchedTexture(worker->mID); +			// refetch list only requests/creates normal images, so requesting ui='false' +			LLViewerFetchedTexture* tex = LLViewerTextureManager::findFetchedTexture(worker->mID, TEX_LIST_DISCARD);  			if(tex && mRefetchList[tex].begin() != mRefetchList[tex].end())  			{  				if(worker->mDecodedDiscard == mFetchingHistory[mRefetchList[tex][0]].mDecodedLevel) @@ -4672,12 +4687,18 @@ void LLTextureFetchDebugger::debugGLTextureCreation()  	{  		if(mFetchingHistory[i].mRawImage.notNull())  		{ -			LLViewerFetchedTexture* tex = gTextureList.findImage(mFetchingHistory[i].mID) ; -			if(tex && !tex->isForSculptOnly()) -			{ -				tex->destroyGLTexture() ; -				mTempTexList.push_back(tex); -			} +            std::vector<LLViewerFetchedTexture*> textures; +            gTextureList.findTexturesByID(mFetchingHistory[i].mID, textures); +            std::vector<LLViewerFetchedTexture*>::iterator iter = textures.begin(); +            while (iter != textures.end()) +            { +                LLViewerFetchedTexture* tex = *iter++; +                if (tex && !tex->isForSculptOnly()) +                { +                    tex->destroyGLTexture(); +                    mTempTexList.push_back(tex); +                } +            }  		}  	} @@ -4732,11 +4753,17 @@ void LLTextureFetchDebugger::clearTextures()  	S32 size = mFetchingHistory.size();  	for(S32 i = 0 ; i < size ; i++)  	{ -		LLViewerFetchedTexture* tex = gTextureList.findImage(mFetchingHistory[i].mID) ; -		if(tex) -		{ -			tex->clearFetchedResults() ; -		} +        std::vector<LLViewerFetchedTexture*> textures; +        gTextureList.findTexturesByID(mFetchingHistory[i].mID, textures); +        std::vector<LLViewerFetchedTexture*>::iterator iter = textures.begin(); +        while (iter != textures.end()) +        { +            LLViewerFetchedTexture* tex = *iter++; +            if (tex) +            { +                tex->clearFetchedResults(); +            } +        }  	}  } @@ -4752,6 +4779,8 @@ void LLTextureFetchDebugger::makeRefetchList()  			continue; //the texture fetch pipeline will take care of visible textures.  		} +		// todo: Will attempt to refetch icons and ui elements as normal images (boost_none) +		// thus will create unnecessary LLViewerFetchedTexture, consider supporting separate UI textures  		mRefetchList[tex].push_back(i); 		  	}  } diff --git a/indra/newview/lltexturefetch.h b/indra/newview/lltexturefetch.h index a2658ecd85..dc9df71c67 100755 --- a/indra/newview/lltexturefetch.h +++ b/indra/newview/lltexturefetch.h @@ -540,7 +540,7 @@ private:  	S32 mNbCurlRequests;  	S32 mNbCurlCompleted; -	std::map< LLPointer<LLViewerFetchedTexture>, std::vector<S32> > mRefetchList; +	std::map< LLPointer<LLViewerFetchedTexture>, std::vector<S32> > mRefetchList; // treats UI textures as normal textures  	std::vector< LLPointer<LLViewerFetchedTexture> > mTempTexList;  	S32 mTempIndex;  	S32 mHistoryListIndex; diff --git a/indra/newview/lltool.cpp b/indra/newview/lltool.cpp index 4aad650b68..5e703933ca 100755 --- a/indra/newview/lltool.cpp +++ b/indra/newview/lltool.cpp @@ -38,6 +38,7 @@  #include "lltoolfocus.h"  #include "llfocusmgr.h"  #include "llagent.h" +#include "llagentcamera.h"  #include "llviewerjoystick.h"  extern BOOL gDebugClicks; @@ -84,7 +85,14 @@ BOOL LLTool::handleMouseDown(S32 x, S32 y, MASK mask)  	}  	// by default, didn't handle it  	// LL_INFOS() << "LLTool::handleMouseDown" << LL_ENDL; -	gAgent.setControlFlags(AGENT_CONTROL_LBUTTON_DOWN); +    if (gAgentCamera.cameraMouselook()) +    { +        gAgent.setControlFlags(AGENT_CONTROL_ML_LBUTTON_DOWN); +    } +    else +    { +        gAgent.setControlFlags(AGENT_CONTROL_LBUTTON_DOWN); +    }  	return TRUE;  } @@ -95,8 +103,15 @@ BOOL LLTool::handleMouseUp(S32 x, S32 y, MASK mask)  		LL_INFOS() << "LLTool left mouse up" << LL_ENDL;  	}  	// by default, didn't handle it -	// LL_INFOS() << "LLTool::handleMouseUp" << LL_ENDL; -	gAgent.setControlFlags(AGENT_CONTROL_LBUTTON_UP); +    // LL_INFOS() << "LLTool::handleMouseUp" << LL_ENDL; +    if (gAgentCamera.cameraMouselook()) +    { +        gAgent.setControlFlags(AGENT_CONTROL_ML_LBUTTON_UP); +    } +    else +    { +        gAgent.setControlFlags(AGENT_CONTROL_LBUTTON_UP); +    }  	return TRUE;  } diff --git a/indra/newview/lltoolcomp.cpp b/indra/newview/lltoolcomp.cpp index 76a791c6e9..2b4fa757f6 100755 --- a/indra/newview/lltoolcomp.cpp +++ b/indra/newview/lltoolcomp.cpp @@ -742,12 +742,13 @@ BOOL LLToolCompGun::handleHover(S32 x, S32 y, MASK mask)  BOOL LLToolCompGun::handleMouseDown(S32 x, S32 y, MASK mask)  {  -	// if the left button is grabbed, don't put up the pie menu -	if (gAgent.leftButtonGrabbed()) -	{ -		gAgent.setControlFlags(AGENT_CONTROL_ML_LBUTTON_DOWN); -		return FALSE; -	} +    // if the left button is blocked, don't put up the pie menu +    if (gAgent.leftButtonBlocked()) +    { +        // in case of "grabbed" control flag will be set later +        gAgent.setControlFlags(AGENT_CONTROL_ML_LBUTTON_DOWN); +        return FALSE; +    }  	// On mousedown, start grabbing  	gGrabTransientTool = this; @@ -759,12 +760,13 @@ BOOL LLToolCompGun::handleMouseDown(S32 x, S32 y, MASK mask)  BOOL LLToolCompGun::handleDoubleClick(S32 x, S32 y, MASK mask)  { -	// if the left button is grabbed, don't put up the pie menu -	if (gAgent.leftButtonGrabbed()) -	{ -		gAgent.setControlFlags(AGENT_CONTROL_ML_LBUTTON_DOWN); -		return FALSE; -	} +    // if the left button is blocked, don't put up the pie menu +    if (gAgent.leftButtonBlocked()) +    { +        // in case of "grabbed" control flag will be set later +        gAgent.setControlFlags(AGENT_CONTROL_ML_LBUTTON_DOWN); +        return FALSE; +    }  	// On mousedown, start grabbing  	gGrabTransientTool = this; diff --git a/indra/newview/lltoolgrab.cpp b/indra/newview/lltoolgrab.cpp index 92e8af985b..c0ca4d7a9a 100755 --- a/indra/newview/lltoolgrab.cpp +++ b/indra/newview/lltoolgrab.cpp @@ -143,7 +143,7 @@ BOOL LLToolGrab::handleMouseDown(S32 x, S32 y, MASK mask)  	// call the base class to propogate info to sim  	LLTool::handleMouseDown(x, y, mask); -	if (!gAgent.leftButtonGrabbed()) +	if (!gAgent.leftButtonBlocked())  	{  		// can grab transparent objects (how touch event propagates, scripters rely on this)  		gViewerWindow->pickAsync(x, y, mask, pickCallback, /*BOOL pick_transparent*/ TRUE); diff --git a/indra/newview/lltoolmgr.cpp b/indra/newview/lltoolmgr.cpp index 3ecb4015ce..2f8e464b71 100755 --- a/indra/newview/lltoolmgr.cpp +++ b/indra/newview/lltoolmgr.cpp @@ -400,6 +400,9 @@ void LLToolMgr::clearTransientTool()  void LLToolMgr::onAppFocusLost()  { +	if (LLApp::isQuitting()) +		return; +  	if (mSelectedTool)  	{  		mSelectedTool->handleDeselect(); diff --git a/indra/newview/lltoolpie.cpp b/indra/newview/lltoolpie.cpp index abb9a63238..e17651dc91 100755 --- a/indra/newview/lltoolpie.cpp +++ b/indra/newview/lltoolpie.cpp @@ -86,7 +86,8 @@ LLToolPie::LLToolPie()  	mBlockClickToWalk(false),  	mClickAction(0),  	mClickActionBuyEnabled( gSavedSettings.getBOOL("ClickActionBuyEnabled") ), -	mClickActionPayEnabled( gSavedSettings.getBOOL("ClickActionPayEnabled") ) +	mClickActionPayEnabled( gSavedSettings.getBOOL("ClickActionPayEnabled") ), +	mDoubleClickTimer()  {  } @@ -102,7 +103,12 @@ BOOL LLToolPie::handleAnyMouseClick(S32 x, S32 y, MASK mask, EClickType clicktyp  BOOL LLToolPie::handleMouseDown(S32 x, S32 y, MASK mask)  { -	mMouseOutsideSlop = FALSE; +    if (mDoubleClickTimer.getStarted()) +    { +        mDoubleClickTimer.stop(); +    } + +    mMouseOutsideSlop = FALSE;  	mMouseDownX = x;  	mMouseDownY = y; @@ -644,7 +650,15 @@ BOOL LLToolPie::handleHover(S32 x, S32 y, MASK mask)  BOOL LLToolPie::handleMouseUp(S32 x, S32 y, MASK mask)  { -	LLViewerObject* obj = mPick.getObject(); +    if (!mDoubleClickTimer.getStarted()) +    { +        mDoubleClickTimer.start(); +    } +    else +    { +        mDoubleClickTimer.reset(); +    } +    LLViewerObject* obj = mPick.getObject();  	U8 click_action = final_click_action(obj);  	// let media have first pass at click @@ -738,10 +752,17 @@ BOOL LLToolPie::handleDoubleClick(S32 x, S32 y, MASK mask)  		LL_INFOS() << "LLToolPie handleDoubleClick (becoming mouseDown)" << LL_ENDL;  	} -    if (handleMediaDblClick(mPick)) -    { -        return TRUE; -    } +	if (handleMediaDblClick(mPick)) +	{ +		return TRUE; +	} +     +    	if (!mDoubleClickTimer.getStarted() || (mDoubleClickTimer.getElapsedTimeF32() > 0.3f)) +	{ +		mDoubleClickTimer.stop(); +		return FALSE; +	} +	mDoubleClickTimer.stop();  	if (gSavedSettings.getBOOL("DoubleClickAutoPilot"))  	{ @@ -754,6 +775,15 @@ BOOL LLToolPie::handleDoubleClick(S32 x, S32 y, MASK mask)                                               FALSE /* ignore transparent */,                                               FALSE /* ignore particles */); +        if(mPick.mPickType == LLPickInfo::PICK_OBJECT) +        { +            if (mPick.getObject() && mPick.getObject()->isHUDAttachment()) +            { +                mPick = savedPick; +                return FALSE; +            } +        } +  		if ((mPick.mPickType == LLPickInfo::PICK_LAND && !mPick.mPosGlobal.isExactlyZero()) ||  			(mPick.mObjectID.notNull()  && !mPick.mPosGlobal.isExactlyZero()))  		{ diff --git a/indra/newview/lltoolpie.h b/indra/newview/lltoolpie.h index c4a2f4a35b..6391e675c5 100755 --- a/indra/newview/lltoolpie.h +++ b/indra/newview/lltoolpie.h @@ -119,6 +119,7 @@ private:  	LLSafeHandle<LLObjectSelection> mLeftClickSelection;  	BOOL				mClickActionBuyEnabled;  	BOOL				mClickActionPayEnabled; +	LLFrameTimer mDoubleClickTimer;  };  #endif diff --git a/indra/newview/llviewerassetstorage.cpp b/indra/newview/llviewerassetstorage.cpp index 5fb99ce02f..2db9c7e67c 100755 --- a/indra/newview/llviewerassetstorage.cpp +++ b/indra/newview/llviewerassetstorage.cpp @@ -367,7 +367,7 @@ void LLViewerAssetStorage::_queueDataRequest(  			// Set our destination file, and the completion callback.  			LLTransferTargetParamsVFile tpvf;  			tpvf.setAsset(uuid, atype); -			tpvf.setCallback(downloadCompleteCallback, req); +			tpvf.setCallback(downloadCompleteCallback, *req);  			LL_DEBUGS("AssetStorage") << "Starting transfer for " << uuid << LL_ENDL;  			LLTransferTargetChannel *ttcp = gTransferManager.getTargetChannel(mUpstreamHost, LLTCT_ASSET); diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index ffae3c0e1f..0b70af44bc 100755 --- a/indra/newview/llviewermedia.cpp +++ b/indra/newview/llviewermedia.cpp @@ -1660,6 +1660,8 @@ void LLViewerMedia::onTeleportFinished()  {  	// On teleport, clear this setting (i.e. set it to true)  	gSavedSettings.setBOOL("MediaTentativeAutoPlay", true); + +	LLViewerMediaImpl::sMimeTypesFailed.clear();  } @@ -1671,6 +1673,7 @@ void LLViewerMedia::setOnlyAudibleMediaTextureID(const LLUUID& texture_id)  	sForceUpdate = true;  } +std::vector<std::string> LLViewerMediaImpl::sMimeTypesFailed;  //////////////////////////////////////////////////////////////////////////////////////////  // LLViewerMediaImpl  ////////////////////////////////////////////////////////////////////////////////////////// @@ -1943,10 +1946,16 @@ LLPluginClassMedia* LLViewerMediaImpl::newSourceFromMediaType(std::string media_  	}  	LL_WARNS_ONCE("Plugin") << "plugin initialization failed for mime type: " << media_type << LL_ENDL; -	LLSD args; -	args["MIME_TYPE"] = media_type; -	LLNotificationsUtil::add("NoPlugin", args); - +	if(gAgent.isInitialized()) +	{ +	    if (std::find(sMimeTypesFailed.begin(), sMimeTypesFailed.end(), media_type) == sMimeTypesFailed.end()) +	    { +	        LLSD args; +	        args["MIME_TYPE"] = media_type; +	        LLNotificationsUtil::add("NoPlugin", args); +	        sMimeTypesFailed.push_back(media_type); +	    } +	}  	return NULL;  } diff --git a/indra/newview/llviewermedia.h b/indra/newview/llviewermedia.h index ede408dd0c..268dcae20e 100755 --- a/indra/newview/llviewermedia.h +++ b/indra/newview/llviewermedia.h @@ -469,6 +469,7 @@ private:  	std::string mTarget;  	LLNotificationPtr mNotification;      bool mCleanBrowser;     // force the creation of a clean browsing target with full options enabled +    static std::vector<std::string> sMimeTypesFailed;  private:  	BOOL mIsUpdated ; diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 6ba10373b9..f3d0369da6 100755 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -3061,6 +3061,10 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)  			{  				send_do_not_disturb_message(msg, from_id);  			} +			else if (gSavedSettings.getBOOL("VoiceCallsFriendsOnly") && (LLAvatarTracker::instance().getBuddyInfo(from_id) == NULL)) +			{ +				return; +			}  			else  			{  				LLVector3 pos, look_at; @@ -3992,6 +3996,13 @@ void process_teleport_finish(LLMessageSystem* msg, void**)  		LL_WARNS("Messaging") << "Got teleport notification for wrong agent!" << LL_ENDL;  		return;  	} + +    if (gAgent.getTeleportState() == LLAgent::TELEPORT_NONE) +    { +        // Server either ignored teleport cancel message or did not receive it in time. +        // This message can't be ignored since teleport is complete at server side +        gAgent.restoreCanceledTeleportRequest(); +    }  	// Teleport is finished; it can't be cancelled now.  	gViewerWindow->setProgressCancelButtonVisible(FALSE); diff --git a/indra/newview/llviewerparcelmgr.cpp b/indra/newview/llviewerparcelmgr.cpp index 2a6b105cab..aafb6b4d12 100755 --- a/indra/newview/llviewerparcelmgr.cpp +++ b/indra/newview/llviewerparcelmgr.cpp @@ -143,8 +143,8 @@ LLViewerParcelMgr::LLViewerParcelMgr()  	// JC: Resolved a merge conflict here, eliminated  	// mBlockedImage->setAddressMode(LLTexUnit::TAM_WRAP);  	// because it is done in llviewertexturelist.cpp -	mBlockedImage = LLViewerTextureManager::getFetchedTextureFromFile("world/NoEntryLines.png"); -	mPassImage = LLViewerTextureManager::getFetchedTextureFromFile("world/NoEntryPassLines.png"); +	mBlockedImage = LLViewerTextureManager::getFetchedTextureFromFile("world/NoEntryLines.png", FTT_LOCAL_FILE, TRUE, LLGLTexture::BOOST_UI); +	mPassImage = LLViewerTextureManager::getFetchedTextureFromFile("world/NoEntryPassLines.png", FTT_LOCAL_FILE, TRUE, LLGLTexture::BOOST_UI);  	S32 overlay_size = mParcelsPerEdge * mParcelsPerEdge / PARCEL_OVERLAY_CHUNKS;  	sPackedOverlay = new U8[overlay_size]; @@ -1453,6 +1453,7 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use  	BOOL	region_deny_identified_override = false; // Deprecated  	BOOL	region_deny_transacted_override = false; // Deprecated  	BOOL	region_deny_age_unverified_override = false; +    BOOL	agent_parcel_update = false; // updating previous(existing) agent parcel  	S32		other_clean_time = 0; @@ -1542,6 +1543,18 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use  	// Actually extract the data.  	if (parcel)  	{ +        if (local_id == parcel_mgr.mAgentParcel->getLocalID()) +        { +            // Parcels in different regions can have same ids. +            LLViewerRegion* parcel_region = LLWorld::getInstance()->getRegion(msg->getSender()); +            LLViewerRegion* agent_region = gAgent.getRegion(); +            if (parcel_region && agent_region && parcel_region->getRegionID() == agent_region->getRegionID()) +            { +                // we got an updated version of agent parcel +                agent_parcel_update = true; +            } +        } +  		parcel->init(owner_id,  			FALSE, FALSE, FALSE,  			claim_date, claim_price_per_meter, rent_price_per_meter, @@ -1600,16 +1613,10 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use  				}  			}  		} -		else if (local_id == parcel_mgr.mAgentParcel->getLocalID()) +		else if (agent_parcel_update)  		{ -			// Parcels in different regions can have same ids. -			LLViewerRegion* parcel_region = LLWorld::getInstance()->getRegion( msg->getSender() ); -			LLViewerRegion* agent_region = gAgent.getRegion(); -			if (parcel_region && agent_region && parcel_region->getRegionID() == agent_region->getRegionID()) -			{ -				// updated agent parcel -				parcel_mgr.mAgentParcel->unpackMessage(msg); -			} +			// updated agent parcel +			parcel_mgr.mAgentParcel->unpackMessage(msg);  		}  	} @@ -1752,33 +1759,37 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use  		{  			if (parcel)  			{ -				std::string music_url_raw = parcel->getMusicURL(); - -				// Trim off whitespace from front and back -				std::string music_url = music_url_raw; -				LLStringUtil::trim(music_url); - -				// If there is a new music URL and it's valid, play it. -				if (music_url.size() > 12) -				{ -					if (music_url.substr(0,7) == "http://") -					{ -						optionally_start_music(music_url); -					} -					else -					{ -						LL_INFOS() << "Stopping parcel music (invalid audio stream URL)" << LL_ENDL; -						// clears the URL  -						// null value causes fade out -						LLViewerAudio::getInstance()->startInternetStreamWithAutoFade(LLStringUtil::null); -					} -				} -				else if (!gAudiop->getInternetStreamURL().empty()) -				{ -					LL_INFOS() << "Stopping parcel music (parcel stream URL is empty)" << LL_ENDL; -					// null value causes fade out -					LLViewerAudio::getInstance()->startInternetStreamWithAutoFade(LLStringUtil::null); -				} +                // Only update stream if parcel changed (recreated) or music is playing (enabled) +                if (!agent_parcel_update || gSavedSettings.getBOOL("MediaTentativeAutoPlay")) +                { +                    std::string music_url_raw = parcel->getMusicURL(); + +                    // Trim off whitespace from front and back +                    std::string music_url = music_url_raw; +                    LLStringUtil::trim(music_url); + +                    // If there is a new music URL and it's valid, play it. +                    if (music_url.size() > 12) +                    { +                        if (music_url.substr(0, 7) == "http://") +                        { +                            optionally_start_music(music_url); +                        } +                        else +                        { +                            LL_INFOS() << "Stopping parcel music (invalid audio stream URL)" << LL_ENDL; +                            // clears the URL +                            // null value causes fade out +                            LLViewerAudio::getInstance()->startInternetStreamWithAutoFade(LLStringUtil::null); +                        } +                    } +                    else if (!gAudiop->getInternetStreamURL().empty()) +                    { +                        LL_INFOS() << "Stopping parcel music (parcel stream URL is empty)" << LL_ENDL; +                        // null value causes fade out +                        LLViewerAudio::getInstance()->startInternetStreamWithAutoFade(LLStringUtil::null); +                    } +                }  			}  			else  			{ diff --git a/indra/newview/llviewertexteditor.cpp b/indra/newview/llviewertexteditor.cpp index 85ae64aeff..09cdfe1309 100755 --- a/indra/newview/llviewertexteditor.cpp +++ b/indra/newview/llviewertexteditor.cpp @@ -212,12 +212,12 @@ public:  			}  		}  	} -	/*virtual*/ F32				draw(S32 start, S32 end, S32 selection_start, S32 selection_end, const LLRect& draw_rect) +	/*virtual*/ F32				draw(S32 start, S32 end, S32 selection_start, S32 selection_end, const LLRectf& draw_rect)  	{ -		LLRect image_rect = draw_rect; +		LLRectf image_rect = draw_rect;  		image_rect.mRight = image_rect.mLeft + mImage->getWidth();  		image_rect.mTop = image_rect.mBottom + mImage->getHeight(); -		mImage->draw(image_rect); +		mImage->draw(LLRect(image_rect.mLeft, image_rect.mTop, image_rect.mRight, image_rect.mBottom));  		LLColor4 color;  		if (mEditor.getReadOnly()) diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index a957367f61..e2b8ff8e80 100755 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -97,6 +97,7 @@ S32 LLViewerTexture::sMaxSculptRez = 128; //max sculpt image size  const S32 MAX_CACHED_RAW_IMAGE_AREA = 64 * 64;  const S32 MAX_CACHED_RAW_SCULPT_IMAGE_AREA = LLViewerTexture::sMaxSculptRez * LLViewerTexture::sMaxSculptRez;  const S32 MAX_CACHED_RAW_TERRAIN_IMAGE_AREA = 128 * 128; +const S32 DEFAULT_ICON_DIMENTIONS = 32;  S32 LLViewerTexture::sMinLargeImageSize = 65536; //256 * 256.  S32 LLViewerTexture::sMaxSmallImageSize = MAX_CACHED_RAW_IMAGE_AREA;  BOOL LLViewerTexture::sFreezeImageScalingDown = FALSE; @@ -130,7 +131,7 @@ LLLoadedCallbackEntry::LLLoadedCallbackEntry(loaded_callback_func cb,  {  	if(mSourceCallbackList)  	{ -		mSourceCallbackList->insert(target->getID()); +        mSourceCallbackList->insert(LLTextureKey(target->getID(), (ETexListType)target->getTextureListType()));  	}  } @@ -142,7 +143,7 @@ void LLLoadedCallbackEntry::removeTexture(LLViewerFetchedTexture* tex)  {  	if(mSourceCallbackList)  	{ -		mSourceCallbackList->erase(tex->getID()); +		mSourceCallbackList->erase(LLTextureKey(tex->getID(), (ETexListType)tex->getTextureListType()));  	}  } @@ -169,24 +170,39 @@ LLViewerMediaTexture* LLViewerTextureManager::createMediaTexture(const LLUUID &m  {  	return new LLViewerMediaTexture(media_id, usemipmaps, gl_image);		  } -  -LLViewerTexture*  LLViewerTextureManager::findTexture(const LLUUID& id)  + +void LLViewerTextureManager::findFetchedTextures(const LLUUID& id, std::vector<LLViewerFetchedTexture*> &output)  { -	LLViewerTexture* tex; -	//search fetched texture list -	tex = gTextureList.findImage(id); -	 -	//search media texture list -	if(!tex) -	{ -		tex = LLViewerTextureManager::findMediaTexture(id); -	} -	return tex; +    return gTextureList.findTexturesByID(id, output); +} + +void  LLViewerTextureManager::findTextures(const LLUUID& id, std::vector<LLViewerTexture*> &output) +{ +    std::vector<LLViewerFetchedTexture*> fetched_output; +    gTextureList.findTexturesByID(id, fetched_output); +    std::vector<LLViewerFetchedTexture*>::iterator iter = fetched_output.begin(); +    while (iter != fetched_output.end()) +    { +        output.push_back(*iter); +        iter++; +    } + +    //search media texture list +    if (output.empty()) +    { +        LLViewerTexture* tex; +        tex = LLViewerTextureManager::findMediaTexture(id); +        if (tex) +        { +            output.push_back(tex); +        } +    } +  } -LLViewerFetchedTexture*  LLViewerTextureManager::findFetchedTexture(const LLUUID& id)  +LLViewerFetchedTexture* LLViewerTextureManager::findFetchedTexture(const LLUUID& id, S32 tex_type)  { -	return gTextureList.findImage(id); +    return gTextureList.findImage(id, (ETexListType)tex_type);  }  LLViewerMediaTexture* LLViewerTextureManager::findMediaTexture(const LLUUID &media_id) @@ -1178,6 +1194,17 @@ void LLViewerFetchedTexture::loadFromFastCache()  		}  		else  		{ +            if (mBoostLevel == LLGLTexture::BOOST_ICON) +            { +                S32 expected_width = mKnownDrawWidth > 0 ? mKnownDrawWidth : DEFAULT_ICON_DIMENTIONS; +                S32 expected_height = mKnownDrawHeight > 0 ? mKnownDrawHeight : DEFAULT_ICON_DIMENTIONS; +                if (mRawImage->getWidth() > expected_width || mRawImage->getHeight() > expected_height) +                { +                    // scale oversized icon, no need to give more work to gl +                    mRawImage->scale(expected_width, expected_height); +                } +            } +  			mRequestedDiscardLevel = mDesiredDiscardLevel + 1;  			mIsRawImageValid = TRUE;			  			addToCreateTexture(); @@ -1506,6 +1533,17 @@ void LLViewerFetchedTexture::processTextureStats()  		{  			mDesiredDiscardLevel = 0;  		} +        else if (mDontDiscard && mBoostLevel == LLGLTexture::BOOST_ICON) +        { +            if (mFullWidth > MAX_IMAGE_SIZE_DEFAULT || mFullHeight > MAX_IMAGE_SIZE_DEFAULT) +            { +                mDesiredDiscardLevel = 1; // MAX_IMAGE_SIZE_DEFAULT = 1024 and max size ever is 2048 +            } +            else +            { +                mDesiredDiscardLevel = 0; +            } +        }  		else if(!mFullWidth || !mFullHeight)  		{  			mDesiredDiscardLevel = 	llmin(getMaxDiscardLevel(), (S32)mLoadedCallbackDesiredDiscardLevel); @@ -1936,6 +1974,17 @@ bool LLViewerFetchedTexture::updateFetch()  					addToCreateTexture();  				} +                if (mBoostLevel == LLGLTexture::BOOST_ICON) +                { +                    S32 expected_width = mKnownDrawWidth > 0 ? mKnownDrawWidth : DEFAULT_ICON_DIMENTIONS; +                    S32 expected_height = mKnownDrawHeight > 0 ? mKnownDrawHeight : DEFAULT_ICON_DIMENTIONS; +                    if (mRawImage->getWidth() > expected_width || mRawImage->getHeight() > expected_height) +                    { +                        // scale oversized icon, no need to give more work to gl +                        mRawImage->scale(expected_width, expected_height); +                    } +                } +  				return TRUE;  			}  			else @@ -2670,7 +2719,7 @@ LLImageRaw* LLViewerFetchedTexture::reloadRawImage(S8 discard_level)  	if(mSavedRawDiscardLevel >= 0 && mSavedRawDiscardLevel <= discard_level)  	{ -		if(mSavedRawDiscardLevel != discard_level) +		if (mSavedRawDiscardLevel != discard_level && mBoostLevel != BOOST_ICON)  		{  			mRawImage = new LLImageRaw(getWidth(discard_level), getHeight(discard_level), getComponents());  			mRawImage->copy(getSavedRawImage()); @@ -2771,8 +2820,25 @@ void LLViewerFetchedTexture::switchToCachedImage()  void LLViewerFetchedTexture::setCachedRawImage(S32 discard_level, LLImageRaw* imageraw)   {  	if(imageraw != mRawImage.get()) -	{ -		mCachedRawImage = imageraw; +    { +        if (mBoostLevel == LLGLTexture::BOOST_ICON) +        { +            S32 expected_width = mKnownDrawWidth > 0 ? mKnownDrawWidth : DEFAULT_ICON_DIMENTIONS; +            S32 expected_height = mKnownDrawHeight > 0 ? mKnownDrawHeight : DEFAULT_ICON_DIMENTIONS; +            if (mRawImage->getWidth() > expected_width || mRawImage->getHeight() > expected_height) +            { +                mCachedRawImage = new LLImageRaw(expected_width, expected_height, imageraw->getComponents()); +                mCachedRawImage->copyScaled(imageraw); +            } +            else +            { +                mCachedRawImage = imageraw; +            } +        } +        else +        { +            mCachedRawImage = imageraw; +        }  		mCachedRawDiscardLevel = discard_level;  		mCachedRawImageReady = TRUE;  	} @@ -2862,7 +2928,24 @@ void LLViewerFetchedTexture::saveRawImage()  	}  	mSavedRawDiscardLevel = mRawDiscardLevel; -	mSavedRawImage = new LLImageRaw(mRawImage->getData(), mRawImage->getWidth(), mRawImage->getHeight(), mRawImage->getComponents()); +    if (mBoostLevel == LLGLTexture::BOOST_ICON) +    { +        S32 expected_width = mKnownDrawWidth > 0 ? mKnownDrawWidth : DEFAULT_ICON_DIMENTIONS; +        S32 expected_height = mKnownDrawHeight > 0 ? mKnownDrawHeight : DEFAULT_ICON_DIMENTIONS; +        if (mRawImage->getWidth() > expected_width || mRawImage->getHeight() > expected_height) +        { +            mSavedRawImage = new LLImageRaw(expected_width, expected_height, mRawImage->getComponents()); +            mSavedRawImage->copyScaled(mRawImage); +        } +        else +        { +            mSavedRawImage = new LLImageRaw(mRawImage->getData(), mRawImage->getWidth(), mRawImage->getHeight(), mRawImage->getComponents()); +        } +    } +    else +    { +        mSavedRawImage = new LLImageRaw(mRawImage->getData(), mRawImage->getWidth(), mRawImage->getHeight(), mRawImage->getComponents()); +    }  	if(mForceToSaveRawImage && mSavedRawDiscardLevel <= mDesiredSavedRawDiscardLevel)  	{ @@ -3239,7 +3322,7 @@ LLViewerMediaTexture::LLViewerMediaTexture(const LLUUID& id, BOOL usemipmaps, LL  	setCategory(LLGLTexture::MEDIA); -	LLViewerTexture* tex = gTextureList.findImage(mID); +	LLViewerTexture* tex = gTextureList.findImage(mID, TEX_LIST_DISCARD);  	if(tex) //this media is a parcel media for tex.  	{  		tex->setParcelMedia(this); @@ -3249,7 +3332,7 @@ LLViewerMediaTexture::LLViewerMediaTexture(const LLUUID& id, BOOL usemipmaps, LL  //virtual   LLViewerMediaTexture::~LLViewerMediaTexture()   {	 -	LLViewerTexture* tex = gTextureList.findImage(mID); +	LLViewerTexture* tex = gTextureList.findImage(mID, TEX_LIST_DISCARD);  	if(tex) //this media is a parcel media for tex.  	{  		tex->setParcelMedia(NULL); @@ -3304,7 +3387,7 @@ BOOL LLViewerMediaTexture::findFaces()  	BOOL ret = TRUE; -	LLViewerTexture* tex = gTextureList.findImage(mID); +	LLViewerTexture* tex = gTextureList.findImage(mID, TEX_LIST_DISCARD);  	if(tex) //this media is a parcel media for tex.  	{  		for (U32 ch = 0; ch < LLRender::NUM_TEXTURE_CHANNELS; ++ch) @@ -3413,7 +3496,7 @@ void LLViewerMediaTexture::addFace(U32 ch, LLFace* facep)  	const LLTextureEntry* te = facep->getTextureEntry();  	if(te && te->getID().notNull())  	{ -		LLViewerTexture* tex = gTextureList.findImage(te->getID()); +		LLViewerTexture* tex = gTextureList.findImage(te->getID(), TEX_LIST_DISCARD);  		if(tex)  		{  			mTextureList.push_back(tex);//increase the reference number by one for tex to avoid deleting it. @@ -3442,7 +3525,7 @@ void LLViewerMediaTexture::removeFace(U32 ch, LLFace* facep)  	const LLTextureEntry* te = facep->getTextureEntry();  	if(te && te->getID().notNull())  	{ -		LLViewerTexture* tex = gTextureList.findImage(te->getID()); +		LLViewerTexture* tex = gTextureList.findImage(te->getID(), TEX_LIST_DISCARD);  		if(tex)  		{  			for(std::list< LLPointer<LLViewerTexture> >::iterator iter = mTextureList.begin(); @@ -3551,10 +3634,10 @@ void LLViewerMediaTexture::switchTexture(U32 ch, LLFace* facep)  			const LLTextureEntry* te = facep->getTextureEntry();  			if(te)  			{ -				LLViewerTexture* tex = te->getID().notNull() ? gTextureList.findImage(te->getID()) : NULL; +				LLViewerTexture* tex = te->getID().notNull() ? gTextureList.findImage(te->getID(), TEX_LIST_DISCARD) : NULL;  				if(!tex && te->getID() != mID)//try parcel media.  				{ -					tex = gTextureList.findImage(mID); +					tex = gTextureList.findImage(mID, TEX_LIST_DISCARD);  				}  				if(!tex)  				{ diff --git a/indra/newview/llviewertexture.h b/indra/newview/llviewertexture.h index aed7e94945..cedac44633 100755 --- a/indra/newview/llviewertexture.h +++ b/indra/newview/llviewertexture.h @@ -58,11 +58,12 @@ class LLVFile;  class LLMessageSystem;  class LLViewerMediaImpl ;  class LLVOVolume ; +struct LLTextureKey;  class LLLoadedCallbackEntry  {  public: -	typedef std::set< LLUUID > source_callback_list_t; +    typedef std::set< LLTextureKey > source_callback_list_t;  public:  	LLLoadedCallbackEntry(loaded_callback_func cb, @@ -132,6 +133,8 @@ public:  	/*virtual*/ const LLUUID& getID() const { return mID; }  	void setBoostLevel(S32 level);  	S32  getBoostLevel() { return mBoostLevel; } +	void setTextureListType(S32 tex_type) { mTextureListType = tex_type; } +	S32 getTextureListType() { return mTextureListType; }  	void addTextureStats(F32 virtual_size, BOOL needs_gltexture = TRUE) const;  	void resetTextureStats();	 @@ -185,6 +188,8 @@ private:  	static bool isMemoryForTextureLow() ;  protected:  	LLUUID mID; +	S32 mTextureListType; // along with mID identifies where to search for this texture in TextureList +  	F32 mSelectedTime;				// time texture was last selected  	mutable F32 mMaxVirtualSize;	// The largest virtual size of the image, in pixels - how much data to we need?	  	mutable S32  mMaxVirtualSizeResetCounter ; @@ -626,8 +631,9 @@ public:  	//  	//"find-texture" just check if the texture exists, if yes, return it, otherwise return null.  	// -	static LLViewerTexture*           findTexture(const LLUUID& id) ; -	static LLViewerFetchedTexture*    findFetchedTexture(const LLUUID& id) ; +	static void                       findFetchedTextures(const LLUUID& id, std::vector<LLViewerFetchedTexture*> &output); +	static void                       findTextures(const LLUUID& id, std::vector<LLViewerTexture*> &output); +	static LLViewerFetchedTexture*    findFetchedTexture(const LLUUID& id, S32 tex_type);  	static LLViewerMediaTexture*      findMediaTexture(const LLUUID& id) ;  	static LLViewerMediaTexture*      createMediaTexture(const LLUUID& id, BOOL usemipmaps = TRUE, LLImageGL* gl_image = NULL) ; diff --git a/indra/newview/llviewertexturelist.cpp b/indra/newview/llviewertexturelist.cpp index 926c40307b..fc6eabd651 100755 --- a/indra/newview/llviewertexturelist.cpp +++ b/indra/newview/llviewertexturelist.cpp @@ -70,6 +70,29 @@ S32 LLViewerTextureList::sNumImages = 0;  LLViewerTextureList gTextureList;  static LLTrace::BlockTimerStatHandle FTM_PROCESS_IMAGES("Process Images"); +ETexListType get_element_type(S32 priority) +{ +    // don't discard flag can be used in some cases, but it usually is not set yet +    if (priority == LLViewerFetchedTexture::BOOST_ICON +        || priority == LLViewerFetchedTexture::BOOST_UI) +    { +        return TEX_LIST_UI; +    } +    return TEX_LIST_DISCARD; +} + +/////////////////////////////////////////////////////////////////////////////// + +LLTextureKey::LLTextureKey() +: textureId(LLUUID::null), +textureType(TEX_LIST_DISCARD) +{ +} + +LLTextureKey::LLTextureKey(LLUUID id, ETexListType tex_type) +: textureId(id), textureType(tex_type) +{ +}  /////////////////////////////////////////////////////////////////////////////// @@ -351,7 +374,8 @@ LLViewerFetchedTexture* LLViewerTextureList::getImageFromFile(const std::string&  	if (full_path.empty())  	{  		LL_WARNS() << "Failed to find local image file: " << filename << LL_ENDL; -		return LLViewerTextureManager::getFetchedTexture(IMG_DEFAULT, FTT_DEFAULT, TRUE, LLGLTexture::BOOST_UI); +		LLViewerTexture::EBoostLevel priority = LLGLTexture::BOOST_UI; +		return LLViewerTextureManager::getFetchedTexture(IMG_DEFAULT, FTT_DEFAULT, TRUE, priority);  	}  	std::string url = "file://" + full_path; @@ -384,7 +408,7 @@ LLViewerFetchedTexture* LLViewerTextureList::getImageFromUrl(const std::string&  		new_id.generate(url);  	} -	LLPointer<LLViewerFetchedTexture> imagep = findImage(new_id); +	LLPointer<LLViewerFetchedTexture> imagep = findImage(new_id, get_element_type(boost_priority));  	if (!imagep.isNull())  	{ @@ -422,12 +446,12 @@ LLViewerFetchedTexture* LLViewerTextureList::getImageFromUrl(const std::string&  			imagep->setExplicitFormat(internal_format, primary_format);  		} -		addImage(imagep); -		 +		addImage(imagep, get_element_type(boost_priority)); +  		if (boost_priority != 0)  		{ -			if (boost_priority == LLViewerFetchedTexture::BOOST_UI || -				boost_priority == LLViewerFetchedTexture::BOOST_ICON) +			if (boost_priority == LLViewerFetchedTexture::BOOST_UI +				|| boost_priority == LLViewerFetchedTexture::BOOST_ICON)  			{  				imagep->dontDiscard();  			} @@ -464,7 +488,7 @@ LLViewerFetchedTexture* LLViewerTextureList::getImage(const LLUUID &image_id,  		return (LLViewerTextureManager::getFetchedTexture(IMG_DEFAULT, FTT_DEFAULT, TRUE, LLGLTexture::BOOST_UI));  	} -	LLPointer<LLViewerFetchedTexture> imagep = findImage(image_id); +	LLPointer<LLViewerFetchedTexture> imagep = findImage(image_id, get_element_type(boost_priority));  	if (!imagep.isNull())  	{  		LLViewerFetchedTexture *texture = imagep.get(); @@ -525,13 +549,13 @@ LLViewerFetchedTexture* LLViewerTextureList::createImage(const LLUUID &image_id,  	{  		imagep->setExplicitFormat(internal_format, primary_format);  	} -	 -	addImage(imagep); -	 + +	addImage(imagep, get_element_type(boost_priority)); +  	if (boost_priority != 0)  	{ -		if (boost_priority == LLViewerFetchedTexture::BOOST_UI || -			boost_priority == LLViewerFetchedTexture::BOOST_ICON) +		if (boost_priority == LLViewerFetchedTexture::BOOST_UI +			|| boost_priority == LLViewerFetchedTexture::BOOST_ICON)  		{  			imagep->dontDiscard();  		} @@ -553,12 +577,28 @@ LLViewerFetchedTexture* LLViewerTextureList::createImage(const LLUUID &image_id,  	return imagep ;  } -LLViewerFetchedTexture *LLViewerTextureList::findImage(const LLUUID &image_id) +void LLViewerTextureList::findTexturesByID(const LLUUID &image_id, std::vector<LLViewerFetchedTexture*> &output)  { -	uuid_map_t::iterator iter = mUUIDMap.find(image_id); -	if(iter == mUUIDMap.end()) -		return NULL; -	return iter->second; +    LLTextureKey search_key(image_id, TEX_LIST_DISCARD); +    uuid_map_t::iterator iter = mUUIDMap.lower_bound(search_key); +    while (iter != mUUIDMap.end() && iter->first.textureId == image_id) +    { +        output.push_back(iter->second); +        iter++; +    } +} + +LLViewerFetchedTexture *LLViewerTextureList::findImage(const LLTextureKey &search_key) +{ +    uuid_map_t::iterator iter = mUUIDMap.find(search_key); +    if (iter == mUUIDMap.end()) +        return NULL; +    return iter->second; +} + +LLViewerFetchedTexture *LLViewerTextureList::findImage(const LLUUID &image_id, ETexListType tex_type) +{ +    return findImage(LLTextureKey(image_id, tex_type));  }  void LLViewerTextureList::addImageToList(LLViewerFetchedTexture *image) @@ -603,7 +643,7 @@ void LLViewerTextureList::removeImageFromList(LLViewerFetchedTexture *image)  			<< " but doesn't have mInImageList set"  			<< " ref count is " << image->getNumRefs()  			<< LL_ENDL; -		uuid_map_t::iterator iter = mUUIDMap.find(image->getID()); +		uuid_map_t::iterator iter = mUUIDMap.find(LLTextureKey(image->getID(), (ETexListType)image->getTextureListType()));  		if(iter == mUUIDMap.end())  		{  			LL_INFOS() << "Image  " << image->getID() << " is also not in mUUIDMap!" << LL_ENDL ; @@ -628,7 +668,7 @@ void LLViewerTextureList::removeImageFromList(LLViewerFetchedTexture *image)  	image->setInImageList(FALSE) ;  } -void LLViewerTextureList::addImage(LLViewerFetchedTexture *new_image) +void LLViewerTextureList::addImage(LLViewerFetchedTexture *new_image, ETexListType tex_type)  {  	if (!new_image)  	{ @@ -636,16 +676,18 @@ void LLViewerTextureList::addImage(LLViewerFetchedTexture *new_image)  	}  	//llassert(new_image);  	LLUUID image_id = new_image->getID(); +	LLTextureKey key(image_id, tex_type); -	LLViewerFetchedTexture *image = findImage(image_id); +	LLViewerFetchedTexture *image = findImage(key);  	if (image)  	{  		LL_INFOS() << "Image with ID " << image_id << " already in list" << LL_ENDL;  	}  	sNumImages++; -	 +  	addImageToList(new_image); -	mUUIDMap[image_id] = new_image; +	mUUIDMap[key] = new_image; +	new_image->setTextureListType(tex_type);  } @@ -657,8 +699,8 @@ void LLViewerTextureList::deleteImage(LLViewerFetchedTexture *image)  		{  			mCallbackList.erase(image);  		} - -		llverify(mUUIDMap.erase(image->getID()) == 1); +		LLTextureKey key(image->getID(), (ETexListType)image->getTextureListType()); +		llverify(mUUIDMap.erase(key) == 1);  		sNumImages--;  		removeImageFromList(image);  	} @@ -801,14 +843,14 @@ void LLViewerTextureList::updateImagesDecodePriorities()          static const S32 MAX_PRIO_UPDATES = gSavedSettings.getS32("TextureFetchUpdatePriorities");         // default: 32  		const size_t max_update_count = llmin((S32) (MAX_PRIO_UPDATES*MAX_PRIO_UPDATES*gFrameIntervalSeconds.value()) + 1, MAX_PRIO_UPDATES);  		S32 update_counter = llmin(max_update_count, mUUIDMap.size()); -		uuid_map_t::iterator iter = mUUIDMap.upper_bound(mLastUpdateUUID); +		uuid_map_t::iterator iter = mUUIDMap.upper_bound(mLastUpdateKey);  		while ((update_counter-- > 0) && !mUUIDMap.empty())  		{  			if (iter == mUUIDMap.end())  			{  				iter = mUUIDMap.begin(); -			} -			mLastUpdateUUID = iter->first; +            } +            mLastUpdateKey = iter->first;  			LLPointer<LLViewerFetchedTexture> imagep = iter->second;  			++iter; // safe to increment now @@ -1061,7 +1103,7 @@ F32 LLViewerTextureList::updateImagesFetchTextures(F32 max_time)  	update_counter = max_update_count;	  	if(update_counter > 0)  	{ -		uuid_map_t::iterator iter2 = mUUIDMap.upper_bound(mLastFetchUUID); +		uuid_map_t::iterator iter2 = mUUIDMap.upper_bound(mLastFetchKey);  		while ((update_counter > 0) && (total_update_count > 0))  		{  			if (iter2 == mUUIDMap.end()) @@ -1091,7 +1133,7 @@ F32 LLViewerTextureList::updateImagesFetchTextures(F32 max_time)  		fetch_count += (imagep->updateFetch() ? 1 : 0);  		if (min_count <= min_update_count)  		{ -			mLastFetchUUID = imagep->getID(); +			mLastFetchKey = LLTextureKey(imagep->getID(), (ETexListType)imagep->getTextureListType());  		}  		if ((min_count-- <= 0) && (image_op_timer.getElapsedTimeF32() > max_time))  		{ @@ -1543,12 +1585,19 @@ void LLViewerTextureList::processImageNotInDatabase(LLMessageSystem *msg,void **  	LLUUID image_id;  	msg->getUUIDFast(_PREHASH_ImageID, _PREHASH_ID, image_id); -	LLViewerFetchedTexture* image = gTextureList.findImage( image_id ); +	LLViewerFetchedTexture* image = gTextureList.findImage( image_id, TEX_LIST_DISCARD);  	if( image )  	{ -		LL_WARNS() << "not in db" << LL_ENDL; +		LL_WARNS() << "Image not in db" << LL_ENDL;  		image->setIsMissingAsset();  	} + +    image = gTextureList.findImage(image_id, TEX_LIST_UI); +    if (image) +    { +        LL_WARNS() << "Icon not in db" << LL_ENDL; +        image->setIsMissingAsset(); +    }  } @@ -1630,14 +1679,18 @@ LLUIImagePtr LLUIImageList::loadUIImage(LLViewerFetchedTexture* imagep, const st  	//don't compress UI images  	imagep->getGLTexture()->setAllowCompression(false); -	//all UI images are non-deletable -	imagep->setNoDelete(); -  	LLUIImagePtr new_imagep = new LLUIImage(name, imagep);  	new_imagep->setScaleStyle(scale_style); -	mUIImages.insert(std::make_pair(name, new_imagep)); -	mUITextureList.push_back(imagep); +	if (imagep->getBoostLevel() != LLGLTexture::BOOST_ICON && +		imagep->getBoostLevel() != LLGLTexture::BOOST_PREVIEW) +	{ +		// Don't add downloadable content into this list +		// all UI images are non-deletable and list does not support deletion +		imagep->setNoDelete(); +		mUIImages.insert(std::make_pair(name, new_imagep)); +		mUITextureList.push_back(imagep); +	}  	//Note:  	//Some other textures such as ICON also through this flow to be fetched. diff --git a/indra/newview/llviewertexturelist.h b/indra/newview/llviewertexturelist.h index fbbfe9a7d4..9f94f2f1bc 100755 --- a/indra/newview/llviewertexturelist.h +++ b/indra/newview/llviewertexturelist.h @@ -59,6 +59,32 @@ typedef	void (*LLImageCallback)(BOOL success,  								BOOL final,  								void* userdata); +enum ETexListType +{ +    TEX_LIST_DISCARD = 0, +    TEX_LIST_UI +}; + +struct LLTextureKey +{ +    LLTextureKey(); +    LLTextureKey(LLUUID id, ETexListType tex_type); +    LLUUID textureId; +    ETexListType textureType; + +    friend bool operator<(const LLTextureKey& key1, const LLTextureKey& key2) +    { +        if (key1.textureId != key2.textureId) +        { +            return key1.textureId < key2.textureId; +        } +        else +        { +            return key1.textureType < key2.textureType; +        } +    } +}; +  class LLViewerTextureList  {  	friend class LLTextureView; @@ -83,7 +109,9 @@ public:  	void restoreGL();  	BOOL isInitialized() const {return mInitialized;} -	LLViewerFetchedTexture *findImage(const LLUUID &image_id); +	void findTexturesByID(const LLUUID &image_id, std::vector<LLViewerFetchedTexture*> &output); +	LLViewerFetchedTexture *findImage(const LLUUID &image_id, ETexListType tex_type); +	LLViewerFetchedTexture *findImage(const LLTextureKey &search_key);  	void dirtyImage(LLViewerFetchedTexture *image); @@ -120,7 +148,7 @@ private:  	void updateImagesUpdateStats();  	F32  updateImagesLoadingFastCache(F32 max_time); -	void addImage(LLViewerFetchedTexture *image); +	void addImage(LLViewerFetchedTexture *image, ETexListType tex_type);  	void deleteImage(LLViewerFetchedTexture *image);  	void addImageToList(LLViewerFetchedTexture *image); @@ -184,10 +212,10 @@ public:  	BOOL mForceResetTextureStats;  private: -	typedef std::map< LLUUID, LLPointer<LLViewerFetchedTexture> > uuid_map_t; -	uuid_map_t mUUIDMap; -	LLUUID mLastUpdateUUID; -	LLUUID mLastFetchUUID; +    typedef std::map< LLTextureKey, LLPointer<LLViewerFetchedTexture> > uuid_map_t; +    uuid_map_t mUUIDMap; +    LLTextureKey mLastUpdateKey; +    LLTextureKey mLastFetchKey;  	typedef std::set<LLPointer<LLViewerFetchedTexture>, LLViewerFetchedTexture::Compare> image_priority_list_t;	  	image_priority_list_t mImageList; diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 2b588ea0ac..61df144227 100755 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -2077,7 +2077,7 @@ LLViewerFetchedTexture *LLVOAvatar::getBakedTextureImage(const U8 te, const LLUU  		uuid == IMG_INVISIBLE)  	{  		// Should already exist, don't need to find it on sim or baked-texture host. -		result = gTextureList.findImage(uuid); +		result = gTextureList.findImage(uuid, TEX_LIST_DISCARD);  	}  	if (!result)  	{ @@ -4405,7 +4405,7 @@ bool LLVOAvatar::allTexturesCompletelyDownloaded(std::set<LLUUID>& ids) const  {  	for (std::set<LLUUID>::const_iterator it = ids.begin(); it != ids.end(); ++it)  	{ -		LLViewerFetchedTexture *imagep = gTextureList.findImage(*it); +		LLViewerFetchedTexture *imagep = gTextureList.findImage(*it, TEX_LIST_DISCARD);  		if (imagep && imagep->getDiscardLevel()!=0)  		{  			return false; @@ -4477,7 +4477,7 @@ S32Bytes LLVOAvatar::totalTextureMemForUUIDS(std::set<LLUUID>& ids)  	S32Bytes result(0);  	for (std::set<LLUUID>::const_iterator it = ids.begin(); it != ids.end(); ++it)  	{ -		LLViewerFetchedTexture *imagep = gTextureList.findImage(*it); +		LLViewerFetchedTexture *imagep = gTextureList.findImage(*it, TEX_LIST_DISCARD);  		if (imagep)  		{  			result += imagep->getTextureMemory(); @@ -4565,7 +4565,7 @@ void LLVOAvatar::releaseOldTextures()  	{  		if (new_texture_ids.find(*it) == new_texture_ids.end())  		{ -			LLViewerFetchedTexture *imagep = gTextureList.findImage(*it); +			LLViewerFetchedTexture *imagep = gTextureList.findImage(*it, TEX_LIST_DISCARD);  			if (imagep)  			{  				current_texture_mem += imagep->getTextureMemory(); diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 680487ea78..4e427289e7 100755 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -2116,6 +2116,8 @@ bool LLVOVolume::notifyAboutMissingAsset(LLViewerTexture *texture)  	for(mmap_UUID_MAP_t::iterator range_it = range.first; range_it != range.second; ++range_it)  	{  		LLMaterialPtr cur_material = getTEMaterialParams(range_it->second.te); +		if (cur_material.isNull()) +			continue;  		switch(range_it->second.map)  		{ @@ -3903,7 +3905,7 @@ BOOL LLVOVolume::lineSegmentIntersect(const LLVector4a& start, const LLVector4a&  	if (mDrawable->isState(LLDrawable::RIGGED))  	{ -		if ((pick_rigged) || ((getAvatar()->isSelf()) && (LLFloater::isVisible(gFloaterTools)))) +		if ((pick_rigged) || (getAvatar() && (getAvatar()->isSelf()) && (LLFloater::isVisible(gFloaterTools))))  		{  			updateRiggedVolume(true);  			volume = mRiggedVolume; diff --git a/indra/newview/llwatchdog.cpp b/indra/newview/llwatchdog.cpp index 7b5bcf4db0..2782cd9545 100755 --- a/indra/newview/llwatchdog.cpp +++ b/indra/newview/llwatchdog.cpp @@ -124,11 +124,17 @@ void LLWatchdogTimeout::setTimeout(F32 d)  void LLWatchdogTimeout::start(const std::string& state)   { -	// Order of operation is very impmortant here. +    if (mTimeout == 0) +    { +        LL_WARNS() << "Cant' start watchdog entry - no timeout set" << LL_ENDL; +        return; +    } +	// Order of operation is very important here.  	// After LLWatchdogEntry::start() is called  	// LLWatchdogTimeout::isAlive() will be called asynchronously.   	ping(state); -	mTimer.start();  +	mTimer.start(); +    mTimer.setTimerExpirySec(mTimeout); // timer expiration set to 0 by start()  	LLWatchdogEntry::start();  } @@ -235,7 +241,6 @@ void LLWatchdog::run()  				mSuspects.end(),   				std::not1(std::mem_fun(&LLWatchdogEntry::isAlive))  				); -  		if(result != mSuspects.end())  		{  			// error!!! diff --git a/indra/newview/llwearableitemslist.h b/indra/newview/llwearableitemslist.h index df4b1a8a50..18a30f083b 100755 --- a/indra/newview/llwearableitemslist.h +++ b/indra/newview/llwearableitemslist.h @@ -421,7 +421,7 @@ public:  			MASK_BODYPART		= 0x02,  			MASK_ATTACHMENT		= 0x04,  			MASK_GESTURE		= 0x08, -			MASK_UNKNOWN		= 0x16, +			MASK_UNKNOWN		= 0x10,  		};  		/* virtual */ LLContextMenu* createMenu(); diff --git a/indra/newview/llworld.cpp b/indra/newview/llworld.cpp index 5d657f7eef..11d3706821 100755 --- a/indra/newview/llworld.cpp +++ b/indra/newview/llworld.cpp @@ -1281,7 +1281,7 @@ void LLWorld::getAvatars(uuid_vec_t* avatar_ids, std::vector<LLVector3d>* positi  	{  		LLVOAvatar* pVOAvatar = (LLVOAvatar*) *iter; -		if (!pVOAvatar->isDead() && !pVOAvatar->mIsDummy) +		if (!pVOAvatar->isDead() && !pVOAvatar->mIsDummy && !pVOAvatar->isOrphaned())  		{  			LLVector3d pos_global = pVOAvatar->getPositionGlobal();  			LLUUID uuid = pVOAvatar->getID(); diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 3c58ce0c09..be575150cd 100755 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -6111,6 +6111,13 @@ void LLPipeline::calcNearbyLights(LLCamera& camera)  		{  			const Light* light = &(*iter);  			LLDrawable* drawable = light->drawable; +            const LLViewerObject *vobj = light->drawable->getVObj(); +            if(vobj && vobj->getAvatar() && vobj->getAvatar()->isInMuteList()) +            { +                drawable->clearState(LLDrawable::NEARBY_LIGHT); +                continue; +            } +  			LLVOVolume* volight = drawable->getVOVolume();  			if (!volight || !drawable->isState(LLDrawable::LIGHT))  			{ @@ -8654,6 +8661,11 @@ void LLPipeline::renderDeferredLighting()  						}  					} +					const LLViewerObject *vobj = drawablep->getVObj(); +					if(vobj && vobj->getAvatar() && vobj->getAvatar()->isInMuteList()) +					{ +						continue; +					}  					LLVector4a center;  					center.load3(drawablep->getPositionAgent().mV); diff --git a/indra/newview/skins/default/xui/en/floater_notifications_tabbed.xml b/indra/newview/skins/default/xui/en/floater_notifications_tabbed.xml index c17d2a1f37..b5ae9db7e9 100644 --- a/indra/newview/skins/default/xui/en/floater_notifications_tabbed.xml +++ b/indra/newview/skins/default/xui/en/floater_notifications_tabbed.xml @@ -136,16 +136,16 @@      </tab_container>      <layout_stack width="336" height="26" enabled="true" orientation="horizontal"  follows="left|right" name="ButtonsStack"> -      <layout_panel width="336" height="30" enabled="true" name="CondenseAllButtonPanel"> +      <layout_panel width="93" height="30" enabled="true" name="CondenseAllButtonPanel">          <button width="93" height="21" left="2" label="Collapse all" name="collapse_all_button">          </button>        </layout_panel> -      <layout_panel width="336" height="30" enabled="true" name="GapLayoutPanel"> +      <layout_panel width="93" height="30" enabled="true" name="GapLayoutPanel">          <panel width="90" height="21" left="2" label="Gap Panel" border="false" name="GapPanel">          </panel>        </layout_panel> -      <layout_panel width="336" height="30" enabled="true" name="DeleteAllButtonPanel"> -        <button width="93" height="21" left="2" label="Delete all" name="delete_all_button"> +      <layout_panel width="100" height="30" enabled="true" name="DeleteAllButtonPanel"> +        <button width="93" height="21" left="0" label="Delete all" follows="right" name="delete_all_button">          </button>        </layout_panel>      </layout_stack> diff --git a/indra/newview/skins/default/xui/en/fonts.xml b/indra/newview/skins/default/xui/en/fonts.xml index ebbb53729d..170b7177fb 100755 --- a/indra/newview/skins/default/xui/en/fonts.xml +++ b/indra/newview/skins/default/xui/en/fonts.xml @@ -14,6 +14,7 @@        <file>ヒラギノ角ゴ ProN W3.otf</file>        <file>AppleGothic.dfont</file>        <file>AppleGothic.ttf</file> +      <file>AppleSDGothicNeo-Regular.otf</file>        <file>华文细黑.ttf</file>      </os>    </font> diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml index a9d126e605..5e13259699 100755 --- a/indra/newview/skins/default/xui/en/notifications.xml +++ b/indra/newview/skins/default/xui/en/notifications.xml @@ -1222,6 +1222,14 @@ You can not wear that item because it has not yet loaded. Please try again in a    <tag>fail</tag>    </notification> +    <notification +   icon="alertmodal.tga" +   name="MustEnterPasswordToLogIn" +   type="alertmodal"> +   <tag>fail</tag> +Please enter your Password to log in. +  </notification> +      <notification     icon="alertmodal.tga"     name="MustHaveAccountToLogIn" @@ -4169,28 +4177,6 @@ You have left the group [group_name].    </notification>    <notification -   icon="aler.tga" -   name="GroupDepartError" -   type="alert"> -Unable to leave group: [reason]. -      <tag>reason</tag> -      <usetemplate -       name="okbutton" -       yestext="OK"/> -  </notification> - -  <notification -   icon="alert.tga" -   name="GroupDepart" -   type="alert"> -You have left the group [group_name]. -      <tag>group_name</tag> -      <usetemplate -       name="okbutton" -       yestext="OK"/> -  </notification> - -  <notification     icon="alert.tga"     name="ConfirmKick"     type="alert"> diff --git a/indra/newview/skins/default/xui/es/floater_about_land.xml b/indra/newview/skins/default/xui/es/floater_about_land.xml index 10907344ae..79493d3885 100755 --- a/indra/newview/skins/default/xui/es/floater_about_land.xml +++ b/indra/newview/skins/default/xui/es/floater_about_land.xml @@ -353,10 +353,10 @@ Sólo las parcelas más grandes pueden listarse en la búsqueda.  				Foto:  			</text>  			<texture_picker label="" name="snapshot_ctrl" tool_tip="Pulse para elegir una imagen"/> -			<text name="allow_label5"> +			<text name="allow_label5" top="170">  				Los avatares de otras parcelas pueden ver a los avatares de esta parcela y chatear con ellos  			</text> -			<check_box label="Ver los avatares" name="SeeAvatarsCheck" tool_tip="Permite que los avatares de otras parcelas vean a los avatares de ésta y chateen con ellos, y también que tú puedas verles y chatear con ellos."/> +			<check_box label="Ver los avatares" name="SeeAvatarsCheck" top="170" tool_tip="Permite que los avatares de otras parcelas vean a los avatares de ésta y chateen con ellos, y también que tú puedas verles y chatear con ellos."/>  			<text name="landing_point">  				Punto de llegada: [LANDING]  			</text> diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index f7992dba90..ab87f0da35 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -28,6 +28,7 @@ $/LicenseInfo$  """  import sys  import os.path +import shutil  import errno  import re  import tarfile @@ -855,14 +856,17 @@ class Darwin_i386_Manifest(ViewerManifest):                  # This code constructs a relative path from the                  # target framework folder back to the location of the symlink.                  # It needs to be relative so that the symlink still works when -                # (as is normal) the user moves the app bunlde out of the DMG +                # (as is normal) the user moves the app bundle out of the DMG                  # and into the /Applications folder. Note we also call 'raise'                  # to terminate the process if we get an error since without                  # this symlink, Second Life web media can't possibly work.                  # Real Framework folder:                  #   Second Life.app/Contents/Frameworks/Chromium Embedded Framework.framework/ -                # Location of symlink and why it'ds relavie  +                # Location of symlink and why it'ds relative                   #   Second Life.app/Contents/Resources/SLPlugin.app/Contents/Frameworks/Chromium Embedded Framework.framework/ +                # Real Frameworks folder, with the symlink inside the bundled SLPlugin.app (and why it's relative) +                #   <top level>.app/Contents/Frameworks/Chromium Embedded Framework.framework/ +                #   <top level>.app/Contents/Resources/SLPlugin.app/Contents/Frameworks/Chromium Embedded Framework.framework ->                  frameworkpath = os.path.join(os.pardir, os.pardir, os.pardir, os.pardir, "Frameworks", "Chromium Embedded Framework.framework")                  try:                      symlinkf(frameworkpath, pluginframeworkpath) @@ -872,10 +876,6 @@ class Darwin_i386_Manifest(ViewerManifest):              self.end_prefix("Contents") -        # fix up media_plugin.dylib so it knows where to look for CEF files it needs -        self.run_command('install_name_tool -change "@executable_path/Chromium Embedded Framework" "@executable_path/../Frameworks/Chromium Embedded Framework.framework/Chromium Embedded Framework" "%(config)s/Second Life.app/Contents/Resources/llplugin/media_plugin_cef.dylib"' % -                        { 'config' : self.args['configuration'] }) -          # NOTE: the -S argument to strip causes it to keep enough info for          # annotated backtraces (i.e. function names in the crash log).  'strip' with no          # arguments yields a slightly smaller binary but makes crash logs mostly useless. @@ -1247,12 +1247,33 @@ def symlinkf(src, dst):          # file, but that strategy doesn't work so well if we don't have          # permissions to remove it. Check to see if it's already the          # symlink we want, which is the usual reason for EEXIST. -        if not (os.path.islink(dst) and os.readlink(dst) == src): -            # Here either dst isn't a symlink or it's the wrong symlink. -            # Remove and recreate. Caller will just have to deal with any -            # exceptions at this stage. +        elif os.path.islink(dst): +            if os.readlink(dst) == src: +                # the requested link already exists +                pass +            else: +                # dst is the wrong symlink; attempt to remove and recreate it +                os.remove(dst) +                os.symlink(src, dst) +        elif os.path.isdir(dst): +            print "Requested symlink (%s) exists but is a directory; replacing" % dst +            shutil.rmtree(dst) +            os.symlink(src, dst) +        elif os.path.exists(dst): +            print "Requested symlink (%s) exists but is a file; replacing" % dst              os.remove(dst)              os.symlink(src, dst) +        else: +            # see if the problem is that the parent directory does not exist +            # and try to explain what is missing +            (parent, tail) = os.path.split(dst) +            while not os.path.exists(parent): +                (parent, tail) = os.path.split(parent) +            if tail: +                raise Exception("Requested symlink (%s) cannot be created because %s does not exist" +                                % os.path.join(parent, tail)) +            else: +                raise  if __name__ == "__main__":      main() | 
