BotRunner.cs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. using CommonAI.Zone;
  2. using CommonAI.Zone.Instance;
  3. using CommonAI.Zone.ZoneEditor;
  4. using CommonAIServer.Connector.Client;
  5. using CommonLang;
  6. using CommonLang.Concurrent;
  7. using CommonLang.Log;
  8. using CommonLang.Protocol;
  9. using CommonNetwork.Sockets;
  10. using System;
  11. using System.Collections.Generic;
  12. using System.IO;
  13. using System.Linq;
  14. using System.Text;
  15. using System.Threading.Tasks;
  16. using XmdsCommon.Plugin;
  17. using XmdsServerTestBots.Bot;
  18. namespace XmdsServerTestBots
  19. {
  20. public class BotRunner
  21. {
  22. public static BotRunner Instance { get; private set; }
  23. public static DirectoryInfo StartupPath { get; private set; }
  24. public static BotConfig Config { get; private set; }
  25. public static InstanceZoneFactory ZoneFactory { get; private set; }
  26. public static MessageFactoryGenerator MessageFactory { get; private set; }
  27. public static EditorTemplates Templates { get; private set; }
  28. private Logger log = LoggerFactory.GetLogger("BotRunner");
  29. private Random random = new Random();
  30. public bool IsRunning { get; private set; }
  31. public BotRunner(DirectoryInfo startup_path)
  32. {
  33. StartupPath = startup_path;
  34. log.Info("********************************************************");
  35. log.Info("# 加载配置文件");
  36. log.Info("********************************************************");
  37. {
  38. Config = new BotConfig();
  39. string path = new FileInfo(startup_path + "/bot_config.properties").FullName;
  40. Properties zone_server_config = Properties.LoadFromResource(path);
  41. log.Info("配置文件 : " + path);
  42. foreach (string key in zone_server_config.Keys)
  43. {
  44. log.Info(string.Format(" {0} = {1}", key, zone_server_config[key]));
  45. }
  46. zone_server_config.LoadFields(Config);
  47. EditorTemplates.DEFAULT_LOAD_FROM_BIN = true;
  48. log.Info("资源目录 : " + Config.GAME_DATA_ROOT_PATH);
  49. }
  50. log.Info("********************************************************");
  51. log.Info("# 初始化战斗编辑器扩展");
  52. log.Info("********************************************************");
  53. {
  54. XmdsZoneFactoryBot.SaveMemory = true;
  55. ZoneFactory = new XmdsZoneFactoryBot();
  56. TemplateManager.setFactory(ZoneFactory);
  57. log.Info(" 战斗编辑器插件 --> " + ZoneFactory);
  58. }
  59. log.Info("********************************************************");
  60. log.Info("# 初始化消息编解码器");
  61. log.Info("********************************************************");
  62. {
  63. MessageFactory = TemplateManager.MessageCodec;
  64. log.Info("\r\n" + MessageFactory.ListAll(" "));
  65. }
  66. log.Info("********************************************************");
  67. log.Info("# 加载模板数据");
  68. log.Info("********************************************************");
  69. {
  70. Templates = new EditorTemplates(Config.GAME_DATA_ROOT_PATH, MessageFactory);
  71. Templates.LoadAllTemplates();
  72. }
  73. log.Info("********************************************************");
  74. log.Info("# 扫描测试数据");
  75. log.Info("********************************************************");
  76. {
  77. foreach (UnitInfo unit in Templates.Templates.getAllUnits())
  78. {
  79. XmdsUnitProperties zu = unit.Properties as XmdsUnitProperties;
  80. if (zu.BotTestTemplate || unit.UType == UnitInfo.UnitType.TYPE_PLAYER)
  81. {
  82. test_player_templates.Add(unit);
  83. }
  84. }
  85. }
  86. Instance = this;
  87. }
  88. public void Start()
  89. {
  90. this.IsRunning = true;
  91. }
  92. public void Shutdown()
  93. {
  94. this.IsRunning = false;
  95. }
  96. //-------------------------------------------------------------------------------------------------
  97. private AtomicInteger test_player_indexer = new AtomicInteger(0);
  98. private List<UnitInfo> test_player_templates = new List<UnitInfo>();
  99. private HashMap<string, BotPlayer> Bots = new HashMap<string, BotPlayer>();
  100. public List<BotPlayer> BotsList { get { lock (Bots) { return new List<BotPlayer>(Bots.Values); } } }
  101. public int BotsCount { get { lock (Bots) { return Bots.Count; } } }
  102. public string BotsStatus
  103. {
  104. get
  105. {
  106. StringBuilder sb = new StringBuilder();
  107. foreach (BotPlayer bot in BotsList)
  108. {
  109. sb.AppendLine(string.Format("Bot[{0}] IsRunning={1}", bot.Name, bot.IsRunning));
  110. }
  111. return sb.ToString();
  112. }
  113. }
  114. public BotPlayer AddBot(int force, List<int> templates)
  115. {
  116. UnitInfo unit;
  117. if (templates == null)
  118. {
  119. unit = CUtils.GetRandomInArray(test_player_templates, random);
  120. }
  121. else
  122. {
  123. int templateID = CUtils.GetRandomInArray(templates, random);
  124. unit = Templates.Templates.getUnit(templateID);
  125. }
  126. if (unit == null)
  127. {
  128. log.Error("没有测试单位!");
  129. return null;
  130. }
  131. string name = unit.Name + "_" + test_player_indexer.IncrementAndGet();
  132. BotPlayer ret = null;
  133. lock (Bots)
  134. {
  135. if (Bots.ContainsKey(name))
  136. {
  137. log.ErrorFormat("已包含单位[{0}]!", name);
  138. return null;
  139. }
  140. ret = new BotPlayer(name, "", unit, force, Templates, Config.TEST_SERVER_CONNECTION_STRING);
  141. Bots.Add(name, ret);
  142. log.InfoFormat("已添加单位: {0}", name);
  143. }
  144. ret.Start();
  145. return ret;
  146. }
  147. public void AddBots(int count, int force, List<int> templates = null)
  148. {
  149. for (int i = 0; i < count; i++)
  150. {
  151. AddBot(force, templates);
  152. }
  153. }
  154. public void CleanupBots()
  155. {
  156. foreach (BotPlayer bot in BotsList)
  157. {
  158. if (!bot.IsRunning)
  159. {
  160. lock (Bots)
  161. {
  162. Bots.Remove(bot.Name);
  163. }
  164. bot.Dispose();
  165. }
  166. }
  167. }
  168. public void StopAllBots()
  169. {
  170. foreach (BotPlayer bot in BotsList)
  171. {
  172. bot.SendLeaveRoom();
  173. }
  174. CleanupBots();
  175. }
  176. public void StopBot(BotPlayer bot)
  177. {
  178. bot.SendLeaveRoom();
  179. CleanupBots();
  180. }
  181. }
  182. }