diff options
author | Melanie | 2012-02-20 19:48:28 +0000 |
---|---|---|
committer | Melanie | 2012-02-20 19:48:28 +0000 |
commit | 3b2900e88415e3dc7826df3e8685415134676dcc (patch) | |
tree | c66bb6827a6d1b03be2561bd476249bbd1cf50f3 /OpenSim/Region | |
parent | Merge branch 'master' of ssh://3dhosting.de/var/git/careminster (diff) | |
parent | Amend to last commit: synchronize access to queues. (diff) | |
download | opensim-SC-3b2900e88415e3dc7826df3e8685415134676dcc.zip opensim-SC-3b2900e88415e3dc7826df3e8685415134676dcc.tar.gz opensim-SC-3b2900e88415e3dc7826df3e8685415134676dcc.tar.bz2 opensim-SC-3b2900e88415e3dc7826df3e8685415134676dcc.tar.xz |
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Region')
3 files changed, 6 insertions, 7 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs index cb653ed..6286689 100644 --- a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs +++ b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs | |||
@@ -949,6 +949,9 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer | |||
949 | neighbourRegion.RegionHandle); | 949 | neighbourRegion.RegionHandle); |
950 | return agent; | 950 | return agent; |
951 | } | 951 | } |
952 | // No turning back | ||
953 | agent.IsChildAgent = true; | ||
954 | |||
952 | string capsPath = neighbourRegion.ServerURI + CapsUtil.GetCapsSeedPath(agentcaps); | 955 | string capsPath = neighbourRegion.ServerURI + CapsUtil.GetCapsSeedPath(agentcaps); |
953 | 956 | ||
954 | m_log.DebugFormat("[ENTITY TRANSFER MODULE]: Sending new CAPS seed url {0} to client {1}", capsPath, agent.UUID); | 957 | m_log.DebugFormat("[ENTITY TRANSFER MODULE]: Sending new CAPS seed url {0} to client {1}", capsPath, agent.UUID); |
@@ -1097,7 +1100,6 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer | |||
1097 | 1100 | ||
1098 | /// <summary> | 1101 | /// <summary> |
1099 | /// This informs all neighbouring regions about agent "avatar". | 1102 | /// This informs all neighbouring regions about agent "avatar". |
1100 | /// Calls an asynchronous method to do so.. so it doesn't lag the sim. | ||
1101 | /// </summary> | 1103 | /// </summary> |
1102 | /// <param name="sp"></param> | 1104 | /// <param name="sp"></param> |
1103 | public void EnableChildAgents(ScenePresence sp) | 1105 | public void EnableChildAgents(ScenePresence sp) |
diff --git a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs index a3dd53e..65ffe92 100644 --- a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs +++ b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs | |||
@@ -140,7 +140,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
140 | icon.EndInvoke(iar); | 140 | icon.EndInvoke(iar); |
141 | } | 141 | } |
142 | 142 | ||
143 | ExpiringCache<string, bool> _failedSims = new ExpiringCache<string, bool>(); | ||
144 | public void SendChildAgentDataUpdate(AgentPosition cAgentData, ScenePresence presence) | 143 | public void SendChildAgentDataUpdate(AgentPosition cAgentData, ScenePresence presence) |
145 | { | 144 | { |
146 | // This assumes that we know what our neighbors are. | 145 | // This assumes that we know what our neighbors are. |
@@ -158,15 +157,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
158 | Utils.LongToUInts(regionHandle, out x, out y); | 157 | Utils.LongToUInts(regionHandle, out x, out y); |
159 | GridRegion dest = m_scene.GridService.GetRegionByPosition(UUID.Zero, (int)x, (int)y); | 158 | GridRegion dest = m_scene.GridService.GetRegionByPosition(UUID.Zero, (int)x, (int)y); |
160 | bool v = true; | 159 | bool v = true; |
161 | if (! simulatorList.Contains(dest.ServerURI) && !_failedSims.TryGetValue(dest.ServerURI, out v)) | 160 | if (! simulatorList.Contains(dest.ServerURI)) |
162 | { | 161 | { |
163 | // we havent seen this simulator before, add it to the list | 162 | // we havent seen this simulator before, add it to the list |
164 | // and send it an update | 163 | // and send it an update |
165 | simulatorList.Add(dest.ServerURI); | 164 | simulatorList.Add(dest.ServerURI); |
166 | // Let move this to sync. Mono definitely does not like async networking. | 165 | // Let move this to sync. Mono definitely does not like async networking. |
167 | if (!m_scene.SimulationService.UpdateAgent(dest, cAgentData)) | 166 | m_scene.SimulationService.UpdateAgent(dest, cAgentData); |
168 | // Also if it fails, get it out of the loop for a bit | ||
169 | _failedSims.Add(dest.ServerURI, true, 120); | ||
170 | 167 | ||
171 | // Leaving this here as a reminder that we tried, and it sucks. | 168 | // Leaving this here as a reminder that we tried, and it sucks. |
172 | //SendChildAgentDataUpdateDelegate d = SendChildAgentDataUpdateAsync; | 169 | //SendChildAgentDataUpdateDelegate d = SendChildAgentDataUpdateAsync; |
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index b38523f..283de39 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -1255,7 +1255,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1255 | { | 1255 | { |
1256 | IEntityTransferModule m_agentTransfer = m_scene.RequestModuleInterface<IEntityTransferModule>(); | 1256 | IEntityTransferModule m_agentTransfer = m_scene.RequestModuleInterface<IEntityTransferModule>(); |
1257 | if (m_agentTransfer != null) | 1257 | if (m_agentTransfer != null) |
1258 | m_agentTransfer.EnableChildAgents(this); | 1258 | Util.FireAndForget(delegate { m_agentTransfer.EnableChildAgents(this); }); |
1259 | 1259 | ||
1260 | IFriendsModule friendsModule = m_scene.RequestModuleInterface<IFriendsModule>(); | 1260 | IFriendsModule friendsModule = m_scene.RequestModuleInterface<IFriendsModule>(); |
1261 | if (friendsModule != null) | 1261 | if (friendsModule != null) |