Exemplo n.º 1
0
        static int _g_get_loaded(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                FairyGUI.IUISource gen_to_be_invoked = (FairyGUI.IUISource)translator.FastGetCSObj(L, 1);
                LuaAPI.lua_pushboolean(L, gen_to_be_invoked.loaded);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(1);
        }
Exemplo n.º 2
0
        static int _s_set_fileName(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                FairyGUI.IUISource gen_to_be_invoked = (FairyGUI.IUISource)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.fileName = LuaAPI.lua_tostring(L, 2);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(0);
        }
Exemplo n.º 3
0
 static int AddUISource(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         FairyGUI.Window    obj  = (FairyGUI.Window)ToLua.CheckObject(L, 1, typeof(FairyGUI.Window));
         FairyGUI.IUISource arg0 = (FairyGUI.IUISource)ToLua.CheckObject(L, 2, typeof(FairyGUI.IUISource));
         obj.AddUISource(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
        static StackObject *AddUISource_2(ILIntepreter __intp, StackObject *__esp, IList <object> __mStack, CLRMethod __method, bool isNewObj)
        {
            ILRuntime.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain;
            StackObject *ptr_of_this_method;
            StackObject *__ret = ILIntepreter.Minus(__esp, 2);

            ptr_of_this_method = ILIntepreter.Minus(__esp, 1);
            FairyGUI.IUISource @source = (FairyGUI.IUISource) typeof(FairyGUI.IUISource).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack));
            __intp.Free(ptr_of_this_method);

            ptr_of_this_method = ILIntepreter.Minus(__esp, 2);
            FairyGUI.Window instance_of_this_method = (FairyGUI.Window) typeof(FairyGUI.Window).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack));
            __intp.Free(ptr_of_this_method);

            instance_of_this_method.AddUISource(@source);

            return(__ret);
        }
Exemplo n.º 5
0
        static int _m_Load(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                FairyGUI.IUISource gen_to_be_invoked = (FairyGUI.IUISource)translator.FastGetCSObj(L, 1);



                {
                    FairyGUI.UILoadCallback _callback = translator.GetDelegate <FairyGUI.UILoadCallback>(L, 2);

                    gen_to_be_invoked.Load(_callback);



                    return(0);
                }
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
        }
Exemplo n.º 6
0
        static int _m_AddUISource(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                FairyGUI.Window gen_to_be_invoked = (FairyGUI.Window)translator.FastGetCSObj(L, 1);



                {
                    FairyGUI.IUISource _source = (FairyGUI.IUISource)translator.GetObject(L, 2, typeof(FairyGUI.IUISource));

                    gen_to_be_invoked.AddUISource(_source);



                    return(0);
                }
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
        }