#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 ConfigUtilWrap
|
{
|
public static void __Register(RealStatePtr L)
|
{
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
System.Type type = typeof(ConfigUtil);
|
Utils.BeginObjectRegister(type, L, translator, 0, 0, 0, 0);
|
|
|
|
|
|
|
Utils.EndObjectRegister(type, L, translator, null, null,
|
null, null, null);
|
|
Utils.BeginClassRegister(type, L, __CreateInstance, 159, 0, 0);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetSkill", _m_GetSkill_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetSignIn", _m_GetSignIn_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetSceneShadow", _m_GetSceneShadow_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRuneTowerFloor", _m_GetRuneTowerFloor_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRuneTower", _m_GetRuneTower_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRuneCompose", _m_GetRuneCompose_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRune", _m_GetRune_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRule", _m_GetRule_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRoleStronger", _m_GetRoleStronger_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRoleResource", _m_GetRoleResource_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRoleEquipStars", _m_GetRoleEquipStars_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRichTextMsgReplace", _m_GetRichTextMsgReplace_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetResourcesBack", _m_GetResourcesBack_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRefineStove", _m_GetRefineStove_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRedPack", _m_GetRedPack_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRealmPractice", _m_GetRealmPractice_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRealm", _m_GetRealm_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRankList", _m_GetRankList_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRandomName", _m_GetRandomName_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetQuestionBank", _m_GetQuestionBank_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetPyTask", _m_GetPyTask_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetPlayerProperty", _m_GetPlayerProperty_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetPlayerLV", _m_GetPlayerLV_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetPetInfo", _m_GetPetInfo_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetPetEatEquip", _m_GetPetEatEquip_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetPetClassCost", _m_GetPetClassCost_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetPersonalBoss", _m_GetPersonalBoss_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetOSRedAchieve", _m_GetOSRedAchieve_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetOSCBillTagAward", _m_GetOSCBillTagAward_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetOSCBillRankAward", _m_GetOSCBillRankAward_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetOrderInfo", _m_GetOrderInfo_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetOnlineAward", _m_GetOnlineAward_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetOccupationName", _m_GetOccupationName_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetNPCDropItem", _m_GetNPCDropItem_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetNPCDialogue", _m_GetNPCDialogue_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetNPC", _m_GetNPC_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetMonsterRefreshPoint", _m_GetMonsterRefreshPoint_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetMonsterNameColor", _m_GetMonsterNameColor_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetModelRes", _m_GetModelRes_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetMarket", _m_GetMarket_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetMapUiControl", _m_GetMapUiControl_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "Getmaptransport", _m_Getmaptransport_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetMapResources", _m_GetMapResources_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDamageNum", _m_GetDamageNum_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDailyQuestSpecialOpenTime", _m_GetDailyQuestSpecialOpenTime_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDailyQuestOpenTime", _m_GetDailyQuestOpenTime_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDailyQuest", _m_GetDailyQuest_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDailyLivenessReward", _m_GetDailyLivenessReward_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetCTG", _m_GetCTG_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetCreateRole", _m_GetCreateRole_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetContinueSignIn", _m_GetContinueSignIn_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetChestsAward", _m_GetChestsAward_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetChests", _m_GetChests_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetbossSkillTips", _m_GetbossSkillTips_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetHorse", _m_GetHorse_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetGuide", _m_GetGuide_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetGodWeapon", _m_GetGodWeapon_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetGmCmd", _m_GetGmCmd_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetGetItemWays", _m_GetGetItemWays_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFunctionForecast", _m_GetFunctionForecast_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFuncOpenLV", _m_GetFuncOpenLV_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFuncConfig", _m_GetFuncConfig_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFreeGoods", _m_GetFreeGoods_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFightPowerParam", _m_GetFightPowerParam_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFamilyTech", _m_GetFamilyTech_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFamily", _m_GetFamily_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFairyGrabBoss", _m_GetFairyGrabBoss_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFace", _m_GetFace_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetEquipWashSpec", _m_GetEquipWashSpec_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetBossReborn", _m_GetBossReborn_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetBossInfo", _m_GetBossInfo_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAreaCamera", _m_GetAreaCamera_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAlchemy", _m_GetAlchemy_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAlchemySpec", _m_GetAlchemySpec_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetXMZZAchievement", _m_GetXMZZAchievement_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetXBGetItem", _m_GetXBGetItem_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetWorldBoss", _m_GetWorldBoss_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetWingRefineExp", _m_GetWingRefineExp_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetWingRefineAttr", _m_GetWingRefineAttr_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetWindowSearch", _m_GetWindowSearch_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetWHYJReward", _m_GetWHYJReward_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetWeather", _m_GetWeather_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetVipPrivilege", _m_GetVipPrivilege_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetVIPKillNPC", _m_GetVIPKillNPC_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetVIPAward", _m_GetVIPAward_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetViewRoleFunc", _m_GetViewRoleFunc_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetUniquenessArrive", _m_GetUniquenessArrive_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetUnionLiven", _m_GetUnionLiven_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTrialRewards", _m_GetTrialRewards_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTrialExchange", _m_GetTrialExchange_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTreasureUp", _m_GetTreasureUp_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTreasureSkill", _m_GetTreasureSkill_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTreasureRefine", _m_GetTreasureRefine_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTreasurePrivilege", _m_GetTreasurePrivilege_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTreasureFindHost", _m_GetTreasureFindHost_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTreasure", _m_GetTreasure_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTeamTarget", _m_GetTeamTarget_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTaskList", _m_GetTaskList_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTASKINFO", _m_GetTASKINFO_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTalent", _m_GetTalent_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetSysInfo", _m_GetSysInfo_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetSuitEffect", _m_GetSuitEffect_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetSuccess", _m_GetSuccess_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetStoryMissions", _m_GetStoryMissions_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetStore", _m_GetStore_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAllPeopleParty", _m_GetAllPeopleParty_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAttrFruit", _m_GetAttrFruit_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetActorShow", _m_GetActorShow_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetBossHome", _m_GetBossHome_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAppointItem", _m_GetAppointItem_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAllPeoplePartyAward", _m_GetAllPeoplePartyAward_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetEquipWash", _m_GetEquipWash_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetEquipSuitCompound", _m_GetEquipSuitCompound_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetEquipSuitAttr", _m_GetEquipSuitAttr_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetEquipGSParam", _m_GetEquipGSParam_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetEquipDeCompose", _m_GetEquipDeCompose_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetElderGodArea", _m_GetElderGodArea_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetEffect", _m_GetEffect_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDungeonStateTime", _m_GetDungeonStateTime_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDungeonSpecialStateTime", _m_GetDungeonSpecialStateTime_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDungeonOpenTime", _m_GetDungeonOpenTime_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDungeonInspire", _m_GetDungeonInspire_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDungeonHint", _m_GetDungeonHint_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDungeon", _m_GetDungeon_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDogzEquipPlus", _m_GetDogzEquipPlus_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDogzDungeon", _m_GetDogzDungeon_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDogz", _m_GetDogz_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDirtyWord", _m_GetDirtyWord_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDirtyName", _m_GetDirtyName_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDienstgrad", _m_GetDienstgrad_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDialog", _m_GetDialog_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDemonRecommondProperty", _m_GetDemonRecommondProperty_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetDemonJar", _m_GetDemonJar_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAudio", _m_GetAudio_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "Getmapnpc", _m_Getmapnpc_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetMapEventPoint", _m_GetMapEventPoint_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "Getmapborn", _m_Getmapborn_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetmapArea", _m_GetmapArea_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetMap", _m_GetMap_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetMail", _m_GetMail_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetLVAawrd", _m_GetLVAawrd_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetLoginSeverList", _m_GetLoginSeverList_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetLoginAd", _m_GetLoginAd_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetLoadingTip", _m_GetLoadingTip_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetLoadingFunction", _m_GetLoadingFunction_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetLanguage", _m_GetLanguage_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetKickOutReason", _m_GetKickOutReason_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetJobSetup", _m_GetJobSetup_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetJobName", _m_GetJobName_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetItemPlusSumAttr", _m_GetItemPlusSumAttr_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetItemPlusMax", _m_GetItemPlusMax_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetItemPlus", _m_GetItemPlus_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetItemCompound", _m_GetItemCompound_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetItem", _m_GetItem_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetInvest", _m_GetInvest_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetInSevenDays", _m_GetInSevenDays_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetIcon", _m_GetIcon_xlua_st_);
|
Utils.RegisterFunc(L, Utils.CLS_IDX, "GetHorseUp", _m_GetHorseUp_xlua_st_);
|
|
|
|
|
|
|
Utils.EndClassRegister(type, L, translator);
|
}
|
|
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
|
static int __CreateInstance(RealStatePtr L)
|
{
|
return LuaAPI.luaL_error(L, "ConfigUtil does not have a constructor!");
|
}
|
|
|
|
|
|
|
|
|
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
|
static int _m_GetSkill_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.SkillConfig gen_ret = ConfigUtil.GetSkill( __key );
|
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_GetSignIn_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.SignInConfig gen_ret = ConfigUtil.GetSignIn( __key );
|
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_GetSceneShadow_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.SceneShadowConfig gen_ret = ConfigUtil.GetSceneShadow( __key );
|
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_GetRuneTowerFloor_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RuneTowerFloorConfig gen_ret = ConfigUtil.GetRuneTowerFloor( __key );
|
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_GetRuneTower_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RuneTowerConfig gen_ret = ConfigUtil.GetRuneTower( __key );
|
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_GetRuneCompose_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RuneComposeConfig gen_ret = ConfigUtil.GetRuneCompose( __key );
|
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_GetRune_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RuneConfig gen_ret = ConfigUtil.GetRune( __key );
|
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_GetRule_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RuleConfig gen_ret = ConfigUtil.GetRule( __key );
|
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_GetRoleStronger_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RoleStrongerConfig gen_ret = ConfigUtil.GetRoleStronger( __key );
|
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_GetRoleResource_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RoleResourceConfig gen_ret = ConfigUtil.GetRoleResource( __key );
|
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_GetRoleEquipStars_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RoleEquipStarsConfig gen_ret = ConfigUtil.GetRoleEquipStars( __key );
|
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_GetRichTextMsgReplace_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RichTextMsgReplaceConfig gen_ret = ConfigUtil.GetRichTextMsgReplace( __key );
|
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_GetResourcesBack_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ResourcesBackConfig gen_ret = ConfigUtil.GetResourcesBack( __key );
|
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_GetRefineStove_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RefineStoveConfig gen_ret = ConfigUtil.GetRefineStove( __key );
|
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_GetRedPack_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RedPackConfig gen_ret = ConfigUtil.GetRedPack( __key );
|
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_GetRealmPractice_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RealmPracticeConfig gen_ret = ConfigUtil.GetRealmPractice( __key );
|
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_GetRealm_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RealmConfig gen_ret = ConfigUtil.GetRealm( __key );
|
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_GetRankList_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RankListConfig gen_ret = ConfigUtil.GetRankList( __key );
|
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_GetRandomName_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.RandomNameConfig gen_ret = ConfigUtil.GetRandomName( __key );
|
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_GetQuestionBank_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.QuestionBankConfig gen_ret = ConfigUtil.GetQuestionBank( __key );
|
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_GetPyTask_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.PyTaskConfig gen_ret = ConfigUtil.GetPyTask( __key );
|
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_GetPlayerProperty_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.PlayerPropertyConfig gen_ret = ConfigUtil.GetPlayerProperty( __key );
|
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_GetPlayerLV_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.PlayerLVConfig gen_ret = ConfigUtil.GetPlayerLV( __key );
|
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_GetPetInfo_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.PetInfoConfig gen_ret = ConfigUtil.GetPetInfo( __key );
|
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_GetPetEatEquip_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.PetEatEquipConfig gen_ret = ConfigUtil.GetPetEatEquip( __key );
|
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_GetPetClassCost_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.PetClassCostConfig gen_ret = ConfigUtil.GetPetClassCost( __key );
|
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_GetPersonalBoss_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.PersonalBossConfig gen_ret = ConfigUtil.GetPersonalBoss( __key );
|
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_GetOSRedAchieve_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.OSRedAchieveConfig gen_ret = ConfigUtil.GetOSRedAchieve( __key );
|
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_GetOSCBillTagAward_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.OSCBillTagAwardConfig gen_ret = ConfigUtil.GetOSCBillTagAward( __key );
|
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_GetOSCBillRankAward_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.OSCBillRankAwardConfig gen_ret = ConfigUtil.GetOSCBillRankAward( __key );
|
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_GetOrderInfo_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.OrderInfoConfig gen_ret = ConfigUtil.GetOrderInfo( __key );
|
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_GetOnlineAward_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.OnlineAwardConfig gen_ret = ConfigUtil.GetOnlineAward( __key );
|
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_GetOccupationName_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.OccupationNameConfig gen_ret = ConfigUtil.GetOccupationName( __key );
|
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_GetNPCDropItem_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.NPCDropItemConfig gen_ret = ConfigUtil.GetNPCDropItem( __key );
|
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_GetNPCDialogue_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.NPCDialogueConfig gen_ret = ConfigUtil.GetNPCDialogue( __key );
|
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_GetNPC_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.NPCConfig gen_ret = ConfigUtil.GetNPC( __key );
|
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_GetMonsterRefreshPoint_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.MonsterRefreshPointConfig gen_ret = ConfigUtil.GetMonsterRefreshPoint( __key );
|
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_GetMonsterNameColor_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.MonsterNameColorConfig gen_ret = ConfigUtil.GetMonsterNameColor( __key );
|
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_GetModelRes_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ModelResConfig gen_ret = ConfigUtil.GetModelRes( __key );
|
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_GetMarket_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.MarketConfig gen_ret = ConfigUtil.GetMarket( __key );
|
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_GetMapUiControl_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.MapUiControlConfig gen_ret = ConfigUtil.GetMapUiControl( __key );
|
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_Getmaptransport_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.maptransportConfig gen_ret = ConfigUtil.Getmaptransport( __key );
|
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_GetMapResources_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.MapResourcesConfig gen_ret = ConfigUtil.GetMapResources( __key );
|
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_GetDamageNum_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DamageNumConfig gen_ret = ConfigUtil.GetDamageNum( __key );
|
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_GetDailyQuestSpecialOpenTime_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DailyQuestSpecialOpenTimeConfig gen_ret = ConfigUtil.GetDailyQuestSpecialOpenTime( __key );
|
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_GetDailyQuestOpenTime_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DailyQuestOpenTimeConfig gen_ret = ConfigUtil.GetDailyQuestOpenTime( __key );
|
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_GetDailyQuest_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DailyQuestConfig gen_ret = ConfigUtil.GetDailyQuest( __key );
|
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_GetDailyLivenessReward_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DailyLivenessRewardConfig gen_ret = ConfigUtil.GetDailyLivenessReward( __key );
|
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_GetCTG_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.CTGConfig gen_ret = ConfigUtil.GetCTG( __key );
|
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_GetCreateRole_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.CreateRoleConfig gen_ret = ConfigUtil.GetCreateRole( __key );
|
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_GetContinueSignIn_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ContinueSignInConfig gen_ret = ConfigUtil.GetContinueSignIn( __key );
|
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_GetChestsAward_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ChestsAwardConfig gen_ret = ConfigUtil.GetChestsAward( __key );
|
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_GetChests_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ChestsConfig gen_ret = ConfigUtil.GetChests( __key );
|
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_GetbossSkillTips_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.bossSkillTipsConfig gen_ret = ConfigUtil.GetbossSkillTips( __key );
|
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_GetHorse_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.HorseConfig gen_ret = ConfigUtil.GetHorse( __key );
|
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_GetGuide_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.GuideConfig gen_ret = ConfigUtil.GetGuide( __key );
|
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_GetGodWeapon_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.GodWeaponConfig gen_ret = ConfigUtil.GetGodWeapon( __key );
|
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_GetGmCmd_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.GmCmdConfig gen_ret = ConfigUtil.GetGmCmd( __key );
|
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_GetGetItemWays_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.GetItemWaysConfig gen_ret = ConfigUtil.GetGetItemWays( __key );
|
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_GetFunctionForecast_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.FunctionForecastConfig gen_ret = ConfigUtil.GetFunctionForecast( __key );
|
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_GetFuncOpenLV_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.FuncOpenLVConfig gen_ret = ConfigUtil.GetFuncOpenLV( __key );
|
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_GetFuncConfig_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.FuncConfigConfig gen_ret = ConfigUtil.GetFuncConfig( __key );
|
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_GetFreeGoods_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.FreeGoodsConfig gen_ret = ConfigUtil.GetFreeGoods( __key );
|
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_GetFightPowerParam_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.FightPowerParamConfig gen_ret = ConfigUtil.GetFightPowerParam( __key );
|
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_GetFamilyTech_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.FamilyTechConfig gen_ret = ConfigUtil.GetFamilyTech( __key );
|
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_GetFamily_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.FamilyConfig gen_ret = ConfigUtil.GetFamily( __key );
|
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_GetFairyGrabBoss_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.FairyGrabBossConfig gen_ret = ConfigUtil.GetFairyGrabBoss( __key );
|
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_GetFace_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.FaceConfig gen_ret = ConfigUtil.GetFace( __key );
|
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_GetEquipWashSpec_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.EquipWashSpecConfig gen_ret = ConfigUtil.GetEquipWashSpec( __key );
|
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_GetBossReborn_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.BossRebornConfig gen_ret = ConfigUtil.GetBossReborn( __key );
|
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_GetBossInfo_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.BossInfoConfig gen_ret = ConfigUtil.GetBossInfo( __key );
|
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_GetAreaCamera_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.AreaCameraConfig gen_ret = ConfigUtil.GetAreaCamera( __key );
|
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_GetAlchemy_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.AlchemyConfig gen_ret = ConfigUtil.GetAlchemy( __key );
|
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_GetAlchemySpec_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.AlchemySpecConfig gen_ret = ConfigUtil.GetAlchemySpec( __key );
|
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_GetXMZZAchievement_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.XMZZAchievementConfig gen_ret = ConfigUtil.GetXMZZAchievement( __key );
|
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_GetXBGetItem_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.XBGetItemConfig gen_ret = ConfigUtil.GetXBGetItem( __key );
|
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_GetWorldBoss_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.WorldBossConfig gen_ret = ConfigUtil.GetWorldBoss( __key );
|
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_GetWingRefineExp_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.WingRefineExpConfig gen_ret = ConfigUtil.GetWingRefineExp( __key );
|
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_GetWingRefineAttr_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.WingRefineAttrConfig gen_ret = ConfigUtil.GetWingRefineAttr( __key );
|
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_GetWindowSearch_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.WindowSearchConfig gen_ret = ConfigUtil.GetWindowSearch( __key );
|
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_GetWHYJReward_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.WHYJRewardConfig gen_ret = ConfigUtil.GetWHYJReward( __key );
|
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_GetWeather_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.WeatherConfig gen_ret = ConfigUtil.GetWeather( __key );
|
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_GetVipPrivilege_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.VipPrivilegeConfig gen_ret = ConfigUtil.GetVipPrivilege( __key );
|
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_GetVIPKillNPC_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.VIPKillNPCConfig gen_ret = ConfigUtil.GetVIPKillNPC( __key );
|
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_GetVIPAward_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.VIPAwardConfig gen_ret = ConfigUtil.GetVIPAward( __key );
|
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_GetViewRoleFunc_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ViewRoleFuncConfig gen_ret = ConfigUtil.GetViewRoleFunc( __key );
|
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_GetUniquenessArrive_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.UniquenessArriveConfig gen_ret = ConfigUtil.GetUniquenessArrive( __key );
|
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_GetUnionLiven_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.UnionLivenConfig gen_ret = ConfigUtil.GetUnionLiven( __key );
|
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_GetTrialRewards_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TrialRewardsConfig gen_ret = ConfigUtil.GetTrialRewards( __key );
|
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_GetTrialExchange_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TrialExchangeConfig gen_ret = ConfigUtil.GetTrialExchange( __key );
|
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_GetTreasureUp_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TreasureUpConfig gen_ret = ConfigUtil.GetTreasureUp( __key );
|
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_GetTreasureSkill_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TreasureSkillConfig gen_ret = ConfigUtil.GetTreasureSkill( __key );
|
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_GetTreasureRefine_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TreasureRefineConfig gen_ret = ConfigUtil.GetTreasureRefine( __key );
|
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_GetTreasurePrivilege_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TreasurePrivilegeConfig gen_ret = ConfigUtil.GetTreasurePrivilege( __key );
|
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_GetTreasureFindHost_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TreasureFindHostConfig gen_ret = ConfigUtil.GetTreasureFindHost( __key );
|
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_GetTreasure_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TreasureConfig gen_ret = ConfigUtil.GetTreasure( __key );
|
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_GetTeamTarget_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TeamTargetConfig gen_ret = ConfigUtil.GetTeamTarget( __key );
|
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_GetTaskList_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TaskListConfig gen_ret = ConfigUtil.GetTaskList( __key );
|
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_GetTASKINFO_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TASKINFOConfig gen_ret = ConfigUtil.GetTASKINFO( __key );
|
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_GetTalent_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.TalentConfig gen_ret = ConfigUtil.GetTalent( __key );
|
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_GetSysInfo_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.SysInfoConfig gen_ret = ConfigUtil.GetSysInfo( __key );
|
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_GetSuitEffect_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.SuitEffectConfig gen_ret = ConfigUtil.GetSuitEffect( __key );
|
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_GetSuccess_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.SuccessConfig gen_ret = ConfigUtil.GetSuccess( __key );
|
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_GetStoryMissions_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.StoryMissionsConfig gen_ret = ConfigUtil.GetStoryMissions( __key );
|
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_GetStore_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.StoreConfig gen_ret = ConfigUtil.GetStore( __key );
|
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_GetAllPeopleParty_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.AllPeoplePartyConfig gen_ret = ConfigUtil.GetAllPeopleParty( __key );
|
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_GetAttrFruit_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.AttrFruitConfig gen_ret = ConfigUtil.GetAttrFruit( __key );
|
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_GetActorShow_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ActorShowConfig gen_ret = ConfigUtil.GetActorShow( __key );
|
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_GetBossHome_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.BossHomeConfig gen_ret = ConfigUtil.GetBossHome( __key );
|
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_GetAppointItem_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.AppointItemConfig gen_ret = ConfigUtil.GetAppointItem( __key );
|
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_GetAllPeoplePartyAward_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.AllPeoplePartyAwardConfig gen_ret = ConfigUtil.GetAllPeoplePartyAward( __key );
|
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_GetEquipWash_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.EquipWashConfig gen_ret = ConfigUtil.GetEquipWash( __key );
|
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_GetEquipSuitCompound_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.EquipSuitCompoundConfig gen_ret = ConfigUtil.GetEquipSuitCompound( __key );
|
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_GetEquipSuitAttr_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.EquipSuitAttrConfig gen_ret = ConfigUtil.GetEquipSuitAttr( __key );
|
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_GetEquipGSParam_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.EquipGSParamConfig gen_ret = ConfigUtil.GetEquipGSParam( __key );
|
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_GetEquipDeCompose_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.EquipDeComposeConfig gen_ret = ConfigUtil.GetEquipDeCompose( __key );
|
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_GetElderGodArea_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ElderGodAreaConfig gen_ret = ConfigUtil.GetElderGodArea( __key );
|
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_GetEffect_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.EffectConfig gen_ret = ConfigUtil.GetEffect( __key );
|
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_GetDungeonStateTime_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DungeonStateTimeConfig gen_ret = ConfigUtil.GetDungeonStateTime( __key );
|
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_GetDungeonSpecialStateTime_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DungeonSpecialStateTimeConfig gen_ret = ConfigUtil.GetDungeonSpecialStateTime( __key );
|
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_GetDungeonOpenTime_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DungeonOpenTimeConfig gen_ret = ConfigUtil.GetDungeonOpenTime( __key );
|
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_GetDungeonInspire_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DungeonInspireConfig gen_ret = ConfigUtil.GetDungeonInspire( __key );
|
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_GetDungeonHint_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DungeonHintConfig gen_ret = ConfigUtil.GetDungeonHint( __key );
|
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_GetDungeon_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DungeonConfig gen_ret = ConfigUtil.GetDungeon( __key );
|
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_GetDogzEquipPlus_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DogzEquipPlusConfig gen_ret = ConfigUtil.GetDogzEquipPlus( __key );
|
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_GetDogzDungeon_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DogzDungeonConfig gen_ret = ConfigUtil.GetDogzDungeon( __key );
|
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_GetDogz_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DogzConfig gen_ret = ConfigUtil.GetDogz( __key );
|
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_GetDirtyWord_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DirtyWordConfig gen_ret = ConfigUtil.GetDirtyWord( __key );
|
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_GetDirtyName_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DirtyNameConfig gen_ret = ConfigUtil.GetDirtyName( __key );
|
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_GetDienstgrad_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DienstgradConfig gen_ret = ConfigUtil.GetDienstgrad( __key );
|
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_GetDialog_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DialogConfig gen_ret = ConfigUtil.GetDialog( __key );
|
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_GetDemonRecommondProperty_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DemonRecommondPropertyConfig gen_ret = ConfigUtil.GetDemonRecommondProperty( __key );
|
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_GetDemonJar_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.DemonJarConfig gen_ret = ConfigUtil.GetDemonJar( __key );
|
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_GetAudio_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.AudioConfig gen_ret = ConfigUtil.GetAudio( __key );
|
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_Getmapnpc_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.mapnpcConfig gen_ret = ConfigUtil.Getmapnpc( __key );
|
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_GetMapEventPoint_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.MapEventPointConfig gen_ret = ConfigUtil.GetMapEventPoint( __key );
|
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_Getmapborn_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.mapbornConfig gen_ret = ConfigUtil.Getmapborn( __key );
|
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_GetmapArea_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.mapAreaConfig gen_ret = ConfigUtil.GetmapArea( __key );
|
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_GetMap_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.MapConfig gen_ret = ConfigUtil.GetMap( __key );
|
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_GetMail_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.MailConfig gen_ret = ConfigUtil.GetMail( __key );
|
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_GetLVAawrd_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.LVAawrdConfig gen_ret = ConfigUtil.GetLVAawrd( __key );
|
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_GetLoginSeverList_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.LoginSeverListConfig gen_ret = ConfigUtil.GetLoginSeverList( __key );
|
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_GetLoginAd_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.LoginAdConfig gen_ret = ConfigUtil.GetLoginAd( __key );
|
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_GetLoadingTip_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.LoadingTipConfig gen_ret = ConfigUtil.GetLoadingTip( __key );
|
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_GetLoadingFunction_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.LoadingFunctionConfig gen_ret = ConfigUtil.GetLoadingFunction( __key );
|
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_GetLanguage_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.LanguageConfig gen_ret = ConfigUtil.GetLanguage( __key );
|
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_GetKickOutReason_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.KickOutReasonConfig gen_ret = ConfigUtil.GetKickOutReason( __key );
|
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_GetJobSetup_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.JobSetupConfig gen_ret = ConfigUtil.GetJobSetup( __key );
|
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_GetJobName_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.JobNameConfig gen_ret = ConfigUtil.GetJobName( __key );
|
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_GetItemPlusSumAttr_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ItemPlusSumAttrConfig gen_ret = ConfigUtil.GetItemPlusSumAttr( __key );
|
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_GetItemPlusMax_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ItemPlusMaxConfig gen_ret = ConfigUtil.GetItemPlusMax( __key );
|
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_GetItemPlus_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ItemPlusConfig gen_ret = ConfigUtil.GetItemPlus( __key );
|
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_GetItemCompound_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ItemCompoundConfig gen_ret = ConfigUtil.GetItemCompound( __key );
|
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_GetItem_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.ItemConfig gen_ret = ConfigUtil.GetItem( __key );
|
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_GetInvest_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.InvestConfig gen_ret = ConfigUtil.GetInvest( __key );
|
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_GetInSevenDays_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.InSevenDaysConfig gen_ret = ConfigUtil.GetInSevenDays( __key );
|
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_GetIcon_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.IconConfig gen_ret = ConfigUtil.GetIcon( __key );
|
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_GetHorseUp_xlua_st_(RealStatePtr L)
|
{
|
try {
|
|
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
|
|
|
|
{
|
string __key = LuaAPI.lua_tostring(L, 1);
|
|
TableConfig.HorseUpConfig gen_ret = ConfigUtil.GetHorseUp( __key );
|
translator.Push(L, gen_ret);
|
|
|
|
return 1;
|
}
|
|
} catch(System.Exception gen_e) {
|
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
}
|
}
|