PGRData/Script/matrix/xui/xuivideo/XUiVideoPlayer.lua

156 lines
4.9 KiB
Lua
Raw Normal View History

local XUiVideoPlayer = XLuaUiManager.Register(XLuaUi, "UiVideoPlayer")
2024-09-01 20:49:41 +00:00
local XInputManager = CS.XInputManager
local XOperationType = CS.XOperationType
local XOperationClickType = CS.XOperationClickType
local ToInt32 = CS.System.Convert.ToInt32
function XUiVideoPlayer:OnAwake()
2024-09-01 20:49:41 +00:00
if XDataCenter.UiPcManager.IsPc() then
self.BtnAuto = self.Transform:Find("SafeAreaContentPane/BtnAuto/BtnAutoPC"):GetComponent("XUiButton")
self.BtnSkip = self.Transform:Find("SafeAreaContentPane/BtnSkip/BtnSkipPC"):GetComponent("XUiButton")
self.BtnAuto:GetComponentInChildren(typeof(CS.XUiPc.XUiPcCustomKey)):SetKey(XOperationType.Video, XOperationType.System, ToInt32(CS.XVideoOperationKey.Pause))
self.BtnSkip:GetComponentInChildren(typeof(CS.XUiPc.XUiPcCustomKey)):SetKey(XOperationType.Video, XOperationType.System, ToInt32(CS.XVideoOperationKey.Stop))
end
self.VideoPlayerUgui.ActionEnded = handler(self, self.LoopPointReached)
self.IsPause = false
self.BtnAuto.CallBack = function() self:Pause() end
self.BtnSkip.CallBack = function() self:Stop() end
self.BtnMask.CallBack = function() self:OnClickBtnMask() end
self.DisplayTime = 0
self.DisplayTimeConfig = CS.XGame.ClientConfig:GetInt("UiVideoPlayerDisplayTime")
2024-09-01 20:49:41 +00:00
self.OnClick = function(inputDevice, key, type)
if type == XOperationClickType.KeyDown then
if key == ToInt32(CS.XVideoOperationKey.Pause) then
self:Pause()
if self.IsPause then
self.BtnAuto.ButtonState = CS.UiButtonState.Select
else
self.BtnAuto.ButtonState = CS.UiButtonState.Normal
end
end
if key == ToInt32(CS.XVideoOperationKey.Stop) then
self:Stop()
end
end
end
end
2024-09-01 20:49:41 +00:00
-- data<74><61>ֵ֧<D6B5><D6A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD>ʽ
-- id<69><64><EFBFBD><EFBFBD><EFBFBD><EFBFBD>VideoConfig.tab<61><62>id<69><64>
-- {VideoUrl, Width, Height}
function XUiVideoPlayer:OnStart(data, closeCb, needAuto, needSkip)
self.CloseCb = closeCb
2024-09-01 20:49:41 +00:00
--暂时用不到这个功能
--if needAuto == nil then
-- needAuto = false
--end
--if needSkip == nil then
-- needSkip = false
--end
local movieId = data
local videoUrl
local width = 0
local height = 0
2024-09-01 20:49:41 +00:00
if type(data) == "table" then
videoUrl = data.VideoUrl
movieId = data.Width
movieId = data.Height
self.VideoPlayerUgui:SetVideoUrl(videoUrl)
else
local config = XVideoConfig.GetMovieById(movieId)
if XDataCenter.UiPcManager.IsPc() then
videoUrl = config.VideoUrlPc
else
videoUrl = config.VideoUrl
end
width = config.Width
height = config.Height
self.VideoPlayerUgui:SetVideoFromRelateUrl(videoUrl)
end
2024-09-01 20:49:41 +00:00
if width ~= 0 and height ~= 0 then
self.VideoPlayerUgui:SetAspectRatio(width / height)
end self.VideoPlayerUgui:Play()
if XDataCenter.UiPcManager.IsPc() then
self.BtnAuto.gameObject:SetActiveEx(true)
self.BtnSkip.gameObject:SetActiveEx(true)
else
self.BtnAuto.gameObject:SetActiveEx(needAuto)
self.BtnSkip.gameObject:SetActiveEx(needSkip)
end
2024-09-01 20:49:41 +00:00
self.BtnAuto.gameObject:SetActiveEx(true)
self.BtnSkip.gameObject:SetActiveEx(true)
XDataCenter.VideoManager.SetVideoPlayer(self.VideoPlayerUgui)
self.TimerId = XScheduleManager.ScheduleForever(handler(self, self.OnTimer), XScheduleManager.SECOND, 0)
end
2024-09-01 20:49:41 +00:00
function XUiVideoPlayer:OnEnable()
XInputManager.SetCurOperationType(XOperationType.Video)
XInputManager.RegisterOnClick(XOperationType.Video, self.OnClick)
end
function XUiVideoPlayer:OnDisable()
XInputManager.UnregisterOnClick(XOperationType.Video, self.OnClick)
XInputManager.SetCurOperationType(XInputManager.BeforeOperationType)
end
2024-09-01 20:49:41 +00:00
function XUiVideoPlayer:OnDestroy()
XDataCenter.VideoManager.Stop()
XScheduleManager.UnSchedule(self.TimerId)
if self.CloseCb then
self.CloseCb()
end
end
function XUiVideoPlayer:OnTimer()
if self.DisplayTime <= 0 then
return
end
self.DisplayTime = self.DisplayTime - 1
if not XDataCenter.UiPcManager.IsPc() then
if self.DisplayTime <= 0 then
self:PlayAnimation("UiDisable")
end
end
end
function XUiVideoPlayer:OnClickBtnMask()
if not XDataCenter.UiPcManager.IsPc() then
if self.DisplayTime <= 0 then
self:PlayAnimation("UiEnable")
end
end
self.DisplayTime = self.DisplayTimeConfig
end
function XUiVideoPlayer:LoopPointReached()
XDataCenter.VideoManager.Stop()
XScheduleManager.ScheduleOnce(function()
self:Close()
end, 0)
end
function XUiVideoPlayer:Stop()
self.VideoPlayerUgui:Stop()
self:Close()
end
function XUiVideoPlayer:Pause()
self.IsPause = not self.IsPause
if self.IsPause then
self.VideoPlayerUgui:Pause()
else
self.VideoPlayerUgui:Resume()
end
end