From e5f9f064a706d6be40e3da075f89b170aeb0ee1d Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 1 Aug 2014 01:43:12 +0100 Subject: filter local chat from avatars or attachment acording to parcel hide ( not fully tested) --- .../Region/CoreModules/Avatar/Chat/ChatModule.cs | 37 ++++++++++++++++++++-- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/OpenSim/Region/CoreModules/Avatar/Chat/ChatModule.cs b/OpenSim/Region/CoreModules/Avatar/Chat/ChatModule.cs index 5cbfec6..9b41083 100644 --- a/OpenSim/Region/CoreModules/Avatar/Chat/ChatModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Chat/ChatModule.cs @@ -216,6 +216,10 @@ namespace OpenSim.Region.CoreModules.Avatar.Chat Vector3 regionPos = new Vector3(scene.RegionInfo.RegionLocX * Constants.RegionSize, scene.RegionInfo.RegionLocY * Constants.RegionSize, 0); + bool checkParcelHide = false; + UUID sourceParcelID = UUID.Zero; + Vector3 hidePos = fromPos; + if (c.Channel == DEBUG_CHANNEL) c.Type = ChatTypeEnum.DebugChannel; switch (sourceType) @@ -237,15 +241,22 @@ namespace OpenSim.Region.CoreModules.Avatar.Chat } destination = UUID.Zero; // Avatars cant "SayTo" ownerID = c.Sender.AgentId; - + checkParcelHide = true; + hidePos = fromPos; break; case ChatSourceType.Object: fromID = c.SenderUUID; if (c.SenderObject != null && c.SenderObject is SceneObjectPart) + { ownerID = ((SceneObjectPart)c.SenderObject).OwnerID; - + if (((SceneObjectPart)c.SenderObject).ParentGroup.IsAttachment) + { + checkParcelHide = true; + hidePos = ((SceneObjectPart)c.SenderObject).ParentGroup.AbsolutePosition; + } + } break; } @@ -258,13 +269,28 @@ namespace OpenSim.Region.CoreModules.Avatar.Chat // fromID, fromName, scene.RegionInfo.RegionName, c.Type, sourceType); HashSet receiverIDs = new HashSet(); - + + if (checkParcelHide) + { + checkParcelHide = false; + if (c.Type < ChatTypeEnum.DebugChannel && destination == UUID.Zero) + { + ILandObject srcland = (scene as Scene).LandChannel.GetLandObject(hidePos.X, hidePos.Y); + if (srcland != null && !srcland.LandData.SeeAVs) + { + sourceParcelID = srcland.LandData.GlobalID; + checkParcelHide = true; + } + } + } + foreach (Scene s in m_scenes) { // This should use ForEachClient, but clients don't have a position. // If camera is moved into client, then camera position can be used // MT: No, it can't, as chat is heard from the avatar position, not // the camera position. + s.ForEachScenePresence( delegate(ScenePresence presence) { @@ -277,6 +303,11 @@ namespace OpenSim.Region.CoreModules.Avatar.Chat // perfect, but it will do. For now. Better // than the prior behavior of muting all // objects on a parcel with access restrictions + if (checkParcelHide) + { + if (sourceParcelID != Presencecheck.LandData.GlobalID) + return; + } if (c.Sender == null || Presencecheck.IsEitherBannedOrRestricted(c.Sender.AgentId) != true) { if (destination != UUID.Zero) -- cgit v1.1