少年修仙传客户端基础资源
Client_PangDeRong
2018-11-10 f08f1cb1c33396b641fd6448b14c1227235b498f
Assets/XLua/Gen/FeatureNoticeModelWrap.cs
@@ -21,7 +21,7 @@
        {
         ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
         System.Type type = typeof(FeatureNoticeModel);
         Utils.BeginObjectRegister(type, L, translator, 0, 6, 3, 3);
         Utils.BeginObjectRegister(type, L, translator, 0, 9, 6, 6);
         
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnBeforePlayerDataInitialize", _m_OnBeforePlayerDataInitialize);
@@ -29,13 +29,22 @@
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "WhetherToPlayTheBox", _m_WhetherToPlayTheBox);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetOpenLv", _m_GetOpenLv);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "OpenFuncAwardState", _m_OpenFuncAwardState);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "SendGetAward", _m_SendGetAward);
         
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateAwarfItem", _e_UpdateAwarfItem);
         
         Utils.RegisterFunc(L, Utils.GETTER_IDX, "FunctionList", _g_get_FunctionList);
            Utils.RegisterFunc(L, Utils.GETTER_IDX, "DicAwardItem", _g_get_DicAwardItem);
            Utils.RegisterFunc(L, Utils.GETTER_IDX, "DicOpenFuncState", _g_get_DicOpenFuncState);
            Utils.RegisterFunc(L, Utils.GETTER_IDX, "DicRedPoint", _g_get_DicRedPoint);
            Utils.RegisterFunc(L, Utils.GETTER_IDX, "redPointStre1", _g_get_redPointStre1);
            Utils.RegisterFunc(L, Utils.GETTER_IDX, "FunctionForecastIndex", _g_get_FunctionForecastIndex);
            
         Utils.RegisterFunc(L, Utils.SETTER_IDX, "FunctionList", _s_set_FunctionList);
            Utils.RegisterFunc(L, Utils.SETTER_IDX, "DicAwardItem", _s_set_DicAwardItem);
            Utils.RegisterFunc(L, Utils.SETTER_IDX, "DicOpenFuncState", _s_set_DicOpenFuncState);
            Utils.RegisterFunc(L, Utils.SETTER_IDX, "DicRedPoint", _s_set_DicRedPoint);
            Utils.RegisterFunc(L, Utils.SETTER_IDX, "redPointStre1", _s_set_redPointStre1);
            Utils.RegisterFunc(L, Utils.SETTER_IDX, "FunctionForecastIndex", _s_set_FunctionForecastIndex);
            
@@ -248,6 +257,62 @@
            
        }
        
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_OpenFuncAwardState(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                FeatureNoticeModel gen_to_be_invoked = (FeatureNoticeModel)translator.FastGetCSObj(L, 1);
                {
                    HA302_tagMCFuncOpenStateList _info = (HA302_tagMCFuncOpenStateList)translator.GetObject(L, 2, typeof(HA302_tagMCFuncOpenStateList));
                    gen_to_be_invoked.OpenFuncAwardState( _info );
                    return 0;
                }
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_SendGetAward(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                FeatureNoticeModel gen_to_be_invoked = (FeatureNoticeModel)translator.FastGetCSObj(L, 1);
                {
                    int _OpenFuncId = LuaAPI.xlua_tointeger(L, 2);
                    gen_to_be_invoked.SendGetAward( _OpenFuncId );
                    return 0;
                }
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
        }
        
        
        
@@ -259,6 +324,48 @@
         
                FeatureNoticeModel gen_to_be_invoked = (FeatureNoticeModel)translator.FastGetCSObj(L, 1);
                translator.Push(L, gen_to_be_invoked.FunctionList);
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
            return 1;
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _g_get_DicAwardItem(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                FeatureNoticeModel gen_to_be_invoked = (FeatureNoticeModel)translator.FastGetCSObj(L, 1);
                translator.Push(L, gen_to_be_invoked.DicAwardItem);
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
            return 1;
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _g_get_DicOpenFuncState(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                FeatureNoticeModel gen_to_be_invoked = (FeatureNoticeModel)translator.FastGetCSObj(L, 1);
                translator.Push(L, gen_to_be_invoked.DicOpenFuncState);
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
            return 1;
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _g_get_DicRedPoint(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                FeatureNoticeModel gen_to_be_invoked = (FeatureNoticeModel)translator.FastGetCSObj(L, 1);
                translator.Push(L, gen_to_be_invoked.DicRedPoint);
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
@@ -311,6 +418,51 @@
        }
        
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _s_set_DicAwardItem(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                FeatureNoticeModel gen_to_be_invoked = (FeatureNoticeModel)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.DicAwardItem = (System.Collections.Generic.Dictionary<int, Snxxz.UI.ImpactRankModel.RankAwardItem>)translator.GetObject(L, 2, typeof(System.Collections.Generic.Dictionary<int, Snxxz.UI.ImpactRankModel.RankAwardItem>));
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
            return 0;
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _s_set_DicOpenFuncState(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                FeatureNoticeModel gen_to_be_invoked = (FeatureNoticeModel)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.DicOpenFuncState = (System.Collections.Generic.Dictionary<int, FeatureNoticeModel.OpenFuncState>)translator.GetObject(L, 2, typeof(System.Collections.Generic.Dictionary<int, FeatureNoticeModel.OpenFuncState>));
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
            return 0;
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _s_set_DicRedPoint(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                FeatureNoticeModel gen_to_be_invoked = (FeatureNoticeModel)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.DicRedPoint = (System.Collections.Generic.Dictionary<int, Snxxz.UI.Redpoint>)translator.GetObject(L, 2, typeof(System.Collections.Generic.Dictionary<int, Snxxz.UI.Redpoint>));
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
            return 0;
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _s_set_redPointStre1(RealStatePtr L)
        {
          try {
@@ -342,6 +494,40 @@
        
      
      
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _e_UpdateAwarfItem(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
             int gen_param_count = LuaAPI.lua_gettop(L);
         FeatureNoticeModel gen_to_be_invoked = (FeatureNoticeModel)translator.FastGetCSObj(L, 1);
                System.Action gen_delegate = translator.GetDelegate<System.Action>(L, 3);
                if (gen_delegate == null) {
                    return LuaAPI.luaL_error(L, "#3 need System.Action!");
                }
            if (gen_param_count == 3)
            {
               if (LuaAPI.xlua_is_eq_str(L, 2, "+")) {
                  gen_to_be_invoked.UpdateAwarfItem += gen_delegate;
                  return 0;
               }
               if (LuaAPI.xlua_is_eq_str(L, 2, "-")) {
                  gen_to_be_invoked.UpdateAwarfItem -= gen_delegate;
                  return 0;
               }
            }
         } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
         LuaAPI.luaL_error(L, "invalid arguments to FeatureNoticeModel.UpdateAwarfItem!");
            return 0;
        }
      
      
    }