少年修仙传客户端代码仓库
client_Wu Xijin
2018-12-10 5635b0d770383333238f2dcdc0824392aefdc537
Lua/Gen/StoreModelWrap.cs
@@ -21,7 +21,7 @@
        {
         ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
         System.Type type = typeof(StoreModel);
         Utils.BeginObjectRegister(type, L, translator, 0, 59, 27, 10);
         Utils.BeginObjectRegister(type, L, translator, 0, 65, 27, 10);
         
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnBeforePlayerDataInitialize", _m_OnBeforePlayerDataInitialize);
@@ -64,6 +64,10 @@
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetShopRedpoint", _m_SetShopRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateFreeShopRedpoint", _m_UpdateFreeShopRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateCanBuyRedpoint", _m_UpdateCanBuyRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateFairyEquipRedpoint", _m_UpdateFairyEquipRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "ClearFairyEquipRedpoint", _m_ClearFairyEquipRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "SwitchFuncTitleClearRedpoint", _m_SwitchFuncTitleClearRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetFairySaveKey", _m_TryGetFairySaveKey);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateMustBuyRedpoint", _m_UpdateMustBuyRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "ClearMustBuyRedpoint", _m_ClearMustBuyRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetIsMustBuyDay", _m_SetIsMustBuyDay);
@@ -71,6 +75,8 @@
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdatePetAndMountPutAwayRedpoint", _m_UpdatePetAndMountPutAwayRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "ClearPetAndMountRedpoint", _m_ClearPetAndMountRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "ClearAllPetAndMountRedpoint", _m_ClearAllPetAndMountRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "CloseRedPoint", _m_CloseRedPoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "CloseAllRedpoint", _m_CloseAllRedpoint);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetPushPetAndMountWinState", _m_SetPushPetAndMountWinState);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "CheckIsShowPush", _m_CheckIsShowPush);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "ClearPushData", _m_ClearPushData);
@@ -1378,6 +1384,121 @@
        }
        
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_UpdateFairyEquipRedpoint(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                StoreModel gen_to_be_invoked = (StoreModel)translator.FastGetCSObj(L, 1);
                {
                    gen_to_be_invoked.UpdateFairyEquipRedpoint(  );
                    return 0;
                }
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_ClearFairyEquipRedpoint(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                StoreModel gen_to_be_invoked = (StoreModel)translator.FastGetCSObj(L, 1);
                {
                    TableConfig.StoreConfig _storeConfig = (TableConfig.StoreConfig)translator.GetObject(L, 2, typeof(TableConfig.StoreConfig));
                    gen_to_be_invoked.ClearFairyEquipRedpoint( _storeConfig );
                    return 0;
                }
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_SwitchFuncTitleClearRedpoint(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                StoreModel gen_to_be_invoked = (StoreModel)translator.FastGetCSObj(L, 1);
                {
                    StoreFunc _storeFunc;translator.Get(L, 2, out _storeFunc);
                    gen_to_be_invoked.SwitchFuncTitleClearRedpoint( _storeFunc );
                    return 0;
                }
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_TryGetFairySaveKey(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                StoreModel gen_to_be_invoked = (StoreModel)translator.FastGetCSObj(L, 1);
                {
                    TableConfig.StoreConfig _config = (TableConfig.StoreConfig)translator.GetObject(L, 2, typeof(TableConfig.StoreConfig));
                    string _fairySaveKey;
                        bool gen_ret = gen_to_be_invoked.TryGetFairySaveKey( _config, out _fairySaveKey );
                        LuaAPI.lua_pushboolean(L, gen_ret);
                    LuaAPI.lua_pushstring(L, _fairySaveKey);
                    return 2;
                }
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_UpdateMustBuyRedpoint(RealStatePtr L)
        {
          try {
@@ -1572,6 +1693,62 @@
        }
        
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_CloseRedPoint(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                StoreModel gen_to_be_invoked = (StoreModel)translator.FastGetCSObj(L, 1);
                {
                    TableConfig.StoreConfig _storeConfig = (TableConfig.StoreConfig)translator.GetObject(L, 2, typeof(TableConfig.StoreConfig));
                    gen_to_be_invoked.CloseRedPoint( _storeConfig );
                    return 0;
                }
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_CloseAllRedpoint(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                StoreModel gen_to_be_invoked = (StoreModel)translator.FastGetCSObj(L, 1);
                {
                    StoreFunc _storeFunc;translator.Get(L, 2, out _storeFunc);
                    gen_to_be_invoked.CloseAllRedpoint( _storeFunc );
                    return 0;
                }
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_SetPushPetAndMountWinState(RealStatePtr L)
        {
          try {