From bd8018fa1cb32aa42e2a1a41ebb01fc0f1b0a04b Mon Sep 17 00:00:00 2001 From: MW Date: Tue, 3 Jul 2007 20:10:20 +0000 Subject: Today's work on Building support/tools. Think I am slowly getting there. --- OpenSim/Framework/General/Interfaces/IClientAPI.cs | 2 ++ OpenSim/Framework/General/Types/PrimitiveBaseShape.cs | 1 + OpenSim/Framework/Servers/CheckSumServer.cs | 9 +++++---- 3 files changed, 8 insertions(+), 4 deletions(-) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index b5a0a0b..c3291c4 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs @@ -56,6 +56,7 @@ namespace OpenSim.Framework.Interfaces public delegate void UpdatePrimTexture(uint localID, byte[] texture, IClientAPI remoteClient); public delegate void UpdateVector(uint localID, LLVector3 pos, IClientAPI remoteClient); public delegate void UpdatePrimRotation(uint localID, LLQuaternion rot, IClientAPI remoteClient); + public delegate void UpdatePrimGroupRotation(uint localID,LLVector3 pos, LLQuaternion rot, IClientAPI remoteClient); public delegate void StatusChange(bool status); public delegate void NewAvatar(IClientAPI remoteClient, LLUUID agentID, bool status); public delegate void UpdateAgent(IClientAPI remoteClient, uint flags, LLQuaternion bodyRotation); @@ -100,6 +101,7 @@ namespace OpenSim.Framework.Interfaces event UpdatePrimTexture OnUpdatePrimTexture; event UpdateVector OnUpdatePrimPosition; event UpdatePrimRotation OnUpdatePrimRotation; + event UpdatePrimGroupRotation OnUpdatePrimGroupRotation; event UpdateVector OnUpdatePrimScale; event StatusChange OnChildAgentStatus; event GenericCall2 OnStopMovement; diff --git a/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs b/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs index 1357e06..a6671d1 100644 --- a/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs +++ b/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs @@ -12,6 +12,7 @@ namespace OpenSim.Framework.Types Prism, Scuplted, Cylinder, + Foliage, Unknown } diff --git a/OpenSim/Framework/Servers/CheckSumServer.cs b/OpenSim/Framework/Servers/CheckSumServer.cs index 104de94..89ec095 100644 --- a/OpenSim/Framework/Servers/CheckSumServer.cs +++ b/OpenSim/Framework/Servers/CheckSumServer.cs @@ -26,8 +26,8 @@ * */ namespace OpenSim.Framework.Servers -{ -/* public class CheckSumServer : UDPServerBase +{/* + public class CheckSumServer : UDPServerBase { //protected ConsoleBase m_log; @@ -121,6 +121,7 @@ namespace OpenSim.Framework.Servers { this.Server.SendTo(buffer, size, flags, endp); } - * - }*/ + * } + */ + } \ No newline at end of file -- cgit v1.1