aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorAdam Frisby2008-09-09 05:25:29 +0000
committerAdam Frisby2008-09-09 05:25:29 +0000
commitc95bdb83c0d91ecb4c5a73e3ae4deadbcc54955f (patch)
tree4c2269de2c672ac0d28c2d5f97fbffccec525294 /OpenSim/Framework/IClientAPI.cs
parentFix llResetScript() and the reset button to actually restore global (diff)
downloadopensim-SC_OLD-c95bdb83c0d91ecb4c5a73e3ae4deadbcc54955f.zip
opensim-SC_OLD-c95bdb83c0d91ecb4c5a73e3ae4deadbcc54955f.tar.gz
opensim-SC_OLD-c95bdb83c0d91ecb4c5a73e3ae4deadbcc54955f.tar.bz2
opensim-SC_OLD-c95bdb83c0d91ecb4c5a73e3ae4deadbcc54955f.tar.xz
* Adds OnGenericMessage and SendGenericMessage functionality to IClientAPI.
* Please don't break the build. *fingers crossed*
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index e1c6f4b..ac97375 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -39,6 +39,8 @@ namespace OpenSim.Framework
39 39
40 public delegate void ChatMessage(Object sender, OSChatMessage e); 40 public delegate void ChatMessage(Object sender, OSChatMessage e);
41 41
42 public delegate void GenericMessage(Object sender, string method, List<String> args);
43
42 public delegate void TextureRequest(Object sender, TextureRequestArgs e); 44 public delegate void TextureRequest(Object sender, TextureRequestArgs e);
43 45
44 public delegate void AvatarNowWearing(Object sender, AvatarWearingArgs e); 46 public delegate void AvatarNowWearing(Object sender, AvatarWearingArgs e);
@@ -356,6 +358,9 @@ namespace OpenSim.Framework
356 358
357 // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")] 359 // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")]
358 uint CircuitCode { get; } 360 uint CircuitCode { get; }
361
362 event GenericMessage OnGenericMessage;
363
359 // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")] 364 // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")]
360 event ImprovedInstantMessage OnInstantMessage; 365 event ImprovedInstantMessage OnInstantMessage;
361 // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments. Rename OnChat.")] 366 // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments. Rename OnChat.")]
@@ -547,6 +552,8 @@ namespace OpenSim.Framework
547 UUID imSessionID, string fromName, byte dialog, uint timeStamp, 552 UUID imSessionID, string fromName, byte dialog, uint timeStamp,
548 byte[] binaryBucket); 553 byte[] binaryBucket);
549 554
555 void SendGenericMessage(string method, List<string> message);
556
550 void SendLayerData(float[] map); 557 void SendLayerData(float[] map);
551 void SendLayerData(int px, int py, float[] map); 558 void SendLayerData(int px, int py, float[] map);
552 559