AddBotConfig.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. using CommonLang;
  2. using CommonLang.Property;
  3. using CommonLang.Xml;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.IO;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. using XmdsBotTest.Runner;
  12. namespace XmdsBotTest
  13. {
  14. public class AddBotConfig
  15. {
  16. [Desc("前缀", "Add")]
  17. public string name_format = "ai_{0}";
  18. [Desc("登录密码", "Add")]
  19. public string password = "123456";
  20. [Desc("起始ID", "Add")]
  21. public int index = 0;
  22. [Desc("数量", "Add")]
  23. public int count = 10;
  24. [Desc("名字格式", "Add")]
  25. public string digit_format = "D5";
  26. //-------------------------------------------------------------------------------------
  27. [Desc("随机角色名", "角色")]
  28. public bool RandomRoleName = true;
  29. [Desc("角色名格式", "角色")]
  30. [DependOnProperty("RandomRoleName", false)]
  31. public string[] RoleNameFormat = new string[] { "角色{0}" };
  32. //-------------------------------------------------------------------------------------
  33. [Desc("道具配置", "模块")]
  34. public ModuleInventory.Config Inventory = new ModuleInventory.Config();
  35. [Desc("任务配置", "模块")]
  36. public ModuleTask.Config Task = new ModuleTask.Config();
  37. [Desc("重连配置", "模块")]
  38. public ModuleReconnect.Config Reconnect = new ModuleReconnect.Config();
  39. [Desc("坐骑配置", "模块")]
  40. public ModuleMount.Config mount = new ModuleMount.Config();
  41. [Desc("装备配置", "模块")]
  42. public ModuleEquip.Config equip = new ModuleEquip.Config();
  43. [Desc("技能配置", "模块")]
  44. public ModuleSkill.Config skill = new ModuleSkill.Config();
  45. [Desc("公会配置", "模块")]
  46. public ModuleGuild.Config guild = new ModuleGuild.Config();
  47. [Desc("排行榜配置", "模块")]
  48. public RankWarn.Config rank = new RankWarn.Config();
  49. // 功能
  50. // [Desc("问道大会配置", "功能")]
  51. // public SoloFunc.Config solo = new SoloFunc.Config();
  52. // [Desc("五岳一战配置", "功能")]
  53. // public AreanFunc.Config arean = new AreanFunc.Config();
  54. // [Desc("试炼大赛配置", "功能")]
  55. // public Five2FiveFunc.Config five2five = new Five2FiveFunc.Config();
  56. //// [Desc("师门任务配置", "功能")]
  57. //// public MasterTaskFunc.Config masterTask = new MasterTaskFunc.Config();
  58. // [Desc("组队副本配置", "功能")]
  59. // public TeamDungeonFunc.Config teamDungeon = new TeamDungeonFunc.Config();
  60. // 协议
  61. //[Desc("商城购买玉神石配置", "协议")]
  62. //public BuyMallProto.Config buyMallProto = new BuyMallProto.Config();
  63. //[Desc("积分商城配置", "协议")]
  64. //public BuyIntergalItemProto.Config buyIntergalProto= new BuyIntergalItemProto.Config();
  65. //[Desc("寄卖行寄卖物品配置", "协议")]
  66. //public AutionProto.Config autionProto = new AutionProto.Config();
  67. // 警告
  68. [Desc("充值订单配置", "充值")]
  69. public PrepaidOrderIdWarn.Config prepaidOrderId = new PrepaidOrderIdWarn.Config();
  70. //-------------------------------------------------------------------------------------
  71. public static AddBotConfig TryLoadAddConfig()
  72. {
  73. var add = new AddBotConfig();
  74. try
  75. {
  76. var saved = XmlUtil.LoadXML(Application.StartupPath + "/bot_add.xml");
  77. if (saved != null)
  78. {
  79. add = XmlUtil.XmlToObject<AddBotConfig>(saved);
  80. }
  81. LoadProp("ModuleInventory", typeof(ModuleInventory.Config));
  82. LoadProp("ModuleTask", typeof(ModuleTask.Config));
  83. LoadProp("ModuleReconnect", typeof(ModuleReconnect.Config));
  84. LoadProp("ModuleMount", typeof(ModuleMount.Config));
  85. LoadProp("ModuleEquip", typeof(ModuleEquip.Config));
  86. LoadProp("ModuleSkill", typeof(ModuleSkill.Config));
  87. LoadProp("ModuleGuild", typeof(ModuleGuild.Config));
  88. LoadProp("ModuleRank", typeof(RankWarn.Config));
  89. // 功能
  90. LoadProp("SoloFunc", typeof(SoloFunc.Config)); //
  91. LoadProp("AreanFunc", typeof(AreanFunc.Config));
  92. LoadProp("Five2FiveFunc", typeof(Five2FiveFunc.Config));
  93. //LoadProp("MasterTaskFunc", typeof(MasterTaskFunc.Config));
  94. LoadProp("TeamDungeonFunc", typeof(TeamDungeonFunc.Config));
  95. // 协议
  96. LoadProp("BuyMallProto",typeof(BuyMallProto.Config));
  97. LoadProp("BuyIntergalItemProto", typeof(BuyIntergalItemProto.Config));
  98. LoadProp("AutionProto",typeof(AutionProto.Config));
  99. // 警告
  100. LoadProp("PrepaidOrderIdWarn", typeof(PrepaidOrderIdWarn.Config));
  101. }
  102. catch (Exception err)
  103. {
  104. MessageBox.Show(err.Message);
  105. }
  106. return add;
  107. }
  108. public static void TrySaveAddConfig(AddBotConfig add)
  109. {
  110. var save = XmlUtil.ObjectToXml(add);
  111. XmlUtil.SaveXML(Application.StartupPath + "/bot_add.xml", save);
  112. SaveProp("ModuleInventory", typeof(ModuleInventory.Config));
  113. SaveProp("ModuleTask", typeof(ModuleTask.Config));
  114. SaveProp("ModuleReconnect", typeof(ModuleReconnect.Config));
  115. SaveProp("ModuleMount", typeof(ModuleMount.Config));
  116. SaveProp("ModuleEquip", typeof(ModuleEquip.Config));
  117. SaveProp("ModuleSkill", typeof(ModuleSkill.Config));
  118. SaveProp("ModuleGuild", typeof(ModuleGuild.Config));
  119. SaveProp("ModuleRank", typeof(RankWarn.Config));
  120. // 功能
  121. SaveProp("SoloFunc", typeof(SoloFunc.Config));
  122. SaveProp("AreanFunc", typeof(AreanFunc.Config));
  123. SaveProp("Five2FiveFunc", typeof(Five2FiveFunc.Config));
  124. //SaveProp("MasterTaskFunc", typeof(MasterTaskFunc.Config));
  125. SaveProp("TeamDungeonFunc", typeof(TeamDungeonFunc.Config));
  126. // 协议
  127. SaveProp("BuyMallProto",typeof(BuyMallProto.Config));
  128. SaveProp("BuyIntergalItemProto",typeof(BuyIntergalItemProto.Config));
  129. SaveProp("AutionProto",typeof(AutionProto.Config));
  130. // 警告
  131. SaveProp("PrepaidOrderIdWarn",typeof(PrepaidOrderIdWarn.Config));
  132. }
  133. public static void SaveProp(string name, Type type)
  134. {
  135. Properties prop = new Properties();
  136. prop.SaveStaticFields(type);
  137. File.WriteAllText(Application.StartupPath + "/" + name + ".properties", prop.ToParseString(), CUtils.UTF8);
  138. }
  139. private static void LoadProp(string name, Type type)
  140. {
  141. if (File.Exists(Application.StartupPath + "/" + name + ".properties"))
  142. {
  143. var text = File.ReadAllText(Application.StartupPath + "/" + name + ".properties", CUtils.UTF8);
  144. if (text != null)
  145. {
  146. Properties prop = new Properties();
  147. prop.ParseText(text);
  148. prop.LoadStaticFields(type);
  149. }
  150. }
  151. }
  152. }
  153. public class BotModuleConfig
  154. {
  155. [Desc("Modules")]
  156. public HashMap<string, bool> Modules = new HashMap<string, bool>();
  157. }
  158. }