dotfiles/multimedia/.config/mpv/scripts/uosc/elements/PauseIndicator.lua

84 lines
2.6 KiB
Lua
Raw Normal View History

2024-04-20 07:27:09 +00:00
local Element = require('elements/Element')
2023-05-23 13:31:17 +00:00
---@class PauseIndicator : Element
local PauseIndicator = class(Element)
function PauseIndicator:new() return Class.new(self) --[[@as PauseIndicator]] end
function PauseIndicator:init()
2024-04-20 07:27:09 +00:00
Element.init(self, 'pause_indicator', {render_order = 3})
self.ignores_curtain = true
2023-05-23 13:31:17 +00:00
self.paused = state.pause
self.opacity = 0
2024-04-20 07:27:09 +00:00
self.fadeout = false
self:init_options()
end
2023-05-23 13:31:17 +00:00
2024-04-20 07:27:09 +00:00
function PauseIndicator:init_options()
self.base_icon_opacity = options.pause_indicator == 'flash' and 1 or 0.8
self.type = options.pause_indicator
self:on_prop_pause()
2023-05-23 13:31:17 +00:00
end
function PauseIndicator:flash()
2024-04-20 07:27:09 +00:00
-- Can't wait for pause property event listener to set this, because when this is used inside a binding like:
2023-05-23 13:31:17 +00:00
-- cycle pause; script-binding uosc/flash-pause-indicator
2024-04-20 07:27:09 +00:00
-- The pause event is not fired fast enough, and indicator starts rendering with old icon.
2023-05-23 13:31:17 +00:00
self.paused = mp.get_property_native('pause')
2024-04-20 07:27:09 +00:00
self.fadeout, self.opacity = false, 1
self:tween_property('opacity', 1, 0, 300)
2023-05-23 13:31:17 +00:00
end
2024-04-20 07:27:09 +00:00
-- Decides whether static indicator should be visible or not.
2023-05-23 13:31:17 +00:00
function PauseIndicator:decide()
self.paused = mp.get_property_native('pause') -- see flash() for why this line is necessary
2024-04-20 07:27:09 +00:00
self.fadeout, self.opacity = self.paused, self.paused and 1 or 0
2023-05-23 13:31:17 +00:00
request_render()
-- Workaround for an mpv race condition bug during pause on windows builds, which causes osd updates to be ignored.
-- .03 was still loosing renders, .04 was fine, but to be safe I added 10ms more
mp.add_timeout(.05, function() osd:update() end)
end
2024-04-20 07:27:09 +00:00
function PauseIndicator:on_prop_pause()
if Elements:v('timeline', 'pressed') then return end
if options.pause_indicator == 'flash' then
if self.paused ~= state.pause then self:flash() end
elseif options.pause_indicator == 'static' then
self:decide()
end
end
function PauseIndicator:on_options()
self:init_options()
if self.type == 'flash' then self.opacity = 0 end
end
2023-05-23 13:31:17 +00:00
function PauseIndicator:render()
if self.opacity == 0 then return end
local ass = assdraw.ass_new()
-- Background fadeout
2024-04-20 07:27:09 +00:00
if self.fadeout then
2023-05-23 13:31:17 +00:00
ass:rect(0, 0, display.width, display.height, {color = bg, opacity = self.opacity * 0.3})
end
-- Icon
2024-04-20 07:27:09 +00:00
local size = round(math.min(display.width, display.height) * (self.fadeout and 0.20 or 0.15))
2023-05-23 13:31:17 +00:00
size = size + size * (1 - self.opacity)
if self.paused then
ass:icon(display.width / 2, display.height / 2, size, 'pause',
{border = 1, opacity = self.base_icon_opacity * self.opacity}
)
else
ass:icon(display.width / 2, display.height / 2, size * 1.2, 'play_arrow',
{border = 1, opacity = self.base_icon_opacity * self.opacity}
)
end
return ass
end
return PauseIndicator