aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorTeravus Ovares2008-05-05 15:53:11 +0000
committerTeravus Ovares2008-05-05 15:53:11 +0000
commitce19234dc865e645166dbe5cc52b6d8eb7c6d0af (patch)
treec84ebb52428d4c4db3305832a5bad5cb283164be /OpenSim/Framework
parent* A bit of spice from here, a pinch of salt from there, some brains that attr... (diff)
downloadopensim-SC_OLD-ce19234dc865e645166dbe5cc52b6d8eb7c6d0af.zip
opensim-SC_OLD-ce19234dc865e645166dbe5cc52b6d8eb7c6d0af.tar.gz
opensim-SC_OLD-ce19234dc865e645166dbe5cc52b6d8eb7c6d0af.tar.bz2
opensim-SC_OLD-ce19234dc865e645166dbe5cc52b6d8eb7c6d0af.tar.xz
* Unraveled the DEBUG_CHANNEL mystery.
* Moved script errors to the debug channel. * Typing '/2147483647 OK' results in a debug_channel message. * Expanded the available parameters that are send-able through IClientAPI
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IClientAPI.cs12
1 files changed, 10 insertions, 2 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 02ecc1a..a58114c 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -53,6 +53,7 @@ namespace OpenSim.Framework
53 // 3 is an obsolete version of Say 53 // 3 is an obsolete version of Say
54 StartTyping = 4, 54 StartTyping = 4,
55 StopTyping = 5, 55 StopTyping = 5,
56 DebugChannel = 6,
56 Broadcast = 0xFF 57 Broadcast = 0xFF
57 } 58 }
58 59
@@ -82,6 +83,7 @@ namespace OpenSim.Framework
82 protected IScene m_scene; 83 protected IScene m_scene;
83 protected IClientAPI m_sender; 84 protected IClientAPI m_sender;
84 protected ChatTypeEnum m_type; 85 protected ChatTypeEnum m_type;
86 protected LLUUID m_fromID;
85 87
86 public ChatFromViewerArgs() 88 public ChatFromViewerArgs()
87 { 89 {
@@ -144,6 +146,12 @@ namespace OpenSim.Framework
144 set { m_sender = value; } 146 set { m_sender = value; }
145 } 147 }
146 148
149 public LLUUID SenderUUID
150 {
151 get { return m_fromID; }
152 set { m_fromID = value; }
153 }
154
147 /// <summary> 155 /// <summary>
148 /// 156 ///
149 /// </summary> 157 /// </summary>
@@ -653,8 +661,8 @@ namespace OpenSim.Framework
653 void SendKillObject(ulong regionHandle, uint localID); 661 void SendKillObject(ulong regionHandle, uint localID);
654 void SendAnimations(LLUUID[] animID, int[] seqs, LLUUID sourceAgentId); 662 void SendAnimations(LLUUID[] animID, int[] seqs, LLUUID sourceAgentId);
655 void SendRegionHandshake(RegionInfo regionInfo); 663 void SendRegionHandshake(RegionInfo regionInfo);
656 void SendChatMessage(string message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID); 664 void SendChatMessage(string message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID, byte source, byte audible);
657 void SendChatMessage(byte[] message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID); 665 void SendChatMessage(byte[] message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID, byte source, byte audible);
658 666
659 void SendInstantMessage(LLUUID fromAgent, LLUUID fromAgentSession, string message, LLUUID toAgent, 667 void SendInstantMessage(LLUUID fromAgent, LLUUID fromAgentSession, string message, LLUUID toAgent,
660 LLUUID imSessionID, string fromName, byte dialog, uint timeStamp); 668 LLUUID imSessionID, string fromName, byte dialog, uint timeStamp);