diff options
author | BlueWall | 2012-02-21 14:21:03 -0500 |
---|---|---|
committer | BlueWall | 2012-02-21 14:21:03 -0500 |
commit | 7cf970fb27297d9550d4bdb1d520e9c6ff0a381d (patch) | |
tree | b89bb60e9e90518b63f58b0067d68a9d07e41fa1 /OpenSim/Services/LLLoginService/LLLoginResponse.cs | |
parent | Both 32-bit and 64-bit BulletSim.dll must have the same name. Rename the 64 ... (diff) | |
download | opensim-SC_OLD-7cf970fb27297d9550d4bdb1d520e9c6ff0a381d.zip opensim-SC_OLD-7cf970fb27297d9550d4bdb1d520e9c6ff0a381d.tar.gz opensim-SC_OLD-7cf970fb27297d9550d4bdb1d520e9c6ff0a381d.tar.bz2 opensim-SC_OLD-7cf970fb27297d9550d4bdb1d520e9c6ff0a381d.tar.xz |
V3 Support:
This starts V3 support by adding a profile server url to the login response. This requires viewer support - which is also being worked on.
Diffstat (limited to 'OpenSim/Services/LLLoginService/LLLoginResponse.cs')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginResponse.cs | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginResponse.cs b/OpenSim/Services/LLLoginService/LLLoginResponse.cs index 1a874c8..b6f6d31 100644 --- a/OpenSim/Services/LLLoginService/LLLoginResponse.cs +++ b/OpenSim/Services/LLLoginService/LLLoginResponse.cs | |||
@@ -168,6 +168,9 @@ namespace OpenSim.Services.LLLoginService | |||
168 | // Web map | 168 | // Web map |
169 | private string mapTileURL; | 169 | private string mapTileURL; |
170 | 170 | ||
171 | // Web Profiles | ||
172 | private string profileURL; | ||
173 | |||
171 | private string searchURL; | 174 | private string searchURL; |
172 | 175 | ||
173 | // Error Flags | 176 | // Error Flags |
@@ -220,7 +223,7 @@ namespace OpenSim.Services.LLLoginService | |||
220 | public LLLoginResponse(UserAccount account, AgentCircuitData aCircuit, GridUserInfo pinfo, | 223 | public LLLoginResponse(UserAccount account, AgentCircuitData aCircuit, GridUserInfo pinfo, |
221 | GridRegion destination, List<InventoryFolderBase> invSkel, FriendInfo[] friendsList, ILibraryService libService, | 224 | GridRegion destination, List<InventoryFolderBase> invSkel, FriendInfo[] friendsList, ILibraryService libService, |
222 | string where, string startlocation, Vector3 position, Vector3 lookAt, List<InventoryItemBase> gestures, string message, | 225 | string where, string startlocation, Vector3 position, Vector3 lookAt, List<InventoryItemBase> gestures, string message, |
223 | GridRegion home, IPEndPoint clientIP, string mapTileURL, string searchURL, string currency) | 226 | GridRegion home, IPEndPoint clientIP, string mapTileURL, string profileURL, string searchURL, string currency) |
224 | : this() | 227 | : this() |
225 | { | 228 | { |
226 | FillOutInventoryData(invSkel, libService); | 229 | FillOutInventoryData(invSkel, libService); |
@@ -237,6 +240,8 @@ namespace OpenSim.Services.LLLoginService | |||
237 | BuddList = ConvertFriendListItem(friendsList); | 240 | BuddList = ConvertFriendListItem(friendsList); |
238 | StartLocation = where; | 241 | StartLocation = where; |
239 | MapTileURL = mapTileURL; | 242 | MapTileURL = mapTileURL; |
243 | ProfileURL = profileURL; | ||
244 | |||
240 | SearchURL = searchURL; | 245 | SearchURL = searchURL; |
241 | Currency = currency; | 246 | Currency = currency; |
242 | 247 | ||
@@ -384,6 +389,7 @@ namespace OpenSim.Services.LLLoginService | |||
384 | InitialOutfitHash["gender"] = "female"; | 389 | InitialOutfitHash["gender"] = "female"; |
385 | initialOutfit.Add(InitialOutfitHash); | 390 | initialOutfit.Add(InitialOutfitHash); |
386 | mapTileURL = String.Empty; | 391 | mapTileURL = String.Empty; |
392 | profileURL = String.Empty; | ||
387 | searchURL = String.Empty; | 393 | searchURL = String.Empty; |
388 | 394 | ||
389 | currency = String.Empty; | 395 | currency = String.Empty; |
@@ -456,6 +462,9 @@ namespace OpenSim.Services.LLLoginService | |||
456 | if (mapTileURL != String.Empty) | 462 | if (mapTileURL != String.Empty) |
457 | responseData["map-server-url"] = mapTileURL; | 463 | responseData["map-server-url"] = mapTileURL; |
458 | 464 | ||
465 | if (profileURL != String.Empty) | ||
466 | responseData["profile-server-url"] = profileURL; | ||
467 | |||
459 | if (m_buddyList != null) | 468 | if (m_buddyList != null) |
460 | { | 469 | { |
461 | responseData["buddy-list"] = m_buddyList.ToArray(); | 470 | responseData["buddy-list"] = m_buddyList.ToArray(); |
@@ -561,6 +570,9 @@ namespace OpenSim.Services.LLLoginService | |||
561 | if (mapTileURL != String.Empty) | 570 | if (mapTileURL != String.Empty) |
562 | map["map-server-url"] = OSD.FromString(mapTileURL); | 571 | map["map-server-url"] = OSD.FromString(mapTileURL); |
563 | 572 | ||
573 | if (profileURL != String.Empty) | ||
574 | map["profile-server-url"] = OSD.FromString(profileURL); | ||
575 | |||
564 | if (searchURL != String.Empty) | 576 | if (searchURL != String.Empty) |
565 | map["search"] = OSD.FromString(searchURL); | 577 | map["search"] = OSD.FromString(searchURL); |
566 | 578 | ||
@@ -933,6 +945,12 @@ namespace OpenSim.Services.LLLoginService | |||
933 | set { mapTileURL = value; } | 945 | set { mapTileURL = value; } |
934 | } | 946 | } |
935 | 947 | ||
948 | public string ProfileURL | ||
949 | { | ||
950 | get { return profileURL; } | ||
951 | set { profileURL = value; } | ||
952 | } | ||
953 | |||
936 | public string SearchURL | 954 | public string SearchURL |
937 | { | 955 | { |
938 | get { return searchURL; } | 956 | get { return searchURL; } |