diff options
Diffstat (limited to 'indra/llcommon')
| -rw-r--r-- | indra/llcommon/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | indra/llcommon/indra_constants.cpp | 46 | ||||
| -rw-r--r-- | indra/llcommon/indra_constants.h | 19 | ||||
| -rw-r--r-- | indra/llcommon/linden_common.h | 2 | ||||
| -rw-r--r-- | indra/llcommon/lldictionary.cpp | 52 | ||||
| -rw-r--r-- | indra/llcommon/lldictionary.h | 16 | 
6 files changed, 113 insertions, 23 deletions
| diff --git a/indra/llcommon/CMakeLists.txt b/indra/llcommon/CMakeLists.txt index ab66f634ee..f5b0e998fd 100644 --- a/indra/llcommon/CMakeLists.txt +++ b/indra/llcommon/CMakeLists.txt @@ -40,6 +40,7 @@ set(llcommon_SOURCE_FILES      llcursortypes.cpp      lldate.cpp      lldependencies.cpp +    lldictionary.cpp      llerror.cpp      llerrorthread.cpp      llevent.cpp diff --git a/indra/llcommon/indra_constants.cpp b/indra/llcommon/indra_constants.cpp new file mode 100644 index 0000000000..8a1290d4dc --- /dev/null +++ b/indra/llcommon/indra_constants.cpp @@ -0,0 +1,46 @@ +/**  + * @file indra_constants.cpp + * @brief some useful short term constants for Indra + * + * $LicenseInfo:firstyear=2001&license=viewergpl$ + *  + * Copyright (c) 2001-2009, Linden Research, Inc. + *  + * Second Life Viewer Source Code + * The source code in this file ("Source Code") is provided by Linden Lab + * to you under the terms of the GNU General Public License, version 2.0 + * ("GPL"), unless you have obtained a separate licensing agreement + * ("Other License"), formally executed by you and Linden Lab.  Terms of + * the GPL can be found in doc/GPL-license.txt in this distribution, or + * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2 + *  + * There are special exceptions to the terms and conditions of the GPL as + * it is applied to this Source Code. View the full text of the exception + * in the file doc/FLOSS-exception.txt in this software distribution, or + * online at + * http://secondlifegrid.net/programs/open_source/licensing/flossexception + *  + * By copying, modifying or distributing this software, you acknowledge + * that you have read and understood your obligations described above, + * and agree to abide by those obligations. + *  + * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO + * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, + * COMPLETENESS OR PERFORMANCE. + * $/LicenseInfo$ + */ +#include "linden_common.h" + +#include "indra_constants.h" + +#include "lluuid.h" + +// "agent id" for things that should be done to ALL agents +const LLUUID LL_UUID_ALL_AGENTS("44e87126-e794-4ded-05b3-7c42da3d5cdb"); + +// Governor Linden's agent id. +const LLUUID ALEXANDRIA_LINDEN_ID("ba2a564a-f0f1-4b82-9c61-b7520bfcd09f"); +const LLUUID GOVERNOR_LINDEN_ID("3d6181b0-6a4b-97ef-18d8-722652995cf1"); +const LLUUID REALESTATE_LINDEN_ID("3d6181b0-6a4b-97ef-18d8-722652995cf1"); +// Maintenance's group id. +const LLUUID MAINTENANCE_GROUP_ID("dc7b21cd-3c89-fcaa-31c8-25f9ffd224cd"); diff --git a/indra/llcommon/indra_constants.h b/indra/llcommon/indra_constants.h index 6b75a720af..5ce5fc4673 100644 --- a/indra/llcommon/indra_constants.h +++ b/indra/llcommon/indra_constants.h @@ -34,7 +34,8 @@  #define LL_INDRA_CONSTANTS_H  #include "stdtypes.h" -#include "lluuid.h" + +class LLUUID;  // At 45 Hz collisions seem stable and objects seem  // to settle down at a reasonable rate. @@ -46,7 +47,7 @@  #define PHYSICS_TIMESTEP (1.f / 45.f)  const F32 COLLISION_TOLERANCE = 0.1f; -const F32 HALF_COLLISION_TOLERANCE = COLLISION_TOLERANCE * 0.5f; +const F32 HALF_COLLISION_TOLERANCE = 0.05f;  // Time constants  const U32 HOURS_PER_LINDEN_DAY		= 4;	 @@ -97,9 +98,9 @@ const 	F32 	MIN_AGENT_WIDTH 		= 0.40f;  const 	F32 	DEFAULT_AGENT_WIDTH 	= 0.60f;  const 	F32 	MAX_AGENT_WIDTH 		= 0.80f; -const 	F32 	MIN_AGENT_HEIGHT		= 1.3f - 2.0f * COLLISION_TOLERANCE; +const 	F32 	MIN_AGENT_HEIGHT		= 1.1f;  const 	F32 	DEFAULT_AGENT_HEIGHT	= 1.9f; -const 	F32 	MAX_AGENT_HEIGHT		= 2.65f - 2.0f * COLLISION_TOLERANCE; +const 	F32 	MAX_AGENT_HEIGHT		= 2.45f;  // For linked sets  const S32 MAX_CHILDREN_PER_TASK = 255; @@ -266,14 +267,14 @@ const U8 GOD_LIKE = 1;  const U8 GOD_NOT = 0;  // "agent id" for things that should be done to ALL agents -const LLUUID LL_UUID_ALL_AGENTS("44e87126-e794-4ded-05b3-7c42da3d5cdb"); +extern const LLUUID LL_UUID_ALL_AGENTS;  // Governor Linden's agent id. -const LLUUID ALEXANDRIA_LINDEN_ID("ba2a564a-f0f1-4b82-9c61-b7520bfcd09f"); -const LLUUID GOVERNOR_LINDEN_ID("3d6181b0-6a4b-97ef-18d8-722652995cf1"); -const LLUUID REALESTATE_LINDEN_ID("3d6181b0-6a4b-97ef-18d8-722652995cf1"); +extern const LLUUID ALEXANDRIA_LINDEN_ID;	// inventory library owner +extern const LLUUID GOVERNOR_LINDEN_ID; +extern const LLUUID REALESTATE_LINDEN_ID;  // Maintenance's group id. -const LLUUID MAINTENANCE_GROUP_ID("dc7b21cd-3c89-fcaa-31c8-25f9ffd224cd"); +extern const LLUUID MAINTENANCE_GROUP_ID;  // Flags for kick message  const U32 KICK_FLAGS_DEFAULT	= 0x0; diff --git a/indra/llcommon/linden_common.h b/indra/llcommon/linden_common.h index c2eb867795..771af01279 100644 --- a/indra/llcommon/linden_common.h +++ b/indra/llcommon/linden_common.h @@ -64,6 +64,8 @@  #pragma warning (disable : 4244) // conversion from time_t to S32  #endif	//	LL_WINDOWS +// *TODO: Eliminate these, most library .cpp files don't need them. +// Add them to llviewerprecompiledheaders.h if necessary.  #include <list>  #include <map>  #include <vector> diff --git a/indra/llcommon/lldictionary.cpp b/indra/llcommon/lldictionary.cpp new file mode 100644 index 0000000000..8730238d92 --- /dev/null +++ b/indra/llcommon/lldictionary.cpp @@ -0,0 +1,52 @@ +/**  + * @file lldictionary.cpp + * @brief Lldictionary class header file + * + * $LicenseInfo:firstyear=2002&license=viewergpl$ + *  + * Copyright (c) 2002-2007, Linden Research, Inc. + *  + * Second Life Viewer Source Code + * The source code in this file ("Source Code") is provided by Linden Lab + * to you under the terms of the GNU General Public License, version 2.0 + * ("GPL"), unless you have obtained a separate licensing agreement + * ("Other License"), formally executed by you and Linden Lab.  Terms of + * the GPL can be found in doc/GPL-license.txt in this distribution, or + * online at http://secondlife.com/developers/opensource/gplv2 + *  + * There are special exceptions to the terms and conditions of the GPL as + * it is applied to this Source Code. View the full text of the exception + * in the file doc/FLOSS-exception.txt in this software distribution, or + * online at http://secondlife.com/developers/opensource/flossexception + *  + * By copying, modifying or distributing this software, you acknowledge + * that you have read and understood your obligations described above, + * and agree to abide by those obligations. + *  + * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO + * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, + * COMPLETENESS OR PERFORMANCE. + * $/LicenseInfo$ + */ + +#include "linden_common.h" + +#include "lldictionary.h" + +#include "llstring.h" + +// Define in .cpp file to prevent header include of llstring.h +LLDictionaryEntry::LLDictionaryEntry(const std::string &name) +:	mName(name) +{ +	mNameCapitalized = mName; +	LLStringUtil::replaceChar(mNameCapitalized, '-', ' '); +	LLStringUtil::replaceChar(mNameCapitalized, '_', ' '); +	for (U32 i=0; i < mNameCapitalized.size(); i++) +	{ +		if (i == 0 || mNameCapitalized[i-1] == ' ') // don't change ordering of this statement or crash +		{ +			mNameCapitalized[i] = toupper(mNameCapitalized[i]); +		} +	} +} diff --git a/indra/llcommon/lldictionary.h b/indra/llcommon/lldictionary.h index 436b689ca6..a8a34a89a5 100644 --- a/indra/llcommon/lldictionary.h +++ b/indra/llcommon/lldictionary.h @@ -33,23 +33,11 @@  #define LL_LLDICTIONARY_H  #include <map> +#include <string>  struct LLDictionaryEntry  { -	LLDictionaryEntry(const std::string &name) : -		mName(name) -	{ -		mNameCapitalized = mName; -		LLStringUtil::replaceChar(mNameCapitalized, '-', ' '); -		LLStringUtil::replaceChar(mNameCapitalized, '_', ' '); -		for (U32 i=0; i < mNameCapitalized.size(); i++) -		{ -			if (i == 0 || mNameCapitalized[i-1] == ' ') // don't change ordering of this statement or crash -			{ -				mNameCapitalized[i] = toupper(mNameCapitalized[i]); -			} -		} -	} +	LLDictionaryEntry(const std::string &name);  	virtual ~LLDictionaryEntry() {}  	const std::string mName;  	std::string mNameCapitalized; | 
