aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land/PrimCountModule.cs
diff options
context:
space:
mode:
authorMelanie2011-01-28 23:44:17 +0000
committerMelanie2011-01-28 23:44:17 +0000
commit0936455725d8945db217ab662998cca66c977ed7 (patch)
treeae1001c55484ee053a18c6feebe659c91c9729c5 /OpenSim/Region/CoreModules/World/Land/PrimCountModule.cs
parentMerge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff)
downloadopensim-SC_OLD-0936455725d8945db217ab662998cca66c977ed7.zip
opensim-SC_OLD-0936455725d8945db217ab662998cca66c977ed7.tar.gz
opensim-SC_OLD-0936455725d8945db217ab662998cca66c977ed7.tar.bz2
opensim-SC_OLD-0936455725d8945db217ab662998cca66c977ed7.tar.xz
Adding the prim count module skeleton
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Land/PrimCountModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/PrimCountModule.cs112
1 files changed, 112 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/PrimCountModule.cs b/OpenSim/Region/CoreModules/World/Land/PrimCountModule.cs
new file mode 100644
index 0000000..c39ac73
--- /dev/null
+++ b/OpenSim/Region/CoreModules/World/Land/PrimCountModule.cs
@@ -0,0 +1,112 @@
1/*
2 * Copyright (c) Contributors, http://opensimulator.org/
3 * See CONTRIBUTORS.TXT for a full list of copyright holders.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the OpenSimulator Project nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28using System;
29using System.Collections;
30using System.Collections.Generic;
31using System.Diagnostics;
32using System.Reflection;
33using log4net;
34using Nini.Config;
35using OpenMetaverse;
36using OpenSim.Framework;
37using OpenSim.Region.Framework.Interfaces;
38using OpenSim.Region.Framework.Scenes;
39using OpenSim.Services.Interfaces;
40
41namespace OpenSim.Region.CoreModules.World.Land
42{
43 public class PrimCountModule : IPrimCountModule, INonSharedRegionModule
44 {
45 private static readonly ILog m_log =
46 LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
47
48 private Scene m_Scene;
49
50 public Type ReplaceableInterface
51 {
52 get { return null; }
53 }
54
55 public void Initialise(IConfigSource source)
56 {
57 }
58
59 public void AddRegion(Scene scene)
60 {
61 m_Scene = scene;
62
63 m_Scene.EventManager.OnParcelPrimCountAdd +=
64 OnParcelPrimCountAdd;
65 m_Scene.EventManager.OnObjectBeingRemovedFromScene +=
66 OnObjectBeingRemovedFromScene;
67 m_Scene.EventManager.OnParcelPrimCountTainted +=
68 OnParcelPrimCountTainted;
69 }
70
71 public void RegionLoaded(Scene scene)
72 {
73 }
74
75 public void RemoveRegion(Scene scene)
76 {
77 }
78
79 public void Close()
80 {
81 }
82
83 public string Name
84 {
85 get { return "PrimCountModule"; }
86 }
87
88 private void OnParcelPrimCountAdd(SceneObjectGroup obj)
89 {
90 }
91
92 private void OnObjectBeingRemovedFromScene(SceneObjectGroup obj)
93 {
94 }
95
96 private void OnParcelPrimCountTainted()
97 {
98 }
99
100 public void TaintPrimCount(ILandObject land)
101 {
102 }
103
104 public void TaintPrimCount(int x, int y)
105 {
106 }
107
108 public void TaintPrimCount()
109 {
110 }
111 }
112}