diff options
author | Melanie | 2010-12-31 15:45:08 +0100 |
---|---|---|
committer | Melanie | 2010-12-31 15:45:08 +0100 |
commit | 6820deed34fa87bc9b02376b382bae902052af9f (patch) | |
tree | 5efa55542a661607466e46abc593ed1956b0ade7 /OpenSim/Region | |
parent | Add MessageKey to section Messaging, a key that prevents injection of (diff) | |
download | opensim-SC-6820deed34fa87bc9b02376b382bae902052af9f.zip opensim-SC-6820deed34fa87bc9b02376b382bae902052af9f.tar.gz opensim-SC-6820deed34fa87bc9b02376b382bae902052af9f.tar.bz2 opensim-SC-6820deed34fa87bc9b02376b382bae902052af9f.tar.xz |
Implement Scope ID lookup on GetLandData. Stacked regions were not handled
properly
Diffstat (limited to '')
4 files changed, 42 insertions, 39 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsIn/Land/LandServiceInConnectorModule.cs b/OpenSim/Region/CoreModules/ServiceConnectorsIn/Land/LandServiceInConnectorModule.cs index 23251c9..fcc69e9 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsIn/Land/LandServiceInConnectorModule.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsIn/Land/LandServiceInConnectorModule.cs | |||
@@ -37,6 +37,7 @@ using OpenSim.Region.Framework.Interfaces; | |||
37 | using OpenSim.Server.Base; | 37 | using OpenSim.Server.Base; |
38 | using OpenSim.Server.Handlers.Base; | 38 | using OpenSim.Server.Handlers.Base; |
39 | using OpenSim.Services.Interfaces; | 39 | using OpenSim.Services.Interfaces; |
40 | using OpenMetaverse; | ||
40 | 41 | ||
41 | 42 | ||
42 | namespace OpenSim.Region.CoreModules.ServiceConnectorsIn.Land | 43 | namespace OpenSim.Region.CoreModules.ServiceConnectorsIn.Land |
@@ -121,7 +122,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsIn.Land | |||
121 | 122 | ||
122 | #region ILandService | 123 | #region ILandService |
123 | 124 | ||
124 | public LandData GetLandData(ulong regionHandle, uint x, uint y, out byte regionAccess) | 125 | public LandData GetLandData(UUID scopeID, ulong regionHandle, uint x, uint y, out byte regionAccess) |
125 | { | 126 | { |
126 | m_log.DebugFormat("[LAND IN CONNECTOR]: GetLandData for {0}. Count = {1}", | 127 | m_log.DebugFormat("[LAND IN CONNECTOR]: GetLandData for {0}. Count = {1}", |
127 | regionHandle, m_Scenes.Count); | 128 | regionHandle, m_Scenes.Count); |
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Land/LocalLandServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Land/LocalLandServiceConnector.cs index e15f624..86c0b85 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Land/LocalLandServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Land/LocalLandServiceConnector.cs | |||
@@ -35,6 +35,7 @@ using OpenSim.Server.Base; | |||
35 | using OpenSim.Region.Framework.Interfaces; | 35 | using OpenSim.Region.Framework.Interfaces; |
36 | using OpenSim.Region.Framework.Scenes; | 36 | using OpenSim.Region.Framework.Scenes; |
37 | using OpenSim.Services.Interfaces; | 37 | using OpenSim.Services.Interfaces; |
38 | using OpenMetaverse; | ||
38 | 39 | ||
39 | namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Land | 40 | namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Land |
40 | { | 41 | { |
@@ -116,7 +117,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Land | |||
116 | 117 | ||
117 | #region ILandService | 118 | #region ILandService |
118 | 119 | ||
119 | public LandData GetLandData(ulong regionHandle, uint x, uint y, out byte regionAccess) | 120 | public LandData GetLandData(UUID scopeID, ulong regionHandle, uint x, uint y, out byte regionAccess) |
120 | { | 121 | { |
121 | regionAccess = 2; | 122 | regionAccess = 2; |
122 | m_log.DebugFormat("[LAND CONNECTOR]: request for land data in {0} at {1}, {2}", | 123 | m_log.DebugFormat("[LAND CONNECTOR]: request for land data in {0} at {1}, {2}", |
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Land/RemoteLandServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Land/RemoteLandServiceConnector.cs index 252d9e7..766ef81 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Land/RemoteLandServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Land/RemoteLandServiceConnector.cs | |||
@@ -36,6 +36,7 @@ using OpenSim.Region.Framework.Interfaces; | |||
36 | using OpenSim.Region.Framework.Scenes; | 36 | using OpenSim.Region.Framework.Scenes; |
37 | using OpenSim.Services.Interfaces; | 37 | using OpenSim.Services.Interfaces; |
38 | using OpenSim.Server.Base; | 38 | using OpenSim.Server.Base; |
39 | using OpenMetaverse; | ||
39 | 40 | ||
40 | 41 | ||
41 | namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Land | 42 | namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Land |
@@ -109,13 +110,13 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Land | |||
109 | 110 | ||
110 | #region ILandService | 111 | #region ILandService |
111 | 112 | ||
112 | public override LandData GetLandData(ulong regionHandle, uint x, uint y, out byte regionAccess) | 113 | public override LandData GetLandData(UUID scopeID, ulong regionHandle, uint x, uint y, out byte regionAccess) |
113 | { | 114 | { |
114 | LandData land = m_LocalService.GetLandData(regionHandle, x, y, out regionAccess); | 115 | LandData land = m_LocalService.GetLandData(scopeID, regionHandle, x, y, out regionAccess); |
115 | if (land != null) | 116 | if (land != null) |
116 | return land; | 117 | return land; |
117 | 118 | ||
118 | return base.GetLandData(regionHandle, x, y, out regionAccess); | 119 | return base.GetLandData(scopeID, regionHandle, x, y, out regionAccess); |
119 | 120 | ||
120 | } | 121 | } |
121 | #endregion ILandService | 122 | #endregion ILandService |
diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs index 8449cc1..001ad87 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | |||
@@ -1535,40 +1535,40 @@ namespace OpenSim.Region.CoreModules.World.Land | |||
1535 | if (parcelID == UUID.Zero) | 1535 | if (parcelID == UUID.Zero) |
1536 | return; | 1536 | return; |
1537 | 1537 | ||
1538 | ExtendedLandData data = | 1538 | ExtendedLandData data = (ExtendedLandData)parcelInfoCache.Get(parcelID.ToString(), |
1539 | (ExtendedLandData)parcelInfoCache.Get(parcelID.ToString(), | 1539 | delegate(string id) |
1540 | delegate(string id) | 1540 | { |
1541 | { | 1541 | UUID parcel = UUID.Zero; |
1542 | UUID parcel = UUID.Zero; | 1542 | UUID.TryParse(id, out parcel); |
1543 | UUID.TryParse(id, out parcel); | 1543 | // assume we've got the parcelID we just computed in RemoteParcelRequest |
1544 | // assume we've got the parcelID we just computed in RemoteParcelRequest | 1544 | ExtendedLandData extLandData = new ExtendedLandData(); |
1545 | ExtendedLandData extLandData = new ExtendedLandData(); | 1545 | Util.ParseFakeParcelID(parcel, out extLandData.RegionHandle, |
1546 | Util.ParseFakeParcelID(parcel, out extLandData.RegionHandle, | 1546 | out extLandData.X, out extLandData.Y); |
1547 | out extLandData.X, out extLandData.Y); | 1547 | m_log.DebugFormat("[LAND] got parcelinfo request for regionHandle {0}, x/y {1}/{2}", |
1548 | m_log.DebugFormat("[LAND] got parcelinfo request for regionHandle {0}, x/y {1}/{2}", | 1548 | extLandData.RegionHandle, extLandData.X, extLandData.Y); |
1549 | extLandData.RegionHandle, extLandData.X, extLandData.Y); | 1549 | |
1550 | 1550 | // for this region or for somewhere else? | |
1551 | // for this region or for somewhere else? | 1551 | if (extLandData.RegionHandle == m_scene.RegionInfo.RegionHandle) |
1552 | if (extLandData.RegionHandle == m_scene.RegionInfo.RegionHandle) | 1552 | { |
1553 | { | 1553 | extLandData.LandData = this.GetLandObject(extLandData.X, extLandData.Y).LandData; |
1554 | extLandData.LandData = this.GetLandObject(extLandData.X, extLandData.Y).LandData; | 1554 | extLandData.RegionAccess = m_scene.RegionInfo.AccessLevel; |
1555 | extLandData.RegionAccess = m_scene.RegionInfo.AccessLevel; | 1555 | } |
1556 | } | 1556 | else |
1557 | else | 1557 | { |
1558 | { | 1558 | ILandService landService = m_scene.RequestModuleInterface<ILandService>(); |
1559 | ILandService landService = m_scene.RequestModuleInterface<ILandService>(); | 1559 | extLandData.LandData = landService.GetLandData(m_scene.RegionInfo.ScopeID, |
1560 | extLandData.LandData = landService.GetLandData(extLandData.RegionHandle, | 1560 | extLandData.RegionHandle, |
1561 | extLandData.X, | 1561 | extLandData.X, |
1562 | extLandData.Y, | 1562 | extLandData.Y, |
1563 | out extLandData.RegionAccess); | 1563 | out extLandData.RegionAccess); |
1564 | if (extLandData.LandData == null) | 1564 | if (extLandData.LandData == null) |
1565 | { | 1565 | { |
1566 | // we didn't find the region/land => don't cache | 1566 | // we didn't find the region/land => don't cache |
1567 | return null; | 1567 | return null; |
1568 | } | 1568 | } |
1569 | } | 1569 | } |
1570 | return extLandData; | 1570 | return extLandData; |
1571 | }); | 1571 | }); |
1572 | 1572 | ||
1573 | if (data != null) // if we found some data, send it | 1573 | if (data != null) // if we found some data, send it |
1574 | { | 1574 | { |