PGRData/Script/matrix/xconfig/XReformConfigs.lua

198 lines
7.3 KiB
Lua
Raw Normal View History

2024-09-01 20:49:41 +00:00
XReformConfigs = XConfigCenter.CreateTableConfig(XReformConfigs, "XReformConfigs", "Fuben/Reform")
--=============
--配置表枚举
--TableName : 表名对应需要读取的表的文件名字不写即为枚举的Key字符串
--TableDefindName : 表定于名,默认同表名
--ReadFuncName : 读取表格的方法默认为ReadByIntKey
--ReadKeyName : 读取表格的主键名默认为Id
--DirType : 读取的文件夹类型XConfigCenter.DirectoryType默认是Share
--LogKey : GetCfgByIdKey方法idKey找不到时所输出的日志信息默认是唯一Id
--=============
XReformConfigs.TableKey = enum({
ReformAffixGroup = { TableDefindName = "XTableReformGroup" },
ReformAffixSource = {},
ReformTimeEnvGroup = { TableDefindName = "XTableReformGroup" },
ReformTimeEnvSource = {},
ReformClientConfig = { ReadFuncName = "ReadByStringKey", ReadKeyName = "Key", DirType = XConfigCenter.DirectoryType.Client },
})
-- 配置表路径
local SHARE_TABLE_ROOT_PATH = "Share/Fuben/Reform/"
local CLIENT_TABLE_ROOT_PATH = "Client/Fuben/Reform/"
-- 枚举
XReformConfigs.EntityType = {
Entity = 1,
Add = 2,
}
2024-09-01 20:49:41 +00:00
-- 改造页签类型
XReformConfigs.EvolvableGroupType = {
Enemy = 1,
Environment = 2,
Buff = 3,
Member = 4,
2024-09-01 20:49:41 +00:00
EnemyBuff = 5, -- 改造敌人buff
StageTime = 6, -- 改造关卡通关时间
}
XReformConfigs.StageType = {
Normal = 1,
Challenge = 2,
}
XReformConfigs.EnemyGroupType = {
NormanEnemy = 1,
ExtraEnemy = 2,
}
-- 表现相关配置
XReformConfigs.ScrollTime = 0.3 -- 源面板滚动时间
XReformConfigs.MinDistance = 150 -- 滚动检测最小距离
XReformConfigs.MaxDistance = 500 -- 滚动检测最大距离
XReformConfigs.ScrollOffset = 50 -- 滚动偏移
XReformConfigs.EndTimeCode = 20123001 -- 活动时间结束码
function XReformConfigs.Init()
XConfigCenter.CreateGetProperties(XReformConfigs, {
"StageConfig",
"StageDiffConfig",
"EnemyGroupConfig",
"EnemySourceConfig",
"EnemyTargetConfig",
"MemberGroupConfig",
"MemberSourceConfig",
"MemberTargetConfig",
"EnvironmentGroupConfig",
"EnvironmentConfig",
"BuffGroupConfig",
"BuffConfig",
"ActivityConfig",
"EnemyBuffDetailConfig",
"EvolvableGroupBtnSortConfig",
}, {
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformStage.tab", XTable.XTableReformStage, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformStageDiff.tab", XTable.XTableReformStageDifficulty, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformEnemyGroup.tab", XTable.XTableReformGroup, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformEnemySource.tab", XTable.XTableReformEnemySource, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformEnemyTarget.tab", XTable.XTableReformEnemyTarget, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformMemberGroup.tab", XTable.XTableReformGroup, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformMemberSource.tab", XTable.XTableReformMemberSource, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformMemberTarget.tab", XTable.XTableReformMemberTarget, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformEnvGroup.tab", XTable.XTableReformGroup, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformEnv.tab", XTable.XTableReformEnv, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformBuffGroup.tab", XTable.XTableReformGroup, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformBuff.tab", XTable.XTableReformBuff, "Id",
"ReadByIntKey", SHARE_TABLE_ROOT_PATH .. "ReformCfg.tab", XTable.XTableReformCfg, "Id",
"ReadByIntKey", CLIENT_TABLE_ROOT_PATH .. "ReformEnemyBuffDetail.tab", XTable.XTableReformEnemyBuffDetail, "Id",
"ReadByIntKey", CLIENT_TABLE_ROOT_PATH .. "ReformEvolvableGroupBtnSort.tab", XTable.XTableReformEvolvableGroupBtnSort, "Id",
})
end
function XReformConfigs.GetEnemyBuffDetail(id)
return XReformConfigs.GetEnemyBuffDetailConfig()[id]
end
function XReformConfigs.GetGroupTypeSortWeight(groupType)
return XReformConfigs.GetEvolvableGroupBtnSortConfig()[groupType].Weight
end
function XReformConfigs.GetActivityConfigById(id)
local result = XReformConfigs.GetActivityConfig()[id]
if result == nil then
for _, config in pairs(XReformConfigs.GetActivityConfig()) do
if config.OpenTimeId > 0 then
result = config
break
end
end
end
-- 还是空的就拿默认的
if result == nil then
result = XReformConfigs.GetActivityConfig()[1]
end
return result
end
-- 获取所有基础关卡数据
function XReformConfigs.GetStageConfigDic()
return XReformConfigs.GetStageConfig()
end
function XReformConfigs.GetStageConfigIds()
if XReformConfigs.__StageConfigIds == nil then
XReformConfigs.__StageConfigIds = {}
for configId, _ in pairs(XReformConfigs.GetStageConfig()) do
table.insert(XReformConfigs.__StageConfigIds, configId)
end
table.sort(XReformConfigs.__StageConfigIds, function(idA, idB)
return idA < idB
end)
end
return XReformConfigs.__StageConfigIds
end
2024-09-01 20:49:41 +00:00
function XReformConfigs.GetHardStageConfigFirstId()
local configIds = XReformConfigs.GetStageConfigIds()
for _, id in ipairs(configIds) do
if XReformConfigs.GetStageConfigById(id).StageType == XReformConfigs.StageType.Challenge then
return id
end
end
return configIds[1]
end
function XReformConfigs.GetStageConfigById(id)
return XReformConfigs.GetStageConfig()[id]
end
-- 获取基础关卡对应的改造关卡数据
function XReformConfigs.GetStageDiffConfigsByStageId(id)
local result = {}
local config = XReformConfigs.GetStageConfig()[id]
if config == nil then return result end
for _, stageDiffId in ipairs(config.StageDiff) do
table.insert(result, XReformConfigs.GetStageDiffConfig()[stageDiffId])
end
return result
end
function XReformConfigs.GetStageDiffConfigById(id)
return XReformConfigs.GetStageDiffConfig()[id]
end
function XReformConfigs.GetBaseStageMaxDiffCount(id)
local stageConfig = XReformConfigs.GetStageConfigById(id)
if stageConfig == nil then return 0 end
local result = 0
for _, v in ipairs(stageConfig.StageDiff) do
if v ~= nil and v > 0 then
result = result + 1
end
end
return result
2024-09-01 20:49:41 +00:00
end
function XReformConfigs.GetEnemyTargetConfigById(id)
if id == nil then return nil end
return XReformConfigs.GetEnemyTargetConfig(id)
end
function XReformConfigs.GetTaskIdDicByStageType(stageType)
if XReformConfigs.__TaskIdDic == nil then XReformConfigs.__TaskIdDic = {} end
local result = XReformConfigs.__TaskIdDic[stageType]
if result then return result end
local values = nil
if stageType == XReformConfigs.StageType.Normal then
values = XReformConfigs.GetCfgByIdKey(XReformConfigs.TableKey.ReformClientConfig, "NormalTaskIds").Values
elseif stageType == XReformConfigs.StageType.Challenge then
values = XReformConfigs.GetCfgByIdKey(XReformConfigs.TableKey.ReformClientConfig, "ChallengeTaskIds").Values
end
result = {}
for _, strId in ipairs(values) do
result[tonumber(strId)] = true
end
XReformConfigs.__TaskIdDic[stageType] = result
return result
end