diff options
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 258b3eb..1326fe9 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -358,6 +358,8 @@ namespace OpenSim.Framework | |||
358 | 358 | ||
359 | public delegate void EstateChangeInfo(IClientAPI client, UUID invoice, UUID senderID, UInt32 param1, UInt32 param2); | 359 | public delegate void EstateChangeInfo(IClientAPI client, UUID invoice, UUID senderID, UInt32 param1, UInt32 param2); |
360 | 360 | ||
361 | public delegate void EstateManageTelehub(IClientAPI client, UUID invoice, UUID senderID, string cmd, UInt32 param1); | ||
362 | |||
361 | public delegate void RequestTerrain(IClientAPI remoteClient, string clientFileName); | 363 | public delegate void RequestTerrain(IClientAPI remoteClient, string clientFileName); |
362 | 364 | ||
363 | public delegate void BakeTerrain(IClientAPI remoteClient); | 365 | public delegate void BakeTerrain(IClientAPI remoteClient); |
@@ -769,6 +771,7 @@ namespace OpenSim.Framework | |||
769 | event ModifyTerrain OnModifyTerrain; | 771 | event ModifyTerrain OnModifyTerrain; |
770 | event BakeTerrain OnBakeTerrain; | 772 | event BakeTerrain OnBakeTerrain; |
771 | event EstateChangeInfo OnEstateChangeInfo; | 773 | event EstateChangeInfo OnEstateChangeInfo; |
774 | event EstateManageTelehub OnEstateManageTelehub; | ||
772 | // [Obsolete("LLClientView Specific.")] | 775 | // [Obsolete("LLClientView Specific.")] |
773 | event SetAppearance OnSetAppearance; | 776 | event SetAppearance OnSetAppearance; |
774 | // [Obsolete("LLClientView Specific - Replace and rename OnAvatarUpdate. Difference from SetAppearance?")] | 777 | // [Obsolete("LLClientView Specific - Replace and rename OnAvatarUpdate. Difference from SetAppearance?")] |
@@ -1074,7 +1077,15 @@ namespace OpenSim.Framework | |||
1074 | void SendWindData(Vector2[] windSpeeds); | 1077 | void SendWindData(Vector2[] windSpeeds); |
1075 | void SendCloudData(float[] cloudCover); | 1078 | void SendCloudData(float[] cloudCover); |
1076 | 1079 | ||
1080 | /// <summary> | ||
1081 | /// Sent when an agent completes its movement into a region. | ||
1082 | /// </summary> | ||
1083 | /// <remarks> | ||
1084 | /// This packet marks completion of the arrival of a root avatar in a region, whether through login, region | ||
1085 | /// crossing or direct teleport. | ||
1086 | /// </remarks> | ||
1077 | void MoveAgentIntoRegion(RegionInfo regInfo, Vector3 pos, Vector3 look); | 1087 | void MoveAgentIntoRegion(RegionInfo regInfo, Vector3 pos, Vector3 look); |
1088 | |||
1078 | void InformClientOfNeighbour(ulong neighbourHandle, IPEndPoint neighbourExternalEndPoint); | 1089 | void InformClientOfNeighbour(ulong neighbourHandle, IPEndPoint neighbourExternalEndPoint); |
1079 | 1090 | ||
1080 | /// <summary> | 1091 | /// <summary> |
@@ -1133,6 +1144,8 @@ namespace OpenSim.Framework | |||
1133 | 1144 | ||
1134 | void SendTaskInventory(UUID taskID, short serial, byte[] fileName); | 1145 | void SendTaskInventory(UUID taskID, short serial, byte[] fileName); |
1135 | 1146 | ||
1147 | void SendTelehubInfo(UUID ObjectID, string ObjectName, Vector3 ObjectPos, Quaternion ObjectRot, List<Vector3> SpawnPoint); | ||
1148 | |||
1136 | /// <summary> | 1149 | /// <summary> |
1137 | /// Used by the server to inform the client of new inventory items and folders. | 1150 | /// Used by the server to inform the client of new inventory items and folders. |
1138 | /// </summary> | 1151 | /// </summary> |