aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/GridService/HypergridLinker.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/GridService/HypergridLinker.cs')
-rw-r--r--OpenSim/Services/GridService/HypergridLinker.cs34
1 files changed, 30 insertions, 4 deletions
diff --git a/OpenSim/Services/GridService/HypergridLinker.cs b/OpenSim/Services/GridService/HypergridLinker.cs
index 1f53007..017df41 100644
--- a/OpenSim/Services/GridService/HypergridLinker.cs
+++ b/OpenSim/Services/GridService/HypergridLinker.cs
@@ -27,6 +27,7 @@
27 27
28using System; 28using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using System.Linq;
30using System.Net; 31using System.Net;
31using System.Reflection; 32using System.Reflection;
32using System.Xml; 33using System.Xml;
@@ -332,18 +333,43 @@ namespace OpenSim.Services.GridService
332 /// <returns></returns> 333 /// <returns></returns>
333 public bool Check4096(ulong realHandle, out uint x, out uint y) 334 public bool Check4096(ulong realHandle, out uint x, out uint y)
334 { 335 {
335 GridRegion defRegion = DefaultRegion;
336
337 uint ux = 0, uy = 0; 336 uint ux = 0, uy = 0;
338 Utils.LongToUInts(realHandle, out ux, out uy); 337 Utils.LongToUInts(realHandle, out ux, out uy);
339 x = ux / Constants.RegionSize; 338 x = ux / Constants.RegionSize;
340 y = uy / Constants.RegionSize; 339 y = uy / Constants.RegionSize;
341 340
342 if ((Math.Abs((int)defRegion.RegionLocX - ux) >= 4096 * Constants.RegionSize) || 341 const uint limit = (4096 - 1) * Constants.RegionSize;
343 (Math.Abs((int)defRegion.RegionLocY - uy) >= 4096 * Constants.RegionSize)) 342 uint xmin = ux - limit;
343 uint xmax = ux + limit;
344 uint ymin = uy - limit;
345 uint ymax = uy + limit;
346 // World map boundary checks
347 if (xmin < 0 || xmin > ux)
348 xmin = 0;
349 if (xmax > int.MaxValue || xmax < ux)
350 xmax = int.MaxValue;
351 if (ymin < 0 || ymin > uy)
352 ymin = 0;
353 if (ymax > int.MaxValue || ymax < uy)
354 ymax = int.MaxValue;
355
356 // Check for any regions that are within the possible teleport range to the linked region
357 List<GridRegion> regions = m_GridService.GetRegionRange(m_ScopeID, (int)xmin, (int)xmax, (int)ymin, (int)ymax);
358 if (regions.Count == 0)
359 {
360 return false;
361 }
362 else
363 {
364 // Check for regions which are not linked regions
365 List<GridRegion> hyperlinks = m_GridService.GetHyperlinks(m_ScopeID);
366 IEnumerable<GridRegion> availableRegions = regions.Except(hyperlinks);
367 if (availableRegions.Count() == 0)
344 { 368 {
345 return false; 369 return false;
346 } 370 }
371 }
372
347 return true; 373 return true;
348 } 374 }
349 375