ModuleChat.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. using CommonAI.ZoneClient;
  2. using CommonLang;
  3. using CommonLang.Concurrent;
  4. using CommonLang.Property;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.IO;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading;
  11. using System.Threading.Tasks;
  12. using System.Windows.Forms;
  13. using XmdsBattleClientBot.Bot;
  14. namespace XmdsBotTest.Runner
  15. {
  16. public class ModuleChat : BotRunner.RunnerModule
  17. {
  18. private static AtomicInteger s_index = new AtomicInteger(0);
  19. private static List<string> s_chat_list = new List<string>();
  20. static ModuleChat()
  21. {
  22. var all = File.ReadAllLines(Application.StartupPath + @"\ChatData.txt");
  23. foreach (var line in all)
  24. {
  25. if (line.Trim().Length > 0)
  26. {
  27. var kv = line.Split(new char[] { ':' }, 2);
  28. if (kv.Length == 2)
  29. {
  30. s_chat_list.Add(kv[1]);
  31. }
  32. else
  33. {
  34. s_chat_list.Add(line);
  35. }
  36. }
  37. }
  38. }
  39. public ModuleChat(BotRunner r) : base(r)
  40. {
  41. }
  42. protected internal override void OnBattleActorReady(ZoneLayer layer, ZoneActor actor)
  43. {
  44. layer.AddTimePeriodicMS(Config.ChatIntervalMS, (t) =>
  45. {
  46. if (Enable)
  47. {
  48. on_do_1s(layer);
  49. }
  50. });
  51. }
  52. private void on_do_1s(ZoneLayer layer)
  53. {
  54. ThreadPool.QueueUserWorkItem((state) =>
  55. {
  56. var text = /*s_index.IncrementAndGet().ToString() + " - " + */CUtils.GetRandomInArray(s_chat_list, bot.Random);
  57. try
  58. {
  59. var channel = CUtils.GetRandomInArray(Config.ChatChannels, bot.Random);
  60. bot.chat_SendChat((err, rsp) =>
  61. {
  62. if (err != null) log.Error("SentChat : " + err.Message);
  63. else log.Info("SentChat : " + rsp);
  64. }, text, "", channel);
  65. }
  66. catch (Exception err)
  67. {
  68. log.Error(err.Message, err);
  69. }
  70. }, bot);
  71. }
  72. [Desc("聊天配置")]
  73. [Expandable]
  74. public class Config
  75. {
  76. [Desc("聊天发送间隔")]
  77. public static int ChatIntervalMS = 5000;
  78. [Desc("聊天发送频道")]
  79. public static BotClient.ChatChannel[] ChatChannels = new BotClient.ChatChannel[]
  80. {
  81. BotClient.ChatChannel.WORLD,
  82. BotClient.ChatChannel.NEARBY,
  83. BotClient.ChatChannel.ZONE,
  84. };
  85. public override string ToString()
  86. {
  87. return "聊天配置";
  88. }
  89. }
  90. }
  91. }