| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589 |
- #if USE_UNI_LUA
- using LuaAPI = UniLua.Lua;
- using RealStatePtr = UniLua.ILuaState;
- using LuaCSFunction = UniLua.CSharpFunctionDelegate;
- #else
- using LuaAPI = XLua.LuaDLL.Lua;
- using RealStatePtr = System.IntPtr;
- using LuaCSFunction = XLua.LuaDLL.lua_CSFunction;
- #endif
- using XLua;
- using System.Collections.Generic;
- <%ForEachCsList(namespaces, function(namespace)%>using <%=namespace%>;<%end)%>
- <%
- require "TemplateCommon"
- local OpNameMap = {
- op_Addition = "__AddMeta",
- op_Subtraction = "__SubMeta",
- op_Multiply = "__MulMeta",
- op_Division = "__DivMeta",
- op_Equality = "__EqMeta",
- op_UnaryNegation = "__UnmMeta",
- op_LessThan = "__LTMeta",
- op_LessThanOrEqual = "__LEMeta",
- op_Modulus = "__ModMeta",
- op_BitwiseAnd = "__BandMeta",
- op_BitwiseOr = "__BorMeta",
- op_ExclusiveOr = "__BxorMeta",
- op_OnesComplement = "__BnotMeta",
- op_LeftShift = "__ShlMeta",
- op_RightShift = "__ShrMeta",
- }
- local OpCallNameMap = {
- op_Addition = "+",
- op_Subtraction = "-",
- op_Multiply = "*",
- op_Division = "/",
- op_Equality = "==",
- op_UnaryNegation = "-",
- op_LessThan = "<",
- op_LessThanOrEqual = "<=",
- op_Modulus = "%",
- op_BitwiseAnd = "&",
- op_BitwiseOr = "|",
- op_ExclusiveOr = "^",
- op_OnesComplement = "~",
- op_LeftShift = "<<",
- op_RightShift = ">>",
- }
- local obj_method_count = 0
- local obj_getter_count = 0
- local obj_setter_count = 0
- local meta_func_count = operators.Count
- local cls_field_count = 1
- local cls_getter_count = 0
- local cls_setter_count = 0
- ForEachCsList(methods, function(method)
- if method.IsStatic then
- cls_field_count = cls_field_count + 1
- else
- obj_method_count = obj_method_count + 1
- end
- end)
- ForEachCsList(events, function(event)
- if event.IsStatic then
- cls_field_count = cls_field_count + 1
- else
- obj_method_count = obj_method_count + 1
- end
- end)
- ForEachCsList(getters, function(getter)
- if getter.IsStatic then
- if getter.ReadOnly then
- cls_field_count = cls_field_count + 1
- else
- cls_getter_count = cls_getter_count + 1
- end
- else
- obj_getter_count = obj_getter_count + 1
- end
- end)
- ForEachCsList(setters, function(setter)
- if setter.IsStatic then
- cls_setter_count = cls_setter_count + 1
- else
- obj_setter_count = obj_setter_count + 1
- end
- end)
- ForEachCsList(lazymembers, function(lazymember)
- if lazymember.IsStatic == 'true' then
- if 'CLS_IDX' == lazymember.Index then
- cls_field_count = cls_field_count + 1
- elseif 'CLS_GETTER_IDX' == lazymember.Index then
- cls_getter_count = cls_getter_count + 1
- elseif 'CLS_SETTER_IDX' == lazymember.Index then
- cls_setter_count = cls_setter_count + 1
- end
- else
- if 'METHOD_IDX' == lazymember.Index then
- obj_method_count = obj_method_count + 1
- elseif 'GETTER_IDX' == lazymember.Index then
- obj_getter_count = obj_getter_count + 1
- elseif 'SETTER_IDX' == lazymember.Index then
- obj_setter_count = obj_setter_count + 1
- end
- end
- end)
- local generic_arg_list, type_constraints = GenericArgumentList(type)
- %>
- namespace XLua.CSObjectWrap
- {
- using Utils = XLua.Utils;
- public class <%=CSVariableName(type)%>Wrap<%=generic_arg_list%> <%=type_constraints%>
- {
- public static void __Register(RealStatePtr L)
- {
- ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
- System.Type type = typeof(<%=CsFullTypeName(type)%>);
- Utils.BeginObjectRegister(type, L, translator, <%=meta_func_count%>, <%=obj_method_count%>, <%=obj_getter_count%>, <%=obj_setter_count%>);
- <%ForEachCsList(operators, function(operator)%>Utils.RegisterFunc(L, Utils.OBJ_META_IDX, "<%=(OpNameMap[operator.Name]):gsub('Meta', ''):lower()%>", <%=OpNameMap[operator.Name]%>);
- <%end)%>
- <%ForEachCsList(methods, function(method) if not method.IsStatic then %>Utils.RegisterFunc(L, Utils.METHOD_IDX, "<%=method.Name%>", _m_<%=method.Name%>);
- <% end end)%>
- <%ForEachCsList(events, function(event) if not event.IsStatic then %>Utils.RegisterFunc(L, Utils.METHOD_IDX, "<%=event.Name%>", _e_<%=event.Name%>);
- <% end end)%>
- <%ForEachCsList(getters, function(getter) if not getter.IsStatic then %>Utils.RegisterFunc(L, Utils.GETTER_IDX, "<%=getter.Name%>", _g_get_<%=getter.Name%>);
- <%end end)%>
- <%ForEachCsList(setters, function(setter) if not setter.IsStatic then %>Utils.RegisterFunc(L, Utils.SETTER_IDX, "<%=setter.Name%>", _s_set_<%=setter.Name%>);
- <%end end)%>
- <%ForEachCsList(lazymembers, function(lazymember) if lazymember.IsStatic == 'false' then %>Utils.RegisterLazyFunc(L, Utils.<%=lazymember.Index%>, "<%=lazymember.Name%>", type, <%=lazymember.MemberType%>, <%=lazymember.IsStatic%>);
- <%end end)%>
- Utils.EndObjectRegister(type, L, translator, <% if type.IsArray or ((indexers.Count or 0) > 0) then %>__CSIndexer<%else%>null<%end%>, <%if type.IsArray or ((newindexers.Count or 0) > 0) then%>__NewIndexer<%else%>null<%end%>,
- null, null, null);
- Utils.BeginClassRegister(type, L, __CreateInstance, <%=cls_field_count%>, <%=cls_getter_count%>, <%=cls_setter_count%>);
- <%ForEachCsList(methods, function(method) if method.IsStatic then %>Utils.RegisterFunc(L, Utils.CLS_IDX, "<%=method.Overloads[0].Name%>", _m_<%=method.Name%>);
- <% end end)%>
- <%ForEachCsList(events, function(event) if event.IsStatic then %>Utils.RegisterFunc(L, Utils.CLS_IDX, "<%=event.Name%>", _e_<%=event.Name%>);
- <% end end)%>
- <%ForEachCsList(getters, function(getter) if getter.IsStatic and getter.ReadOnly then %>Utils.RegisterObject(L, translator, Utils.CLS_IDX, "<%=getter.Name%>", <%=CsFullTypeName(type).."."..getter.Name%>);
- <%end end)%>
- <%ForEachCsList(getters, function(getter) if getter.IsStatic and (not getter.ReadOnly) then %>Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "<%=getter.Name%>", _g_get_<%=getter.Name%>);
- <%end end)%>
- <%ForEachCsList(setters, function(setter) if setter.IsStatic then %>Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "<%=setter.Name%>", _s_set_<%=setter.Name%>);
- <%end end)%>
- <%ForEachCsList(lazymembers, function(lazymember) if lazymember.IsStatic == 'true' then %>Utils.RegisterLazyFunc(L, Utils.<%=lazymember.Index%>, "<%=lazymember.Name%>", type, <%=lazymember.MemberType%>, <%=lazymember.IsStatic%>);
- <%end end)%>
- Utils.EndClassRegister(type, L, translator);
- }
-
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int __CreateInstance(RealStatePtr L)
- {
- <%
- if constructors.Count == 0 and (not type.IsValueType) then
- %>return LuaAPI.luaL_error(L, "<%=CsFullTypeName(type)%> does not have a constructor!");<%
- else %>
- try {
- ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
- <%
- local hasZeroParamsCtor = false
- ForEachCsList(constructors, function(constructor, ci)
- local parameters = constructor:GetParameters()
- if parameters.Length == 0 then
- hasZeroParamsCtor = true
- end
- local def_count = constructor_def_vals[ci]
- local param_count = parameters.Length
- local in_num = CalcCsList(parameters, function(p) return not (p.IsOut and p.ParameterType.IsByRef) end)
- local out_num = CalcCsList(parameters, function(p) return p.IsOut or p.ParameterType.IsByRef end)
- local real_param_count = param_count - def_count
- local has_v_params = param_count > 0 and IsParams(parameters[param_count - 1])
- local in_pos = 0
- %>if(LuaAPI.lua_gettop(L) <%=has_v_params and ">=" or "=="%> <%=in_num + 1 - def_count - (has_v_params and 1 or 0)%><%ForEachCsList(parameters, function(parameter, pi)
- if pi >= real_param_count then return end
- local parameterType = parameter.ParameterType
- if has_v_params and pi == param_count - 1 then parameterType = parameterType:GetElementType() end
- if not (parameter.IsOut and parameter.ParameterType.IsByRef) then in_pos = in_pos + 1
- %> && <%=GetCheckStatement(parameterType, in_pos+1, has_v_params and pi == param_count - 1)%><%
- end
- end)%>)
- {
- <%ForEachCsList(parameters, function(parameter, pi)
- if pi >= real_param_count then return end
- %><%=GetCasterStatement(parameter.ParameterType, pi+2, LocalName(parameter.Name), true, has_v_params and pi == param_count - 1)%>;
- <%end)%>
- var gen_ret = new <%=CsFullTypeName(type)%>(<%ForEachCsList(parameters, function(parameter, pi) if pi >= real_param_count then return end; if pi ~=0 then %><%=', '%><% end ;if parameter.IsOut and parameter.ParameterType.IsByRef then %>out <% elseif parameter.ParameterType.IsByRef and not parameter.IsIn then %>ref <% end %><%=LocalName(parameter.Name)%><% end)%>);
- <%=GetPushStatement(type, "gen_ret")%>;
- <%local in_pos = 0
- ForEachCsList(parameters, function(parameter, pi)
- if pi >= real_param_count then return end
- if not (parameter.IsOut and parameter.ParameterType.IsByRef) then
- in_pos = in_pos + 1
- end
- if parameter.ParameterType.IsByRef then
- %><%=GetPushStatement(parameter.ParameterType:GetElementType(), LocalName(parameter.Name))%>;
- <%if not parameter.IsOut and parameter.ParameterType.IsByRef and NeedUpdate(parameter.ParameterType) then
- %><%=GetUpdateStatement(parameter.ParameterType:GetElementType(), in_pos+1, LocalName(parameter.Name))%>;
- <%end%>
- <%
- end
- end)
- %>
- return <%=out_num + 1%>;
- }
- <%end)
- if (not hasZeroParamsCtor) and type.IsValueType then
- %>
- if (LuaAPI.lua_gettop(L) == 1)
- {
- <%=GetPushStatement(type, "default(" .. CsFullTypeName(type).. ")")%>;
- return 1;
- }
- <%end%>
- }
- catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- return LuaAPI.luaL_error(L, "invalid arguments to <%=CsFullTypeName(type)%> constructor!");
- <% end %>
- }
-
- <% if type.IsArray or ((indexers.Count or 0) > 0) then %>
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- public static int __CSIndexer(RealStatePtr L)
- {
- <%if type.IsArray then %>
- try {
- ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
-
- if (<%=GetCheckStatement(type, 1)%> && LuaAPI.lua_isnumber(L, 2))
- {
- int index = (int)LuaAPI.lua_tonumber(L, 2);
- <%=GetSelfStatement(type)%>;
- LuaAPI.lua_pushboolean(L, true);
- <%=GetPushStatement(type:GetElementType(), "gen_to_be_invoked[index]")%>;
- return 2;
- }
- }
- catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- <%elseif indexers.Count > 0 then
- %>try {
- ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
- <%
- ForEachCsList(indexers, function(indexer)
- local paramter = indexer:GetParameters()[0]
- %>
- if (<%=GetCheckStatement(type, 1)%> && <%=GetCheckStatement(paramter.ParameterType, 2)%>)
- {
-
- <%=GetSelfStatement(type)%>;
- <%=GetCasterStatement(paramter.ParameterType, 2, "index", true)%>;
- LuaAPI.lua_pushboolean(L, true);
- <%=GetPushStatement(indexer.ReturnType, "gen_to_be_invoked[index]")%>;
- return 2;
- }
- <%end)%>
- }
- catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- <%end%>
- LuaAPI.lua_pushboolean(L, false);
- return 1;
- }
- <% end %>
-
- <%if type.IsArray or ((newindexers.Count or 0) > 0) then%>
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- public static int __NewIndexer(RealStatePtr L)
- {
- <%if type.IsArray or newindexers.Count > 0 then %>ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);<%end%>
- <%if type.IsArray then
- local elementType = type:GetElementType()
- %>
- try {
- if (<%=GetCheckStatement(type, 1)%> && LuaAPI.lua_isnumber(L, 2) && <%=GetCheckStatement(elementType, 3)%>)
- {
- int index = (int)LuaAPI.lua_tonumber(L, 2);
- <%=GetSelfStatement(type)%>;
- <%=GetCasterStatement(elementType, 3, "gen_to_be_invoked[index]")%>;
- LuaAPI.lua_pushboolean(L, true);
- return 1;
- }
- }
- catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- <%elseif newindexers.Count > 0 then%>
- try {
- <%ForEachCsList(newindexers, function(newindexer)
- local keyType = newindexer:GetParameters()[0].ParameterType
- local valueType = newindexer:GetParameters()[1].ParameterType
- %>
- if (<%=GetCheckStatement(type, 1)%> && <%=GetCheckStatement(keyType, 2)%> && <%=GetCheckStatement(valueType, 3)%>)
- {
-
- <%=GetSelfStatement(type)%>;
- <%=GetCasterStatement(keyType, 2, "key", true)%>;
- <%if IsStruct(valueType) then%><%=GetCasterStatement(valueType, 3, "gen_value", true)%>;
- gen_to_be_invoked[key] = gen_value;<%else
- %><%=GetCasterStatement(valueType, 3, "gen_to_be_invoked[key]")%>;<%end%>
- LuaAPI.lua_pushboolean(L, true);
- return 1;
- }
- <%end)%>
- }
- catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- <%end%>
- LuaAPI.lua_pushboolean(L, false);
- return 1;
- }
- <% end %>
-
- <%ForEachCsList(operators, function(operator) %>
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int <%=OpNameMap[operator.Name]%>(RealStatePtr L)
- {
- <% if operator.Name ~= "op_UnaryNegation" and operator.Name ~= "op_OnesComplement" then %>
- try {
- ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
- <%ForEachCsList(operator.Overloads, function(overload)
- local left_param = overload:GetParameters()[0]
- local right_param = overload:GetParameters()[1]
- %>
-
- if (<%=GetCheckStatement(left_param.ParameterType, 1)%> && <%=GetCheckStatement(right_param.ParameterType, 2)%>)
- {
- <%=GetCasterStatement(left_param.ParameterType, 1, "leftside", true)%>;
- <%=GetCasterStatement(right_param.ParameterType, 2, "rightside", true)%>;
-
- <%=GetPushStatement(overload.ReturnType, "leftside " .. OpCallNameMap[operator.Name] .. " rightside")%>;
-
- return 1;
- }
- <%end)%>
- }
- catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- return LuaAPI.luaL_error(L, "invalid arguments to right hand of <%=OpCallNameMap[operator.Name]%> operator, need <%=CsFullTypeName(type)%>!");
- <%else%>
- ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
- try {
- <%=GetCasterStatement(type, 1, "rightside", true)%>;
- <%=GetPushStatement(operator.Overloads[0].ReturnType, OpCallNameMap[operator.Name] .. " rightside")%>;
- } catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- return 1;
- <%end%>
- }
- <%end)%>
-
- <%ForEachCsList(methods, function(method)%>
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int _m_<%=method.Name%>(RealStatePtr L)
- {
- try {
- <%
- local need_obj = not method.IsStatic
- if MethodCallNeedTranslator(method) then
- %>
- ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
- <%end%>
- <%if need_obj then%>
- <%=GetSelfStatement(type)%>;
- <%end%>
- <%if method.Overloads.Count > 1 then%>
- int gen_param_count = LuaAPI.lua_gettop(L);
- <%end%>
- <%ForEachCsList(method.Overloads, function(overload, oi)
- local parameters = MethodParameters(overload)
- local in_num = CalcCsList(parameters, function(p) return not (p.IsOut and p.ParameterType.IsByRef) end)
- local param_offset = method.IsStatic and 0 or 1
- local out_num = CalcCsList(parameters, function(p) return p.IsOut or p.ParameterType.IsByRef end)
- local in_pos = 0
- local has_return = (overload.ReturnType.FullName ~= "System.Void")
- local def_count = method.DefaultValues[oi]
- local param_count = parameters.Length
- local real_param_count = param_count - def_count
- local has_v_params = param_count > 0 and IsParams(parameters[param_count - 1])
- if method.Overloads.Count > 1 then
- %>if(gen_param_count <%=has_v_params and ">=" or "=="%> <%=in_num+param_offset-def_count - (has_v_params and 1 or 0)%><%
- ForEachCsList(parameters, function(parameter, pi)
- if pi >= real_param_count then return end
- local parameterType = parameter.ParameterType
- if has_v_params and pi == param_count - 1 then parameterType = parameterType:GetElementType() end
- if not (parameter.IsOut and parameter.ParameterType.IsByRef) then in_pos = in_pos + 1;
- %>&& <%=GetCheckStatement(parameterType , in_pos+param_offset, has_v_params and pi == param_count - 1)%><%
- end
- end)%>) <%end%>
- {
- <%if overload.Name == "get_Item" and overload.IsSpecialName then
- local keyType = overload:GetParameters()[0].ParameterType%>
- <%=GetCasterStatement(keyType, 2, "key", true)%>;
- <%=GetPushStatement(overload.ReturnType, "gen_to_be_invoked[key]")%>;
- <%elseif overload.Name == "set_Item" and overload.IsSpecialName then
- local keyType = overload:GetParameters()[0].ParameterType
- local valueType = overload:GetParameters()[1].ParameterType%>
- <%=GetCasterStatement(keyType, 2, "key", true)%>;
- <%=GetCasterStatement(valueType, 3, "gen_value", true)%>;
- gen_to_be_invoked[key] = gen_value;
- <% else
- in_pos = 0;
- ForEachCsList(parameters, function(parameter, pi)
- if pi >= real_param_count then return end
- %><%if not (parameter.IsOut and parameter.ParameterType.IsByRef) then
- in_pos = in_pos + 1
- %><%=GetCasterStatement(parameter.ParameterType, in_pos+param_offset, LocalName(parameter.Name), true, has_v_params and pi == param_count - 1)%><%
- else%><%=CsFullTypeName(parameter.ParameterType)%> <%=LocalName(parameter.Name)%><%end%>;
- <%end)%>
- <%
- if has_return then
- %> var gen_ret = <%
- end
- %><%if method.IsStatic then
- %><%=CsFullTypeName(type).."."..UnK(overload.Name)%><%
- else
- %>gen_to_be_invoked.<%=UnK(overload.Name)%><%
- end%>( <%ForEachCsList(parameters, function(parameter, pi)
- if pi >= real_param_count then return end
- if pi ~= 0 then %>, <% end; if parameter.IsOut and parameter.ParameterType.IsByRef then %>out <% elseif parameter.ParameterType.IsByRef and not parameter.IsIn then %>ref <% end %><%=LocalName(parameter.Name)%><% end) %> );
- <%
- if has_return then
- %> <%=GetPushStatement(overload.ReturnType, "gen_ret")%>;
- <%
- end
- local in_pos = 0
- ForEachCsList(parameters, function(parameter, pi)
- if pi >= real_param_count then return end
- if not (parameter.IsOut and parameter.ParameterType.IsByRef) then
- in_pos = in_pos + 1
- end
- if parameter.ParameterType.IsByRef then
- %><%=GetPushStatement(parameter.ParameterType:GetElementType(), LocalName(parameter.Name))%>;
- <%if not parameter.IsOut and parameter.ParameterType.IsByRef and NeedUpdate(parameter.ParameterType) then
- %><%=GetUpdateStatement(parameter.ParameterType:GetElementType(), in_pos+param_offset, LocalName(parameter.Name))%>;
- <%end%>
- <%
- end
- end)
- end
- %>
- <%if NeedUpdate(type) and not method.IsStatic then%>
- <%=GetUpdateStatement(type, 1, "gen_to_be_invoked")%>;
- <%end%>
-
- return <%=out_num+(has_return and 1 or 0)%>;
- }
- <% end)%>
- } catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- <%if method.Overloads.Count > 1 then%>
- return LuaAPI.luaL_error(L, "invalid arguments to <%=CsFullTypeName(type)%>.<%=method.Overloads[0].Name%>!");
- <%end%>
- }
- <% end)%>
-
-
- <%ForEachCsList(getters, function(getter)
- if getter.IsStatic and getter.ReadOnly then return end --readonly static
- %>
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int _g_get_<%=getter.Name%>(RealStatePtr L)
- {
- try {
- <%if AccessorNeedTranslator(getter) then %> ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);<%end%>
- <%if not getter.IsStatic then%>
- <%=GetSelfStatement(type)%>;
- <%=GetPushStatement(getter.Type, "gen_to_be_invoked."..UnK(getter.Name))%>;<% else %> <%=GetPushStatement(getter.Type, CsFullTypeName(type).."."..UnK(getter.Name))%>;<% end%>
- } catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- return 1;
- }
- <%end)%>
-
- <%ForEachCsList(setters, function(setter)
- local is_struct = IsStruct(setter.Type)
- %>
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int _s_set_<%=setter.Name%>(RealStatePtr L)
- {
- try {
- <%if AccessorNeedTranslator(setter) then %>ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);<%end%>
- <%if not setter.IsStatic then %>
- <%=GetSelfStatement(type)%>;
- <%if is_struct then %><%=GetCasterStatement(setter.Type, 2, "gen_value", true)%>;
- gen_to_be_invoked.<%=UnK(setter.Name)%> = gen_value;<% else
- %><%=GetCasterStatement(setter.Type, 2, "gen_to_be_invoked." .. UnK(setter.Name))%>;<%end
- else
- if is_struct then %><%=GetCasterStatement(setter.Type, 1, "gen_value", true)%>;
- <%=CsFullTypeName(type)%>.<%=UnK(setter.Name)%> = gen_value;<%else
- %> <%=GetCasterStatement(setter.Type, 1, CsFullTypeName(type) .."." .. UnK(setter.Name))%>;<%end
- end%>
- <%if NeedUpdate(type) and not setter.IsStatic then%>
- <%=GetUpdateStatement(type, 1, "gen_to_be_invoked")%>;
- <%end%>
- } catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- return 0;
- }
- <%end)%>
-
- <%ForEachCsList(events, function(event) if not event.IsStatic then %>
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int _e_<%=event.Name%>(RealStatePtr L)
- {
- try {
- ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
- int gen_param_count = LuaAPI.lua_gettop(L);
- <%=GetSelfStatement(type)%>;
- <%=GetCasterStatement(event.Type, 3, "gen_delegate", true)%>;
- if (gen_delegate == null) {
- return LuaAPI.luaL_error(L, "#3 need <%=CsFullTypeName(event.Type)%>!");
- }
-
- if (gen_param_count == 3)
- {
- <%if event.CanAdd then%>
- if (LuaAPI.xlua_is_eq_str(L, 2, "+")) {
- gen_to_be_invoked.<%=UnK(event.Name)%> += gen_delegate;
- return 0;
- }
- <%end%>
- <%if event.CanRemove then%>
- if (LuaAPI.xlua_is_eq_str(L, 2, "-")) {
- gen_to_be_invoked.<%=UnK(event.Name)%> -= gen_delegate;
- return 0;
- }
- <%end%>
- }
- } catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- LuaAPI.luaL_error(L, "invalid arguments to <%=CsFullTypeName(type)%>.<%=event.Name%>!");
- return 0;
- }
- <%end end)%>
-
- <%ForEachCsList(events, function(event) if event.IsStatic then %>
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int _e_<%=event.Name%>(RealStatePtr L)
- {
- try {
- ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
- int gen_param_count = LuaAPI.lua_gettop(L);
- <%=GetCasterStatement(event.Type, 2, "gen_delegate", true)%>;
- if (gen_delegate == null) {
- return LuaAPI.luaL_error(L, "#2 need <%=CsFullTypeName(event.Type)%>!");
- }
-
- <%if event.CanAdd then%>
- if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "+")) {
- <%=CsFullTypeName(type)%>.<%=UnK(event.Name)%> += gen_delegate;
- return 0;
- }
- <%end%>
- <%if event.CanRemove then%>
- if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "-")) {
- <%=CsFullTypeName(type)%>.<%=UnK(event.Name)%> -= gen_delegate;
- return 0;
- }
- <%end%>
- } catch(System.Exception gen_e) {
- return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
- }
- return LuaAPI.luaL_error(L, "invalid arguments to <%=CsFullTypeName(type)%>.<%=event.Name%>!");
- }
- <%end end)%>
- }
- }
|