aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authorMW2008-10-10 17:05:43 +0000
committerMW2008-10-10 17:05:43 +0000
commit0644977819c1704c9d7417984a6366ceefe04c4c (patch)
tree924abff130d5a3b6948f40990c27becb83ab869e /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parentadded a list of SurfaceTouchEventArgs to the IClientAPI.OnGrabUpdate event, f... (diff)
downloadopensim-SC_OLD-0644977819c1704c9d7417984a6366ceefe04c4c.zip
opensim-SC_OLD-0644977819c1704c9d7417984a6366ceefe04c4c.tar.gz
opensim-SC_OLD-0644977819c1704c9d7417984a6366ceefe04c4c.tar.bz2
opensim-SC_OLD-0644977819c1704c9d7417984a6366ceefe04c4c.tar.xz
added a list of SurfaceTouchEventArgs to the IClientAPI.OnGrab event, for the new surface touch parameters in 1.21 viewers.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs21
1 files changed, 18 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index d82b0cc..7eda272 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -166,7 +166,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
166 private ObjectIncludeInSearch handlerObjectIncludeInSearch = null; 166 private ObjectIncludeInSearch handlerObjectIncludeInSearch = null;
167 private UpdatePrimFlags handlerUpdatePrimFlags = null; //OnUpdatePrimFlags; 167 private UpdatePrimFlags handlerUpdatePrimFlags = null; //OnUpdatePrimFlags;
168 private UpdatePrimTexture handlerUpdatePrimTexture = null; 168 private UpdatePrimTexture handlerUpdatePrimTexture = null;
169 private UpdateVector handlerGrabObject = null; //OnGrabObject; 169 private GrabObject handlerGrabObject = null; //OnGrabObject;
170 private MoveObject handlerGrabUpdate = null; //OnGrabUpdate; 170 private MoveObject handlerGrabUpdate = null; //OnGrabUpdate;
171 private ObjectSelect handlerDeGrabObject = null; //OnDeGrabObject; 171 private ObjectSelect handlerDeGrabObject = null; //OnDeGrabObject;
172 private GenericCall7 handlerObjectDescription = null; 172 private GenericCall7 handlerObjectDescription = null;
@@ -866,7 +866,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
866 public event Action<IClientAPI> OnRequestAvatarsData; 866 public event Action<IClientAPI> OnRequestAvatarsData;
867 public event LinkObjects OnLinkObjects; 867 public event LinkObjects OnLinkObjects;
868 public event DelinkObjects OnDelinkObjects; 868 public event DelinkObjects OnDelinkObjects;
869 public event UpdateVector OnGrabObject; 869 public event GrabObject OnGrabObject;
870 public event ObjectSelect OnDeGrabObject; 870 public event ObjectSelect OnDeGrabObject;
871 public event ObjectDuplicate OnObjectDuplicate; 871 public event ObjectDuplicate OnObjectDuplicate;
872 public event ObjectDuplicateOnRay OnObjectDuplicateOnRay; 872 public event ObjectDuplicateOnRay OnObjectDuplicateOnRay;
@@ -4715,7 +4715,22 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4715 4715
4716 if (handlerGrabObject != null) 4716 if (handlerGrabObject != null)
4717 { 4717 {
4718 handlerGrabObject(grab.ObjectData.LocalID, grab.ObjectData.GrabOffset, this); 4718 List<SurfaceTouchEventArgs> touchArgs = new List<SurfaceTouchEventArgs>();
4719 if ((grab.SurfaceInfo != null) && (grab.SurfaceInfo.Length > 0))
4720 {
4721 foreach (ObjectGrabPacket.SurfaceInfoBlock surfaceInfo in grab.SurfaceInfo)
4722 {
4723 SurfaceTouchEventArgs arg = new SurfaceTouchEventArgs();
4724 arg.Binormal = surfaceInfo.Binormal;
4725 arg.FaceIndex = surfaceInfo.FaceIndex;
4726 arg.Normal = surfaceInfo.Normal;
4727 arg.Position = surfaceInfo.Position;
4728 arg.STCoord = surfaceInfo.STCoord;
4729 arg.UVCoord = surfaceInfo.UVCoord;
4730 touchArgs.Add(arg);
4731 }
4732 }
4733 handlerGrabObject(grab.ObjectData.LocalID, grab.ObjectData.GrabOffset, this, touchArgs);
4719 } 4734 }
4720 break; 4735 break;
4721 case PacketType.ObjectGrabUpdate: 4736 case PacketType.ObjectGrabUpdate: