FormChat.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. using CommonLang;
  2. using CommonLang.Property;
  3. using pomelo.chat;
  4. using Pomelo.DotNetClient;
  5. using SimpleJson;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.ComponentModel;
  9. using System.Data;
  10. using System.Drawing;
  11. using System.Linq;
  12. using System.Text;
  13. using System.Windows.Forms;
  14. using XmdsBattleClientBot.Bot;
  15. namespace XmdsBattleClientWin32.Func
  16. {
  17. public partial class FormChat : Form
  18. {
  19. private readonly BotClient bot;
  20. private readonly HashMap<BotClient.ChatChannel, Channel> channels = new HashMap<BotClient.ChatChannel, Channel>();
  21. private readonly PushHandler listen;
  22. public FormChat(BotClient bot)
  23. {
  24. this.bot = bot;
  25. InitializeComponent();
  26. foreach (BotClient.ChatChannel ch in Enum.GetValues(typeof(BotClient.ChatChannel)))
  27. {
  28. var channel = new Channel(bot, ch);
  29. comboChannel.Items.Add(channel);
  30. tabControl1.TabPages.Add(channel.tab);
  31. channels.Add(ch, channel);
  32. }
  33. this.comboChannel.SelectedItem = comboChannel.Items[0];
  34. this.listen = bot.Client.GameSocket.listen<OnChatPush>(onChatPush);
  35. this.Text += " : " + bot.Account;
  36. this.bot.Client.GameSocket.playerHandler.getGMHelpRequest((err, rsp) =>
  37. {
  38. if (rsp != null)
  39. {
  40. appendLine(richTextBoxAll, rsp.s2c_msg);
  41. }
  42. });
  43. }
  44. protected override void OnFormClosing(FormClosingEventArgs e)
  45. {
  46. this.listen.Clear();
  47. base.OnFormClosing(e);
  48. }
  49. private void btnSend_Click(object sender, EventArgs e)
  50. {
  51. if (textSending.Text.Length > 0)
  52. {
  53. if (textSending.Text.StartsWith("@gm"))
  54. {
  55. bot.Client.GameSocket.playerHandler.sendGMCmdRequest(textSending.Text, (err, msg) =>
  56. {
  57. if (err != null) appendLine(richTextBoxAll, err.Message);
  58. else appendLine(richTextBoxAll, msg.s2c_msg);
  59. });
  60. }
  61. else
  62. {
  63. var channel = comboChannel.SelectedItem as Channel;
  64. if (channel != null)
  65. {
  66. bot.chat_SendChat(onSendResult, textSending.Text, "", channel.value);
  67. textSending.Clear();
  68. textSending.Focus();
  69. }
  70. }
  71. }
  72. }
  73. private void onChatPush(OnChatPush push)
  74. {
  75. var ch = (BotClient.ChatChannel)push.s2c_scope;
  76. var channel = channels.Get(ch);
  77. if (channel != null)
  78. {
  79. var line = bot.FormatChat(push) + "\r\n";
  80. appendLine(richTextBoxAll, line);
  81. appendLine(channel.rich, line);
  82. }
  83. }
  84. private static void appendLine(RichTextBox rich, string line)
  85. {
  86. if (rich.MaxLength <= rich.TextLength + line.Length)
  87. {
  88. rich.Clear();
  89. }
  90. rich.AppendText(line);
  91. rich.ScrollToCaret();
  92. }
  93. private void onSendResult(Exception err, JsonObject obj)
  94. {
  95. if (err != null)
  96. {
  97. sendStatus.Text = err.Message;
  98. }
  99. else
  100. {
  101. sendStatus.Text = obj.ToString();
  102. }
  103. }
  104. public class Channel
  105. {
  106. public readonly BotClient bot;
  107. public readonly DescAttribute desc;
  108. public readonly BotClient.ChatChannel value;
  109. public readonly TabPage tab;
  110. public readonly RichTextBox rich;
  111. internal Channel(BotClient bot, BotClient.ChatChannel ch)
  112. {
  113. this.bot = bot;
  114. this.value = ch;
  115. this.desc = PropertyUtil.GetEnumAttribute<DescAttribute>(ch);
  116. this.rich = new RichTextBox();
  117. this.rich.Tag = this;
  118. this.rich.Dock = DockStyle.Fill;
  119. this.rich.Dock = System.Windows.Forms.DockStyle.Fill;
  120. this.rich.Location = new System.Drawing.Point(3, 3);
  121. this.rich.Name = "richTextBox1";
  122. this.rich.Size = new System.Drawing.Size(992, 387);
  123. this.rich.TabIndex = 0;
  124. this.rich.Text = "";
  125. this.rich.ReadOnly = true;
  126. this.tab = new TabPage(desc.Desc);
  127. this.tab.Controls.Add(this.rich);
  128. this.tab.Tag = this;
  129. }
  130. public override string ToString()
  131. {
  132. return desc.Desc;
  133. }
  134. }
  135. }
  136. }