forked from endernon/PGRData
44 lines
No EOL
1.6 KiB
Lua
44 lines
No EOL
1.6 KiB
Lua
local XMaintainerActionNodeEntity = require("XEntity/XMaintainerAction/XMaintainerActionNodeEntity")
|
|
local XBoxNodeEntity = XClass(XMaintainerActionNodeEntity, "XBoxNodeEntity")
|
|
local CSTextManagerGetText = CS.XTextManager.GetText
|
|
|
|
function XBoxNodeEntity:Ctor()
|
|
self.RewardId = 0
|
|
end
|
|
|
|
function XBoxNodeEntity:GetRewardId()
|
|
return self.RewardId
|
|
end
|
|
|
|
function XBoxNodeEntity:GetRewardTitle()
|
|
return CS.XTextManager.GetText("MaintainerActionBoxReward")
|
|
end
|
|
|
|
function XBoxNodeEntity:OpenDescTip()
|
|
XLuaUiManager.Open("UiFubenMaintaineractionDetailsTips", self, true)
|
|
end
|
|
|
|
function XBoxNodeEntity:DoEvent(data)
|
|
if not data then return end
|
|
local gameData = XDataCenter.MaintainerActionManager.GetGameData()
|
|
gameData:PlusBoxCount()
|
|
|
|
XLuaUiManager.Open("UiFubenMaintaineractionTreasurechest", self:GetRewardId(), nil,
|
|
CSTextManagerGetText("MaintainerActionBoxGetTitleText"),
|
|
CSTextManagerGetText("MaintainerActionBoxGetSubTitleText"),
|
|
gameData:GetBoxCount(),
|
|
gameData:GetMaxBoxCount(),function ()
|
|
local IsAllComplete = XDataCenter.MaintainerActionManager.CheckIsAllComplete()
|
|
if IsAllComplete then
|
|
XDataCenter.MaintainerActionManager.AddMessageType(XMaintainerActionConfigs.MessageType.EventComplete)
|
|
XScheduleManager.ScheduleOnce(function()
|
|
XDataCenter.MaintainerActionManager.CheckEventCompleteMessage()
|
|
end, 100)
|
|
end
|
|
end)
|
|
|
|
data.player:MarkNodeEvent()
|
|
if data.cb then data.cb() end
|
|
end
|
|
|
|
return XBoxNodeEntity |