public void PushTutorialTestEnum(RealStatePtr L, Tutorial.TestEnum val) { if (TutorialTestEnum_TypeID == -1) { bool is_first; TutorialTestEnum_TypeID = getTypeId(L, typeof(Tutorial.TestEnum), out is_first); if (TutorialTestEnum_EnumRef == -1) { Utils.LoadCSTable(L, typeof(Tutorial.TestEnum)); TutorialTestEnum_EnumRef = LuaAPI.luaL_ref(L, LuaIndexes.LUA_REGISTRYINDEX); } } if (LuaAPI.xlua_tryget_cachedud(L, (int)val, TutorialTestEnum_EnumRef) == 1) { return; } IntPtr buff = LuaAPI.xlua_pushstruct(L, 4, TutorialTestEnum_TypeID); if (!CopyByValue.Pack(buff, 0, (int)val)) { throw new Exception("pack fail fail for Tutorial.TestEnum ,value=" + val); } LuaAPI.lua_getref(L, TutorialTestEnum_EnumRef); LuaAPI.lua_pushvalue(L, -2); LuaAPI.xlua_rawseti(L, -2, (int)val); LuaAPI.lua_pop(L, 1); }
public void UpdateTutorialTestEnum(RealStatePtr L, int index, Tutorial.TestEnum val) { if (LuaAPI.lua_type(L, index) == LuaTypes.LUA_TUSERDATA) { if (LuaAPI.xlua_gettypeid(L, index) != TutorialTestEnum_TypeID) { throw new Exception("invalid userdata for Tutorial.TestEnum"); } IntPtr buff = LuaAPI.lua_touserdata(L, index); if (!CopyByValue.Pack(buff, 0, (int)val)) { throw new Exception("pack fail for Tutorial.TestEnum ,value=" + val); } } else { throw new Exception("try to update a data with lua type:" + LuaAPI.lua_type(L, index)); } }
public void Get(RealStatePtr L, int index, out Tutorial.TestEnum val) { LuaTypes type = LuaAPI.lua_type(L, index); if (type == LuaTypes.LUA_TUSERDATA) { if (LuaAPI.xlua_gettypeid(L, index) != TutorialTestEnum_TypeID) { throw new Exception("invalid userdata for Tutorial.TestEnum"); } IntPtr buff = LuaAPI.lua_touserdata(L, index); int e; if (!CopyByValue.UnPack(buff, 0, out e)) { throw new Exception("unpack fail for Tutorial.TestEnum"); } val = (Tutorial.TestEnum)e; } else { val = (Tutorial.TestEnum)objectCasters.GetCaster(typeof(Tutorial.TestEnum))(L, index, null); } }