aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorTeravus Ovares2007-11-13 22:48:19 +0000
committerTeravus Ovares2007-11-13 22:48:19 +0000
commit9f6b3e2357e76b9b85b447da189b4bf4163edd3c (patch)
tree7d9c39258e45e6271db953608e6868433f9ac70d /OpenSim/Framework/IClientAPI.cs
parentfirst pass on unlinking of objects. From Jay Clarke (IBM) (diff)
downloadopensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.zip
opensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.tar.gz
opensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.tar.bz2
opensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.tar.xz
* Added AvatarPicker in Standalone mode. Works for finding avatar to ban, manually trying to add a friend (with the add button) or useful to those who are curious which usernames have visited your standalone sim. Important for future development :D.
* Grid mode always returns 0 results until the Grid Communications portion is done.
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index ab5dbb6..d577a20 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -228,6 +228,7 @@ namespace OpenSim.Framework
228 public delegate void AgentRequestSit(IClientAPI remoteClient, LLUUID agentID, LLUUID targetID, LLVector3 offset); 228 public delegate void AgentRequestSit(IClientAPI remoteClient, LLUUID agentID, LLUUID targetID, LLVector3 offset);
229 229
230 public delegate void AgentSit(IClientAPI remoteClient, LLUUID agentID); 230 public delegate void AgentSit(IClientAPI remoteClient, LLUUID agentID);
231 public delegate void AvatarPickerRequest(IClientAPI remoteClient, LLUUID agentdata, LLUUID queryID, string UserQuery);
231 232
232 public delegate void MoveObject(LLUUID objectID, LLVector3 offset, LLVector3 grapPos, IClientAPI remoteClient); 233 public delegate void MoveObject(LLUUID objectID, LLVector3 offset, LLVector3 grapPos, IClientAPI remoteClient);
233 234
@@ -305,6 +306,7 @@ namespace OpenSim.Framework
305 event UpdateAgent OnAgentUpdate; 306 event UpdateAgent OnAgentUpdate;
306 event AgentRequestSit OnAgentRequestSit; 307 event AgentRequestSit OnAgentRequestSit;
307 event AgentSit OnAgentSit; 308 event AgentSit OnAgentSit;
309 event AvatarPickerRequest OnAvatarPickerRequest;
308 event Action<IClientAPI> OnRequestAvatarsData; 310 event Action<IClientAPI> OnRequestAvatarsData;
309 event AddNewPrim OnAddPrim; 311 event AddNewPrim OnAddPrim;
310 event ObjectDuplicate OnObjectDuplicate; 312 event ObjectDuplicate OnObjectDuplicate;
@@ -423,6 +425,7 @@ namespace OpenSim.Framework
423 void SendRemoveInventoryItem(LLUUID itemID); 425 void SendRemoveInventoryItem(LLUUID itemID);
424 void SendTaskInventory(LLUUID taskID, short serial, byte[] fileName); 426 void SendTaskInventory(LLUUID taskID, short serial, byte[] fileName);
425 void SendXferPacket(ulong xferID, uint packet, byte[] data); 427 void SendXferPacket(ulong xferID, uint packet, byte[] data);
428 void SendAvatarPickerReply(AvatarPickerReplyPacket Pack);
426 429
427 void SendPreLoadSound(LLUUID objectID, LLUUID ownerID, LLUUID soundID); 430 void SendPreLoadSound(LLUUID objectID, LLUUID ownerID, LLUUID soundID);
428 void SendPlayAttachedSound(LLUUID soundID, LLUUID objectID, LLUUID ownerID, float gain, byte flags); 431 void SendPlayAttachedSound(LLUUID soundID, LLUUID objectID, LLUUID ownerID, float gain, byte flags);