OSDN Git Service

RAD-493: Added context menu to group chat
[radegast/radegast.git] / Radegast / GUI / Consoles / GroupIMTabWindow.cs
1 // 
2 // Radegast Metaverse Client
3 // Copyright (c) 2009-2014, Radegast Development Team
4 // All rights reserved.
5 // 
6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are met:
8 // 
9 //     * Redistributions of source code must retain the above copyright notice,
10 //       this list of conditions and the following disclaimer.
11 //     * Redistributions in binary form must reproduce the above copyright
12 //       notice, this list of conditions and the following disclaimer in the
13 //       documentation and/or other materials provided with the distribution.
14 //     * Neither the name of the application "Radegast", nor the names of its
15 //       contributors may be used to endorse or promote products derived from
16 //       this software without specific prior written permission.
17 // 
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22 // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 //
29 // $Id$
30 //
31 using System;
32 using System.Drawing;
33 using System.Collections.Generic;
34 using System.Windows.Forms;
35 using System.Threading;
36 using Radegast.Netcom;
37 using OpenMetaverse;
38
39 namespace Radegast
40 {
41     public partial class GroupIMTabWindow : UserControl
42     {
43         private RadegastInstance instance;
44         private GridClient client { get { return instance.Client; } }
45         private RadegastNetcom netcom { get { return instance.Netcom; } }
46         private UUID session;
47         private IMTextManager textManager;
48         private object AvatarListSyncRoot = new object();
49         private List<string> chatHistory = new List<string>();
50         private int chatPointer;
51
52         ManualResetEvent WaitForSessionStart = new ManualResetEvent(false);
53
54         public GroupIMTabWindow(RadegastInstance instance, UUID session, string sessionName)
55         {
56             InitializeComponent();
57             Disposed += new EventHandler(IMTabWindow_Disposed);
58
59             this.instance = instance;
60             this.session = session;
61
62             textManager = new IMTextManager(this.instance, new RichTextBoxPrinter(rtbIMText), IMTextManagerType.Group, this.session, sessionName);
63
64             btnShow.Text = "Show";
65             chatSplit.Panel2Collapsed = true;
66
67             // Callbacks
68             RegisterClientEvents(client);
69             if (!client.Self.GroupChatSessions.ContainsKey(session))
70             {
71                 client.Self.RequestJoinGroupChat(session);
72             }
73             UpdateFontSize();
74             Load += new EventHandler(GroupIMTabWindow_Load);
75         }
76
77         private void RegisterClientEvents(GridClient client)
78         {
79             client.Self.GroupChatJoined += new EventHandler<GroupChatJoinedEventArgs>(Self_GroupChatJoined);
80             client.Self.ChatSessionMemberAdded += new EventHandler<ChatSessionMemberAddedEventArgs>(Self_ChatSessionMemberAdded);
81             client.Self.ChatSessionMemberLeft += new EventHandler<ChatSessionMemberLeftEventArgs>(Self_ChatSessionMemberLeft);
82             instance.Names.NameUpdated += new EventHandler<UUIDNameReplyEventArgs>(Names_NameUpdated);
83             instance.Netcom.ClientConnected += new EventHandler<EventArgs>(Netcom_Connected);
84             instance.Netcom.ClientDisconnected += new EventHandler<DisconnectedEventArgs>(Netcom_Disconnected);
85             instance.GlobalSettings.OnSettingChanged += new Settings.SettingChangedCallback(GlobalSettings_OnSettingChanged);
86             instance.ClientChanged += new EventHandler<ClientChangedEventArgs>(instance_ClientChanged);
87         }
88
89         private void UnregisterClientEvents(GridClient client)
90         {
91             client.Self.GroupChatJoined -= new EventHandler<GroupChatJoinedEventArgs>(Self_GroupChatJoined);
92             client.Self.ChatSessionMemberAdded -= new EventHandler<ChatSessionMemberAddedEventArgs>(Self_ChatSessionMemberAdded);
93             client.Self.ChatSessionMemberLeft -= new EventHandler<ChatSessionMemberLeftEventArgs>(Self_ChatSessionMemberLeft);
94             instance.Names.NameUpdated -= new EventHandler<UUIDNameReplyEventArgs>(Names_NameUpdated);
95             instance.Netcom.ClientConnected -= new EventHandler<EventArgs>(Netcom_Connected);
96             instance.Netcom.ClientDisconnected -= new EventHandler<DisconnectedEventArgs>(Netcom_Disconnected);
97             instance.GlobalSettings.OnSettingChanged -= new Settings.SettingChangedCallback(GlobalSettings_OnSettingChanged);
98             instance.ClientChanged -= new EventHandler<ClientChangedEventArgs>(instance_ClientChanged);
99         }
100
101         void instance_ClientChanged(object sender, ClientChangedEventArgs e)
102         {
103             UnregisterClientEvents(e.OldClient);
104             RegisterClientEvents(client);
105         }
106
107         void GroupIMTabWindow_Load(object sender, EventArgs e)
108         {
109             UpdateParticipantList();
110         }
111
112         private void IMTabWindow_Disposed(object sender, EventArgs e)
113         {
114             if (instance.Netcom.IsLoggedIn)
115             {
116                 client.Self.RequestLeaveGroupChat(session);
117             }
118
119             UnregisterClientEvents(client);
120             CleanUp();
121         }
122
123         void UpdateFontSize()
124         {
125             float size = (float)instance.GlobalSettings["chat_font_size"].AsReal();
126             cbxInput.Font = ChatConsole.ChangeFontSize(cbxInput.Font, size);
127             rtbIMText.Font = ChatConsole.ChangeFontSize(rtbIMText.Font, size);
128             textManager.ReprintAllText();
129         }
130
131         void GlobalSettings_OnSettingChanged(object sender, SettingsEventArgs e)
132         {
133             if (e.Key == "chat_font_size")
134                 UpdateFontSize();
135             else if (e.Key == "display_name_mode")
136                 UpdateParticipantList();
137         }
138
139         void Netcom_Disconnected(object sender, DisconnectedEventArgs e)
140         {
141             RefreshControls();
142         }
143
144         void Netcom_Connected(object sender, EventArgs e)
145         {
146             client.Self.RequestJoinGroupChat(session);
147             RefreshControls();
148         }
149
150         void Names_NameUpdated(object sender, UUIDNameReplyEventArgs e)
151         {
152             if (InvokeRequired)
153             {
154                 if (!instance.MonoRuntime || IsHandleCreated)
155                     BeginInvoke(new MethodInvoker(() => Names_NameUpdated(sender, e)));
156                 return;
157             }
158
159             lock (AvatarListSyncRoot)
160             {
161
162                 Participants.BeginUpdate();
163
164                 foreach (KeyValuePair<UUID, string> kvp in e.Names)
165                 {
166                     if (Participants.Items.ContainsKey(kvp.Key.ToString()))
167                         Participants.Items[kvp.Key.ToString()].Text = kvp.Value;
168                 }
169
170                 Participants.Sort();
171                 Participants.EndUpdate();
172             }
173         }
174
175         void Self_ChatSessionMemberLeft(object sender, ChatSessionMemberLeftEventArgs e)
176         {
177             if (e.SessionID == session)
178                 UpdateParticipantList();
179         }
180
181         void Self_ChatSessionMemberAdded(object sender, ChatSessionMemberAddedEventArgs e)
182         {
183             if (e.SessionID == session)
184                 UpdateParticipantList();
185         }
186
187         void UpdateParticipantList()
188         {
189             if (InvokeRequired)
190             {
191                 if (!instance.MonoRuntime || IsHandleCreated)
192                     BeginInvoke(new MethodInvoker(UpdateParticipantList));
193                 return;
194             }
195
196             try
197             {
198                 lock (AvatarListSyncRoot)
199                 {
200                     Participants.BeginUpdate();
201                     Participants.Items.Clear();
202
203                     List<ChatSessionMember> participants;
204
205                     if (client.Self.GroupChatSessions.TryGetValue(session, out participants))
206                     {
207                         ChatSessionMember[] members = participants.ToArray();
208                         for (int i = 0; i < members.Length; i++)
209                         {
210                             ChatSessionMember participant = members[i];
211                             ListViewItem item = new ListViewItem();
212                             item.Name = participant.AvatarKey.ToString();
213                             item.Text = instance.Names.Get(participant.AvatarKey);
214                             item.Tag = participant.AvatarKey;
215
216                             if (participant.IsModerator)
217                                 item.Font = new Font(item.Font, FontStyle.Bold);
218                             Participants.Items.Add(item);
219                         }
220                     }
221
222                     Participants.Sort();
223                     Participants.EndUpdate();
224                 }
225             }
226             catch (Exception)
227             {
228                 Participants.EndUpdate();
229             }
230         }
231
232         void Self_GroupChatJoined(object sender, GroupChatJoinedEventArgs e)
233         {
234             if (e.SessionID != session && e.TmpSessionID != session)
235             {
236                 return;
237             }
238
239             if (InvokeRequired)
240             {
241                 if (!instance.MonoRuntime || IsHandleCreated)
242                     Invoke(new MethodInvoker(() => Self_GroupChatJoined(sender, e)));
243                 return;
244             }
245
246             if (e.Success)
247             {
248                 textManager.TextPrinter.PrintTextLine("Join Group Chat Success!", Color.Green);
249                 WaitForSessionStart.Set();
250             }
251             else
252             {
253                 textManager.TextPrinter.PrintTextLine("Join Group Chat failed.", Color.Red);
254             }
255         }
256
257         public void CleanUp()
258         {
259             textManager.CleanUp();
260             textManager = null;
261             instance = null;
262         }
263
264         private void btnSend_Click(object sender, EventArgs e)
265         {
266             SendMsg();
267             this.ClearIMInput();
268         }
269
270         private void btnShow_Click(object sender, EventArgs e)
271         {
272             if (chatSplit.Panel2Collapsed)
273             {
274                 chatSplit.Panel2Collapsed = false;
275                 btnShow.Text = "Hide";
276             }
277             else
278             {
279                 chatSplit.Panel2Collapsed = true;
280                 btnShow.Text = "Show";
281             }
282         }
283
284         private void cbxInput_TextChanged(object sender, EventArgs e)
285         {
286             RefreshControls();
287         }
288
289         private void RefreshControls()
290         {
291             if (InvokeRequired)
292             {
293                 if (!instance.MonoRuntime || IsHandleCreated)
294                     BeginInvoke(new MethodInvoker(RefreshControls));
295                 return;
296             }
297
298             if (!netcom.IsLoggedIn)
299             {
300                 cbxInput.Enabled = false;
301                 btnSend.Enabled = false;
302                 btnShow.Enabled = false;
303                 btnShow.Text = "Show";
304                 chatSplit.Panel2Collapsed = true;
305                 return;
306             }
307
308             cbxInput.Enabled = true;
309             btnShow.Enabled = true;
310
311             if (cbxInput.Text.Length > 0)
312             {
313                 btnSend.Enabled = true;
314             }
315             else
316             {
317                 btnSend.Enabled = false;
318             }
319         }
320
321         void ChatHistoryPrev()
322         {
323             if (chatPointer == 0) return;
324             chatPointer--;
325             if (chatHistory.Count > chatPointer)
326             {
327                 cbxInput.Text = chatHistory[chatPointer];
328                 cbxInput.SelectionStart = cbxInput.Text.Length;
329                 cbxInput.SelectionLength = 0;
330             }
331         }
332
333         void ChatHistoryNext()
334         {
335             if (chatPointer == chatHistory.Count) return;
336             chatPointer++;
337             if (chatPointer == chatHistory.Count)
338             {
339                 cbxInput.Text = string.Empty;
340                 return;
341             }
342             cbxInput.Text = chatHistory[chatPointer];
343             cbxInput.SelectionStart = cbxInput.Text.Length;
344             cbxInput.SelectionLength = 0;
345         }
346
347
348         private void cbxInput_KeyDown(object sender, KeyEventArgs e)
349         {
350             if (e.KeyCode == Keys.Up && e.Modifiers == Keys.Control)
351             {
352                 e.Handled = e.SuppressKeyPress = true;
353                 ChatHistoryPrev();
354                 return;
355             }
356
357             if (e.KeyCode == Keys.Down && e.Modifiers == Keys.Control)
358             {
359                 e.Handled = e.SuppressKeyPress = true;
360                 ChatHistoryNext();
361                 return;
362             }
363
364             if (e.KeyCode != Keys.Enter) return;
365             e.Handled = e.SuppressKeyPress = true;
366
367             SendMsg();
368         }
369
370         private void SendMsg()
371         {
372             if (cbxInput.Text.Length == 0) return;
373
374             chatHistory.Add(cbxInput.Text);
375             chatPointer = chatHistory.Count;
376
377             string message = cbxInput.Text.Replace(ChatInputBox.NewlineMarker, "\n");
378
379             if (instance.GlobalSettings["mu_emotes"].AsBoolean() && message.StartsWith(":"))
380             {
381                 message = "/me " + message.Substring(1);
382             }
383
384             this.ClearIMInput();
385
386             if (instance.RLV.RestictionActive("sendim")) return;
387
388             if (message.Length > 1023) message = message.Remove(1023);
389
390             if (!client.Self.GroupChatSessions.ContainsKey(session))
391             {
392                 WaitForSessionStart.Reset();
393                 client.Self.RequestJoinGroupChat(session);
394             }
395             else
396             {
397                 WaitForSessionStart.Set();
398             }
399
400             if (WaitForSessionStart.WaitOne(10000, false))
401             {
402                 client.Self.InstantMessageGroup(session, message);
403             }
404             else
405             {
406                 textManager.TextPrinter.PrintTextLine("Cannot send group IM.", Color.Red);
407             }
408         }
409
410         private void ClearIMInput()
411         {
412             cbxInput.Text = string.Empty;
413         }
414
415         public void SelectIMInput()
416         {
417             cbxInput.Select();
418         }
419
420         private void rtbIMText_LinkClicked(object sender, LinkClickedEventArgs e)
421         {
422             instance.MainForm.ProcessLink(e.LinkText);
423         }
424
425         public UUID SessionId
426         {
427             get { return session; }
428             set { session = value; }
429         }
430
431         public IMTextManager TextManager
432         {
433             get { return textManager; }
434             set { textManager = value; }
435         }
436
437         private void Participants_MouseDoubleClick(object sender, MouseEventArgs e)
438         {
439             ListViewItem item = Participants.GetItemAt(e.X, e.Y);
440             if (item != null)
441             {
442                 try
443                 {
444                     instance.MainForm.ShowAgentProfile(item.Text, new UUID(item.Name));
445                 }
446                 catch (Exception) { }
447             }
448         }
449
450         private void cbxInput_VisibleChanged(object sender, EventArgs e)
451         {
452             if (Visible) cbxInput.Focus();
453         }
454
455         private void cbxInput_SizeChanged(object sender, EventArgs e)
456         {
457             pnlChatInput.Height = cbxInput.Height + 7;
458         }
459
460         private void ctxMute_Click(object sender, EventArgs e)
461         {
462             if (Participants.SelectedItems.Count != 1) return;
463
464             var agentID = (UUID)Participants.SelectedItems[0].Tag;
465             if (agentID == client.Self.AgentID) return;
466
467             if (ctxMute.Text == "Mute")
468             {
469                 client.Self.UpdateMuteListEntry(MuteType.Resident, agentID, instance.Names.GetLegacyName(agentID));
470             }
471             else
472             {
473                 client.Self.RemoveMuteListEntry(agentID, instance.Names.GetLegacyName(agentID));
474             }
475         }
476
477         private void avatarContext_Opening(object sender, System.ComponentModel.CancelEventArgs e)
478         {
479             if (Participants.SelectedItems.Count != 1)
480             {
481                 e.Cancel = true;
482                 return;
483             }
484
485             UUID av = (UUID)Participants.SelectedItems[0].Tag;
486
487             if (av == client.Self.AgentID)
488             {
489                 ctxMute.Enabled = ctxPay.Enabled = ctxStartIM.Enabled = false;
490             }
491             else
492             {
493                 ctxMute.Enabled = ctxPay.Enabled = ctxStartIM.Enabled = true;
494
495                 bool isMuted = client.Self.MuteList.Find(me => me.Type == MuteType.Resident && me.ID == av) != null;
496                 ctxMute.Text = isMuted ? "Unmute" : "Mute";
497             }
498         }
499
500         private void ctxProfile_Click(object sender, EventArgs e)
501         {
502             if (Participants.SelectedItems.Count != 1) return;
503             UUID av = (UUID)Participants.SelectedItems[0].Tag;
504             string name = instance.Names.Get(av);
505
506             instance.MainForm.ShowAgentProfile(name, av);
507         }
508
509         private void ctxPay_Click(object sender, EventArgs e)
510         {
511             if (Participants.SelectedItems.Count != 1) return;
512             UUID av = (UUID)Participants.SelectedItems[0].Tag;
513             string name = instance.Names.Get(av);
514
515             new frmPay(instance, av, name, false).ShowDialog();
516         }
517
518         private void ctxStartIM_Click(object sender, EventArgs e)
519         {
520             if (Participants.SelectedItems.Count != 1) return;
521             UUID av = (UUID)Participants.SelectedItems[0].Tag;
522             string name = instance.Names.Get(av);
523
524             instance.TabConsole.ShowIMTab(av, name, true);
525         }
526
527         private void ctxOfferTP_Click(object sender, EventArgs e)
528         {
529             if (Participants.SelectedItems.Count != 1) return;
530             UUID av = (UUID)Participants.SelectedItems[0].Tag;
531             client.Self.SendTeleportLure(av, "Join me in " + client.Network.CurrentSim.Name + "!");
532         }
533
534         private void ctxReqestLure_Click(object sender, EventArgs e)
535         {
536             if (Participants.SelectedItems.Count != 1) return;
537             UUID av = (UUID)Participants.SelectedItems[0].Tag;
538             instance.MainForm.AddNotification(new ntfSendLureRequest(instance, av));
539         }
540
541         private void ctxEject_Click(object sender, EventArgs e)
542         {
543             if (Participants.SelectedItems.Count != 1) return;
544             UUID av = (UUID)Participants.SelectedItems[0].Tag;
545             instance.Client.Groups.EjectUser(session, av);
546         }
547
548         private void ctxBan_Click(object sender, EventArgs e)
549         {
550             if (Participants.SelectedItems.Count != 1) return;
551             UUID av = (UUID)Participants.SelectedItems[0].Tag;
552         }
553     }
554 }