local BaseCtrl = require("GameCore.UI.BaseCtrl") local ChristmasThemeCtrl = class("ChristmasThemeCtrl", BaseCtrl) local ClientManager = CS.ClientManager.Instance local TimerManager = require("GameCore.Timer.TimerManager") ChristmasThemeCtrl._mapNodeConfig = { btnEntrance_ = { nCount = 6, sComponentName = "UIButton", callback = "OnBtn_ClickActivityEntrance" }, imgRemaineTime = {}, txtActivityTime = {sComponentName = "TMP_Text"}, txtActivityDate = {sComponentName = "TMP_Text"}, imgEnd = {}, txtActivityEnd = { sComponentName = "TMP_Text", sLanguageId = "Activity_End" }, imgMiniGame = {sComponentName = "Image"}, txtMiniGame = { sComponentName = "TMP_Text", sLanguageId = "Activity_Mini_Game_Cookie" }, imgMiniGameEnd = {}, txtMiniGameEnd = { sComponentName = "TMP_Text", sLanguageId = "Activity_Mini_Game_Cookie" }, txtMiniGame_End = {}, txtTask = { sComponentName = "TMP_Text", sLanguageId = "Activity_Task" }, txtTaskProgress = {sComponentName = "TMP_Text"}, imgTaskActivityTime = {}, txtTaskActivityTime = {sComponentName = "TMP_Text"}, imgStory = {sComponentName = "Image"}, goStoryEnd = {}, txtStoryEnd = { sComponentName = "TMP_Text", sLanguageId = "Activity_End" }, txtMiniGameEndState = { sComponentName = "TMP_Text", sLanguageId = "Activity_End" }, txtTaskEndState = { sComponentName = "TMP_Text", sLanguageId = "Activity_End" }, txtShopEndState = { sComponentName = "TMP_Text", sLanguageId = "Activity_End" }, txtShop = { sComponentName = "TMP_Text", sLanguageId = "Activity_Shop" }, imgShopActivityTime = {}, txtShopActivityTime = {sComponentName = "TMP_Text"}, imgLevel = {sComponentName = "Image"}, goLevelEnd = {}, txtLevelEnd = { sComponentName = "TMP_Text", sLanguageId = "Activity_End" }, imgLevelActivityUnlockTime = {}, txtLevelActivityUnlockTime = {sComponentName = "TMP_Text"}, imgLevelEnd = {}, TopBar = { sNodeName = "TopBarPanel", sCtrlName = "Game.UI.TopBarEx.TopBarCtrl" }, imgMiniGameActivityUnlockTime = {}, txtMiniGameActivityUnlockTime = {sComponentName = "TMP_Text"}, imgTaskBgEnd = {}, txtTaskEnd = { sComponentName = "TMP_Text", sLanguageId = "Activity_Task" }, txtTaskProgress_End = {}, imgTaskActivityUnlockTime = {}, txtTaskActivityUnlockTime = {sComponentName = "TMP_Text"}, imgStoryActivityTime = {}, txtStoryActivityTime = {sComponentName = "TMP_Text"}, imgStoryActivityUnlockTime = {}, txtStoyActivityUnlockTime = {sComponentName = "TMP_Text"}, imgShopActivityUnlockTime = {}, txtShopActivityUnlockTime = {sComponentName = "TMP_Text"}, imgLevelActivityTime = {}, txtLevelActivityTime = {sComponentName = "TMP_Text"}, imgMiniGameActivityTime = {}, txtMiniGameActivityTime = {sComponentName = "TMP_Text"}, txtShopEnd = { sComponentName = "TMP_Text", sLanguageId = "Activity_Shop" }, imgShopEnd = {}, txtShop_End = {}, txtTaskProgressEnd = {sComponentName = "TMP_Text"}, imgtxtTaskProgress = {}, imgTaskProgressEnd = {}, StoryRootEnd = {}, imgShowEnd = {}, imgShowActivityTime = {}, txtShowActivityTime = {sComponentName = "TMP_Text"}, goShowEnd = {}, txtShowEnd = { sComponentName = "TMP_Text", sLanguageId = "Activity_End" }, imgShowActivityUnlockTime = {}, txtShowActivityUnlockTime = {sComponentName = "TMP_Text"}, imgShowLock = {}, txtLock = {sComponentName = "TMP_Text"}, redDotEntrance2 = {}, storyRedDot = {}, reddotLevel = {}, goMiniGameEnd = {}, imgStoryTitleEnd = {}, reddotShow = {}, redDotEntrance1 = {} } ChristmasThemeCtrl._mapEventConfig = {} ChristmasThemeCtrl._mapRedDotConfig = { [RedDotDefine.TrekkerVersusQuest] = {sNodeName = "reddotShow"}, [RedDotDefine.TrekkerVersusQuest_1] = {sNodeName = "reddotShow"} } local ActivityState = { NotOpen = 1, Open = 2, Closed = 3 } function ChristmasThemeCtrl:Awake() local param = self:GetPanelParam() if type(param) == "table" then self.nActId = param[1] end self.ChristmasData = PlayerData.Activity:GetActivityGroupDataById(self.nActId) if self.ChristmasData ~= nil then self.ActivityGroupCfg = self.ChristmasData.actGroupConfig end end function ChristmasThemeCtrl:FadeIn() EventManager.Hit(EventId.SetTransition) end function ChristmasThemeCtrl:OnEnable() self:RefreshPanel() for i = 1, 5 do local actData = self.ChristmasData:GetActivityDataByIndex(i) if i == AllEnum.ActivityThemeFuncIndex.Task then local nActId = actData.ActivityId local state = self.tbActState[nActId] if state == ActivityState.Closed then self._mapNode.redDotEntrance2:SetActive(false) else RedDotManager.RegisterNode(RedDotDefine.Activity_Group_Task, { self.nActId, nActId }, self._mapNode.redDotEntrance2) end elseif i == AllEnum.ActivityThemeFuncIndex.Level then local nActId = actData.ActivityId RedDotManager.RegisterNode(RedDotDefine.ActivityLevel, { self.nActId, nActId }, self._mapNode.reddotLevel) elseif i == AllEnum.ActivityThemeFuncIndex.Story then local nActId = actData.ActivityId RedDotManager.RegisterNode(RedDotDefine.Activity_GroupNew_Avg_Group, { self.nActId, nActId }, self._mapNode.storyRedDot) end end end function ChristmasThemeCtrl:OnDisable() if nil ~= self.minigameRemainTimer then TimerManager.Remove(self.minigameRemainTimer) self.minigameRemainTimer = nil end if nil ~= self.remainTimer then TimerManager.Remove(self.remainTimer) self.remainTimer = nil end if nil ~= self.shopRemainTimer then TimerManager.Remove(self.shopRemainTimer) self.shopRemainTimer = nil end if nil ~= self.levelRemainTimer then TimerManager.Remove(self.levelRemainTimer) self.levelRemainTimer = nil end if nil ~= self.avgRemainTimer then TimerManager.Remove(self.avgRemainTimer) self.avgRemainTimer = nil end if nil ~= self.taskRemainTimer then TimerManager.Remove(self.taskRemainTimer) self.taskRemainTimer = nil end if nil ~= self.showRemainTimer then TimerManager.Remove(self.showRemainTimer) self.showRemainTimer = nil end end function ChristmasThemeCtrl:RefreshPanel() if self.ChristmasData == nil or self.ActivityGroupCfg == nil then return end self:RefreshTime() self:RefreshButtonState() end function ChristmasThemeCtrl:RefreshTime() local bOpen = self.ChristmasData:CheckActivityGroupOpen() if bOpen then RefreshRemainTime(self.ChristmasData:GetActGroupEndTime(), self._mapNode.txtActivityTime) if nil == self.remainTimer then self.remainTimer = self:AddTimer(0, 1, function() local remainTime = RefreshRemainTime(self.ChristmasData:GetActGroupEndTime(), self._mapNode.txtActivityTime) if remainTime <= 0 then TimerManager.Remove(self.remainTimer) self.remainTimer = nil end end, true, true, false) end end self._mapNode.imgRemaineTime:SetActive(bOpen) self._mapNode.imgEnd:SetActive(not bOpen) local nOpenMonth, nOpenDay, nEndMonth, nEndDay, nOpenYear, nEndYear = self.ChristmasData:GetActGroupDate() local strOpenDay = string.format("%d", nOpenDay) local strEndDay = string.format("%d", nEndDay) local dateStr = string.format("%s/%s/%s ~ %s/%s/%s", nOpenYear, nOpenMonth, strOpenDay, nEndYear, nEndMonth, strEndDay) NovaAPI.SetTMPText(self._mapNode.txtActivityDate, dateStr) end function ChristmasThemeCtrl:RefreshRemainOpenTime(openTime) local curTime = ClientManager.serverTimeStamp local remainTime = openTime - curTime local sTimeStr = "" if remainTime <= 60 then local sec = math.floor(remainTime) sTimeStr = orderedFormat(ConfigTable.GetUIText("Activity_Open_Time_Sec") or "", sec) elseif 60 < remainTime and remainTime <= 3600 then local min = math.floor(remainTime / 60) sTimeStr = orderedFormat(ConfigTable.GetUIText("Activity_Open_Time_Min") or "", min) elseif 3600 < remainTime and remainTime <= 86400 then local hour = math.floor(remainTime / 3600) sTimeStr = orderedFormat(ConfigTable.GetUIText("Activity_Open_Time") or "", hour) elseif 86400 < remainTime then local day = math.floor(remainTime / 86400) sTimeStr = orderedFormat(ConfigTable.GetUIText("Activity_Open_Time_Day") or "", day) end return sTimeStr end function ChristmasThemeCtrl:RefreshButtonState() self.tbActState = {} for i = 1, 6 do local actData = self.ChristmasData:GetActivityDataByIndex(i) if i == AllEnum.ActivityThemeFuncIndex.MiniGame then self:RefreshMiniGameButtonState(actData) elseif i == AllEnum.ActivityThemeFuncIndex.Task then self:RefreshTaskButtonState(actData) elseif i == AllEnum.ActivityThemeFuncIndex.Level then self:RefreshLevelButtonState(actData) elseif i == AllEnum.ActivityThemeFuncIndex.Shop then self:RefreshShopButtonState(actData) elseif i == AllEnum.ActivityThemeFuncIndex.Story then self:RefreshStoryButtonState(actData) elseif i == AllEnum.ActivityThemeFuncIndex.TrekkerVersus then self:RefreshOtherButtonState(actData) end end end function ChristmasThemeCtrl:RefreshButtonTimer(actData, timer, txtTrans, imgTrans, refreshFunc) local countDowmTimer local activityId = actData.ActivityId local activityData = ConfigTable.GetData("Activity", activityId) local state = ActivityState.NotOpen local bShowCountDown = false if activityData ~= nil then local curTime = ClientManager.serverTimeStamp if activityData.StartTime ~= "" and activityData.EndTime ~= "" then local openTime = CS.ClientManager.Instance:ISO8601StrToTimeStamp(activityData.StartTime) local endTime = CS.ClientManager.Instance:ISO8601StrToTimeStamp(activityData.EndTime) if curTime < openTime then state = ActivityState.NotOpen elseif curTime >= openTime and curTime <= endTime then state = ActivityState.Open else state = ActivityState.Closed end elseif activityData.EndType == GameEnum.activityEndType.NoLimit then state = ActivityState.Open if activityData.StartTime ~= "" then local openTime = CS.ClientManager.Instance:ISO8601StrToTimeStamp(activityData.StartTime) if curTime < openTime then state = ActivityState.NotOpen end end end if state == ActivityState.NotOpen then if nil == timer and activityData.StartTime ~= "" and activityData.EndTime ~= "" then local openTime = CS.ClientManager.Instance:ISO8601StrToTimeStamp(activityData.StartTime) local fcTimer = function() curTime = ClientManager.serverTimeStamp local remainTime = openTime - curTime if 0 < remainTime then local sTimeStr = self:RefreshRemainOpenTime(openTime) local txtUnlock = imgTrans:GetComponentInChildren(typeof(CS.TMPro.TMP_Text)) if txtUnlock ~= nil then NovaAPI.SetTMPText(txtUnlock, sTimeStr) end else imgTrans:SetActive(false) TimerManager.Remove(countDowmTimer) countDowmTimer = nil self.tbActState[activityId] = ActivityState.Open refreshFunc(actData) self:RefreshActivityData() end end fcTimer() countDowmTimer = self:AddTimer(0, 1, fcTimer, true, true, false) end elseif state == ActivityState.Open and activityData.StartTime ~= "" and activityData.EndTime ~= "" then do local endTime = CS.ClientManager.Instance:ISO8601StrToTimeStamp(activityData.EndTime) if endTime > self.ChristmasData:GetActGroupEndTime() then bShowCountDown = true elseif endTime < self.ChristmasData:GetActGroupEndTime() then bShowCountDown = endTime - curTime <= 259200 end if timer == nil and bShowCountDown then RefreshRemainTime(endTime, txtTrans) do local fcTimer = function() local remainTime = RefreshRemainTime(endTime, txtTrans) if remainTime <= 0 then TimerManager.Remove(countDowmTimer) countDowmTimer = nil refreshFunc(actData) end end fcTimer() countDowmTimer = self:AddTimer(0, 1, fcTimer, true, true, false) end end end end end return state, bShowCountDown, countDowmTimer end function ChristmasThemeCtrl:RefreshMiniGameButtonState(actData) local activityId = actData.ActivityId local activityData = ConfigTable.GetData("Activity", activityId) if activityData ~= nil then local refreshFunc = function(actData) self:RefreshMiniGameButtonState(actData) end local state, bShowCountDown, countDowmTimer = self:RefreshButtonTimer(actData, self.minigameRemainTimer, self._mapNode.txtMiniGameActivityTime, self._mapNode.imgMiniGameActivityUnlockTime, refreshFunc) if self.minigameRemainTimer == nil then self.minigameRemainTimer = countDowmTimer end self._mapNode.imgMiniGameActivityUnlockTime:SetActive(state == ActivityState.NotOpen) self._mapNode.imgMiniGameActivityTime.gameObject:SetActive(state == ActivityState.Open and bShowCountDown) self._mapNode.imgMiniGameEnd:SetActive(state == ActivityState.Closed) self._mapNode.txtMiniGame_End:SetActive(state == ActivityState.Closed) self._mapNode.txtMiniGameEnd.gameObject:SetActive(state == ActivityState.Closed) self._mapNode.goMiniGameEnd.gameObject:SetActive(state == ActivityState.Closed) self.tbActState[activityId] = state end end function ChristmasThemeCtrl:RefreshTaskButtonState(actData) local activityId = actData.ActivityId local actInsData = PlayerData.Activity:GetActivityDataById(activityId) local activityData = ConfigTable.GetData("Activity", activityId) if activityData ~= nil then local refreshFunc = function(actData) if actInsData ~= nil then actInsData:RefreshTaskRedDot() end self:RefreshTaskButtonState(actData) end local state, bShowCountDown, countDowmTimer = self:RefreshButtonTimer(actData, self.taskRemainTimer, self._mapNode.txtTaskActivityTime, self._mapNode.imgTaskActivityUnlockTime, refreshFunc) if self.taskRemainTimer == nil then self.taskRemainTimer = countDowmTimer end if state == ActivityState.Closed and actInsData ~= nil then actInsData:RefreshTaskRedDot() end self._mapNode.imgTaskActivityTime:SetActive(state == ActivityState.Open and bShowCountDown) self._mapNode.txtTaskProgress_End:SetActive(state == ActivityState.Closed) self._mapNode.imgTaskProgressEnd.gameObject:SetActive(state == ActivityState.Closed) self._mapNode.imgTaskBgEnd:SetActive(state == ActivityState.Closed) self._mapNode.txtTaskEnd.gameObject:SetActive(state == ActivityState.Closed) self._mapNode.imgTaskActivityUnlockTime:SetActive(state == ActivityState.NotOpen) self._mapNode.imgtxtTaskProgress.gameObject:SetActive(state >= ActivityState.Open) self.tbActState[activityId] = state local ActivityTaskData = PlayerData.Activity:GetActivityDataById(activityId) local nDone, nTotal = 0, 0 if ActivityTaskData ~= nil then nDone, nTotal = ActivityTaskData:CalcTotalProgress() end local progress = string.format("%d/%d", nDone, nTotal) NovaAPI.SetTMPText(self._mapNode.txtTaskProgress, progress) NovaAPI.SetTMPText(self._mapNode.txtTaskProgressEnd, progress) end end function ChristmasThemeCtrl:RefreshStoryButtonState(actData) local activityId = actData.ActivityId local activityData = ConfigTable.GetData("Activity", activityId) if activityData ~= nil then local refreshFunc = function(actData) local avgData = PlayerData.Activity:GetActivityDataById(activityId) if nil ~= avgData then avgData:RefreshAvgRedDot() end self:RefreshStoryButtonState(actData) end local state, bShowCountDown, countDowmTimer = self:RefreshButtonTimer(actData, self.avgRemainTimer, self._mapNode.txtStoryActivityTime, self._mapNode.imgStoryActivityUnlockTime, refreshFunc) if self.avgRemainTimer == nil then self.avgRemainTimer = countDowmTimer end if state == ActivityState.Closed then local avgData = PlayerData.Activity:GetActivityDataById(activityId) if nil ~= avgData then avgData:RefreshAvgRedDot() end end self._mapNode.imgStoryActivityTime:SetActive(state == ActivityState.Open and bShowCountDown) self._mapNode.imgStoryActivityUnlockTime:SetActive(state == ActivityState.NotOpen) self._mapNode.goStoryEnd:SetActive(state == ActivityState.Closed) self._mapNode.StoryRootEnd:SetActive(state == ActivityState.Closed) self._mapNode.imgStoryTitleEnd:SetActive(state == ActivityState.Closed) self.tbActState[activityId] = state end end function ChristmasThemeCtrl:RefreshLevelButtonState(actData) local activityId = actData.ActivityId local activityData = ConfigTable.GetData("Activity", activityId) if activityData ~= nil then local refreshFunc = function(actData) local activityLevelsData = PlayerData.Activity:GetActivityDataById(activityId) if nil ~= activityLevelsData then activityLevelsData:ChangeAllRedHot() end self:RefreshLevelButtonState(actData) end local state, bShowCountDown, countDowmTimer = self:RefreshButtonTimer(actData, self.levelRemainTimer, self._mapNode.txtLevelActivityTime, self._mapNode.imgLevelActivityUnlockTime, refreshFunc) if self.levelRemainTimer == nil then self.levelRemainTimer = countDowmTimer end if state == ActivityState.Closed then local activityLevelsData = PlayerData.Activity:GetActivityDataById(activityId) if nil ~= activityLevelsData then activityLevelsData:ChangeAllRedHot() end end self._mapNode.imgLevelActivityTime:SetActive(state == ActivityState.Open and bShowCountDown) self._mapNode.imgLevelActivityUnlockTime:SetActive(state == ActivityState.NotOpen) self._mapNode.imgLevelEnd:SetActive(state == ActivityState.Closed) self._mapNode.goLevelEnd:SetActive(state == ActivityState.Closed) self.tbActState[activityId] = state end end function ChristmasThemeCtrl:RefreshShopButtonState(actData) local activityId = actData.ActivityId local activityData = ConfigTable.GetData("Activity", activityId) if activityData ~= nil then local refreshFunc = function(actData) self:RefreshShopButtonState(actData) end local state, bShowCountDown, countDowmTimer = self:RefreshButtonTimer(actData, self.shopRemainTimer, self._mapNode.txtShopActivityTime, self._mapNode.imgShopActivityUnlockTime, refreshFunc) if self.shopRemainTimer == nil then self.shopRemainTimer = countDowmTimer end self._mapNode.imgShopActivityTime:SetActive(state == ActivityState.Open and bShowCountDown) self._mapNode.imgShopActivityUnlockTime:SetActive(state == ActivityState.NotOpen) self._mapNode.txtShopEnd.gameObject:SetActive(state == ActivityState.Closed) self._mapNode.imgShopEnd:SetActive(state == ActivityState.Closed) self._mapNode.txtShop_End:SetActive(state == ActivityState.Closed) self.tbActState[activityId] = state end end function ChristmasThemeCtrl:RefreshOtherButtonState(actData) local activityId = actData.ActivityId local activityData = ConfigTable.GetData("Activity", activityId) if activityData ~= nil then local nNeedWorldLevel = tonumber(activityData.LimitParam) or 0 local bNeedLv = nNeedWorldLevel <= PlayerData.Base:GetWorldClass() local refreshFunc = function(actData) self:RefreshOtherButtonState(actData) end local state, bShowCountDown, countDowmTimer if bNeedLv then state, bShowCountDown, countDowmTimer = self:RefreshButtonTimer(actData, self.showRemainTimer, self._mapNode.txtShowActivityTime, self._mapNode.imgShowActivityUnlockTime, refreshFunc) if self.showRemainTimer == nil then self.showRemainTimer = countDowmTimer end else state = ActivityState.NotOpen end self._mapNode.imgShowActivityTime:SetActive(state == ActivityState.Open and bShowCountDown) self._mapNode.imgShowActivityUnlockTime:SetActive(state == ActivityState.NotOpen and bNeedLv) self._mapNode.imgShowEnd:SetActive(state == ActivityState.Closed or not bNeedLv) self._mapNode.goShowEnd:SetActive(state == ActivityState.Closed) self._mapNode.imgShowLock:SetActive(state == ActivityState.NotOpen and not bNeedLv) local txtLock = orderedFormat(ConfigTable.GetUIText("ActivityEnter_Lock"), nNeedWorldLevel) NovaAPI.SetTMPText(self._mapNode.txtLock, txtLock) self.tbActState[activityId] = state end end function ChristmasThemeCtrl:RequireActiviyData() if self.bRequiredActData then return end local callFunc = function() self.bRequireSucc = true self:RefreshPanel() end HttpNetHandler.SendMsg(NetMsgId.Id.activity_detail_req, {}, nil, callFunc) self.bRequiredActData = true self:AddTimer(1, 1, function() self.bRequiredActData = false end, true, true, true) end function ChristmasThemeCtrl:RefreshActivityData() if self.bRequiredActData then return end self:AddTimer(1, 3, self.RequireActiviyData, true, true, true) end function ChristmasThemeCtrl:OnBtn_ClickActivityEntrance(btn, nIndex) local actData = self.ChristmasData:GetActivityDataByIndex(nIndex) local state = self.tbActState[actData.ActivityId] if nil == state then return end if state == ActivityState.Closed then EventManager.Hit(EventId.OpenMessageBox, ConfigTable.GetUIText("Activity_End_Notice")) return elseif state == ActivityState.NotOpen then if nIndex == AllEnum.ActivityThemeFuncIndex.TrekkerVersus then local activityId = actData.ActivityId local activityData = ConfigTable.GetData("Activity", activityId) if activityData ~= nil then local nNeedWorldLevel = tonumber(activityData.LimitParam) or 0 local bNeedLv = nNeedWorldLevel <= PlayerData.Base:GetWorldClass() if not bNeedLv then local sLockStr = orderedFormat(ConfigTable.GetUIText("ActivityEnter_Lock"), nNeedWorldLevel) EventManager.Hit(EventId.OpenMessageBox, sLockStr) return end end end EventManager.Hit(EventId.OpenMessageBox, ConfigTable.GetUIText("Activity_Not_Open")) return elseif state == ActivityState.Open then local activityData = PlayerData.Activity:GetActivityDataById(actData.ActivityId) if activityData == nil then local bHint = true if nIndex == AllEnum.ActivityThemeFuncIndex.Story then bHint = not PlayerData.ActivityAvg:HasActivityData(actData.ActivityId) end if self.bRequiredActData and bHint then EventManager.Hit(EventId.OpenMessageBox, ConfigTable.GetUIText("Activity_Data_Refreshing")) return end if bHint then EventManager.Hit(EventId.OpenMessageBox, ConfigTable.GetUIText("Activity_Not_Open")) self:RequireActiviyData() return end end end if actData.PanelId ~= nil and ActivityState.Open == state then if nIndex == AllEnum.ActivityThemeFuncIndex.MiniGame then local nRandom = math.random(31, 32) local func = function() EventManager.Hit(EventId.OpenPanel, actData.PanelId, actData.ActivityId, self.nActId) end EventManager.Hit(EventId.SetTransition, nRandom, func) else EventManager.Hit(EventId.OpenPanel, actData.PanelId, actData.ActivityId) end end end return ChristmasThemeCtrl