diff options
author | Dr Scofield | 2008-10-03 14:53:11 +0000 |
---|---|---|
committer | Dr Scofield | 2008-10-03 14:53:11 +0000 |
commit | 5c0a0bc2e0951745fd52f5c01f2ee2c0aee49a3a (patch) | |
tree | 529c2c8e3ea8f1193f2495f905e542ff1462adb6 /OpenSim/Framework | |
parent | * minor: remove warnings (the code cleaners strike again) (diff) | |
download | opensim-SC_OLD-5c0a0bc2e0951745fd52f5c01f2ee2c0aee49a3a.zip opensim-SC_OLD-5c0a0bc2e0951745fd52f5c01f2ee2c0aee49a3a.tar.gz opensim-SC_OLD-5c0a0bc2e0951745fd52f5c01f2ee2c0aee49a3a.tar.bz2 opensim-SC_OLD-5c0a0bc2e0951745fd52f5c01f2ee2c0aee49a3a.tar.xz |
This changeset changes the way chat from client is routed:
old way: each region module interested in chat from client had to
- subscribe to scene.EventManager.OnNewClient
- then in its OnNewClient delegate it would subscribe to
client.OnChatFromViewer to capture chat messages coming
new way: ChatModule is the only region module that uses the "old
way" approach but is now forwarding all client chat via
scene.EventManager.OnChatFromClient
- each region module interested in chat from client now only
subscribes to scene.EventManager.OnChatFromClient
this not only simplifies code, but also allows us to substitute
ChatModule with derived classes (ConciergeModule is going to be one
example).
Also, this changeset changes ChatFromViewer to ChatFromClient as it
doesn't necessarily have to be a viewer that is a chat source.
i've taken great care to only comment out those OnNewClient delegates
that were only used for getting at the client chat --- hope it's not
breaking anything.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/OSChatMessage.cs | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 8737c22..d2ee770 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -363,7 +363,7 @@ namespace OpenSim.Framework | |||
363 | // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")] | 363 | // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")] |
364 | event ImprovedInstantMessage OnInstantMessage; | 364 | event ImprovedInstantMessage OnInstantMessage; |
365 | // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments. Rename OnChat.")] | 365 | // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments. Rename OnChat.")] |
366 | event ChatMessage OnChatFromViewer; | 366 | event ChatMessage OnChatFromClient; |
367 | // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")] | 367 | // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")] |
368 | event TextureRequest OnRequestTexture; | 368 | event TextureRequest OnRequestTexture; |
369 | // [Obsolete("LLClientView Specific - Remove bitbuckets. Adam, can you be more specific here.. as I don't see any bit buckets.")] | 369 | // [Obsolete("LLClientView Specific - Remove bitbuckets. Adam, can you be more specific here.. as I don't see any bit buckets.")] |
diff --git a/OpenSim/Framework/OSChatMessage.cs b/OpenSim/Framework/OSChatMessage.cs index fbeb7ba..15701f0 100644 --- a/OpenSim/Framework/OSChatMessage.cs +++ b/OpenSim/Framework/OSChatMessage.cs | |||
@@ -140,6 +140,11 @@ namespace OpenSim.Framework | |||
140 | set { m_scene = value; } | 140 | set { m_scene = value; } |
141 | } | 141 | } |
142 | 142 | ||
143 | public override string ToString() | ||
144 | { | ||
145 | return m_message; | ||
146 | } | ||
147 | |||
143 | #endregion | 148 | #endregion |
144 | } | 149 | } |
145 | } | 150 | } |