XLSMonsterDataLoader.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. 
  2. using CommonLang;
  3. using CommonLang.IO;
  4. using NPOI.HSSF.UserModel;
  5. using NPOI.SS.UserModel;
  6. using NPOI.XSSF.UserModel;
  7. using System;
  8. using System.IO;
  9. using XmdsCommonServer.XLS.Data;
  10. namespace XmdsCommonServer.XLS
  11. {
  12. /// <summary>
  13. /// 怪物数据加载.
  14. /// </summary>
  15. public class XLSMonsterDataLoader : XLSLoader
  16. {
  17. public const string ANYINGMO_SHEET_NAME = "Anyingmo";
  18. public const string DUNGEONNORMAL = "Dungeon-Normal";
  19. public const string DUNGEONELITE = "Dungeon-Elite";
  20. public const string DUNGEONHERO = "Dungeon-Hero";
  21. public const int DUNGEONELITE_VALUE = 10000;
  22. public const int DUNGEONHERO_VALUE = 20000;
  23. private HashMap<string, HashMap<string, MonsterData>> mSceneData = new HashMap<string, HashMap<string, MonsterData>>();
  24. public XLSMonsterDataLoader(string path)
  25. {
  26. byte[] data = Resource.LoadData(path);
  27. if (data == null)
  28. {
  29. throw new Exception("Can not read xls file : " + path);
  30. }
  31. using (MemoryStream ms = new MemoryStream(data))
  32. {
  33. IWorkbook Workbook = null;
  34. if (path.Contains(".xlsx"))
  35. {
  36. Workbook = new XSSFWorkbook(ms);
  37. }
  38. else if (path.Contains(".xls"))
  39. {
  40. Workbook = new HSSFWorkbook(ms);
  41. }
  42. for (int si = 0; si < Workbook.NumberOfSheets; si++)
  43. {
  44. ISheet sheet = Workbook.GetSheetAt(si) as ISheet;
  45. try
  46. {
  47. if (sheet.SheetName != "Remark" && !sheet.SheetName.Contains("("))
  48. {
  49. LoadSheet(sheet);
  50. }
  51. }
  52. catch (Exception error)
  53. {
  54. log.Error("------表格加载异常 - " + path + ", 异常信息:" + error.ToString());
  55. }
  56. }
  57. }
  58. log.Info("XLSMonsterDataLoader 初始化怪物配置完成.");
  59. }
  60. private void LoadSheet(ISheet sheet)
  61. {
  62. HashMap<string, MonsterData> data = new HashMap<string, MonsterData>();
  63. mSceneData.Add(sheet.SheetName, data);
  64. bool needformatkey = sheet.SheetName == ANYINGMO_SHEET_NAME ? true : false;
  65. string name = null;
  66. int index = 0;
  67. MonsterData temp = null;
  68. Random random = new Random();
  69. foreach (MonsterData m in LoadSheet<MonsterData>(sheet))
  70. {
  71. if (needformatkey)
  72. {
  73. name = string.Format("{0}_{1}", m.ID, m.Level);
  74. }
  75. else
  76. {
  77. name = m.ID.ToString();
  78. }
  79. m.InitData(random);
  80. temp = m;
  81. data.Add(name, m);
  82. index++;
  83. }
  84. log.Info(string.Format("loadSheet【{0}】Complete", sheet.SheetName));
  85. }
  86. public MonsterData GetMonsterAbility(string sceneType, int unit_template_id, Random random, bool needFormat = true)
  87. {
  88. MonsterData ret = null;
  89. HashMap<string, MonsterData> data = null;
  90. if (mSceneData.TryGetValue(sceneType, out data))
  91. {
  92. //data.TryGetValue(string.Format("{0}_{1}", id, unit_level), out ret);
  93. if (needFormat)
  94. {
  95. //特殊副本按照规则查询.
  96. switch (sceneType)
  97. {
  98. case DUNGEONELITE:
  99. unit_template_id += DUNGEONELITE_VALUE;
  100. break;
  101. case DUNGEONHERO:
  102. unit_template_id += DUNGEONHERO_VALUE;
  103. break;
  104. default: break;
  105. }
  106. }
  107. int id = unit_template_id;
  108. data.TryGetValue(id.ToString(), out ret);
  109. if (ret != null && random != null)
  110. {
  111. id = ret.GetRandomID(id, random);
  112. //怪物能力变异生效,重新获取能力.
  113. if (id != unit_template_id)
  114. {
  115. ret = null;
  116. //data.TryGetValue(string.Format("{0}_{1}", id, unit_level), out ret);
  117. data.TryGetValue(id.ToString(), out ret);
  118. }
  119. }
  120. if (ret == null)
  121. {
  122. log.Error(string.Format("XLSLoader GetMonsterAbility Error:sceneType = {0} id = {1} ", sceneType, id));
  123. }
  124. }
  125. return ret;
  126. }
  127. public MonsterData GetSummonMonsterAbility(string sceneType, int unit_template_id, int unit_level, Random random)
  128. {
  129. MonsterData ret = null;
  130. HashMap<string, MonsterData> data = null;
  131. if (mSceneData.TryGetValue(sceneType, out data))
  132. {
  133. int id = unit_template_id;
  134. data.TryGetValue(string.Format("{0}_{1}", id, unit_level), out ret);
  135. if (ret == null)
  136. {
  137. log.Error(string.Format("XLSLoader GetMonsterAbility Error:sceneType = {0} id = {1} level = {2}", sceneType, id, unit_level));
  138. }
  139. }
  140. return ret;
  141. }
  142. }
  143. }