示例#1
0
    static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths)
    {
        foreach (string asset in importedAssets)
        {
            if (!filePath.Equals(asset))
            {
                continue;
            }

            XLS_EnemyDeck data = (XLS_EnemyDeck)AssetDatabase.LoadAssetAtPath(exportPath, typeof(XLS_EnemyDeck));
            if (data == null)
            {
                data = ScriptableObject.CreateInstance <XLS_EnemyDeck> ();
                AssetDatabase.CreateAsset((ScriptableObject)data, exportPath);
                data.hideFlags = HideFlags.NotEditable;
            }

            data.sheets.Clear();
            using (FileStream stream = File.Open(filePath, FileMode.Open, FileAccess.Read)) {
                IWorkbook book = new HSSFWorkbook(stream);

                foreach (string sheetName in sheetNames)
                {
                    ISheet sheet = book.GetSheet(sheetName);
                    if (sheet == null)
                    {
                        Debug.LogError("[QuestData] sheet not found:" + sheetName);
                        continue;
                    }

                    XLS_EnemyDeck.Sheet s = new XLS_EnemyDeck.Sheet();
                    s.name = sheetName;

                    for (int i = 1; i <= sheet.LastRowNum; i++)
                    {
                        IRow  row  = sheet.GetRow(i);
                        ICell cell = null;

                        XLS_EnemyDeck.Param p = new XLS_EnemyDeck.Param();

                        cell = row.GetCell(0); p.id = (int)(cell == null ? 0 : cell.NumericCellValue);
                        cell = row.GetCell(1); p.cardAtr = (int)(cell == null ? 0 : cell.NumericCellValue);
                        cell = row.GetCell(2); p.cardID = (int)(cell == null ? 0 : cell.NumericCellValue);
                        cell = row.GetCell(3); p.cardLV = (int)(cell == null ? 0 : cell.NumericCellValue);
                        cell = row.GetCell(4); p.cardCount = (int)(cell == null ? 0 : cell.NumericCellValue);
                        s.list.Add(p);
                    }
                    data.sheets.Add(s);
                }
            }

            ScriptableObject obj = AssetDatabase.LoadAssetAtPath(exportPath, typeof(ScriptableObject)) as ScriptableObject;
            EditorUtility.SetDirty(obj);
        }
    }
示例#2
0
    public static List <CardParam> GetEnemyDeck(int _deckNum)
    {
        List <CardParam>           ret       = new List <CardParam> ();
        List <XLS_EnemyDeck.Param> paramList = DataManager.Instance.xls_EnemyDeck.sheets [_deckNum].list;

        for (int i = 0; i < paramList.Count; i++)
        {
            XLS_EnemyDeck.Param param = paramList [i];
            CardParam           cp    = new CardParam().Set(param.cardAtr, param.cardID, param.cardLV, param.cardCount);
            ret.Add(cp);
        }
        return(ret);
    }