Beispiel #1
0
        public IEnumerator InitTable()
        {
            if (Tab_Adventure.LoadTable(m_Adventure, m_AdventureStructure, false))

            {
                Log.Message(string.Format("Load Table:{0} OK! Record({1})", Tab_Adventure.GetInstanceFile(), m_Adventure.Count));
            }
            yield return(null);

            if (Tab_Event.LoadTable(m_Event, m_EventStructure, false))

            {
                Log.Message(string.Format("Load Table:{0} OK! Record({1})", Tab_Event.GetInstanceFile(), m_Event.Count));
            }
            yield return(null);

            if (Tab_GoodData.LoadTable(m_GoodData, m_GoodDataStructure, false))

            {
                Log.Message(string.Format("Load Table:{0} OK! Record({1})", Tab_GoodData.GetInstanceFile(), m_GoodData.Count));
            }
            yield return(null);

            if (Tab_Hospial.LoadTable(m_Hospial, m_HospialStructure, false))

            {
                Log.Message(string.Format("Load Table:{0} OK! Record({1})", Tab_Hospial.GetInstanceFile(), m_Hospial.Count));
            }
            yield return(null);

            if (Tab_Location.LoadTable(m_Location, m_LocationStructure, false))

            {
                Log.Message(string.Format("Load Table:{0} OK! Record({1})", Tab_Location.GetInstanceFile(), m_Location.Count));
            }
            yield return(null);

            if (Tab_PlayerData.LoadTable(m_PlayerData, m_PlayerDataStructure, false))

            {
                Log.Message(string.Format("Load Table:{0} OK! Record({1})", Tab_PlayerData.GetInstanceFile(), m_PlayerData.Count));
            }
            yield return(null);

            if (Tab_Postoffice.LoadTable(m_Postoffice, m_PostofficeStructure, false))

            {
                Log.Message(string.Format("Load Table:{0} OK! Record({1})", Tab_Postoffice.GetInstanceFile(), m_Postoffice.Count));
            }
            yield return(null);

            if (Tab_Rental.LoadTable(m_Rental, m_RentalStructure, false))

            {
                Log.Message(string.Format("Load Table:{0} OK! Record({1})", Tab_Rental.GetInstanceFile(), m_Rental.Count));
            }
            yield return(null);

            yield return(null);
        }
Beispiel #2
0
 public Hashtable GetHospial()
 {
     if (!Tab_Hospial.IsTableLoaded)
     {
         Tab_Hospial.LoadTable(m_Hospial, m_HospialStructure, false);
     }
     return(m_Hospial);
 }
Beispiel #3
0
 public Tab_Hospial GetHospialById(int nIdex)
 {
     if (GetHospial().ContainsKey(nIdex))
     {
         return(m_Hospial[nIdex] as Tab_Hospial);
     }
     else
     {
         return(Tab_Hospial.LoadTableItem(nIdex, m_Hospial, m_HospialStructure));
     }
 }
Beispiel #4
0
        public static void SerializableTable(string[] values, int nKey, Hashtable _hash)
        {
            if (values == null)
            {
                throw TableException.ErrorReader("values is null. Table: {0}  Key:{1}.", GetInstanceFile(), nKey);
            }
            if (values.Length != VALUE_NUM_PER_ROW)
            {
                throw TableException.ErrorReader("Load {0}  error as CodeSize:{1} not Equal DataSize:{2}", GetInstanceFile(), VALUE_NUM_PER_ROW, values.Length);
            }
            Tab_Hospial tabData = new Tab_Hospial();

            tabData.m_Cost       = BasicUtil.EncryptInt32Value(Convert.ToInt32(values[3]));
            tabData.m_HealtheMax = BasicUtil.EncryptInt32Value(Convert.ToInt32(values[2]));
            tabData.m_HealtheMin = BasicUtil.EncryptInt32Value(Convert.ToInt32(values[1]));
            tabData.m_ID         = nKey;
            tabData.m_Introduce  = values[0];

            _hash.Add(nKey, tabData);
        }