From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Scripts/XUtliPoolLib/FashionSuitTable.cs | 127 +++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 Client/Assets/Scripts/XUtliPoolLib/FashionSuitTable.cs (limited to 'Client/Assets/Scripts/XUtliPoolLib/FashionSuitTable.cs') diff --git a/Client/Assets/Scripts/XUtliPoolLib/FashionSuitTable.cs b/Client/Assets/Scripts/XUtliPoolLib/FashionSuitTable.cs new file mode 100644 index 00000000..a18022cf --- /dev/null +++ b/Client/Assets/Scripts/XUtliPoolLib/FashionSuitTable.cs @@ -0,0 +1,127 @@ +using System; + +namespace XUtliPoolLib +{ + public class FashionSuitTable : CVSReader + { + public FashionSuitTable.RowData[] Table = null; + + public class RowData + { + public int SuitID; + + public string SuitName; + + public int SuitQuality; + + public uint[] FashionID; + + public SeqListRef Effect2; + + public SeqListRef Effect3; + + public SeqListRef Effect4; + + public SeqListRef Effect5; + + public SeqListRef Effect6; + + public SeqListRef Effect7; + + public SeqListRef All1; + + public SeqListRef All2; + + public SeqListRef All3; + + public SeqListRef All4; + + public bool NoSale; + + public int ShowLevel; + + public int OverAll; + + public int CraftedItemQuality; + } + + public FashionSuitTable.RowData GetBySuitID(int key) + { + bool flag = this.Table == null || this.Table.Length == 0; + FashionSuitTable.RowData result; + if (flag) + { + result = null; + } + else + { + for (int i = 0; i < this.Table.Length; i++) + { + bool flag2 = this.Table[i].SuitID == key; + if (flag2) + { + return this.Table[i]; + } + } + result = null; + } + return result; + } + + protected override void ReadLine(XBinaryReader reader) + { + FashionSuitTable.RowData rowData = new FashionSuitTable.RowData(); + base.Read(reader, ref rowData.SuitID, CVSReader.intParse); + this.columnno = 0; + base.Read(reader, ref rowData.SuitName, CVSReader.stringParse); + this.columnno = 1; + base.Read(reader, ref rowData.SuitQuality, CVSReader.intParse); + this.columnno = 2; + base.ReadArray(reader, ref rowData.FashionID, CVSReader.uintParse); + this.columnno = 4; + rowData.Effect2.Read(reader, this.m_DataHandler); + this.columnno = 5; + rowData.Effect3.Read(reader, this.m_DataHandler); + this.columnno = 6; + rowData.Effect4.Read(reader, this.m_DataHandler); + this.columnno = 7; + rowData.Effect5.Read(reader, this.m_DataHandler); + this.columnno = 8; + rowData.Effect6.Read(reader, this.m_DataHandler); + this.columnno = 9; + rowData.Effect7.Read(reader, this.m_DataHandler); + this.columnno = 10; + rowData.All1.Read(reader, this.m_DataHandler); + this.columnno = 11; + rowData.All2.Read(reader, this.m_DataHandler); + this.columnno = 12; + rowData.All3.Read(reader, this.m_DataHandler); + this.columnno = 13; + rowData.All4.Read(reader, this.m_DataHandler); + this.columnno = 14; + base.Read(reader, ref rowData.NoSale, CVSReader.boolParse); + this.columnno = 21; + base.Read(reader, ref rowData.ShowLevel, CVSReader.intParse); + this.columnno = 22; + base.Read(reader, ref rowData.OverAll, CVSReader.intParse); + this.columnno = 23; + base.Read(reader, ref rowData.CraftedItemQuality, CVSReader.intParse); + this.columnno = 24; + this.Table[this.lineno] = rowData; + this.columnno = -1; + } + + protected override void OnClear(int lineCount) + { + bool flag = lineCount > 0; + if (flag) + { + this.Table = new FashionSuitTable.RowData[lineCount]; + } + else + { + this.Table = null; + } + } + } +} -- cgit v1.1-26-g67d0