diff options
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs b/OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs index 50171a3..3914f2e 100644 --- a/OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs | |||
@@ -25,7 +25,9 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
28 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using Mono.Addins; | ||
29 | using Nini.Config; | 31 | using Nini.Config; |
30 | using OpenMetaverse; | 32 | using OpenMetaverse; |
31 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
@@ -34,7 +36,8 @@ using OpenSim.Region.Framework.Interfaces; | |||
34 | 36 | ||
35 | namespace OpenSim.Region.CoreModules.Avatar.Gods | 37 | namespace OpenSim.Region.CoreModules.Avatar.Gods |
36 | { | 38 | { |
37 | public class GodsModule : IRegionModule, IGodsModule | 39 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] |
40 | public class GodsModule : INonSharedRegionModule, IGodsModule | ||
38 | { | 41 | { |
39 | /// <summary>Special UUID for actions that apply to all agents</summary> | 42 | /// <summary>Special UUID for actions that apply to all agents</summary> |
40 | private static readonly UUID ALL_AGENTS = new UUID("44e87126-e794-4ded-05b3-7c42da3d5cdb"); | 43 | private static readonly UUID ALL_AGENTS = new UUID("44e87126-e794-4ded-05b3-7c42da3d5cdb"); |
@@ -42,17 +45,34 @@ namespace OpenSim.Region.CoreModules.Avatar.Gods | |||
42 | protected Scene m_scene; | 45 | protected Scene m_scene; |
43 | protected IDialogModule m_dialogModule; | 46 | protected IDialogModule m_dialogModule; |
44 | 47 | ||
45 | public void Initialise(Scene scene, IConfigSource source) | 48 | public void Initialise(IConfigSource source) |
49 | { | ||
50 | |||
51 | } | ||
52 | |||
53 | public Type ReplaceableInterface | ||
54 | { | ||
55 | get { return null; } | ||
56 | } | ||
57 | |||
58 | public void AddRegion(Scene scene) | ||
46 | { | 59 | { |
47 | m_scene = scene; | 60 | m_scene = scene; |
48 | m_dialogModule = m_scene.RequestModuleInterface<IDialogModule>(); | 61 | m_dialogModule = m_scene.RequestModuleInterface<IDialogModule>(); |
49 | m_scene.RegisterModuleInterface<IGodsModule>(this); | 62 | m_scene.RegisterModuleInterface<IGodsModule>(this); |
50 | } | 63 | } |
64 | |||
65 | public void RegionLoaded(Scene scene) | ||
66 | { | ||
67 | } | ||
68 | |||
69 | public void RemoveRegion(Scene scene) | ||
70 | { | ||
71 | scene.UnregisterModuleInterface<IGodsModule>(this); | ||
72 | } | ||
51 | 73 | ||
52 | public void PostInitialise() {} | ||
53 | public void Close() {} | 74 | public void Close() {} |
54 | public string Name { get { return "Gods Module"; } } | 75 | public string Name { get { return "Gods Module"; } } |
55 | public bool IsSharedModule { get { return false; } } | ||
56 | 76 | ||
57 | public void RequestGodlikePowers( | 77 | public void RequestGodlikePowers( |
58 | UUID agentID, UUID sessionID, UUID token, bool godLike, IClientAPI controllingClient) | 78 | UUID agentID, UUID sessionID, UUID token, bool godLike, IClientAPI controllingClient) |