From 7d89e122930be39e84a6d174548fa2d12ac0484a Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 6 Sep 2008 07:52:41 +0000 Subject: * This is the fabled LibOMV update with all of the libOMV types from JHurliman * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke. --- OpenSim/Framework/UserAgentData.cs | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'OpenSim/Framework/UserAgentData.cs') diff --git a/OpenSim/Framework/UserAgentData.cs b/OpenSim/Framework/UserAgentData.cs index 68f47ba..03a65c5 100644 --- a/OpenSim/Framework/UserAgentData.cs +++ b/OpenSim/Framework/UserAgentData.cs @@ -26,7 +26,7 @@ */ using System; -using libsecondlife; +using OpenMetaverse; namespace OpenSim.Framework { @@ -58,12 +58,12 @@ namespace OpenSim.Framework /// /// The position of the user within the region /// - private LLVector3 currentPos; + private Vector3 currentPos; /// /// Current region the user is logged into /// - private LLUUID currentRegion; + private UUID currentRegion; /// /// A unix timestamp from when the user logged in @@ -78,25 +78,25 @@ namespace OpenSim.Framework /// /// The region the user logged into initially /// - private LLUUID regionID; + private UUID regionID; /// /// The "secure" session ID for the user /// /// Not very secure. Dont rely on it for anything more than Linden Lab does. - private LLUUID secureSessionID; + private UUID secureSessionID; /// /// The session ID for the user (also the agent ID) /// - private LLUUID sessionID; + private UUID sessionID; /// /// The UUID of the users avatar (not the agent!) /// - private LLUUID UUID; + private UUID UUID; - public virtual LLUUID ProfileID + public virtual UUID ProfileID { get { return UUID; } set { UUID = value; } @@ -120,19 +120,19 @@ namespace OpenSim.Framework set { agentOnline = value; } } - public virtual LLUUID SessionID + public virtual UUID SessionID { get { return sessionID; } set { sessionID = value; } } - public virtual LLUUID SecureSessionID + public virtual UUID SecureSessionID { get { return secureSessionID; } set { secureSessionID = value; } } - public virtual LLUUID InitialRegion + public virtual UUID InitialRegion { get { return regionID; } set { regionID = value; } @@ -150,7 +150,7 @@ namespace OpenSim.Framework set { logoutTime = value; } } - public virtual LLUUID Region + public virtual UUID Region { get { return currentRegion; } set { currentRegion = value; } @@ -162,7 +162,7 @@ namespace OpenSim.Framework set { currentHandle = value; } } - public virtual LLVector3 Position + public virtual Vector3 Position { get { return currentPos; } set { currentPos = value; } @@ -186,4 +186,4 @@ namespace OpenSim.Framework set { currentPos.Z = value; } } } -} \ No newline at end of file +} -- cgit v1.1