Ejemplo n.º 1
0
    static int set_Receive(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            SingleWeb        obj       = (SingleWeb)o;
            OnReceiveMessage arg0      = null;
            LuaTypes         funcType2 = LuaDLL.lua_type(L, 2);

            if (funcType2 != LuaTypes.LUA_TFUNCTION)
            {
                arg0 = (OnReceiveMessage)ToLua.CheckObject(L, 2, typeof(OnReceiveMessage));
            }
            else
            {
                LuaFunction func = ToLua.ToLuaFunction(L, 2);
                arg0 = DelegateFactory.CreateDelegate(typeof(OnReceiveMessage), func) as OnReceiveMessage;
            }

            obj.Receive = arg0;
            return(0);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index Receive on a nil value" : e.Message));
        }
    }
Ejemplo n.º 2
0
 static int Show(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         SingleWeb obj = (SingleWeb)ToLua.CheckObject(L, 1, typeof(SingleWeb));
         obj.Show();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
Ejemplo n.º 3
0
 static int Init(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         SingleWeb obj  = (SingleWeb)ToLua.CheckObject(L, 1, typeof(SingleWeb));
         string    arg0 = ToLua.CheckString(L, 2);
         obj.Init(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
Ejemplo n.º 4
0
 static int GetDicObj(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         SingleWeb obj  = (SingleWeb)ToLua.CheckObject(L, 1, typeof(SingleWeb));
         string    arg0 = ToLua.CheckString(L, 2);
         WebPage   o    = obj.GetDicObj(arg0);
         ToLua.PushObject(L, o);
         return(1);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
Ejemplo n.º 5
0
    static int set_dic(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            SingleWeb obj = (SingleWeb)o;
            System.Collections.Generic.Dictionary <string, WebPage> arg0 = (System.Collections.Generic.Dictionary <string, WebPage>)ToLua.CheckObject(L, 2, typeof(System.Collections.Generic.Dictionary <string, WebPage>));
            obj.dic = arg0;
            return(0);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index dic on a nil value" : e.Message));
        }
    }
Ejemplo n.º 6
0
    static int set__webView(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            SingleWeb  obj  = (SingleWeb)o;
            UniWebView arg0 = (UniWebView)ToLua.CheckUnityObject(L, 2, typeof(UniWebView));
            obj._webView = arg0;
            return(0);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index _webView on a nil value" : e.Message));
        }
    }
Ejemplo n.º 7
0
    static int set_url(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            SingleWeb obj  = (SingleWeb)o;
            string    arg0 = ToLua.CheckString(L, 2);
            obj.url = arg0;
            return(0);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index url on a nil value" : e.Message));
        }
    }
Ejemplo n.º 8
0
    static int get_dic(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            SingleWeb obj = (SingleWeb)o;
            System.Collections.Generic.Dictionary <string, WebPage> ret = obj.dic;
            ToLua.PushObject(L, ret);
            return(1);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index dic on a nil value" : e.Message));
        }
    }
Ejemplo n.º 9
0
    static int get_Receive(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            SingleWeb        obj = (SingleWeb)o;
            OnReceiveMessage ret = obj.Receive;
            ToLua.Push(L, ret);
            return(1);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index Receive on a nil value" : e.Message));
        }
    }
Ejemplo n.º 10
0
    static int get_url(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            SingleWeb obj = (SingleWeb)o;
            string    ret = obj.url;
            LuaDLL.lua_pushstring(L, ret);
            return(1);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index url on a nil value" : e.Message));
        }
    }
Ejemplo n.º 11
0
    static int get__webView(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            SingleWeb  obj = (SingleWeb)o;
            UniWebView ret = obj._webView;
            ToLua.Push(L, ret);
            return(1);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index _webView on a nil value" : e.Message));
        }
    }
Ejemplo n.º 12
0
 static int setsize(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 5);
         SingleWeb obj  = (SingleWeb)ToLua.CheckObject(L, 1, typeof(SingleWeb));
         int       arg0 = (int)LuaDLL.luaL_checknumber(L, 2);
         int       arg1 = (int)LuaDLL.luaL_checknumber(L, 3);
         int       arg2 = (int)LuaDLL.luaL_checknumber(L, 4);
         int       arg3 = (int)LuaDLL.luaL_checknumber(L, 5);
         obj.setsize(arg0, arg1, arg2, arg3);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }