diff options
author | Robert Adams | 2013-12-14 07:53:01 -0800 |
---|---|---|
committer | Robert Adams | 2013-12-14 07:53:01 -0800 |
commit | 13a9a4b653c5470e6a450bfd9b2049273a4ef7b2 (patch) | |
tree | 1168d93ebfff04893ec05a32c6bad456e1d00d32 /OpenSim/ApplicationPlugins | |
parent | Merge branch 'master' into varregion (diff) | |
download | opensim-SC_OLD-13a9a4b653c5470e6a450bfd9b2049273a4ef7b2.zip opensim-SC_OLD-13a9a4b653c5470e6a450bfd9b2049273a4ef7b2.tar.gz opensim-SC_OLD-13a9a4b653c5470e6a450bfd9b2049273a4ef7b2.tar.bz2 opensim-SC_OLD-13a9a4b653c5470e6a450bfd9b2049273a4ef7b2.tar.xz |
varregion: rename 'LegacyRegionLocX' back to 'RegionLocX' and same for Y and Z.
Rename 'RegionWorldLocX' to 'WorldLocX' and same for Y and Z.
This keeps the downward compatibility and follows the scheme of 'region'
and 'world' location naming that is happening in the Util module.
Diffstat (limited to 'OpenSim/ApplicationPlugins')
-rw-r--r-- | OpenSim/ApplicationPlugins/LoadRegions/LoadRegionsPlugin.cs | 4 | ||||
-rw-r--r-- | OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | 20 |
2 files changed, 12 insertions, 12 deletions
diff --git a/OpenSim/ApplicationPlugins/LoadRegions/LoadRegionsPlugin.cs b/OpenSim/ApplicationPlugins/LoadRegions/LoadRegionsPlugin.cs index 74a7a50..1d63d26 100644 --- a/OpenSim/ApplicationPlugins/LoadRegions/LoadRegionsPlugin.cs +++ b/OpenSim/ApplicationPlugins/LoadRegions/LoadRegionsPlugin.cs | |||
@@ -184,11 +184,11 @@ namespace OpenSim.ApplicationPlugins.LoadRegions | |||
184 | return false; | 184 | return false; |
185 | } | 185 | } |
186 | else if ( | 186 | else if ( |
187 | regions[i].LegacyRegionLocX == regions[j].LegacyRegionLocX && regions[i].LegacyRegionLocY == regions[j].LegacyRegionLocY) | 187 | regions[i].RegionLocX == regions[j].RegionLocX && regions[i].RegionLocY == regions[j].RegionLocY) |
188 | { | 188 | { |
189 | m_log.ErrorFormat( | 189 | m_log.ErrorFormat( |
190 | "[LOAD REGIONS PLUGIN]: Regions {0} and {1} have the same grid location ({2}, {3})", | 190 | "[LOAD REGIONS PLUGIN]: Regions {0} and {1} have the same grid location ({2}, {3})", |
191 | regions[i].RegionName, regions[j].RegionName, regions[i].LegacyRegionLocX, regions[i].LegacyRegionLocY); | 191 | regions[i].RegionName, regions[j].RegionName, regions[i].RegionLocX, regions[i].RegionLocY); |
192 | return false; | 192 | return false; |
193 | } | 193 | } |
194 | else if (regions[i].InternalEndPoint.Port == regions[j].InternalEndPoint.Port) | 194 | else if (regions[i].InternalEndPoint.Port == regions[j].InternalEndPoint.Port) |
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index 642e82e..ec58692 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | |||
@@ -545,7 +545,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
545 | throw new Exception( | 545 | throw new Exception( |
546 | String.Format("region UUID already in use by region {0}, UUID {1}, <{2},{3}>", | 546 | String.Format("region UUID already in use by region {0}, UUID {1}, <{2},{3}>", |
547 | scene.RegionInfo.RegionName, scene.RegionInfo.RegionID, | 547 | scene.RegionInfo.RegionName, scene.RegionInfo.RegionID, |
548 | scene.RegionInfo.LegacyRegionLocX, scene.RegionInfo.LegacyRegionLocY)); | 548 | scene.RegionInfo.RegionLocX, scene.RegionInfo.RegionLocY)); |
549 | } | 549 | } |
550 | else | 550 | else |
551 | { | 551 | { |
@@ -559,8 +559,8 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
559 | region.RegionID = regionID; | 559 | region.RegionID = regionID; |
560 | region.originRegionID = regionID; | 560 | region.originRegionID = regionID; |
561 | region.RegionName = (string) requestData["region_name"]; | 561 | region.RegionName = (string) requestData["region_name"]; |
562 | region.LegacyRegionLocX = Convert.ToUInt32(requestData["region_x"]); | 562 | region.RegionLocX = Convert.ToUInt32(requestData["region_x"]); |
563 | region.LegacyRegionLocY = Convert.ToUInt32(requestData["region_y"]); | 563 | region.RegionLocY = Convert.ToUInt32(requestData["region_y"]); |
564 | 564 | ||
565 | // check for collisions: region name, region UUID, | 565 | // check for collisions: region name, region UUID, |
566 | // region location | 566 | // region location |
@@ -568,14 +568,14 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
568 | throw new Exception( | 568 | throw new Exception( |
569 | String.Format("region name already in use by region {0}, UUID {1}, <{2},{3}>", | 569 | String.Format("region name already in use by region {0}, UUID {1}, <{2},{3}>", |
570 | scene.RegionInfo.RegionName, scene.RegionInfo.RegionID, | 570 | scene.RegionInfo.RegionName, scene.RegionInfo.RegionID, |
571 | scene.RegionInfo.LegacyRegionLocX, scene.RegionInfo.LegacyRegionLocY)); | 571 | scene.RegionInfo.RegionLocX, scene.RegionInfo.RegionLocY)); |
572 | 572 | ||
573 | if (m_application.SceneManager.TryGetScene(region.LegacyRegionLocX, region.LegacyRegionLocY, out scene)) | 573 | if (m_application.SceneManager.TryGetScene(region.RegionLocX, region.RegionLocY, out scene)) |
574 | throw new Exception( | 574 | throw new Exception( |
575 | String.Format("region location <{0},{1}> already in use by region {2}, UUID {3}, <{4},{5}>", | 575 | String.Format("region location <{0},{1}> already in use by region {2}, UUID {3}, <{4},{5}>", |
576 | region.LegacyRegionLocX, region.LegacyRegionLocY, | 576 | region.RegionLocX, region.RegionLocY, |
577 | scene.RegionInfo.RegionName, scene.RegionInfo.RegionID, | 577 | scene.RegionInfo.RegionName, scene.RegionInfo.RegionID, |
578 | scene.RegionInfo.LegacyRegionLocX, scene.RegionInfo.LegacyRegionLocY)); | 578 | scene.RegionInfo.RegionLocX, scene.RegionInfo.RegionLocY)); |
579 | 579 | ||
580 | region.InternalEndPoint = | 580 | region.InternalEndPoint = |
581 | new IPEndPoint(IPAddress.Parse((string) requestData["listen_ip"]), 0); | 581 | new IPEndPoint(IPAddress.Parse((string) requestData["listen_ip"]), 0); |
@@ -589,7 +589,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
589 | region.InternalEndPoint.Address, | 589 | region.InternalEndPoint.Address, |
590 | region.InternalEndPoint.Port, | 590 | region.InternalEndPoint.Port, |
591 | scene.RegionInfo.RegionName, scene.RegionInfo.RegionID, | 591 | scene.RegionInfo.RegionName, scene.RegionInfo.RegionID, |
592 | scene.RegionInfo.LegacyRegionLocX, scene.RegionInfo.LegacyRegionLocY)); | 592 | scene.RegionInfo.RegionLocX, scene.RegionInfo.RegionLocY)); |
593 | 593 | ||
594 | region.ExternalHostName = (string) requestData["external_address"]; | 594 | region.ExternalHostName = (string) requestData["external_address"]; |
595 | 595 | ||
@@ -628,8 +628,8 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
628 | String.Format( | 628 | String.Format( |
629 | m_config.GetString("region_file_template", | 629 | m_config.GetString("region_file_template", |
630 | "{0}x{1}-{2}.ini"), | 630 | "{0}x{1}-{2}.ini"), |
631 | region.LegacyRegionLocX.ToString(), | 631 | region.RegionLocX.ToString(), |
632 | region.LegacyRegionLocY.ToString(), | 632 | region.RegionLocY.ToString(), |
633 | regionID.ToString(), | 633 | regionID.ToString(), |
634 | region.InternalEndPoint.Port.ToString(), | 634 | region.InternalEndPoint.Port.ToString(), |
635 | region.RegionName.Replace(" ", "_").Replace(":", "_"). | 635 | region.RegionName.Replace(" ", "_").Replace(":", "_"). |