#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; namespace XLua.CSObjectWrap { using Utils = XLua.Utils; public class SystemEnumWrap { public static void __Register(RealStatePtr L) { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); System.Type type = typeof(System.Enum); Utils.BeginObjectRegister(type, L, translator, 0, 6, 0, 0); Utils.RegisterFunc(L, Utils.METHOD_IDX, "Equals", _m_Equals); Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetHashCode", _m_GetHashCode); Utils.RegisterFunc(L, Utils.METHOD_IDX, "ToString", _m_ToString); Utils.RegisterFunc(L, Utils.METHOD_IDX, "CompareTo", _m_CompareTo); Utils.RegisterFunc(L, Utils.METHOD_IDX, "HasFlag", _m_HasFlag); Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetTypeCode", _m_GetTypeCode); Utils.EndObjectRegister(type, L, translator, null, null, null, null, null); Utils.BeginClassRegister(type, L, __CreateInstance, 10, 0, 0); Utils.RegisterFunc(L, Utils.CLS_IDX, "Parse", _m_Parse_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "GetUnderlyingType", _m_GetUnderlyingType_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "GetValues", _m_GetValues_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "GetName", _m_GetName_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "GetNames", _m_GetNames_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "ToObject", _m_ToObject_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "IsDefined", _m_IsDefined_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "Format", _m_Format_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "TryParse", _m_TryParse_xlua_st_); Utils.EndClassRegister(type, L, translator); } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int __CreateInstance(RealStatePtr L) { return LuaAPI.luaL_error(L, "System.Enum does not have a constructor!"); } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_Parse_xlua_st_(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); int gen_param_count = LuaAPI.lua_gettop(L); if(gen_param_count == 2&& translator.Assignable(L, 1)&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); string _value = LuaAPI.lua_tostring(L, 2); object gen_ret = System.Enum.Parse( _enumType, _value ); translator.PushAny(L, gen_ret); return 1; } if(gen_param_count == 3&& translator.Assignable(L, 1)&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)&& LuaTypes.LUA_TBOOLEAN == LuaAPI.lua_type(L, 3)) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); string _value = LuaAPI.lua_tostring(L, 2); bool _ignoreCase = LuaAPI.lua_toboolean(L, 3); object gen_ret = System.Enum.Parse( _enumType, _value, _ignoreCase ); translator.PushAny(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } return LuaAPI.luaL_error(L, "invalid arguments to System.Enum.Parse!"); } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_GetUnderlyingType_xlua_st_(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); System.Type gen_ret = System.Enum.GetUnderlyingType( _enumType ); translator.Push(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_GetValues_xlua_st_(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); System.Array gen_ret = System.Enum.GetValues( _enumType ); translator.Push(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_GetName_xlua_st_(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); object _value = translator.GetObject(L, 2, typeof(object)); string gen_ret = System.Enum.GetName( _enumType, _value ); LuaAPI.lua_pushstring(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_GetNames_xlua_st_(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); string[] gen_ret = System.Enum.GetNames( _enumType ); translator.Push(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_ToObject_xlua_st_(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); int gen_param_count = LuaAPI.lua_gettop(L); if(gen_param_count == 2&& translator.Assignable(L, 1)&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2)) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); sbyte _value = (sbyte)LuaAPI.xlua_tointeger(L, 2); object gen_ret = System.Enum.ToObject( _enumType, _value ); translator.PushAny(L, gen_ret); return 1; } if(gen_param_count == 2&& translator.Assignable(L, 1)&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2)) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); short _value = (short)LuaAPI.xlua_tointeger(L, 2); object gen_ret = System.Enum.ToObject( _enumType, _value ); translator.PushAny(L, gen_ret); return 1; } if(gen_param_count == 2&& translator.Assignable(L, 1)&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2)) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); int _value = LuaAPI.xlua_tointeger(L, 2); object gen_ret = System.Enum.ToObject( _enumType, _value ); translator.PushAny(L, gen_ret); return 1; } if(gen_param_count == 2&& translator.Assignable(L, 1)&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2)) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); byte _value = (byte)LuaAPI.xlua_tointeger(L, 2); object gen_ret = System.Enum.ToObject( _enumType, _value ); translator.PushAny(L, gen_ret); return 1; } if(gen_param_count == 2&& translator.Assignable(L, 1)&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2)) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); ushort _value = (ushort)LuaAPI.xlua_tointeger(L, 2); object gen_ret = System.Enum.ToObject( _enumType, _value ); translator.PushAny(L, gen_ret); return 1; } if(gen_param_count == 2&& translator.Assignable(L, 1)&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2)) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); uint _value = LuaAPI.xlua_touint(L, 2); object gen_ret = System.Enum.ToObject( _enumType, _value ); translator.PushAny(L, gen_ret); return 1; } if(gen_param_count == 2&& translator.Assignable(L, 1)&& (LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2) || LuaAPI.lua_isint64(L, 2))) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); long _value = LuaAPI.lua_toint64(L, 2); object gen_ret = System.Enum.ToObject( _enumType, _value ); translator.PushAny(L, gen_ret); return 1; } if(gen_param_count == 2&& translator.Assignable(L, 1)&& (LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2) || LuaAPI.lua_isuint64(L, 2))) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); ulong _value = LuaAPI.lua_touint64(L, 2); object gen_ret = System.Enum.ToObject( _enumType, _value ); translator.PushAny(L, gen_ret); return 1; } if(gen_param_count == 2&& translator.Assignable(L, 1)&& translator.Assignable(L, 2)) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); object _value = translator.GetObject(L, 2, typeof(object)); object gen_ret = System.Enum.ToObject( _enumType, _value ); translator.PushAny(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } return LuaAPI.luaL_error(L, "invalid arguments to System.Enum.ToObject!"); } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_IsDefined_xlua_st_(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); object _value = translator.GetObject(L, 2, typeof(object)); bool gen_ret = System.Enum.IsDefined( _enumType, _value ); LuaAPI.lua_pushboolean(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_Format_xlua_st_(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); object _value = translator.GetObject(L, 2, typeof(object)); string _format = LuaAPI.lua_tostring(L, 3); string gen_ret = System.Enum.Format( _enumType, _value, _format ); LuaAPI.lua_pushstring(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_Equals(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); System.Enum gen_to_be_invoked = (System.Enum)translator.FastGetCSObj(L, 1); { object _obj = translator.GetObject(L, 2, typeof(object)); bool gen_ret = gen_to_be_invoked.Equals( _obj ); LuaAPI.lua_pushboolean(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_GetHashCode(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); System.Enum gen_to_be_invoked = (System.Enum)translator.FastGetCSObj(L, 1); { int gen_ret = gen_to_be_invoked.GetHashCode( ); LuaAPI.xlua_pushinteger(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_ToString(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); System.Enum gen_to_be_invoked = (System.Enum)translator.FastGetCSObj(L, 1); int gen_param_count = LuaAPI.lua_gettop(L); if(gen_param_count == 1) { string gen_ret = gen_to_be_invoked.ToString( ); LuaAPI.lua_pushstring(L, gen_ret); return 1; } if(gen_param_count == 2&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)) { string _format = LuaAPI.lua_tostring(L, 2); string gen_ret = gen_to_be_invoked.ToString( _format ); LuaAPI.lua_pushstring(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } return LuaAPI.luaL_error(L, "invalid arguments to System.Enum.ToString!"); } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_CompareTo(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); System.Enum gen_to_be_invoked = (System.Enum)translator.FastGetCSObj(L, 1); { object _target = translator.GetObject(L, 2, typeof(object)); int gen_ret = gen_to_be_invoked.CompareTo( _target ); LuaAPI.xlua_pushinteger(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_HasFlag(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); System.Enum gen_to_be_invoked = (System.Enum)translator.FastGetCSObj(L, 1); { System.Enum _flag = (System.Enum)translator.GetObject(L, 2, typeof(System.Enum)); bool gen_ret = gen_to_be_invoked.HasFlag( _flag ); LuaAPI.lua_pushboolean(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_GetTypeCode(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); System.Enum gen_to_be_invoked = (System.Enum)translator.FastGetCSObj(L, 1); { System.TypeCode gen_ret = gen_to_be_invoked.GetTypeCode( ); translator.Push(L, gen_ret); return 1; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _m_TryParse_xlua_st_(RealStatePtr L) { try { ObjectTranslatorChild translator = (ObjectTranslatorChild)ObjectTranslatorPool.Instance.Find(L); int gen_param_count = LuaAPI.lua_gettop(L); if(gen_param_count == 2&& translator.Assignable(L, 1)&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); string _value = LuaAPI.lua_tostring(L, 2); object _result; bool gen_ret = System.Enum.TryParse( _enumType, _value, out _result ); LuaAPI.lua_pushboolean(L, gen_ret); translator.PushAny(L, _result); return 2; } if(gen_param_count == 3&& translator.Assignable(L, 1)&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)&& LuaTypes.LUA_TBOOLEAN == LuaAPI.lua_type(L, 3)) { System.Type _enumType = (System.Type)translator.GetObject(L, 1, typeof(System.Type)); string _value = LuaAPI.lua_tostring(L, 2); bool _ignoreCase = LuaAPI.lua_toboolean(L, 3); object _result; bool gen_ret = System.Enum.TryParse( _enumType, _value, _ignoreCase, out _result ); LuaAPI.lua_pushboolean(L, gen_ret); translator.PushAny(L, _result); return 2; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } return LuaAPI.luaL_error(L, "invalid arguments to System.Enum.TryParse!"); } } }