diff options
Start of trying to make Region/Scene more modular.
Added preliminary IRegionModule interface.
Also have a work in progress way of Modules registering optional API methods (kind of like Apache optional functions). But there must be a cleaner/nicer way in c# of doing these than the current way.
Added three work in progress modules: ChatModule (simple handles in world chat, but by moving this to a module, we could support other types of chat modules, ie like a irc - opensim bridge module. ) , AvatarProfilesModule and XferModule.
Moved most of the code from Scene.ModifyTerrain() into the BasicTerrain library, as the start of trying to make that more modular.
Stopped Child agents showing up as part of the "show users" command.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs index 2fd7b57..0fc1656 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | |||
@@ -642,12 +642,12 @@ namespace OpenSim.Region.Environment.Scenes | |||
642 | return false; | 642 | return false; |
643 | } | 643 | } |
644 | 644 | ||
645 | public string RequestInventoryFile(uint localID, XferManager xferManager) | 645 | public string RequestInventoryFile(uint localID, ModuleAPIMethod<bool, string, byte[]> addXferFile) |
646 | { | 646 | { |
647 | SceneObjectPart part = this.GetChildPart(localID); | 647 | SceneObjectPart part = this.GetChildPart(localID); |
648 | if (part != null) | 648 | if (part != null) |
649 | { | 649 | { |
650 | return part.RequestInventoryFile(xferManager); | 650 | part.RequestInventoryFile(addXferFile); |
651 | } | 651 | } |
652 | return ""; | 652 | return ""; |
653 | } | 653 | } |
@@ -967,7 +967,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
967 | /// Processes backup | 967 | /// Processes backup |
968 | /// </summary> | 968 | /// </summary> |
969 | /// <param name="datastore"></param> | 969 | /// <param name="datastore"></param> |
970 | public void ProcessBackup(OpenSim.Region.Interfaces.IRegionDataStore datastore) | 970 | public void ProcessBackup(OpenSim.Region.Environment.Interfaces.IRegionDataStore datastore) |
971 | { | 971 | { |
972 | datastore.StoreObject(this, m_scene.RegionInfo.SimUUID); | 972 | datastore.StoreObject(this, m_scene.RegionInfo.SimUUID); |
973 | } | 973 | } |