少年修仙传客户端代码仓库
client_Wu Xijin
2018-10-27 45c82c513c67130bb52cb5e7f2f10c957e463cf1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
//--------------------------------------------------------
//    [Author]:            第二世界
//    [  Date ]:           Wednesday, August 15, 2018
//--------------------------------------------------------
 
using UnityEngine;
using System;
 
namespace TableConfig {
 
    
    public partial class StoreConfig : ConfigBase {
 
        public int ID { get ; private set ; }
        public int ShopType { get ; private set ; }
        public int ShopSort { get ; private set ; }
        public int ItemID { get ; private set ; }
        public int ItemCnt { get ; private set ; }
        public int IsBind { get ; private set ; }
        public string ItemListEx { get ; private set; } 
        public int MainItemID { get ; private set ; }
        public string JobItem { get ; private set; } 
        public int RefreshType { get ; private set ; }
        public int[] VIPLV;
        public int LV { get ; private set ; }
        public int[] PurchaseNumber;
        public int MoneyType { get ; private set ; }
        public int MoneyNumber { get ; private set ; }
        public int MoneyOriginal { get ; private set ; }
        public int LimitValue { get ; private set ; }
        public string SalesStatus { get ; private set; } 
        public int TheOnlyShop { get ; private set ; }
        public int RemindSuccess { get ; private set ; }
        public int IsHideSellOut { get ; private set ; }
 
        public override string getKey()
        {
            return ID.ToString();
        }
 
        public override void Parse() {
            try
            {
                ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0; 
            
                ShopType=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0; 
            
                ShopSort=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0; 
            
                ItemID=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0; 
            
                ItemCnt=IsNumeric(rawContents[4]) ? int.Parse(rawContents[4]):0; 
            
                IsBind=IsNumeric(rawContents[5]) ? int.Parse(rawContents[5]):0; 
            
                ItemListEx = rawContents[6].Trim();
            
                MainItemID=IsNumeric(rawContents[7]) ? int.Parse(rawContents[7]):0; 
            
                JobItem = rawContents[8].Trim();
            
                RefreshType=IsNumeric(rawContents[9]) ? int.Parse(rawContents[9]):0; 
            
                string[] VIPLVStringArray = rawContents[10].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
                VIPLV = new int[VIPLVStringArray.Length];
                for (int i=0;i<VIPLVStringArray.Length;i++)
                {
                     int.TryParse(VIPLVStringArray[i],out VIPLV[i]);
                }
            
                LV=IsNumeric(rawContents[11]) ? int.Parse(rawContents[11]):0; 
            
                string[] PurchaseNumberStringArray = rawContents[12].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
                PurchaseNumber = new int[PurchaseNumberStringArray.Length];
                for (int i=0;i<PurchaseNumberStringArray.Length;i++)
                {
                     int.TryParse(PurchaseNumberStringArray[i],out PurchaseNumber[i]);
                }
            
                MoneyType=IsNumeric(rawContents[13]) ? int.Parse(rawContents[13]):0; 
            
                MoneyNumber=IsNumeric(rawContents[14]) ? int.Parse(rawContents[14]):0; 
            
                MoneyOriginal=IsNumeric(rawContents[15]) ? int.Parse(rawContents[15]):0; 
            
                LimitValue=IsNumeric(rawContents[16]) ? int.Parse(rawContents[16]):0; 
            
                SalesStatus = rawContents[17].Trim();
            
                TheOnlyShop=IsNumeric(rawContents[18]) ? int.Parse(rawContents[18]):0; 
            
                RemindSuccess=IsNumeric(rawContents[19]) ? int.Parse(rawContents[19]):0; 
            
                IsHideSellOut=IsNumeric(rawContents[20]) ? int.Parse(rawContents[20]):0; 
            }
            catch (Exception ex)
            {
                DebugEx.Log(ex);
            }
        }
    
    }
 
}