123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
-
- using CommonLang;
- using CommonLang.IO;
- using NPOI.HSSF.UserModel;
- using NPOI.SS.UserModel;
- using NPOI.XSSF.UserModel;
- using System;
- using System.IO;
- using XmdsCommonServer.XLS.Data;
- namespace XmdsCommonServer.XLS
- {
- /// <summary>
- /// 怪物数据加载.
- /// </summary>
- public class XLSMonsterDataLoader : XLSLoader
- {
- public const string ANYINGMO_SHEET_NAME = "Anyingmo";
- public const string DUNGEONNORMAL = "Dungeon-Normal";
- public const string DUNGEONELITE = "Dungeon-Elite";
- public const string DUNGEONHERO = "Dungeon-Hero";
- public const int DUNGEONELITE_VALUE = 10000;
- public const int DUNGEONHERO_VALUE = 20000;
- private HashMap<string, HashMap<string, MonsterData>> mSceneData = new HashMap<string, HashMap<string, MonsterData>>();
- public XLSMonsterDataLoader(string path)
- {
- byte[] data = Resource.LoadData(path);
- if (data == null)
- {
- throw new Exception("Can not read xls file : " + path);
- }
- using (MemoryStream ms = new MemoryStream(data))
- {
- IWorkbook Workbook = null;
- if (path.Contains(".xlsx"))
- {
- Workbook = new XSSFWorkbook(ms);
- }
- else if (path.Contains(".xls"))
- {
- Workbook = new HSSFWorkbook(ms);
- }
- for (int si = 0; si < Workbook.NumberOfSheets; si++)
- {
- ISheet sheet = Workbook.GetSheetAt(si) as ISheet;
- try
- {
- if (sheet.SheetName != "Remark" && !sheet.SheetName.Contains("("))
- {
- LoadSheet(sheet);
- }
- }
- catch (Exception error)
- {
- log.Error("------表格加载异常 - " + path + ", 异常信息:" + error.ToString());
- }
- }
- }
- log.Info("XLSMonsterDataLoader 初始化怪物配置完成.");
- }
- private void LoadSheet(ISheet sheet)
- {
- HashMap<string, MonsterData> data = new HashMap<string, MonsterData>();
- mSceneData.Add(sheet.SheetName, data);
- bool needformatkey = sheet.SheetName == ANYINGMO_SHEET_NAME ? true : false;
- string name = null;
- int index = 0;
- MonsterData temp = null;
- Random random = new Random();
- foreach (MonsterData m in LoadSheet<MonsterData>(sheet))
- {
- if (needformatkey)
- {
- name = string.Format("{0}_{1}", m.ID, m.Level);
- }
- else
- {
- name = m.ID.ToString();
- }
- m.InitData(random);
- temp = m;
- data.Add(name, m);
- index++;
- }
- log.Info(string.Format("loadSheet【{0}】Complete", sheet.SheetName));
- }
- public MonsterData GetMonsterAbility(string sceneType, int unit_template_id, Random random, bool needFormat = true)
- {
- MonsterData ret = null;
- HashMap<string, MonsterData> data = null;
- if (mSceneData.TryGetValue(sceneType, out data))
- {
- //data.TryGetValue(string.Format("{0}_{1}", id, unit_level), out ret);
- if (needFormat)
- {
- //特殊副本按照规则查询.
- switch (sceneType)
- {
- case DUNGEONELITE:
- unit_template_id += DUNGEONELITE_VALUE;
- break;
- case DUNGEONHERO:
- unit_template_id += DUNGEONHERO_VALUE;
- break;
- default: break;
- }
- }
- int id = unit_template_id;
- data.TryGetValue(id.ToString(), out ret);
- if (ret != null && random != null)
- {
- id = ret.GetRandomID(id, random);
- //怪物能力变异生效,重新获取能力.
- if (id != unit_template_id)
- {
- ret = null;
- //data.TryGetValue(string.Format("{0}_{1}", id, unit_level), out ret);
- data.TryGetValue(id.ToString(), out ret);
- }
- }
- if (ret == null)
- {
- log.Error(string.Format("XLSLoader GetMonsterAbility Error:sceneType = {0} id = {1} ", sceneType, id));
- }
- }
- return ret;
- }
- public MonsterData GetSummonMonsterAbility(string sceneType, int unit_template_id, int unit_level, Random random)
- {
- MonsterData ret = null;
- HashMap<string, MonsterData> data = null;
- if (mSceneData.TryGetValue(sceneType, out data))
- {
- int id = unit_template_id;
- data.TryGetValue(string.Format("{0}_{1}", id, unit_level), out ret);
- if (ret == null)
- {
- log.Error(string.Format("XLSLoader GetMonsterAbility Error:sceneType = {0} id = {1} level = {2}", sceneType, id, unit_level));
- }
- }
- return ret;
- }
- }
- }
|