forked from kisence-mian/MyUnityFrameWork
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIWindowLuaHelperWrap.cs
More file actions
259 lines (238 loc) · 6.17 KB
/
Copy pathUIWindowLuaHelperWrap.cs
File metadata and controls
259 lines (238 loc) · 6.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
//this source code was auto-generated by tolua#, do not modify it
using System;
using LuaInterface;
public class UIWindowLuaHelperWrap
{
public static void Register(LuaState L)
{
L.BeginClass(typeof(UIWindowLuaHelper), typeof(UIWindowBase));
L.RegFunction("OnInit", OnInit);
L.RegFunction("OnOpen", OnOpen);
L.RegFunction("OnShow", OnShow);
L.RegFunction("OnHide", OnHide);
L.RegFunction("EnterAnim", EnterAnim);
L.RegFunction("OnCompleteEnterAnim", OnCompleteEnterAnim);
L.RegFunction("OnRefresh", OnRefresh);
L.RegFunction("OnClose", OnClose);
L.RegFunction("ExitAnim", ExitAnim);
L.RegFunction("OnCompleteExitAnim", OnCompleteExitAnim);
L.RegFunction("__eq", op_Equality);
L.RegFunction("__tostring", ToLua.op_ToString);
L.EndClass();
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int OnInit(IntPtr L)
{
try
{
ToLua.CheckArgsCount(L, 1);
UIWindowLuaHelper obj = (UIWindowLuaHelper)ToLua.CheckObject(L, 1, typeof(UIWindowLuaHelper));
obj.OnInit();
return 0;
}
catch(Exception e)
{
return LuaDLL.toluaL_exception(L, e);
}
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int OnOpen(IntPtr L)
{
try
{
ToLua.CheckArgsCount(L, 1);
UIWindowLuaHelper obj = (UIWindowLuaHelper)ToLua.CheckObject(L, 1, typeof(UIWindowLuaHelper));
obj.OnOpen();
return 0;
}
catch(Exception e)
{
return LuaDLL.toluaL_exception(L, e);
}
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int OnShow(IntPtr L)
{
try
{
ToLua.CheckArgsCount(L, 1);
UIWindowLuaHelper obj = (UIWindowLuaHelper)ToLua.CheckObject(L, 1, typeof(UIWindowLuaHelper));
obj.OnShow();
return 0;
}
catch(Exception e)
{
return LuaDLL.toluaL_exception(L, e);
}
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int OnHide(IntPtr L)
{
try
{
ToLua.CheckArgsCount(L, 1);
UIWindowLuaHelper obj = (UIWindowLuaHelper)ToLua.CheckObject(L, 1, typeof(UIWindowLuaHelper));
obj.OnHide();
return 0;
}
catch(Exception e)
{
return LuaDLL.toluaL_exception(L, e);
}
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int EnterAnim(IntPtr L)
{
try
{
int count = LuaDLL.lua_gettop(L);
UIWindowLuaHelper obj = (UIWindowLuaHelper)ToLua.CheckObject(L, 1, typeof(UIWindowLuaHelper));
UIAnimCallBack arg0 = null;
LuaTypes funcType2 = LuaDLL.lua_type(L, 2);
if (funcType2 != LuaTypes.LUA_TFUNCTION)
{
arg0 = (UIAnimCallBack)ToLua.CheckObject(L, 2, typeof(UIAnimCallBack));
}
else
{
LuaFunction func = ToLua.ToLuaFunction(L, 2);
arg0 = DelegateFactory.CreateDelegate(typeof(UIAnimCallBack), func) as UIAnimCallBack;
}
UICallBack arg1 = null;
LuaTypes funcType3 = LuaDLL.lua_type(L, 3);
if (funcType3 != LuaTypes.LUA_TFUNCTION)
{
arg1 = (UICallBack)ToLua.CheckObject(L, 3, typeof(UICallBack));
}
else
{
LuaFunction func = ToLua.ToLuaFunction(L, 3);
arg1 = DelegateFactory.CreateDelegate(typeof(UICallBack), func) as UICallBack;
}
object[] arg2 = ToLua.ToParamsObject(L, 4, count - 3);
System.Collections.IEnumerator o = obj.EnterAnim(arg0, arg1, arg2);
ToLua.Push(L, o);
return 1;
}
catch(Exception e)
{
return LuaDLL.toluaL_exception(L, e);
}
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int OnCompleteEnterAnim(IntPtr L)
{
try
{
ToLua.CheckArgsCount(L, 1);
UIWindowLuaHelper obj = (UIWindowLuaHelper)ToLua.CheckObject(L, 1, typeof(UIWindowLuaHelper));
obj.OnCompleteEnterAnim();
return 0;
}
catch(Exception e)
{
return LuaDLL.toluaL_exception(L, e);
}
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int OnRefresh(IntPtr L)
{
try
{
ToLua.CheckArgsCount(L, 1);
UIWindowLuaHelper obj = (UIWindowLuaHelper)ToLua.CheckObject(L, 1, typeof(UIWindowLuaHelper));
obj.OnRefresh();
return 0;
}
catch(Exception e)
{
return LuaDLL.toluaL_exception(L, e);
}
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int OnClose(IntPtr L)
{
try
{
ToLua.CheckArgsCount(L, 1);
UIWindowLuaHelper obj = (UIWindowLuaHelper)ToLua.CheckObject(L, 1, typeof(UIWindowLuaHelper));
obj.OnClose();
return 0;
}
catch(Exception e)
{
return LuaDLL.toluaL_exception(L, e);
}
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int ExitAnim(IntPtr L)
{
try
{
int count = LuaDLL.lua_gettop(L);
UIWindowLuaHelper obj = (UIWindowLuaHelper)ToLua.CheckObject(L, 1, typeof(UIWindowLuaHelper));
UIAnimCallBack arg0 = null;
LuaTypes funcType2 = LuaDLL.lua_type(L, 2);
if (funcType2 != LuaTypes.LUA_TFUNCTION)
{
arg0 = (UIAnimCallBack)ToLua.CheckObject(L, 2, typeof(UIAnimCallBack));
}
else
{
LuaFunction func = ToLua.ToLuaFunction(L, 2);
arg0 = DelegateFactory.CreateDelegate(typeof(UIAnimCallBack), func) as UIAnimCallBack;
}
UICallBack arg1 = null;
LuaTypes funcType3 = LuaDLL.lua_type(L, 3);
if (funcType3 != LuaTypes.LUA_TFUNCTION)
{
arg1 = (UICallBack)ToLua.CheckObject(L, 3, typeof(UICallBack));
}
else
{
LuaFunction func = ToLua.ToLuaFunction(L, 3);
arg1 = DelegateFactory.CreateDelegate(typeof(UICallBack), func) as UICallBack;
}
object[] arg2 = ToLua.ToParamsObject(L, 4, count - 3);
System.Collections.IEnumerator o = obj.ExitAnim(arg0, arg1, arg2);
ToLua.Push(L, o);
return 1;
}
catch(Exception e)
{
return LuaDLL.toluaL_exception(L, e);
}
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int OnCompleteExitAnim(IntPtr L)
{
try
{
ToLua.CheckArgsCount(L, 1);
UIWindowLuaHelper obj = (UIWindowLuaHelper)ToLua.CheckObject(L, 1, typeof(UIWindowLuaHelper));
obj.OnCompleteExitAnim();
return 0;
}
catch(Exception e)
{
return LuaDLL.toluaL_exception(L, e);
}
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int op_Equality(IntPtr L)
{
try
{
ToLua.CheckArgsCount(L, 2);
UnityEngine.Object arg0 = (UnityEngine.Object)ToLua.ToObject(L, 1);
UnityEngine.Object arg1 = (UnityEngine.Object)ToLua.ToObject(L, 2);
bool o = arg0 == arg1;
LuaDLL.lua_pushboolean(L, o);
return 1;
}
catch(Exception e)
{
return LuaDLL.toluaL_exception(L, e);
}
}
}