diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/ScenePresence.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/ScenePresence.cs | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 3554289..043d337 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs | |||
@@ -153,7 +153,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
153 | //neighbouring regions we have enabled a child agent in | 153 | //neighbouring regions we have enabled a child agent in |
154 | private readonly List<ulong> m_knownChildRegions = new List<ulong>(); | 154 | private readonly List<ulong> m_knownChildRegions = new List<ulong>(); |
155 | 155 | ||
156 | private SignificantClientMovement handlerSignificantClientMovement = null; //OnSignificantClientMovement; | ||
157 | 156 | ||
158 | /// <summary> | 157 | /// <summary> |
159 | /// Implemented Control Flags | 158 | /// Implemented Control Flags |
@@ -174,10 +173,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
174 | /// </summary> | 173 | /// </summary> |
175 | private LLVector3 posLastSignificantMove = new LLVector3(); | 174 | private LLVector3 posLastSignificantMove = new LLVector3(); |
176 | 175 | ||
177 | public delegate void SignificantClientMovement(IClientAPI remote_client); | ||
178 | |||
179 | public event SignificantClientMovement OnSignificantClientMovement; | ||
180 | |||
181 | private UpdateQueue m_partsUpdateQueue = new UpdateQueue(); | 176 | private UpdateQueue m_partsUpdateQueue = new UpdateQueue(); |
182 | private Dictionary<LLUUID, ScenePartUpdate> m_updateTimes = new Dictionary<LLUUID, ScenePartUpdate>(); | 177 | private Dictionary<LLUUID, ScenePartUpdate> m_updateTimes = new Dictionary<LLUUID, ScenePartUpdate>(); |
183 | 178 | ||
@@ -1617,12 +1612,8 @@ namespace OpenSim.Region.Environment.Scenes | |||
1617 | if (Util.GetDistanceTo(AbsolutePosition, posLastSignificantMove) > 0.5) | 1612 | if (Util.GetDistanceTo(AbsolutePosition, posLastSignificantMove) > 0.5) |
1618 | { | 1613 | { |
1619 | posLastSignificantMove = AbsolutePosition; | 1614 | posLastSignificantMove = AbsolutePosition; |
1620 | handlerSignificantClientMovement = OnSignificantClientMovement; | 1615 | m_scene.EventManager.TriggerSignificantClientMovement(m_controllingClient); |
1621 | if (handlerSignificantClientMovement != null) | 1616 | m_scene.NotifyMyCoarseLocationChange(); |
1622 | { | ||
1623 | handlerSignificantClientMovement(m_controllingClient); | ||
1624 | m_scene.NotifyMyCoarseLocationChange(); | ||
1625 | } | ||
1626 | } | 1617 | } |
1627 | 1618 | ||
1628 | // Minimum Draw distance is 64 meters, the Radius of the draw distance sphere is 32m | 1619 | // Minimum Draw distance is 64 meters, the Radius of the draw distance sphere is 32m |