diff options
author | Melanie | 2010-01-09 20:46:32 +0000 |
---|---|---|
committer | Melanie | 2010-01-09 20:46:32 +0000 |
commit | 28d6705358c2e383fb46c57f064de4dcff144e33 (patch) | |
tree | 9a95b712626d89ec8b957352a84b3c51f2b344ca /OpenSim/Region | |
parent | Less refs to UserProfileCacheService. Compiles but likely doesn't run. (diff) | |
download | opensim-SC_OLD-28d6705358c2e383fb46c57f064de4dcff144e33.zip opensim-SC_OLD-28d6705358c2e383fb46c57f064de4dcff144e33.tar.gz opensim-SC_OLD-28d6705358c2e383fb46c57f064de4dcff144e33.tar.bz2 opensim-SC_OLD-28d6705358c2e383fb46c57f064de4dcff144e33.tar.xz |
Preliminary work on the new default region setting mechanism
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/HGGridConnector.cs | 14 | ||||
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs | 16 |
2 files changed, 30 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/HGGridConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/HGGridConnector.cs index 93cb60c..501f730 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/HGGridConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/HGGridConnector.cs | |||
@@ -808,6 +808,20 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Grid | |||
808 | 808 | ||
809 | #endregion | 809 | #endregion |
810 | 810 | ||
811 | public List<GridRegion> GetDefaultRegions(UUID scopeID) | ||
812 | { | ||
813 | return null; | ||
814 | } | ||
815 | |||
816 | public List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y) | ||
817 | { | ||
818 | return null; | ||
819 | } | ||
820 | |||
821 | public int GetRegionFlags(UUID scopeID, UUID regionID) | ||
822 | { | ||
823 | return 0; | ||
824 | } | ||
811 | 825 | ||
812 | } | 826 | } |
813 | } | 827 | } |
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs index 1c72488..f0081fc 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs | |||
@@ -250,5 +250,21 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Grid | |||
250 | m_log.InfoFormat(" {0} @ {1}={2}", r.RegionName, r.RegionLocX / Constants.RegionSize, r.RegionLocY / Constants.RegionSize); | 250 | m_log.InfoFormat(" {0} @ {1}={2}", r.RegionName, r.RegionLocX / Constants.RegionSize, r.RegionLocY / Constants.RegionSize); |
251 | } | 251 | } |
252 | } | 252 | } |
253 | |||
254 | public List<GridRegion> GetDefaultRegions(UUID scopeID) | ||
255 | { | ||
256 | return null; | ||
257 | } | ||
258 | |||
259 | public List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y) | ||
260 | { | ||
261 | return null; | ||
262 | } | ||
263 | |||
264 | public int GetRegionFlags(UUID scopeID, UUID regionID) | ||
265 | { | ||
266 | return 0; | ||
267 | } | ||
268 | |||
253 | } | 269 | } |
254 | } | 270 | } |