aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs72
1 files changed, 36 insertions, 36 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 1541b3a..1267993 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -60,7 +60,7 @@ namespace OpenSim.Framework
60 public delegate void ObjectAttach( 60 public delegate void ObjectAttach(
61 IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, bool silent); 61 IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, bool silent);
62 62
63 public delegate void ModifyTerrain(UUID user, 63 public delegate void ModifyTerrain(UUID user,
64 float height, float seconds, byte size, byte action, float north, float west, float south, float east, 64 float height, float seconds, byte size, byte action, float north, float west, float south, float east,
65 UUID agentId); 65 UUID agentId);
66 66
@@ -473,46 +473,46 @@ namespace OpenSim.Framework
473 public delegate void PlacesQuery(UUID QueryID, UUID TransactionID, string QueryText, uint QueryFlags, byte Category, string SimName, IClientAPI client); 473 public delegate void PlacesQuery(UUID QueryID, UUID TransactionID, string QueryText, uint QueryFlags, byte Category, string SimName, IClientAPI client);
474 474
475 public delegate void AgentFOV(IClientAPI client, float verticalAngle); 475 public delegate void AgentFOV(IClientAPI client, float verticalAngle);
476 476
477 public delegate void MuteListEntryUpdate(IClientAPI client, UUID MuteID, string Name, int type, uint flags); 477 public delegate void MuteListEntryUpdate(IClientAPI client, UUID MuteID, string Name, int type, uint flags);
478 478
479 public delegate void MuteListEntryRemove(IClientAPI client, UUID MuteID, string Name); 479 public delegate void MuteListEntryRemove(IClientAPI client, UUID MuteID, string Name);
480 480
481 public delegate void AvatarInterestReply(IClientAPI client,UUID target, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages); 481 public delegate void AvatarInterestReply(IClientAPI client,UUID target, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages);
482 482
483 public delegate void FindAgentUpdate(IClientAPI client, UUID hunter, UUID target); 483 public delegate void FindAgentUpdate(IClientAPI client, UUID hunter, UUID target);
484 484
485 public delegate void TrackAgentUpdate(IClientAPI client, UUID hunter, UUID target); 485 public delegate void TrackAgentUpdate(IClientAPI client, UUID hunter, UUID target);
486 486
487 public delegate void FreezeUserUpdate(IClientAPI client, UUID parcelowner,uint flags, UUID target); 487 public delegate void FreezeUserUpdate(IClientAPI client, UUID parcelowner,uint flags, UUID target);
488 488
489 public delegate void EjectUserUpdate(IClientAPI client, UUID parcelowner,uint flags, UUID target); 489 public delegate void EjectUserUpdate(IClientAPI client, UUID parcelowner,uint flags, UUID target);
490 490
491 public delegate void NewUserReport(IClientAPI client, string regionName,UUID abuserID, byte catagory, byte checkflags, string details, UUID objectID, Vector3 postion, byte reportType ,UUID screenshotID, string Summary, UUID reporter); 491 public delegate void NewUserReport(IClientAPI client, string regionName,UUID abuserID, byte catagory, byte checkflags, string details, UUID objectID, Vector3 postion, byte reportType ,UUID screenshotID, string Summary, UUID reporter);
492 492
493 public delegate void GodUpdateRegionInfoUpdate(IClientAPI client, float BillableFactor, ulong EstateID, ulong RegionFlags, byte[] SimName,int RedirectX, int RedirectY); 493 public delegate void GodUpdateRegionInfoUpdate(IClientAPI client, float BillableFactor, ulong EstateID, ulong RegionFlags, byte[] SimName,int RedirectX, int RedirectY);
494 494
495 public delegate void GodlikeMessage(IClientAPI client, UUID requester, byte[] Method, byte[] Parameter); 495 public delegate void GodlikeMessage(IClientAPI client, UUID requester, byte[] Method, byte[] Parameter);
496 496
497 public delegate void SaveStateHandler(IClientAPI client,UUID agentID); 497 public delegate void SaveStateHandler(IClientAPI client,UUID agentID);
498 498
499 public delegate void GroupAccountSummaryRequest(IClientAPI client,UUID agentID, UUID groupID); 499 public delegate void GroupAccountSummaryRequest(IClientAPI client,UUID agentID, UUID groupID);
500 500
501 public delegate void GroupAccountDetailsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID); 501 public delegate void GroupAccountDetailsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
502 502
503 public delegate void GroupAccountTransactionsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID); 503 public delegate void GroupAccountTransactionsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
504 504
505 public delegate void ParcelBuyPass(IClientAPI client, UUID agentID, int ParcelLocalID); 505 public delegate void ParcelBuyPass(IClientAPI client, UUID agentID, int ParcelLocalID);
506 506
507 public delegate void ParcelGodMark(IClientAPI client, UUID agentID, int ParcelLocalID); 507 public delegate void ParcelGodMark(IClientAPI client, UUID agentID, int ParcelLocalID);
508 508
509 public delegate void GroupActiveProposalsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID); 509 public delegate void GroupActiveProposalsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
510 510
511 public delegate void GroupVoteHistoryRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID); 511 public delegate void GroupVoteHistoryRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
512 512
513 513
514 public delegate void SimWideDeletesDelegate(IClientAPI client,UUID agentID, int flags, UUID targetID); 514 public delegate void SimWideDeletesDelegate(IClientAPI client,UUID agentID, int flags, UUID targetID);
515 515
516 public delegate void SendPostcard(IClientAPI client); 516 public delegate void SendPostcard(IClientAPI client);
517 public delegate void ChangeInventoryItemFlags(IClientAPI client, UUID itemID, uint flags); 517 public delegate void ChangeInventoryItemFlags(IClientAPI client, UUID itemID, uint flags);
518 518
@@ -763,7 +763,7 @@ namespace OpenSim.Framework
763 /// Only set for root agents. 763 /// Only set for root agents.
764 /// </remarks> 764 /// </remarks>
765 bool IsLoggingOut { get; set; } 765 bool IsLoggingOut { get; set; }
766 766
767 bool SendLogoutPacketWhenClosing { set; } 767 bool SendLogoutPacketWhenClosing { set; }
768 768
769 // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")] 769 // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")]
@@ -1034,7 +1034,7 @@ namespace OpenSim.Framework
1034 event MuteListRequest OnMuteListRequest; 1034 event MuteListRequest OnMuteListRequest;
1035 1035
1036 event PlacesQuery OnPlacesQuery; 1036 event PlacesQuery OnPlacesQuery;
1037 1037
1038 event FindAgentUpdate OnFindAgent; 1038 event FindAgentUpdate OnFindAgent;
1039 event TrackAgentUpdate OnTrackAgent; 1039 event TrackAgentUpdate OnTrackAgent;
1040 event NewUserReport OnUserReport; 1040 event NewUserReport OnUserReport;
@@ -1079,12 +1079,12 @@ namespace OpenSim.Framework
1079 void Close(bool sendStop, bool force); 1079 void Close(bool sendStop, bool force);
1080 1080
1081 void Kick(string message); 1081 void Kick(string message);
1082 1082
1083 /// <summary> 1083 /// <summary>
1084 /// Start processing for this client. 1084 /// Start processing for this client.
1085 /// </summary> 1085 /// </summary>
1086 void Start(); 1086 void Start();
1087 1087
1088 void Stop(); 1088 void Stop();
1089 1089
1090 // void ActivateGesture(UUID assetId, UUID gestureId); 1090 // void ActivateGesture(UUID assetId, UUID gestureId);
@@ -1155,7 +1155,7 @@ namespace OpenSim.Framework
1155 void MoveAgentIntoRegion(RegionInfo regInfo, Vector3 pos, Vector3 look); 1155 void MoveAgentIntoRegion(RegionInfo regInfo, Vector3 pos, Vector3 look);
1156 1156
1157 void InformClientOfNeighbour(ulong neighbourHandle, IPEndPoint neighbourExternalEndPoint); 1157 void InformClientOfNeighbour(ulong neighbourHandle, IPEndPoint neighbourExternalEndPoint);
1158 1158
1159 /// <summary> 1159 /// <summary>
1160 /// Return circuit information for this client. 1160 /// Return circuit information for this client.
1161 /// </summary> 1161 /// </summary>
@@ -1223,10 +1223,10 @@ namespace OpenSim.Framework
1223 /// <summary> 1223 /// <summary>
1224 /// Used by the server to inform the client of new inventory items and folders. 1224 /// Used by the server to inform the client of new inventory items and folders.
1225 /// </summary> 1225 /// </summary>
1226 /// 1226 ///
1227 /// If the node is a folder then the contents will be transferred 1227 /// If the node is a folder then the contents will be transferred
1228 /// (including all descendent folders) as well as the folder itself. 1228 /// (including all descendent folders) as well as the folder itself.
1229 /// 1229 ///
1230 /// <param name="node"></param> 1230 /// <param name="node"></param>
1231 void SendBulkUpdateInventory(InventoryNodeBase node); 1231 void SendBulkUpdateInventory(InventoryNodeBase node);
1232 1232
@@ -1289,7 +1289,7 @@ namespace OpenSim.Framework
1289 /// <param name="OrbitalPosition">The orbital position is given in radians, and must be "adjusted" for the linden client, see LLClientView</param> 1289 /// <param name="OrbitalPosition">The orbital position is given in radians, and must be "adjusted" for the linden client, see LLClientView</param>
1290 void SendSunPos(Vector3 sunPos, Vector3 sunVel, ulong CurrentTime, uint SecondsPerSunCycle, uint SecondsPerYear, 1290 void SendSunPos(Vector3 sunPos, Vector3 sunVel, ulong CurrentTime, uint SecondsPerSunCycle, uint SecondsPerYear,
1291 float OrbitalPosition); 1291 float OrbitalPosition);
1292 1292
1293 void SendViewerEffect(ViewerEffectPacket.EffectBlock[] effectBlocks); 1293 void SendViewerEffect(ViewerEffectPacket.EffectBlock[] effectBlocks);
1294 void SendViewerTime(int phase); 1294 void SendViewerTime(int phase);
1295 1295
@@ -1357,7 +1357,7 @@ namespace OpenSim.Framework
1357 void SendImageFirstPart(ushort numParts, UUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec); 1357 void SendImageFirstPart(ushort numParts, UUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec);
1358 1358
1359 /// <summary> 1359 /// <summary>
1360 /// Send the next packet for a series of packets making up a single texture, 1360 /// Send the next packet for a series of packets making up a single texture,
1361 /// as established by SendImageFirstPart() 1361 /// as established by SendImageFirstPart()
1362 /// </summary> 1362 /// </summary>
1363 /// <param name="partNumber"></param> 1363 /// <param name="partNumber"></param>
@@ -1481,7 +1481,7 @@ namespace OpenSim.Framework
1481 void SendParcelDwellReply(int localID, UUID parcelID, float dwell); 1481 void SendParcelDwellReply(int localID, UUID parcelID, float dwell);
1482 1482
1483 void SendUserInfoReply(bool imViaEmail, bool visible, string email); 1483 void SendUserInfoReply(bool imViaEmail, bool visible, string email);
1484 1484
1485 void SendUseCachedMuteList(); 1485 void SendUseCachedMuteList();
1486 1486
1487 void SendMuteListUpdate(string filename); 1487 void SendMuteListUpdate(string filename);
@@ -1495,13 +1495,13 @@ namespace OpenSim.Framework
1495 void SendRebakeAvatarTextures(UUID textureID); 1495 void SendRebakeAvatarTextures(UUID textureID);
1496 1496
1497 void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages); 1497 void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages);
1498 1498
1499 void SendGroupAccountingDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt); 1499 void SendGroupAccountingDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt);
1500 1500
1501 void SendGroupAccountingSummary(IClientAPI sender,UUID groupID, uint moneyAmt, int totalTier, int usedTier); 1501 void SendGroupAccountingSummary(IClientAPI sender,UUID groupID, uint moneyAmt, int totalTier, int usedTier);
1502 1502
1503 void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt); 1503 void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt);
1504 1504
1505 void SendChangeUserRights(UUID agentID, UUID friendID, int rights); 1505 void SendChangeUserRights(UUID agentID, UUID friendID, int rights);
1506 void SendTextBoxRequest(string message, int chatChannel, string objectname, UUID ownerID, string ownerFirstName, string ownerLastName, UUID objectId); 1506 void SendTextBoxRequest(string message, int chatChannel, string objectname, UUID ownerID, string ownerFirstName, string ownerLastName, UUID objectId);
1507 1507