c1_unity/Assets/XLua/Gen/BF_GlobalHelperWrap.cs
2025-11-03 15:00:43 +08:00

205 lines
5.9 KiB
C#

#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 BFGlobalHelperWrap
{
public static void __Register(RealStatePtr L)
{
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
System.Type type = typeof(BF.GlobalHelper);
Utils.BeginObjectRegister(type, L, translator, 0, 3, 1, 1);
Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetListCount", _m_GetListCount);
Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetGlobalByIndex", _m_GetGlobalByIndex);
Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetText", _m_SetText);
Utils.RegisterFunc(L, Utils.GETTER_IDX, "globalInfoList", _g_get_globalInfoList);
Utils.RegisterFunc(L, Utils.SETTER_IDX, "globalInfoList", _s_set_globalInfoList);
Utils.EndObjectRegister(type, L, translator, null, null,
null, null, null);
Utils.BeginClassRegister(type, L, __CreateInstance, 1, 0, 0);
Utils.EndClassRegister(type, L, translator);
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int __CreateInstance(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
if(LuaAPI.lua_gettop(L) == 1)
{
var gen_ret = new BF.GlobalHelper();
translator.Push(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 BF.GlobalHelper constructor!");
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _m_GetListCount(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
BF.GlobalHelper gen_to_be_invoked = (BF.GlobalHelper)translator.FastGetCSObj(L, 1);
{
var gen_ret = gen_to_be_invoked.GetListCount( );
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_GetGlobalByIndex(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
BF.GlobalHelper gen_to_be_invoked = (BF.GlobalHelper)translator.FastGetCSObj(L, 1);
{
int _index = LuaAPI.xlua_tointeger(L, 2);
var gen_ret = gen_to_be_invoked.GetGlobalByIndex( _index );
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_SetText(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
BF.GlobalHelper gen_to_be_invoked = (BF.GlobalHelper)translator.FastGetCSObj(L, 1);
{
int _index = LuaAPI.xlua_tointeger(L, 2);
string _v = LuaAPI.lua_tostring(L, 3);
gen_to_be_invoked.SetText( _index, _v );
return 0;
}
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _g_get_globalInfoList(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
BF.GlobalHelper gen_to_be_invoked = (BF.GlobalHelper)translator.FastGetCSObj(L, 1);
translator.Push(L, gen_to_be_invoked.globalInfoList);
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 1;
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _s_set_globalInfoList(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
BF.GlobalHelper gen_to_be_invoked = (BF.GlobalHelper)translator.FastGetCSObj(L, 1);
gen_to_be_invoked.globalInfoList = (System.Collections.Generic.List<BF.GlobalInfo>)translator.GetObject(L, 2, typeof(System.Collections.Generic.List<BF.GlobalInfo>));
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 0;
}
}
}