Ejemplo n.º 1
0
        public List <HeaderType> Parse(Row[] rows)
        {
            if (rows.Length != 2)
            {
                throw new Exception("Rows Length Invalid");
            }

            List <HeaderType> headerTypeList = new List <HeaderType>();

            Row row     = rows[0];
            Row rowType = rows[1];

            for (int i = 0; i < row.FilledCells.Length; i++)
            {
                Cell cell     = row.FilledCells[i];
                int  refIndex = Cell.GetCellReferenceIndex(cell.Reference);
                Cell cellType = rowType.FilledCells[refIndex];

                if (cell.ReferenceIndex < Configuration.StartCol)
                {
                    continue;
                }

                if (cell.Text.Length == 0 || (Configuration.PrefixIgnoreColumn.Any(x => x == cell.Text[0]) ||
                                              Configuration.PrefixIgnoreColumn.Any(x => x == cellType.Text[0])))
                {
                    continue;
                }

                string[] typeStr = cellType.Text.Split(':');

                var isKey = false;
                if (typeStr.Length == 2 &&
                    string.Equals(typeStr[1], "key", StringComparison.OrdinalIgnoreCase))
                {
                    isKey = true;
                }

                HeaderType headerType = new HeaderType()
                {
                    Reference     = cell.Reference,
                    ValueName     = cell.Text,
                    ValueType     = typeStr[0],
                    ValueRealType = TypeInfos.ConvertRealType(typeStr[0]),
                    IsKey         = isKey
                };

                headerTypeList.Add(headerType);
            }

            return(headerTypeList);
        }
Ejemplo n.º 2
0
        public List <HeaderType> Parse(Row[] rows)
        {
            ///  Single Header Format
            ///  ex : id:int[:key]
            ///  ex : damageFactor:float
            ///  ex : name:string

            if (rows.Length != 1)
            {
                throw new Exception("Rows Length Invalid");
            }

            Row row = rows[0];

            List <HeaderType> headerTypeList = new List <HeaderType>();

            foreach (var cell in row.FilledCells)
            {
                if (cell.ReferenceIndex < Configuration.StartCol)
                {
                    continue;
                }

                if (cell.Text.Length == 0 || Configuration.PrefixIgnoreColumn.Any(x => x == cell.Text[0]))
                {
                    continue;
                }

                string[] typeStr = cell.Text.Split(':');

                var isKey = false;
                if (typeStr.Length == 3 &&
                    string.Equals(typeStr[2], "key", StringComparison.OrdinalIgnoreCase))
                {
                    isKey = true;
                }

                HeaderType headerType = new HeaderType()
                {
                    Reference      = cell.Reference,
                    ReferenceIndex = cell.ReferenceIndex,
                    ValueName      = typeStr[0],
                    ValueType      = typeStr[1],
                    ValueRealType  = TypeInfos.ConvertRealType(typeStr[1]),
                    IsKey          = isKey
                };

                headerTypeList.Add(headerType);
            }

            return(headerTypeList);
        }