//This code create by CodeEngine ,don't modify using System; using System.Collections.Generic; using System.Collections; using Module.Log; namespace GCGame.Table { public class Tab_ChildrenFashion{ public const string TAB_FILE_DATA = "ChildrenFashion"; private const int _varCount = 15; public int GetId() { return Id; } public static bool Validate(string line) { var segments = 0; foreach (char c in line) if (c == '\t') segments++; // Note: skip the 2nd column as it's the description; var result = segments == _varCount; if (!result) LogModule.ErrorLog(string.Format("Load {0} error as CodeSize:{1} not Equal DataSize:{2}", TAB_FILE_DATA, _varCount, segments)); return result; } public Tab_ChildrenFashion() { } public Tab_ChildrenFashion(string line) { var segments = line.Split('\t'); Id = int.Parse(segments[0]); BoyCharModelId = int.Parse(segments[2]); GirlCharModelId = int.Parse(segments[3]); ItemId = int.Parse(segments[4]); CombatVal = int.Parse(segments[5]); PropId[0] = int.Parse(segments[6]); PropId[1] = int.Parse(segments[8]); PropId[2] = int.Parse(segments[10]); PropId[3] = int.Parse(segments[12]); PropId[4] = int.Parse(segments[14]); PropVal[0] = int.Parse(segments[7]); PropVal[1] = int.Parse(segments[9]); PropVal[2] = int.Parse(segments[11]); PropVal[3] = int.Parse(segments[13]); PropVal[4] = int.Parse(segments[15]); } public int Id { get; private set; } public int BoyCharModelId { get; private set; } public int GirlCharModelId { get; private set; } public int ItemId { get; private set; } public int CombatVal { get; private set; } public readonly int[] PropId = new int[5]; public int getPropIdCount() { return PropId.Length; } public int GetPropIdbyIndex(int idx) { if(idx >= 0 && idx < PropId.Length) return PropId[idx]; return default(int); } public readonly int[] PropVal = new int[5]; public int getPropValCount() { return PropVal.Length; } public int GetPropValbyIndex(int idx) { if(idx >= 0 && idx < PropVal.Length) return PropVal[idx]; return default(int); } } }