* Changed all privates to m_ scheme

0.6.5-rc1
lbsa71 2009-04-13 20:05:12 +00:00
parent 29355de6ee
commit a7ed7665a6
1 changed files with 100 additions and 100 deletions

View File

@ -38,116 +38,116 @@ namespace OpenSim.Framework
/// <summary> /// <summary>
/// A UNIX Timestamp (seconds since epoch) for the users creation /// A UNIX Timestamp (seconds since epoch) for the users creation
/// </summary> /// </summary>
private int _created; private int m_created;
/// <summary> /// <summary>
/// The users last registered agent (filled in on the user server) /// The users last registered agent (filled in on the user server)
/// </summary> /// </summary>
private UserAgentData _currentAgent; private UserAgentData m_currentAgent;
/// <summary> /// <summary>
/// The first component of a users account name /// The first component of a users account name
/// </summary> /// </summary>
private string _firstname; private string m_firstname;
/// <summary> /// <summary>
/// The coordinates inside the region of the home location /// The coordinates inside the region of the home location
/// </summary> /// </summary>
private Vector3 _homeLocation; private Vector3 m_homeLocation;
/// <summary> /// <summary>
/// Where the user will be looking when they rez. /// Where the user will be looking when they rez.
/// </summary> /// </summary>
private Vector3 _homeLookAt; private Vector3 m_homeLookAt;
private uint _homeRegionX; private uint m_homeRegionX;
private uint _homeRegionY; private uint m_homeRegionY;
/// <summary> /// <summary>
/// The ID value for this user /// The ID value for this user
/// </summary> /// </summary>
private UUID _id; private UUID m_id;
/// <summary> /// <summary>
/// A UNIX Timestamp for the users last login date / time /// A UNIX Timestamp for the users last login date / time
/// </summary> /// </summary>
private int _lastLogin; private int m_lastLogin;
/// <summary> /// <summary>
/// A salted hash containing the users password, in the format md5(md5(password) + ":" + salt) /// A salted hash containing the users password, in the format md5(md5(password) + ":" + salt)
/// </summary> /// </summary>
/// <remarks>This is double MD5'd because the client sends an unsalted MD5 to the loginserver</remarks> /// <remarks>This is double MD5'd because the client sends an unsalted MD5 to the loginserver</remarks>
private string _passwordHash; private string m_passwordHash;
/// <summary> /// <summary>
/// The salt used for the users hash, should be 32 bytes or longer /// The salt used for the users hash, should be 32 bytes or longer
/// </summary> /// </summary>
private string _passwordSalt; private string m_passwordSalt;
/// <summary> /// <summary>
/// The about text listed in a users profile. /// The about text listed in a users profile.
/// </summary> /// </summary>
private string _profileAboutText = String.Empty; private string m_profileAboutText = String.Empty;
/// <summary> /// <summary>
/// A uint mask containing the "I can do" fields of the users profile /// A uint mask containing the "I can do" fields of the users profile
/// </summary> /// </summary>
private uint _profileCanDoMask; private uint m_profileCanDoMask;
/// <summary> /// <summary>
/// The profile image for the users first life tab /// The profile image for the users first life tab
/// </summary> /// </summary>
private UUID _profileFirstImage; private UUID m_profileFirstImage;
/// <summary> /// <summary>
/// The first life about text listed in a users profile /// The first life about text listed in a users profile
/// </summary> /// </summary>
private string _profileFirstText = String.Empty; private string m_profileFirstText = String.Empty;
/// <summary> /// <summary>
/// The profile image for an avatar stored on the asset server /// The profile image for an avatar stored on the asset server
/// </summary> /// </summary>
private UUID _profileImage; private UUID m_profileImage;
/// <summary> /// <summary>
/// A uint mask containing the "I want to do" part of the users profile /// A uint mask containing the "I want to do" part of the users profile
/// </summary> /// </summary>
private uint _profileWantDoMask; // Profile window "I want to" mask private uint m_profileWantDoMask; // Profile window "I want to" mask
private UUID _rootInventoryFolderID; private UUID m_rootInventoryFolderId;
/// <summary> /// <summary>
/// The second component of a users account name /// The second component of a users account name
/// </summary> /// </summary>
private string _surname; private string m_surname;
/// <summary> /// <summary>
/// A valid email address for the account. Useful for password reset requests. /// A valid email address for the account. Useful for password reset requests.
/// </summary> /// </summary>
private string _email = String.Empty; private string m_email = String.Empty;
/// <summary> /// <summary>
/// A URI to the users asset server, used for foreigners and large grids. /// A URI to the users asset server, used for foreigners and large grids.
/// </summary> /// </summary>
private string _userAssetURI = String.Empty; private string m_userAssetUri = String.Empty;
/// <summary> /// <summary>
/// A URI to the users inventory server, used for foreigners and large grids /// A URI to the users inventory server, used for foreigners and large grids
/// </summary> /// </summary>
private string _userInventoryURI = String.Empty; private string m_userInventoryUri = String.Empty;
/// <summary> /// <summary>
/// The last used Web_login_key /// The last used Web_login_key
/// </summary> /// </summary>
private UUID _webLoginKey; private UUID m_webLoginKey;
// Data for estates and other goodies // Data for estates and other goodies
// to get away from per-machine configs a little // to get away from per-machine configs a little
// //
private int _userFlags; private int m_userFlags;
private int _godLevel; private int m_godLevel;
private string _customType; private string m_customType;
private UUID _partner; private UUID m_partner;
/// <summary> /// <summary>
/// The regionhandle of the users preferred home region. If /// The regionhandle of the users preferred home region. If
@ -156,15 +156,15 @@ namespace OpenSim.Framework
/// </summary> /// </summary>
public virtual ulong HomeRegion public virtual ulong HomeRegion
{ {
get { return Utils.UIntsToLong((_homeRegionX * (uint)Constants.RegionSize), (_homeRegionY * (uint)Constants.RegionSize)); } get { return Utils.UIntsToLong((m_homeRegionX * (uint)Constants.RegionSize), (m_homeRegionY * (uint)Constants.RegionSize)); }
set set
{ {
_homeRegionX = (uint) (value >> 40); m_homeRegionX = (uint) (value >> 40);
_homeRegionY = (((uint) (value)) >> 8); m_homeRegionY = (((uint) (value)) >> 8);
} }
} }
private UUID _homeRegionID; private UUID m_homeRegionId;
/// <summary> /// <summary>
/// The regionID of the users home region. This is unique; /// The regionID of the users home region. This is unique;
/// even if the position of the region changes within the /// even if the position of the region changes within the
@ -172,33 +172,33 @@ namespace OpenSim.Framework
/// </summary> /// </summary>
public UUID HomeRegionID public UUID HomeRegionID
{ {
get { return _homeRegionID; } get { return m_homeRegionId; }
set { _homeRegionID = value; } set { m_homeRegionId = value; }
} }
// Property wrappers // Property wrappers
public UUID ID public UUID ID
{ {
get { return _id; } get { return m_id; }
set { _id = value; } set { m_id = value; }
} }
public UUID WebLoginKey public UUID WebLoginKey
{ {
get { return _webLoginKey; } get { return m_webLoginKey; }
set { _webLoginKey = value; } set { m_webLoginKey = value; }
} }
public string FirstName public string FirstName
{ {
get { return _firstname; } get { return m_firstname; }
set { _firstname = value; } set { m_firstname = value; }
} }
public string SurName public string SurName
{ {
get { return _surname; } get { return m_surname; }
set { _surname = value; } set { m_surname = value; }
} }
/// <value> /// <value>
@ -206,184 +206,184 @@ namespace OpenSim.Framework
/// </value> /// </value>
public string Name public string Name
{ {
get { return String.Format("{0} {1}", _firstname, _surname); } get { return String.Format("{0} {1}", m_firstname, m_surname); }
} }
public string Email public string Email
{ {
get { return _email; } get { return m_email; }
set { _email = value; } set { m_email = value; }
} }
public string PasswordHash public string PasswordHash
{ {
get { return _passwordHash; } get { return m_passwordHash; }
set { _passwordHash = value; } set { m_passwordHash = value; }
} }
public string PasswordSalt public string PasswordSalt
{ {
get { return _passwordSalt; } get { return m_passwordSalt; }
set { _passwordSalt = value; } set { m_passwordSalt = value; }
} }
public uint HomeRegionX public uint HomeRegionX
{ {
get { return _homeRegionX; } get { return m_homeRegionX; }
set { _homeRegionX = value; } set { m_homeRegionX = value; }
} }
public uint HomeRegionY public uint HomeRegionY
{ {
get { return _homeRegionY; } get { return m_homeRegionY; }
set { _homeRegionY = value; } set { m_homeRegionY = value; }
} }
public Vector3 HomeLocation public Vector3 HomeLocation
{ {
get { return _homeLocation; } get { return m_homeLocation; }
set { _homeLocation = value; } set { m_homeLocation = value; }
} }
// for handy serialization // for handy serialization
public float HomeLocationX public float HomeLocationX
{ {
get { return _homeLocation.X; } get { return m_homeLocation.X; }
set { _homeLocation.X = value; } set { m_homeLocation.X = value; }
} }
public float HomeLocationY public float HomeLocationY
{ {
get { return _homeLocation.Y; } get { return m_homeLocation.Y; }
set { _homeLocation.Y = value; } set { m_homeLocation.Y = value; }
} }
public float HomeLocationZ public float HomeLocationZ
{ {
get { return _homeLocation.Z; } get { return m_homeLocation.Z; }
set { _homeLocation.Z = value; } set { m_homeLocation.Z = value; }
} }
public Vector3 HomeLookAt public Vector3 HomeLookAt
{ {
get { return _homeLookAt; } get { return m_homeLookAt; }
set { _homeLookAt = value; } set { m_homeLookAt = value; }
} }
// for handy serialization // for handy serialization
public float HomeLookAtX public float HomeLookAtX
{ {
get { return _homeLookAt.X; } get { return m_homeLookAt.X; }
set { _homeLookAt.X = value; } set { m_homeLookAt.X = value; }
} }
public float HomeLookAtY public float HomeLookAtY
{ {
get { return _homeLookAt.Y; } get { return m_homeLookAt.Y; }
set { _homeLookAt.Y = value; } set { m_homeLookAt.Y = value; }
} }
public float HomeLookAtZ public float HomeLookAtZ
{ {
get { return _homeLookAt.Z; } get { return m_homeLookAt.Z; }
set { _homeLookAt.Z = value; } set { m_homeLookAt.Z = value; }
} }
public int Created public int Created
{ {
get { return _created; } get { return m_created; }
set { _created = value; } set { m_created = value; }
} }
public int LastLogin public int LastLogin
{ {
get { return _lastLogin; } get { return m_lastLogin; }
set { _lastLogin = value; } set { m_lastLogin = value; }
} }
public UUID RootInventoryFolderID public UUID RootInventoryFolderID
{ {
get { return _rootInventoryFolderID; } get { return m_rootInventoryFolderId; }
set { _rootInventoryFolderID = value; } set { m_rootInventoryFolderId = value; }
} }
public string UserInventoryURI public string UserInventoryURI
{ {
get { return _userInventoryURI; } get { return m_userInventoryUri; }
set { _userInventoryURI = value; } set { m_userInventoryUri = value; }
} }
public string UserAssetURI public string UserAssetURI
{ {
get { return _userAssetURI; } get { return m_userAssetUri; }
set { _userAssetURI = value; } set { m_userAssetUri = value; }
} }
public uint CanDoMask public uint CanDoMask
{ {
get { return _profileCanDoMask; } get { return m_profileCanDoMask; }
set { _profileCanDoMask = value; } set { m_profileCanDoMask = value; }
} }
public uint WantDoMask public uint WantDoMask
{ {
get { return _profileWantDoMask; } get { return m_profileWantDoMask; }
set { _profileWantDoMask = value; } set { m_profileWantDoMask = value; }
} }
public string AboutText public string AboutText
{ {
get { return _profileAboutText; } get { return m_profileAboutText; }
set { _profileAboutText = value; } set { m_profileAboutText = value; }
} }
public string FirstLifeAboutText public string FirstLifeAboutText
{ {
get { return _profileFirstText; } get { return m_profileFirstText; }
set { _profileFirstText = value; } set { m_profileFirstText = value; }
} }
public UUID Image public UUID Image
{ {
get { return _profileImage; } get { return m_profileImage; }
set { _profileImage = value; } set { m_profileImage = value; }
} }
public UUID FirstLifeImage public UUID FirstLifeImage
{ {
get { return _profileFirstImage; } get { return m_profileFirstImage; }
set { _profileFirstImage = value; } set { m_profileFirstImage = value; }
} }
public UserAgentData CurrentAgent public UserAgentData CurrentAgent
{ {
get { return _currentAgent; } get { return m_currentAgent; }
set { _currentAgent = value; } set { m_currentAgent = value; }
} }
public int UserFlags public int UserFlags
{ {
get { return _userFlags; } get { return m_userFlags; }
set { _userFlags = value; } set { m_userFlags = value; }
} }
public int GodLevel public int GodLevel
{ {
get { return _godLevel; } get { return m_godLevel; }
set { _godLevel = value; } set { m_godLevel = value; }
} }
public string CustomType public string CustomType
{ {
get { return _customType; } get { return m_customType; }
set { _customType = value; } set { m_customType = value; }
} }
public UUID Partner public UUID Partner
{ {
get { return _partner; } get { return m_partner; }
set { _partner = value; } set { m_partner = value; }
} }
} }
} }