c1_unity/Assets/XLua/Gen/TMPro_TMP_TextElementWrap.cs
2023-04-03 11:04:31 +08:00

255 lines
8.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 TMProTMP_TextElementWrap
{
public static void __Register(RealStatePtr L)
{
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
System.Type type = typeof(TMPro.TMP_TextElement);
Utils.BeginObjectRegister(type, L, translator, 0, 0, 6, 5);
Utils.RegisterFunc(L, Utils.GETTER_IDX, "elementType", _g_get_elementType);
Utils.RegisterFunc(L, Utils.GETTER_IDX, "unicode", _g_get_unicode);
Utils.RegisterFunc(L, Utils.GETTER_IDX, "textAsset", _g_get_textAsset);
Utils.RegisterFunc(L, Utils.GETTER_IDX, "glyph", _g_get_glyph);
Utils.RegisterFunc(L, Utils.GETTER_IDX, "glyphIndex", _g_get_glyphIndex);
Utils.RegisterFunc(L, Utils.GETTER_IDX, "scale", _g_get_scale);
Utils.RegisterFunc(L, Utils.SETTER_IDX, "unicode", _s_set_unicode);
Utils.RegisterFunc(L, Utils.SETTER_IDX, "textAsset", _s_set_textAsset);
Utils.RegisterFunc(L, Utils.SETTER_IDX, "glyph", _s_set_glyph);
Utils.RegisterFunc(L, Utils.SETTER_IDX, "glyphIndex", _s_set_glyphIndex);
Utils.RegisterFunc(L, Utils.SETTER_IDX, "scale", _s_set_scale);
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 TMPro.TMP_TextElement();
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 TMPro.TMP_TextElement constructor!");
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _g_get_elementType(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
TMPro.TMP_TextElement gen_to_be_invoked = (TMPro.TMP_TextElement)translator.FastGetCSObj(L, 1);
translator.Push(L, gen_to_be_invoked.elementType);
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 1;
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _g_get_unicode(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
TMPro.TMP_TextElement gen_to_be_invoked = (TMPro.TMP_TextElement)translator.FastGetCSObj(L, 1);
LuaAPI.xlua_pushuint(L, gen_to_be_invoked.unicode);
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 1;
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _g_get_textAsset(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
TMPro.TMP_TextElement gen_to_be_invoked = (TMPro.TMP_TextElement)translator.FastGetCSObj(L, 1);
translator.Push(L, gen_to_be_invoked.textAsset);
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 1;
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _g_get_glyph(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
TMPro.TMP_TextElement gen_to_be_invoked = (TMPro.TMP_TextElement)translator.FastGetCSObj(L, 1);
translator.Push(L, gen_to_be_invoked.glyph);
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 1;
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _g_get_glyphIndex(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
TMPro.TMP_TextElement gen_to_be_invoked = (TMPro.TMP_TextElement)translator.FastGetCSObj(L, 1);
LuaAPI.xlua_pushuint(L, gen_to_be_invoked.glyphIndex);
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 1;
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _g_get_scale(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
TMPro.TMP_TextElement gen_to_be_invoked = (TMPro.TMP_TextElement)translator.FastGetCSObj(L, 1);
LuaAPI.lua_pushnumber(L, gen_to_be_invoked.scale);
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 1;
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _s_set_unicode(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
TMPro.TMP_TextElement gen_to_be_invoked = (TMPro.TMP_TextElement)translator.FastGetCSObj(L, 1);
gen_to_be_invoked.unicode = LuaAPI.xlua_touint(L, 2);
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 0;
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _s_set_textAsset(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
TMPro.TMP_TextElement gen_to_be_invoked = (TMPro.TMP_TextElement)translator.FastGetCSObj(L, 1);
gen_to_be_invoked.textAsset = (TMPro.TMP_Asset)translator.GetObject(L, 2, typeof(TMPro.TMP_Asset));
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 0;
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _s_set_glyph(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
TMPro.TMP_TextElement gen_to_be_invoked = (TMPro.TMP_TextElement)translator.FastGetCSObj(L, 1);
gen_to_be_invoked.glyph = (UnityEngine.TextCore.Glyph)translator.GetObject(L, 2, typeof(UnityEngine.TextCore.Glyph));
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 0;
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _s_set_glyphIndex(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
TMPro.TMP_TextElement gen_to_be_invoked = (TMPro.TMP_TextElement)translator.FastGetCSObj(L, 1);
gen_to_be_invoked.glyphIndex = LuaAPI.xlua_touint(L, 2);
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 0;
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _s_set_scale(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
TMPro.TMP_TextElement gen_to_be_invoked = (TMPro.TMP_TextElement)translator.FastGetCSObj(L, 1);
gen_to_be_invoked.scale = (float)LuaAPI.lua_tonumber(L, 2);
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return 0;
}
}
}