aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Client/MXP/ClientStack/MXPClientView.cs')
-rw-r--r--OpenSim/Client/MXP/ClientStack/MXPClientView.cs21
1 files changed, 18 insertions, 3 deletions
diff --git a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
index 33017d6..17bd795 100644
--- a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
+++ b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
@@ -160,6 +160,12 @@ namespace OpenSim.Client.MXP.ClientStack
160 } 160 }
161 } 161 }
162 162
163 public bool IsLoggingOut
164 {
165 get { return false ; }
166 set { }
167 }
168
163 #endregion 169 #endregion
164 170
165 #region Constructors 171 #region Constructors
@@ -427,7 +433,7 @@ namespace OpenSim.Client.MXP.ClientStack
427 pe.ObjectFragment.ObjectIndex = (uint)(m_scene.RegionInfo.RegionSettings.RegionUUID.GetHashCode() + ((long)int.MaxValue) / 2); 433 pe.ObjectFragment.ObjectIndex = (uint)(m_scene.RegionInfo.RegionSettings.RegionUUID.GetHashCode() + ((long)int.MaxValue) / 2);
428 pe.ObjectFragment.ParentObjectId = UUID.Zero.Guid; 434 pe.ObjectFragment.ParentObjectId = UUID.Zero.Guid;
429 pe.ObjectFragment.ObjectName = "Terrain of " + m_scene.RegionInfo.RegionName; 435 pe.ObjectFragment.ObjectName = "Terrain of " + m_scene.RegionInfo.RegionName;
430 pe.ObjectFragment.OwnerId = m_scene.RegionInfo.MasterAvatarAssignedUUID.Guid; 436 pe.ObjectFragment.OwnerId = m_scene.RegionInfo.EstateSettings.EstateOwner.Guid;
431 pe.ObjectFragment.TypeId = Guid.Empty; 437 pe.ObjectFragment.TypeId = Guid.Empty;
432 pe.ObjectFragment.TypeName = "Terrain"; 438 pe.ObjectFragment.TypeName = "Terrain";
433 pe.ObjectFragment.Acceleration = new MsdVector3f(); 439 pe.ObjectFragment.Acceleration = new MsdVector3f();
@@ -591,7 +597,8 @@ namespace OpenSim.Client.MXP.ClientStack
591 public event DeRezObject OnDeRezObject; 597 public event DeRezObject OnDeRezObject;
592 public event Action<IClientAPI> OnRegionHandShakeReply; 598 public event Action<IClientAPI> OnRegionHandShakeReply;
593 public event GenericCall2 OnRequestWearables; 599 public event GenericCall2 OnRequestWearables;
594 public event GenericCall2 OnCompleteMovementToRegion; 600 public event GenericCall1 OnCompleteMovementToRegion;
601 public event UpdateAgent OnPreAgentUpdate;
595 public event UpdateAgent OnAgentUpdate; 602 public event UpdateAgent OnAgentUpdate;
596 public event AgentRequestSit OnAgentRequestSit; 603 public event AgentRequestSit OnAgentRequestSit;
597 public event AgentSit OnAgentSit; 604 public event AgentSit OnAgentSit;
@@ -900,7 +907,7 @@ namespace OpenSim.Client.MXP.ClientStack
900 907
901 if (OnCompleteMovementToRegion != null) 908 if (OnCompleteMovementToRegion != null)
902 { 909 {
903 OnCompleteMovementToRegion(); 910 OnCompleteMovementToRegion(this);
904 } 911 }
905 912
906 // Need to translate to MXP somehow 913 // Need to translate to MXP somehow
@@ -1700,5 +1707,13 @@ namespace OpenSim.Client.MXP.ClientStack
1700 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) 1707 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals)
1701 { 1708 {
1702 } 1709 }
1710
1711 public void SendChangeUserRights(UUID agentID, UUID friendID, int rights)
1712 {
1713 }
1714
1715 public void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId)
1716 {
1717 }
1703 } 1718 }
1704} 1719}