diff --git a/DEPENDENCIES.md b/DEPENDENCIES.md
index 8b78093..5cb4067 100644
--- a/DEPENDENCIES.md
+++ b/DEPENDENCIES.md
@@ -16,3 +16,18 @@
| ---------- | ------------------------------------- | ---------------------------------------------- |
| alass | 字幕自动同步(autosubsync 脚本) | `paru -S alass` |
| ffsubsync | 字幕自动同步(alass 的替代) | `pip install ffsubsync` |
+
+## 字体
+
+弹幕中可能出现 emoji, 因此需要使用支持的字体, 例如将 Symbola 加到 Noto Sans CJK SC 的末尾:
+
+```xml
+
+
+ Noto Sans CJK SC
+
+
+ Symbola
+
+
+```
diff --git a/README.md b/README.md
index 35773b6..d566597 100644
--- a/README.md
+++ b/README.md
@@ -63,7 +63,7 @@ icc/ # ICC 色彩配置文件
1. 在 mpv 中按 `M` 触发 manager.lua,观察控制台输出,确认无 `FAILED` 条目
2. 更新完成后删除 manager 在子目录留下的嵌套 `.git`(否则 `git add` 会失败):
```bash
- find ~/.config/mpv -mindepth 2 -name .git -type d | sort -r | xargs rm -rvf
+ find -L ~/.config/mpv -mindepth 2 -name .git -type d | sort -r | xargs rm -rf
```
3. 重启 mpv,检查控制台有无 `unknown key` 或脚本加载失败的警告
4. 若有 `unknown key` 警告,说明对应脚本的配置项发生变化,找 `script-opts/` 下同名 `.conf` 对照脚本源码更新
diff --git a/fonts/Material-Design-Iconic-Font.ttf b/fonts/Material-Design-Iconic-Font.ttf
deleted file mode 100644
index 5d489fd..0000000
Binary files a/fonts/Material-Design-Iconic-Font.ttf and /dev/null differ
diff --git a/fonts/NotoSansCJK-Bold.ttc b/fonts/NotoSansCJK-Bold.ttc
deleted file mode 100644
index ce48b99..0000000
Binary files a/fonts/NotoSansCJK-Bold.ttc and /dev/null differ
diff --git a/fonts/NotoSerifCJK-Bold.ttc b/fonts/NotoSerifCJK-Bold.ttc
deleted file mode 100644
index 1410854..0000000
Binary files a/fonts/NotoSerifCJK-Bold.ttc and /dev/null differ
diff --git a/fonts/modernx-osc-icon.ttf b/fonts/modernx-osc-icon.ttf
deleted file mode 100644
index 5b9a9e7..0000000
Binary files a/fonts/modernx-osc-icon.ttf and /dev/null differ
diff --git a/osc-style/modernx.lua b/osc-style/modernx.lua
deleted file mode 100644
index 29c60b9..0000000
--- a/osc-style/modernx.lua
+++ /dev/null
@@ -1,4577 +0,0 @@
---[[
- ModernX by zydezu
- (https://github.com/zydezu/ModernX)
-
- This script is a result of the original mpv-osc-modern by maoiscat
- and it's subsequent forks:
- * cyl0/ModernX
- * dexeonify/ModernX
- * Samillion/ModernZ
-
- Based on the osc.lua from mpv
---]]
-
-mp.assdraw = require("mp.assdraw")
-mp.msg = require("mp.msg")
-mp.utils = require("mp.utils")
-
--- ====================
--- declarations
--- ====================
-
-local function update_tracklist() end
-local function get_tracklist() end
-local function set_track() end
-local function get_track() end
-local function window_controls_enabled() end
-local function get_chapter() end
-local function render_elements() end
-local function render_persistent_progressbar() end
-local function limited_list() end
-local function checktitle() end
-local function normaliseDate(date) end
-local function exec_async() end
-local function is_url() end
-local function check_path_url() end
-local function check_comments() end
-local function loadSetOfComments() end
-local function process_filesize() end
-local function splitUTF8(str, maxLength) end
-local function process_vid_stats() end
-local function process_dislikes() end
-local function add_commas_to_number() end
-local function addLikeCountToTitle() end
-local function format_file_size(file_size) end
-local function get_playlist() end
-local function get_chapterlist() end
-local function show_message(text, duration) end
-local function bind_keys() end
-local function unbind_keys() end
-local function destroyscrollingkeys() end
-local function check_description() end
-local function show_description(text) end
-local function reset_desc_timer() end
-local function render_message() end
-local function window_controls() end
-local function validate_user_opts() end
-local function update_options(list) end
-local function show_osc() end
-local function hide_osc() end
-local function osc_visible(visible) end
-local function adjustSubtitles(visible) end
-local function pause_state() end
-local function cache_state() end
-local function process_event() end
-local function tick() end
-local function reset_timeout() end
-local function visibility_mode(mode) end
-
--- ====================
--- Parameters
--- default user option values
--- change them using modernx.conf
--- ====================
-
-local user_opts = {
- -- Language and display --
- language = "en", -- en:English - .json translations need implementing
- font = "mpv-osd-symbols", -- font for the OSC (default: mpv-osd-symbols or the one set in mpv.conf)
- layout_option = "original", -- use the original/reduced layout
- idle_screen = true, -- show mpv logo when idle
- key_bindings = true, -- register additional key bindings, such as chapter scrubbing, pinning the window
- window_top_bar = "auto", -- show OSC window top bar: "auto", "yes", or "no" (borderless/fullscreen)
- show_windowed = true, -- show OSC when windowed
- show_fullscreen = true, -- show OSC when fullscreen
- show_on_pause = true, -- show OSC when paused
- keep_on_pause = false, -- disable OSC hide timeout when paused
- green_and_grumpy = false, -- disable Santa hat in December
- visibility = "auto", -- only used at init to set visibility_mode(...)
-
- -- OSC behaviour and scaling
- hide_timeout = 1500, -- time (in ms) before OSC hides if no mouse movement
- seek_resets_hide_timeout = true, -- if seeking should reset the hide_timeout
- fade_duration = 150, -- fade-out duration (in ms), set to 0 for no fade
- min_mouse_move = 0, -- minimum mouse movement (in pixels) required to show OSC
- bottom_hover = true, -- show OSC only when hovering at the bottom
- bottom_hover_zone = 200, -- height of hover zone for bottom_hover (in pixels)
- osc_on_seek = false, -- show OSC when seeking
- mouse_seek_pause = true, -- pause video while seeking with mouse move (on button hold)
-
- vid_scale = false, -- scale osc with the video
- scale_windowed = 1.0, -- osc scale factor when windowed
- scale_fullscreen = 1.0, -- osc scale factor when fullscreen
- scale_forced_window = 1.0, -- osc scale factor when forced (no video, like music files)
-
- -- Time, title and description display
- show_title = true, -- show title in the OSC (above seekbar)
- title = "${media-title}", -- title above seekbar format: "${media-title}" or "${filename}"
- title_font_size = 28, -- font size of the title text (above seekbar)
- dynamic_title = true, -- change title if {media-title} and {filename} differ (eg: when playing URLs or audio)
-
- show_chapter_title = true, -- show chapter title alongside timestamp (below seekbar)
- chapter_fmt = "%s", -- format for chapter display on seekbar hover (set to "no" to disable)
- show_chapter_markers = false, -- show chapter markers on the seekbar
-
- time_total = true, -- show total time instead of remaining time
- time_ms = false, -- show timecodes with milliseconds
- unicode_minus = false, -- use the Unicode minus sign in remaining time
- time_format = "dynamic", -- "dynamic" or "fixed" - dynamic shows MM:SS when possible, fixed always shows HH:MM:SS
- time_font_size = 18, -- font size of the time display
-
- show_description = true, -- show video description - description on web videos or metadata/stats on local video
- show_file_size = true, -- show the current file's size in the description
- description_font_size = 19, -- font size of the description text (below title)
- description_alpha = 100, -- alpha of the description background box
- scrolling_speed = 40, -- the speed of scrolling text in description/comment menus
-
- date_format = "%Y-%m-%d", -- how dates should be formatted, when read from metadata (uses standard lua date formatting)
-
- -- Title bar settings
- window_title = true, -- show window title in borderless/fullscreen mode
- window_controls = true, -- show window controls (close, minimize, maximize) in borderless/fullscreen
- title_bar_box = false, -- show title bar as a box instead of a black fade
- window_controls_title = "${media-title}", -- same as title but for window_controls
-
- -- Subtitle display settings
- raise_subtitles = true, -- whether to raise subtitles above the osc when it's shown
- raise_subtitle_amount = 175, -- how much subtitles rise when the osc is shown
-
- -- Buttons display and functionality
- compact_mode = true, -- replace the jump buttons with the seek/chapter buttons
-
- jump_buttons = true, -- show the jump backward and forward buttons
- jump_amount = 10, -- change the jump amount in seconds
- jump_more_amount = 60, -- change the jump amount in seconds when right-clicking jump buttons and shift-clicking chapter skip buttons
- jump_icon_number = true, -- show different icon when jump_amount is set to 5, 10, or 30
- jump_mode = "relative", -- seek mode for jump buttons
- jump_softrepeat = true, -- enable continuous jumping when holding down seek buttons
- chapter_skip_buttons = true, -- show the chapter skip backward and forward buttons
- chapter_softrepeat = false, -- enable continuous skipping when holding down chapter skip buttons
- track_nextprev_buttons = true, -- show next/previous playlist track buttons
-
- volume_control = true, -- show mute button and volume slider
- volume_control_type = "linear", -- volume scale type: "linear" or "logarithmic"
-
- info_button = false, -- show info button
- ontop_button = true, -- show window on top button
- screenshot_button = false, -- show screenshot button
- screenshot_flag = "subtitles", -- flag for screenshot button: "subtitles", "video", "window", "each-frame"
- -- https://mpv.io/manual/master/#command-interface-screenshot-%3Cflags%3E
-
- download_button = true, -- show download button on web videos (requires yt-dlp and ffmpeg)
- download_path = "~~desktop/mpv/downloads", -- default download directory for videos (https://mpv.io/manual/master/#paths)
-
- loop_button = false, -- show loop button
- loop_in_pause = true, -- enable looping by right-clicking pause
-
- playpause_size = 30, -- icon size for the play/pause button
- midbuttons_size = 24, -- icon size for the middle buttons
- sidebuttons_size = 24, -- icon size for the side buttons
-
- -- Colors and style
- osc_color = "#000000", -- accent color of the OSC and title bar
- window_title_color = "#FFFFFF", -- color of the title in borderless/fullscreen mode
- window_controls_color = "#FFFFFF", -- color of the window controls (close, minimize, maximize) in borderless/fullscreen mode
- window_controls_close_hover = "#E81123", -- color of close window control on hover
- window_controls_minmax_hover = "#53A4FC", -- color of min/max window controls on hover
- title_color = "#FFFFFF", -- color of the title (above seekbar)
- seekbarfg_color = "#1D96F5", -- color of the seekbar progress and handle, in Hex color format
- seekbarbg_color = "#FFFFFF", -- color of the remaining seekbar, in Hex color format
- seekbar_cache_color = "#1D96F5", -- color of the cache ranges on the seekbar
- volumebar_match_seek_color = false, -- match volume bar color with seekbar color (ignores side_buttons_color)
- time_color = "#FFFFFF", -- color of the timestamps (below seekbar)
- chapter_title_color = "#FFFFFF", -- color of the chapter title next to timestamp (below seekbar)
- side_buttons_color = "#FFFFFF", -- color of the side buttons (audio, subtitles, playlist, etc.)
- middle_buttons_color = "#FFFFFF", -- color of the middle buttons (skip, jump, chapter, etc.)
- playpause_color = "#FFFFFF", -- color of the play/pause button
- held_element_color = "#999999", -- color of the element when held down (pressed)
- hover_effect_color = "#FFFFFF", -- color of a hovered button when hover_effect includes "color"
- thumbnail_border_color = "#FFFFFF", -- color of the border for thumbnails (with thumbfast)
- thumbnail_border_outline = "#000000", -- color of the border outline for thumbnails
-
- fade_alpha = 100, -- alpha of the title bar background box
- fade_blur_strength = 75, -- blur strength for the OSC alpha fade - caution: high values can take a lot of CPU time to render
- title_bar_fade_alpha = 150, -- alpha of the OSC background box
- title_bar_fade_blur_strength = 100, -- blur strength for the title bar alpha fade
- window_fade_alpha = 75, -- alpha of the window title bar
- thumbnail_border = 3, -- width of the thumbnail border (for thumbfast)
- thumbnail_border_radius = 3, -- rounded corner radius for thumbnail border (0 to disable)
-
- -- Button hover effects
- hover_effect = "size,glow,color", -- active button hover effects: "glow", "size", "color"; can use multiple separated by commas
- hover_button_size = 115, -- relative size of a hovered button if "size" effect is active
- button_glow_amount = 5, -- glow intensity when "glow" hover effect is active
- hover_effect_for_sliders = false, -- apply hover effects to slider handles
-
- -- Progress bar settings
- seek_handle_size = 0.8, -- size ratio of the seekbar handle (range: 0 ~ 1)
- progress_bar_height = 16, -- height of the progress bar
- seek_range = true, -- show seek range overlay
- seek_range_alpha = 175, -- transparency of the seek range
- seekbar_keyframes = false, -- use keyframes when dragging the seekbar
-
- automatic_keyframe_mode = true, -- automatically set keyframes for the seekbar based on video length
- automatic_keyframe_limit = 600, -- videos longer than this (in seconds) will have keyframes on the seekbar
-
- persistent_progress_default = false, -- always show a small progress line at the bottom of the screen
- persistent_progress_height = 17, -- height of the persistent_progress bar
- persistent_buffer = false, -- show the buffer on the persistent progress line
- persistent_progress_toggle = true, -- enable toggling the persistent_progress bar
-
- -- Web videos
- title_youtube_stats = true, -- update the window/OSC title bar with YouTube video stats (views, likes, dislikes)
- ytdl_format = "", -- optional parameteres for yt-dlp downloading, eg: '-f bestvideo+bestaudio/best'
-
- -- sponsorblock features need https://github.com/zydezu/mpvconfig/blob/main/scripts/sponsorblock.lua to work!
- show_sponsorblock_segments = true, -- show sponsorblock segments on the progress bar
- add_sponsorblock_chapters = false, -- add sponsorblock chapters to the chapter list
- sponsorblock_seek_range_alpha = 75, -- transparency of sponsorblock segments
- sponsor_types = { -- what categories to show in the progress bar
- "sponsor", -- all categories:
- "intro", -- sponsor, intro, outro,
- "outro", -- interaction, selfpromo, preview,
- "interaction", -- music_offtopic, filler
- "selfpromo",
- "preview",
- "music_offtopic",
- "filler"
- },
- sponsorblock_sponsor_color = "#00D400", -- color for sponsors
- sponsorblock_intro_color = "#00FFFF", -- color for intermission/intro animations
- sponsorblock_outro_color = "#0202ED", -- color for endcards/credits
- sponsorblock_interaction_color = "#CC00FF", -- color for interaction reminders (reminders to subscribe)
- sponsorblock_selfpromo_color = "#FFFF00", -- color for unpaid/self promotion
- sponsorblock_preview_color = "#008FD6", -- color for unpaid/self promotion
- sponsorblock_music_offtopic_color = "#FF9900", -- color for unpaid/self promotion
- sponsorblock_filler_color = "#7300FF", -- color for filler tangent/jokes
-
- -- Experimental
- show_youtube_comments = false, -- EXPERIMENTAL - show youtube comments
- comments_download_path = "~~desktop/mpv/downloads/comments", -- EXPERIMENTAL - the download path for the comment JSON file
- FORCE_fix_not_ontop = true, -- EXPERIMENTAL - try and mitigate https://github.com/zydezu/ModernX/issues/30, https://github.com/akiirui/mpv-handler/issues/48
-}
--- read options from config and command-line
-require("mp.options").read_options(user_opts, 'modernx', function(list) update_options(list) end)
-
-mp.observe_property("osc", "bool", function(name, value) if value == true then mp.set_property("osc", "no") end end)
-
-local osc_param = { -- calculated by osc_init()
- playresy = 0, -- canvas size Y
- playresx = 0, -- canvas size X
- display_aspect = 1,
- unscaled_y = 0,
- areas = {},
-}
-
-local icons = {
- play = "\238\166\143",
- pause = "\238\163\140",
- replay = "\238\189\191",
- previous = "\239\152\167",
- next = "\239\149\168",
- rewind = "\238\168\158",
- forward = "\238\152\135",
-
- audio = "\238\175\139",
- subtitle = "\238\175\141",
- volume_mute = "\238\173\138",
- volume_quiet = "\238\172\184",
- volume_low = "\238\172\189",
- volume_high = "\238\173\130",
-
- download = "\239\133\144",
- downloading = "\239\140\174",
- loop_off = "\239\133\178",
- loop_on = "\239\133\181",
- info = "\239\146\164",
- ontop_on = "\238\165\190",
- ontop_off = "\238\166\129",
- screenshot = "\239\154\142",
- fullscreen = "\239\133\160",
- fullscreen_exit = "\239\133\166",
-
- jumpicons = {
- [5] = {"\238\171\186", "\238\171\187"},
- [10] = {"\238\171\188", "\238\172\129"},
- [30] = {"\238\172\133", "\238\172\134"},
- default = {"\238\172\138", "\238\172\138"}, -- second icon is mirrored in layout()
- },
-
- emoticon = {
- view = "👁️",
- comment = "💬",
- like = "👍",
- dislike = "👎"
- },
-
- playlist = "\238\161\159", -- unused rn
-}
-
--- Localization
-local language = {
- ['en'] = {
- welcome = 'Drop files or URLs here to play', -- this text appears when mpv starts
- off = 'OFF',
- na = 'Not available',
- none = 'None available',
- video = 'Video',
- audio = 'Audio',
- subtitle = 'Subtitle',
- nosub = 'No subtitles available',
- noaudio = 'No audio tracks available',
- track = ' tracks:',
- playlist = 'Playlist',
- nolist = 'Playlist is empty',
- chapter = 'Chapter',
- nochapter = 'No chapters available',
- ontop = 'Pin window',
- ontopdisable = 'Unpin window',
- loopenable = 'Enable loop',
- loopdisable = 'Disable loop',
- screenshot = "Screenshot",
- statsinfo = "Information",
- download = "Download",
- download_in_progress = "Download in progress",
- downloading = "Downloading",
- downloaded = "Already downloaded",
- }
-}
-
--- apply lang opts
-local texts = language[user_opts.language] or language["en"]
-
-local function contains(list, item)
- local t = {}
- if type(list) ~= "table" then
- for str in string.gmatch(list, '([^,]+)') do
- str = str:gsub("%s+", "")
- table.insert(t, str)
- end
- else
- t = list
- end
- for _, v in ipairs(t) do
- if v == item then
- return true
- end
- end
- return false
-end
-
-local function dumptable(o)
- if type(o) == 'table' then
- local s = '{ '
- for k,v in pairs(o) do
- if type(k) ~= 'number' then k = '"'..k..'"' end
- s = s .. '['..k..'] = ' .. dumptable(v) .. ','
- end
- return s .. '} '
- else
- return tostring(o)
- end
-end
-
-local thumbfast = {
- width = 0,
- height = 0,
- disabled = true,
- available = false
-}
-
-local sponsorblock_color_map = {
- sponsor = user_opts.sponsorblock_sponsor_color,
- intro = user_opts.sponsorblock_intro_color,
- outro = user_opts.sponsorblock_outro_color,
- interaction = user_opts.sponsorblock_interaction_color,
- selfpromo = user_opts.sponsorblock_selfpromo_color,
- preview = user_opts.sponsorblock_preview_color,
- music_offtopic = user_opts.sponsorblock_music_offtopic_color,
- filler = user_opts.sponsorblock_filler_color
-}
-
-local tick_delay = 1 / 60 -- 60FPS
-local audio_track_count = 0 -- TODO: implement
-local sub_track_count = 0 -- TODO: implement
-local window_control_box_width = 138
-local max_descsize = 125
-local comments_per_page = 25
-local is_december = os.date("*t").month == 12
-local UNICODE_MINUS = string.char(0xe2, 0x88, 0x92) -- UTF-8 for U+2212 MINUS SIGN
-local iconfont = 'fluent-system-icons'
-
-local function osc_color_convert(color)
- return color:sub(6,7) .. color:sub(4,5) .. color:sub(2,3)
-end
-
-local playpause_size = user_opts.playpause_size or 30
-local midbuttons_size = user_opts.midbuttons_size or 24
-local sidebuttons_size = user_opts.sidebuttons_size or 24
-local osc_styles = {
- background_bar = "{\\1c&H" .. osc_color_convert(user_opts.osc_color) .. "&}",
- box_bg = "{\\blur" .. user_opts.fade_blur_strength .. "\\bord" .. user_opts.fade_alpha .. "\\1c&H000000&\\3c&H" .. osc_color_convert(user_opts.osc_color) .. "&}",
- title_bar_box_bg = "{\\blur" .. user_opts.title_bar_fade_blur_strength .. "\\bord" .. user_opts.title_bar_fade_alpha .. "\\1c&H000000&\\3c&H" .. osc_color_convert(user_opts.osc_color) .. "&}",
- chapter_title = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.chapter_title_color) .. "&\\3c&H000000&\\fs" .. user_opts.time_font_size .. "\\fn" .. user_opts.font .. "}",
- control_1 = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.playpause_color) .. "&\\3c&HFFFFFF&\\fs" .. playpause_size .. "\\fn" .. iconfont .. "}",
- control_2 = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.middle_buttons_color) .. "&\\3c&HFFFFFF&\\fs" .. midbuttons_size .. "\\fn" .. iconfont .. "}",
- control_2_flip = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.middle_buttons_color) .. "&\\3c&HFFFFFF&\\fs" .. midbuttons_size .. "\\fn" .. iconfont .. "\\fry180}",
- control_3 = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.side_buttons_color) .. "&\\3c&HFFFFFF&\\fs" .. sidebuttons_size .. "\\fn" .. iconfont .. "}",
- element_down = "{\\1c&H" .. osc_color_convert(user_opts.held_element_color) .. "&}",
- element_hover = "{" .. (contains(user_opts.hover_effect, "color") and "\\1c&H" .. osc_color_convert(user_opts.hover_effect_color) .. "&" or "") .."\\2c&HFFFFFF&" .. (contains(user_opts.hover_effect, "size") and string.format("\\fscx%s\\fscy%s", user_opts.hover_button_size, user_opts.hover_button_size) or "") .. "}",
- seekbar_bg = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.seekbarbg_color) .. "&}",
- seekbar_fg = "{\\blur1\\bord1\\1c&H" .. osc_color_convert(user_opts.seekbarfg_color) .. "&}",
- thumbnail = "{\\blur0\\bord1\\1c&H" .. osc_color_convert(user_opts.thumbnail_border_color) .. "&\\3c&H" .. osc_color_convert(user_opts.thumbnail_border_outline) .. "&}",
- time = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.time_color) .. "&\\3c&H000000&\\fs" .. user_opts.time_font_size .. "\\fn" .. user_opts.font .. "}",
- title = "{\\blur1\\bord0.5\\1c&H" .. osc_color_convert(user_opts.title_color) .. "&\\3c&H0&\\fs".. user_opts.title_font_size .."\\q2\\fn" .. user_opts.font .. "}",
- tooltip = "{\\blur1\\bord0.5\\1c&HFFFFFF&\\3c&H000000&\\fs" .. user_opts.time_font_size .. "\\fn" .. user_opts.font .. "}",
- volumebar_bg = "{\\blur0\\bord0\\1c&H999999&}",
- volumebar_fg = "{\\blur1\\bord1\\1c&H" .. osc_color_convert(user_opts.side_buttons_color) .. "&}",
- window_control = "{\\blur1\\bord0.5\\1c&H" .. osc_color_convert(user_opts.window_controls_color) .. "&\\3c&H0&\\fs20\\fnmpv-osd-symbols}",
- window_title = "{\\blur1\\bord0.5\\1c&H" .. osc_color_convert(user_opts.window_title_color) .. "&\\3c&H0&\\fs20\\q2\\fn" .. user_opts.font .. "}",
- description = '{\\blur1\\bord0.5\\1c&HFFFFFF&\\3c&H000000&\\fs'.. user_opts.description_font_size ..'\\q2\\fn' .. user_opts.font .. '}',
-}
-
--- internal states, do not touch
-local state = {
- showtime = nil, -- time of last invocation (last mouse move)
- osc_visible = false,
- anistart = nil, -- time when the animation started
- anitype = nil, -- current type of animation
- animation = nil, -- current animation alpha
- mouse_down_counter = 0, -- used for softrepeat
- active_element = nil, -- nil = none, 0 = background, 1+ = see elements[]
- active_event_source = nil, -- the "button" that issued the current event
- tc_right_rem = not user_opts.time_total, -- if the right timecode should display total or remaining time
- fulltime = user_opts.time_ms,
- mp_screen_sizeX = nil, mp_screen_sizeY = nil, -- last screen-resolution, to detect resolution changes to issue reINITs
- initREQ = false, -- is a re-init request pending?
- last_mouseX = nil, last_mouseY = nil, -- last mouse position, to detect significant mouse movement
- mouse_in_window = false,
- fullscreen = false,
- tick_timer = nil,
- tick_last_time = 0, -- when the last tick() was run
- hide_timer = nil,
- cache_state = nil,
- buffering = false,
- idle = false,
- enabled = true,
- input_enabled = true,
- showhide_enabled = false,
-
- border = true,
- title_bar = true,
- maximized = false,
- osd = mp.create_osd_overlay('ass-events'),
- new_file_flag = false, -- flag to detect new file starts
- chapter_list = {}, -- sorted by time
- chapter_list_pre_sponsorblock = {},
- mute = false,
- looping = false,
- sliderpos = 0,
- touchingprogressbar = false, -- if the mouse is touching the progress bar
- initialborder = mp.get_property('border'),
- playingWhilstSeeking = false,
- playingWhilstSeekingWaitingForEnd = false,
- persistent_progresstoggle = user_opts.persistent_progress_default,
-
- downloaded_once = false,
- downloading = false,
- file_size_bytes = 0,
- file_size_normalized = "Approximating size...",
- is_URL = false,
- URL_path = "", -- used for yt-dlp downloading
- videoCantBeDownloaded = false, -- TODO: needs to be removed
-
- localDescription = nil,
- localDescriptionClick = nil,
- localDescriptionIsClickable = false,
- videoDescription = "", -- use if it is a YouTube video
- descriptionLoaded = false,
- showingDescription = false,
- scrolledlines = 25,
- youtubeuploader = "",
- jsoncomments= {},
- youtubecomments = {},
- commentsParsed = false,
- currentCommentIndex = 0,
- commentsPage = 0,
- maxCommentPages = 0,
- commentsAdditionalText = "",
-
- sponsor_segments = {},
-
- message_text = nil, -- TODO: needs to be removed
- message_hide_timer = nil, -- TODO: needs to be removed
-}
-
-local logo_lines = {
- -- White border
- "{\\c&HE5E5E5&\\p6}m 895 10 b 401 10 0 410 0 905 0 1399 401 1800 895 1800 1390 1800 1790 1399 1790 905 1790 410 1390 10 895 10 {\\p0}",
- -- Purple fill
- "{\\c&H682167&\\p6}m 925 42 b 463 42 87 418 87 880 87 1343 463 1718 925 1718 1388 1718 1763 1343 1763 880 1763 418 1388 42 925 42{\\p0}",
- -- Darker fill
- "{\\c&H430142&\\p6}m 1605 828 b 1605 1175 1324 1456 977 1456 631 1456 349 1175 349 828 349 482 631 200 977 200 1324 200 1605 482 1605 828{\\p0}",
- -- White fill
- "{\\c&HDDDBDD&\\p6}m 1296 910 b 1296 1131 1117 1310 897 1310 676 1310 497 1131 497 910 497 689 676 511 897 511 1117 511 1296 689 1296 910{\\p0}",
- -- Triangle
- "{\\c&H691F69&\\p6}m 762 1113 l 762 708 b 881 776 1000 843 1119 911 1000 978 881 1046 762 1113{\\p0}",
-}
-
-local santa_hat_lines = {
- -- Pompoms
- "{\\c&HC0C0C0&\\p6}m 500 -323 b 491 -322 481 -318 475 -311 465 -312 456 -319 446 -318 434 -314 427 -304 417 -297 410 -290 404 -282 395 -278 390 -274 387 -267 381 -265 377 -261 379 -254 384 -253 397 -244 409 -232 425 -228 437 -228 446 -218 457 -217 462 -216 466 -213 468 -209 471 -205 477 -203 482 -206 491 -211 499 -217 508 -222 532 -235 556 -249 576 -267 584 -272 584 -284 578 -290 569 -305 550 -312 533 -309 523 -310 515 -316 507 -321 505 -323 503 -323 500 -323{\\p0}",
- "{\\c&HE0E0E0&\\p6}m 315 -260 b 286 -258 259 -240 246 -215 235 -210 222 -215 211 -211 204 -188 177 -176 172 -151 170 -139 163 -128 154 -121 143 -103 141 -81 143 -60 139 -46 125 -34 129 -17 132 -1 134 16 142 30 145 56 161 80 181 96 196 114 210 133 231 144 266 153 303 138 328 115 373 79 401 28 423 -24 446 -73 465 -123 483 -174 487 -199 467 -225 442 -227 421 -232 402 -242 384 -254 364 -259 342 -250 322 -260 320 -260 317 -261 315 -260{\\p0}",
- -- Main cap
- "{\\c&H0000F0&\\p6}m 1151 -523 b 1016 -516 891 -458 769 -406 693 -369 624 -319 561 -262 526 -252 465 -235 479 -187 502 -147 551 -135 588 -111 1115 165 1379 232 1909 761 1926 800 1952 834 1987 858 2020 883 2053 912 2065 952 2088 1000 2146 962 2139 919 2162 836 2156 747 2143 662 2131 615 2116 567 2122 517 2120 410 2090 306 2089 199 2092 147 2071 99 2034 64 1987 5 1928 -41 1869 -86 1777 -157 1712 -256 1629 -337 1578 -389 1521 -436 1461 -476 1407 -509 1343 -507 1284 -515 1240 -519 1195 -521 1151 -523{\\p0}",
- -- Cap shadow
- "{\\c&H0000AA&\\p6}m 1657 248 b 1658 254 1659 261 1660 267 1669 276 1680 284 1689 293 1695 302 1700 311 1707 320 1716 325 1726 330 1735 335 1744 347 1752 360 1761 371 1753 352 1754 331 1753 311 1751 237 1751 163 1751 90 1752 64 1752 37 1767 14 1778 -3 1785 -24 1786 -45 1786 -60 1786 -77 1774 -87 1760 -96 1750 -78 1751 -65 1748 -37 1750 -8 1750 20 1734 78 1715 134 1699 192 1694 211 1689 231 1676 246 1671 251 1661 255 1657 248 m 1909 541 b 1914 542 1922 549 1917 539 1919 520 1921 502 1919 483 1918 458 1917 433 1915 407 1930 373 1942 338 1947 301 1952 270 1954 238 1951 207 1946 214 1947 229 1945 239 1939 278 1936 318 1924 356 1923 362 1913 382 1912 364 1906 301 1904 237 1891 175 1887 150 1892 126 1892 101 1892 68 1893 35 1888 2 1884 -9 1871 -20 1859 -14 1851 -6 1854 9 1854 20 1855 58 1864 95 1873 132 1883 179 1894 225 1899 273 1908 362 1910 451 1909 541{\\p0}",
- -- Brim and tip pompom
- "{\\c&HF8F8F8&\\p6}m 626 -191 b 565 -155 486 -196 428 -151 387 -115 327 -101 304 -47 273 2 267 59 249 113 219 157 217 213 215 265 217 309 260 302 285 283 373 264 465 264 555 257 608 252 655 292 709 287 759 294 816 276 863 298 903 340 972 324 1012 367 1061 394 1125 382 1167 424 1213 462 1268 482 1322 506 1385 546 1427 610 1479 662 1510 690 1534 725 1566 752 1611 796 1664 830 1703 880 1740 918 1747 986 1805 1005 1863 991 1897 932 1916 880 1914 823 1945 777 1961 725 1979 673 1957 622 1938 575 1912 534 1862 515 1836 473 1790 417 1755 351 1697 305 1658 266 1633 216 1593 176 1574 138 1539 116 1497 110 1448 101 1402 77 1371 37 1346 -16 1295 15 1254 6 1211 -27 1170 -62 1121 -86 1072 -104 1027 -128 976 -133 914 -130 851 -137 794 -162 740 -181 679 -168 626 -191 m 2051 917 b 1971 932 1929 1017 1919 1091 1912 1149 1923 1214 1970 1254 2000 1279 2027 1314 2066 1325 2139 1338 2212 1295 2254 1238 2281 1203 2287 1158 2282 1116 2292 1061 2273 1006 2229 970 2206 941 2167 938 2138 918{\\p0}",
-}
-
---
--- Helper functions
---
-
-local function kill_animation()
- state.anistart = nil
- state.animation = nil
- state.anitype = nil
-end
-
-local function set_osd(res_x, res_y, text, z)
- if state.osd.res_x == res_x and
- state.osd.res_y == res_y and
- state.osd.data == text then
- return
- end
- state.osd.res_x = res_x
- state.osd.res_y = res_y
- state.osd.data = text
- state.osd.z = z
- state.osd:update()
-end
-
--- scale factor for translating between real and virtual ASS coordinates
-local function get_virt_scale_factor()
- local w, h = mp.get_osd_size()
- if w <= 0 or h <= 0 then
- return 0, 0
- end
- return osc_param.playresx / w, osc_param.playresy / h
-end
-
--- return mouse position in virtual ASS coordinates (playresx/y)
-local function get_virt_mouse_pos()
- if state.mouse_in_window then
- local sx, sy = get_virt_scale_factor()
- local x, y = mp.get_mouse_pos()
- return x * sx, y * sy
- else
- return -1, -1
- end
-end
-
-local function set_virt_mouse_area(x0, y0, x1, y1, name)
- local sx, sy = get_virt_scale_factor()
- mp.set_mouse_area(x0 / sx, y0 / sy, x1 / sx, y1 / sy, name)
-end
-
-local function scale_value(x0, x1, y0, y1, val)
- local m = (y1 - y0) / (x1 - x0)
- local b = y0 - (m * x0)
- return (m * val) + b
-end
-
--- returns hitbox spanning coordinates (top left, bottom right corner)
--- according to alignment
-local function get_hitbox_coords(x, y, an, w, h)
- local alignments = {
- [1] = function () return x, y-h, x+w, y end,
- [2] = function () return x-(w/2), y-h, x+(w/2), y end,
- [3] = function () return x-w, y-h, x, y end,
-
- [4] = function () return x, y-(h/2), x+w, y+(h/2) end,
- [5] = function () return x-(w/2), y-(h/2), x+(w/2), y+(h/2) end,
- [6] = function () return x-w, y-(h/2), x, y+(h/2) end,
-
- [7] = function () return x, y, x+w, y+h end,
- [8] = function () return x-(w/2), y, x+(w/2), y+h end,
- [9] = function () return x-w, y, x, y+h end,
- }
-
- return alignments[an]()
-end
-
-local function get_hitbox_coords_geo(geometry)
- return get_hitbox_coords(geometry.x, geometry.y, geometry.an,
- geometry.w, geometry.h)
-end
-
-local function get_element_hitbox(element)
- return element.hitbox.x1, element.hitbox.y1,
- element.hitbox.x2, element.hitbox.y2
-end
-
-local function mouse_hit_coords(bX1, bY1, bX2, bY2)
- local mX, mY = get_virt_mouse_pos()
- return (mX >= bX1 and mX <= bX2 and mY >= bY1 and mY <= bY2)
-end
-
-local function mouse_hit(element)
- return mouse_hit_coords(get_element_hitbox(element))
-end
-
-local function limit_range(min, max, val)
- if val > max then
- val = max
- elseif val < min then
- val = min
- end
- return val
-end
-
--- translate value into element coordinates
-local function get_slider_ele_pos_for(element, val)
- local ele_pos = scale_value(
- element.slider.min.value, element.slider.max.value,
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- val)
-
- return limit_range(
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- ele_pos)
-end
-
--- translates global (mouse) coordinates to value
-local function get_slider_value_at(element, glob_pos)
- if element then
- local val = scale_value(
- element.slider.min.glob_pos, element.slider.max.glob_pos,
- element.slider.min.value, element.slider.max.value,
- glob_pos)
-
- return limit_range(
- element.slider.min.value, element.slider.max.value,
- val)
- end
- -- fall back incase of loading errors
- return 0
-end
-
--- get value at current mouse position
-local function get_slider_value(element)
- return get_slider_value_at(element, get_virt_mouse_pos())
-end
-
--- multiplies two alpha values, formular can probably be improved
-local function mult_alpha(alphaA, alphaB)
- return 255 - (((1-(alphaA/255)) * (1-(alphaB/255))) * 255)
-end
-
-local function add_area(name, x1, y1, x2, y2)
- -- create area if needed
- if osc_param.areas[name] == nil then
- osc_param.areas[name] = {}
- end
- table.insert(osc_param.areas[name], {x1=x1, y1=y1, x2=x2, y2=y2})
-end
-
-local function ass_append_alpha(ass, alpha, modifier, inverse)
- local ar = {}
-
- for ai, av in pairs(alpha) do
- av = mult_alpha(av, modifier)
- if state.animation then
- local animpos = state.animation
- if inverse then
- animpos = 255 - animpos
- end
- av = mult_alpha(av, animpos)
- end
- ar[ai] = av
- end
-
- ass:append(string.format("{\\1a&H%X&\\2a&H%X&\\3a&H%X&\\4a&H%X&}",
- ar[1], ar[2], ar[3], ar[4]))
-end
-
-local function ass_draw_cir_cw(ass, x, y, r)
- ass:round_rect_cw(x-r, y-r, x+r, y+r, r)
-end
-
-local function ass_draw_rr_h_cw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_cw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_cw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-local function get_hide_timeout()
- if user_opts.visibility == "always" then
- return -1 -- disable autohide
- end
- return user_opts.hide_timeout
-end
-
--- Request that tick() is called (which typically re-renders the OSC).
--- The tick is then either executed immediately, or rate-limited if it was
--- called a small time ago.
-local function request_tick()
- if state.tick_timer == nil then
- state.tick_timer = mp.add_timeout(0, tick)
- end
-
- if not state.tick_timer:is_enabled() then
- local now = mp.get_time()
- local timeout = tick_delay - (now - state.tick_last_time)
- if timeout < 0 then
- timeout = 0
- end
- state.tick_timer.timeout = timeout
- state.tick_timer:resume()
- end
-end
-
-local function request_init()
- state.initREQ = true
- request_tick()
-end
-
--- Like request_init(), but also request an immediate update
-local function request_init_resize()
- request_init()
- -- ensure immediate update
- state.tick_timer:kill()
- state.tick_timer.timeout = 0
- state.tick_timer:resume()
-end
-
-local function render_wipe()
- mp.msg.trace('render_wipe()')
- state.osd.data = "" -- allows set_osd to immediately update on enable
- state.osd:remove()
-end
-
---
--- Tracklist Management
---
-
-local nicetypes = {video = texts.video, audio = texts.audio, sub = texts.subtitle}
-local tracks_osc, tracks_mpv
-
--- updates the OSC internal playlists, should be run each time the track-layout changes
-function update_tracklist()
- local tracktable = mp.get_property_native('track-list', {})
-
- -- by osc_id
- tracks_osc = {}
- tracks_osc.video, tracks_osc.audio, tracks_osc.sub = {}, {}, {}
- -- by mpv_id
- tracks_mpv = {}
- tracks_mpv.video, tracks_mpv.audio, tracks_mpv.sub = {}, {}, {}
- for n = 1, #tracktable do
- if not (tracktable[n].type == 'unknown') then
- local type = tracktable[n].type
- local mpv_id = tonumber(tracktable[n].id)
-
- -- by osc_id
- table.insert(tracks_osc[type], tracktable[n])
-
- -- by mpv_id
- tracks_mpv[type][mpv_id] = tracktable[n]
- tracks_mpv[type][mpv_id].osc_id = #tracks_osc[type]
- end
- end
-end
-
--- return a nice list of tracks of the given type (video, audio, sub)
-function get_tracklist(type)
- local message = nicetypes[type] .. texts.track
- if not tracks_osc or #tracks_osc[type] == 0 then
- message = texts.none
- else
- for n = 1, #tracks_osc[type] do
- local track = tracks_osc[type][n]
- local lang, title, selected = 'unknown', '', '○'
- if not(track.lang == nil) then lang = track.lang end
- if not(track.title == nil) then title = track.title end
- if (track.id == tonumber(mp.get_property(type))) then
- selected = '●'
- end
- message = message..'\n'..selected..' '..n..': ['..lang..'] '..title
- end
- end
- return message
-end
-
--- relatively change the track of given by tracks
- --(+1 -> next, -1 -> previous)
-function set_track(type, next)
- local current_track_mpv, current_track_osc
- current_track_osc = 0
- if (mp.get_property(type) == 'no') then
- current_track_osc = 0
- else
- current_track_mpv = tonumber(mp.get_property(type))
- if (tracks_mpv[type][current_track_mpv]) then
- current_track_osc = tracks_mpv[type][current_track_mpv].osc_id
- end
- end
- local new_track_osc = (current_track_osc + next) % (#tracks_osc[type] + 1)
- local new_track_mpv
- if new_track_osc == 0 then
- new_track_mpv = 'no'
- else
- new_track_mpv = tracks_osc[type][new_track_osc].id
- end
-
- mp.commandv('set', type, new_track_mpv)
-end
-
--- get the currently selected track of , OSC-style counted
-function get_track(type)
- local track = mp.get_property(type)
- if track ~= 'no' and track ~= nil then
- local tr = tracks_mpv[type][tonumber(track)]
- if tr then
- return tr.osc_id
- end
- end
- return 0
-end
-
--- convert slider_pos to logarithmic depending on volume_control user_opts
-local function set_volume(slider_pos)
- local volume = slider_pos
- if user_opts.volume_control_type == "logarithmic" then
- volume = slider_pos^2 / 100
- end
- return math.floor(volume)
-end
-
--- WindowControl helpers
-function window_controls_enabled()
- local val = user_opts.window_top_bar
- if val == 'auto' then
- return (not state.border) or (not state.title_bar) or state.fullscreen
- else
- return val ~= 'no'
- end
-end
-
---
--- Element Management
---
-local elements = {}
-
-local function prepare_elements()
- -- remove elements without layout or invisible
- local elements2 = {}
- for _, element in pairs(elements) do
- if element.layout ~= nil and element.visible then
- table.insert(elements2, element)
- end
- end
- elements = elements2
-
- local function elem_compare (a, b)
- return a.layout.layer < b.layout.layer
- end
-
- table.sort(elements, elem_compare)
-
- for _,element in pairs(elements) do
-
- local elem_geo = element.layout.geometry
-
- -- Calculate the hitbox
- local bX1, bY1, bX2, bY2 = get_hitbox_coords_geo(elem_geo)
- element.hitbox = {x1 = bX1, y1 = bY1, x2 = bX2, y2 = bY2}
-
- local style_ass = mp.assdraw.ass_new()
-
- -- prepare static elements
- style_ass:append("{}") -- hack to troll new_event into inserting a \n
- style_ass:new_event()
- style_ass:pos(elem_geo.x, elem_geo.y)
- style_ass:an(elem_geo.an)
- style_ass:append(element.layout.style)
-
- element.style_ass = style_ass
-
- local static_ass = mp.assdraw.ass_new()
-
- if element.type == "box" then
- --draw box
- static_ass:draw_start()
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h,
- element.layout.box.radius, element.layout.box.hexagon)
- static_ass:draw_stop()
-
- elseif element.type == "slider" then
- --draw static slider parts
- local slider_lo = element.layout.slider
- -- calculate positions of min and max points
- element.slider.min.ele_pos = user_opts.seek_handle_size * elem_geo.h / 2
- element.slider.max.ele_pos = elem_geo.w - element.slider.min.ele_pos
- element.slider.min.glob_pos = element.hitbox.x1 + element.slider.min.ele_pos
- element.slider.max.glob_pos = element.hitbox.x1 + element.slider.max.ele_pos
-
- static_ass:draw_start()
-
- -- a hack which prepares the whole slider area to allow center placements such like an=5
- static_ass:rect_cw(0, 0, elem_geo.w, elem_geo.h)
- static_ass:rect_ccw(0, 0, elem_geo.w, elem_geo.h)
- -- chapter marker nibbles
- if user_opts.show_chapter_markers and element.slider.markerF ~= nil and slider_lo.gap > 0 then
- local markers = element.slider.markerF()
- for _, marker in pairs(markers) do
- if marker >= element.slider.min.value and marker <= element.slider.max.value then
- local s = get_slider_ele_pos_for(element, marker)
- if slider_lo.gap > 5 then -- draw triangles
- --top
- if slider_lo.nibbles_top then
- static_ass:move_to(s - 3, slider_lo.gap - 5)
- static_ass:line_to(s + 3, slider_lo.gap - 5)
- static_ass:line_to(s, slider_lo.gap - 1)
- end
- --bottom
- if slider_lo.nibbles_bottom then
- static_ass:move_to(s - 3, elem_geo.h - slider_lo.gap + 5)
- static_ass:line_to(s, elem_geo.h - slider_lo.gap + 1)
- static_ass:line_to(s + 3, elem_geo.h - slider_lo.gap + 5)
- end
- else -- draw 2x1px nibbles
- --top
- if slider_lo.nibbles_top then
- static_ass:rect_cw(s - 1, 0, s + 1, slider_lo.gap);
- end
- --bottom
- if slider_lo.nibbles_bottom then
- static_ass:rect_cw(s - 1, elem_geo.h - slider_lo.gap, s + 1, elem_geo.h);
- end
- end
- end
- end
- end
- end
-
- element.static_ass = static_ass
-
- -- if the element is supposed to be disabled,
- -- style it accordingly and kill the eventresponders
- if not element.enabled then
- element.layout.alpha[1] = 215
- if not (element.name == "sub_track" or element.name == "audio_track" or element.name == "tog_playlist") then -- keep these to display tooltips
- element.eventresponder = nil
- end
- end
-
- -- gray out the element if it is toggled off
- if element.off then
- element.layout.alpha[1] = 100
- end
- end
-end
-
---
--- Element Rendering
---
-
--- returns nil or a chapter element from the native property chapter-list
-function get_chapter(possec)
- local cl = state.chapter_list -- sorted, get latest before possec, if any
-
- for n=#cl,1,-1 do
- if possec >= cl[n].time then
- return cl[n]
- end
- end
-end
-
-local function draw_seekbar_handle(element, elem_ass, override_alpha)
- local pos = element.slider.posF()
- if not pos then
- return 0, 0
- end
- local display_handle = user_opts.seek_handle_size > 0
- local elem_geo = element.layout.geometry
- local rh = display_handle and (user_opts.seek_handle_size * elem_geo.h / 2) or 0 -- handle radius
- local xp = get_slider_ele_pos_for(element, pos) -- handle position
- local handle_hovered = mouse_hit_coords(element.hitbox.x1 + xp - rh, element.hitbox.y1 + elem_geo.h / 2 - rh, element.hitbox.x1 + xp + rh, element.hitbox.y1 + elem_geo.h / 2 + rh) and element.enabled
-
- if display_handle then
- -- Apply size hover_effect only if hovering over the handle
- if handle_hovered and user_opts.hover_effect_for_sliders then
- if contains(user_opts.hover_effect, "size") then
- rh = rh * (user_opts.hover_button_size / 100)
- end
- end
-
- ass_draw_cir_cw(elem_ass, xp, elem_geo.h / 2, rh)
-
- if user_opts.hover_effect_for_sliders then
- elem_ass:draw_stop()
- elem_ass:merge(element.style_ass)
- ass_append_alpha(elem_ass, element.layout.alpha, override_alpha or 0)
- elem_ass:merge(element.static_ass)
- end
-
- return xp, rh
- end
- return xp, 0
-end
-
--- Draw seekbar progress more accurately
-local function draw_seekbar_progress(element, elem_ass)
- local pos = element.slider.posF()
- if not pos then
- return
- end
- local xp = get_slider_ele_pos_for(element, pos)
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- elem_ass:rect_cw(0, slider_lo.gap, xp, elem_geo.h - slider_lo.gap)
-end
-
--- Draws seekbar ranges according to user_opts
-local function draw_seekbar_ranges(element, elem_ass, xp, rh, override_alpha)
- local handle = xp and rh
- xp = xp or 0
- rh = rh or 0
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- local seekRanges = element.slider.seek_rangesF()
- if not seekRanges then
- return
- end
- elem_ass:draw_stop()
- elem_ass:merge(element.style_ass)
- ass_append_alpha(elem_ass, element.layout.alpha, override_alpha or user_opts.seek_range_alpha)
- elem_ass:append("{\\1cH&" .. osc_color_convert(user_opts.seekbar_cache_color) .. "&}")
- elem_ass:merge(element.static_ass)
-
- for _, range in pairs(seekRanges) do
- local pstart = math.max(0, get_slider_ele_pos_for(element, range["start"]) - slider_lo.gap)
- local pend = math.min(elem_geo.w, get_slider_ele_pos_for(element, range["end"]) + slider_lo.gap)
-
- if handle and (pstart < xp + rh and pend > xp - rh) then
- if pstart < xp - rh then
- elem_ass:rect_cw(pstart, slider_lo.gap, xp - rh, elem_geo.h - slider_lo.gap)
- end
- pstart = xp + rh
- end
-
- if pend > pstart then
- elem_ass:rect_cw(pstart, slider_lo.gap, pend, elem_geo.h - slider_lo.gap)
- end
- end
-end
-
-local function draw_sponsorblock_ranges(element, elem_ass, xp, rh)
- local function set_draw_color(color, value, slider_lo, elem_geo)
- elem_ass:draw_stop()
- elem_ass:merge(element.style_ass)
- ass_append_alpha(elem_ass, element.layout.alpha, user_opts.sponsorblock_seek_range_alpha)
- elem_ass:append("{\\1cH&" .. osc_color_convert(color) .. "&}")
- elem_ass:merge(element.static_ass)
-
- for _, range in pairs(value) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
- elem_ass:rect_cw(pstart - rh, slider_lo.gap, pend + rh, elem_geo.h - slider_lo.gap)
- end
- end
-
- if not user_opts.show_sponsorblock_segments then
- return
- end
-
- local handle = xp and rh
- xp = xp or 0
- rh = rh or 0
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
-
- local temp = elem_ass
-
- for key, value in pairs(state.sponsor_segments) do
- elem_ass = temp
-
- local color = sponsorblock_color_map[key]
- if color then
- set_draw_color(color, value, slider_lo, elem_geo)
- end
- end
-end
-
-function render_elements(master_ass)
- -- when the slider is dragged or hovered and we have a target chapter name
- -- then we use it instead of the normal title. we calculate it before the
- -- render iterations because the title may be rendered before the slider.
- state.forced_title = nil
-
- -- disable displaying chapter name in title when thumbfast is available
- -- because thumbfast will render it above the thumbnail instead
- if thumbfast.disabled then
- if user_opts.chapter_fmt ~= "no" and state.touchingprogressbar then
- local dur = mp.get_property_number("duration", 0)
- if dur > 0 then
- local ch = get_chapter(state.sliderpos * dur / 100)
- if ch and ch.title and ch.title ~= "" then
- state.forced_title = string.format(user_opts.chapter_fmt, ch.title)
- end
- end
- end
- end
- state.touchingprogressbar = false
-
- for n=1, #elements do
- local element = elements[n]
- local style_ass = mp.assdraw.ass_new()
- style_ass:merge(element.style_ass)
- ass_append_alpha(style_ass, element.layout.alpha, 0)
-
- if element.eventresponder and (state.active_element == n) then
- -- run render event functions
- if not (element.eventresponder.render == nil) then
- element.eventresponder.render(element)
- end
- if mouse_hit(element) then
- -- mouse down styling
- if (element.styledown) then
- style_ass:append(osc_styles.element_down)
- end
- if (element.softrepeat) and (state.mouse_down_counter >= 15
- and state.mouse_down_counter % 5 == 0) then
-
- element.eventresponder[state.active_event_source..'_down'](element)
- end
- state.mouse_down_counter = state.mouse_down_counter + 1
- end
- end
-
- local elem_ass = mp.assdraw.ass_new()
- elem_ass:merge(style_ass)
-
- if not (element.type == 'button') then
- elem_ass:merge(element.static_ass)
- end
-
- if element.type == "slider" then
- if element.name ~= "persistentseekbar" then
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- local s_min = element.slider.min.value
- local s_max = element.slider.max.value
-
- local xp, rh = draw_seekbar_handle(element, elem_ass) -- handle posistion, handle radius
- draw_seekbar_progress(element, elem_ass)
- if element.name == "seekbar" then
- draw_seekbar_ranges(element, elem_ass, xp, rh)
- draw_sponsorblock_ranges(element, elem_ass, xp, rh)
- end
-
- elem_ass:draw_stop()
-
- -- add tooltip
- if element.slider.tooltipF ~= nil and element.enabled then
- if mouse_hit(element) then
- local sliderpos = get_slider_value(element)
- local tooltiplabel = element.slider.tooltipF(sliderpos)
- local an = slider_lo.tooltip_an
- local ty
- if (an == 2) then
- ty = element.hitbox.y1
- else
- ty = element.hitbox.y1 + elem_geo.h/2
- end
-
- local tx = get_virt_mouse_pos()
- if (slider_lo.adjust_tooltip) then
- if an == 2 then
- if sliderpos < (s_min + 3) then
- an = an - 1
- elseif sliderpos > (s_max - 3) then
- an = an + 1
- end
- elseif (sliderpos > (s_max+s_min)/2) then
- an = an + 1
- tx = tx - 5
- else
- an = an - 1
- tx = tx + 10
- end
- end
-
- if element.name == "seekbar" then
- state.sliderpos = sliderpos
- end
-
- -- thumbfast
- if element.thumbnailable and not thumbfast.disabled then
- local osd_w = mp.get_property_number("osd-width")
- local r_w, r_h = get_virt_scale_factor()
-
- if osd_w then
- local hover_sec = 0
- if mp.get_property_number("duration") then hover_sec = mp.get_property_number("duration") * sliderpos / 100 end
- local thumbPad = user_opts.thumbnail_border
- local thumbMarginX = 18 / r_w
- local thumbMarginY = user_opts.time_font_size + thumbPad + 2 / r_h
- local thumbX = math.min(osd_w - thumbfast.width - thumbMarginX, math.max(thumbMarginX, tx / r_w - thumbfast.width / 2))
- local thumbY = (ty - thumbMarginY) / r_h - thumbfast.height
-
- thumbX = math.floor(thumbX + 0.5)
- thumbY = math.floor(thumbY + 0.5)
-
- if state.anitype == nil then
- elem_ass:new_event()
- elem_ass:append("{\\rDefault}")
- elem_ass:pos(thumbX * r_w, ty - thumbMarginY - thumbfast.height * r_h)
- elem_ass:an(7)
- elem_ass:append(osc_styles.thumbnail)
- elem_ass:draw_start()
- if user_opts.thumbnail_border_radius and user_opts.thumbnail_border_radius > 0 then
- elem_ass:round_rect_cw(-thumbPad * r_w, -thumbPad * r_h, (thumbfast.width + thumbPad) * r_w, (thumbfast.height + thumbPad) * r_h, user_opts.thumbnail_border_radius)
- else
- elem_ass:rect_cw(-thumbPad * r_w, -thumbPad * r_h, (thumbfast.width + thumbPad) * r_w, (thumbfast.height + thumbPad) * r_h)
- end
- elem_ass:draw_stop()
-
- -- force tooltip to be centered on the thumb, even at far left/right of screen
- tx = (thumbX + thumbfast.width / 2) * r_w
- an = 2
-
- mp.commandv("script-message-to", "thumbfast", "thumb", hover_sec, thumbX, thumbY)
- end
-
-
- -- chapter title
- if user_opts.chapter_fmt ~= "no" and state.touchingprogressbar then
- local dur = mp.get_property_number("duration", 0)
- if dur > 0 then
- local ch = get_chapter(state.sliderpos * dur / 100)
- if ch and ch.title and ch.title ~= "" then
- elem_ass:new_event()
- elem_ass:pos((thumbX + thumbfast.width / 2) * r_w, thumbY * r_h - user_opts.time_font_size / 2)
- elem_ass:an(an)
- elem_ass:append(slider_lo.tooltip_style)
- ass_append_alpha(elem_ass, slider_lo.alpha, 0)
- elem_ass:append(string.format(user_opts.chapter_fmt, ch.title))
- end
- end
- end
- end
- end
-
- -- tooltip label
- elem_ass:new_event()
- elem_ass:pos(tx, ty)
- elem_ass:an(an)
- elem_ass:append(slider_lo.tooltip_style)
- ass_append_alpha(elem_ass, slider_lo.alpha, 0)
- elem_ass:append(tooltiplabel)
- elseif element.thumbnailable and thumbfast.available then
- mp.commandv("script-message-to", "thumbfast", "clear")
- end
- end
- end
-
- elseif (element.type == "button") then
- local buttontext
- if type(element.content) == "function" then
- buttontext = element.content() -- function objects
- elseif element.content ~= nil then
- buttontext = element.content -- text objects
- end
- buttontext = buttontext:gsub(":%((.?.?.?)%) unknown ", ":%(%1%)") --gsub('%) unknown %(\'', '')
-
- local maxchars = element.layout.button.maxchars
- if not (maxchars == nil) and (#buttontext > maxchars) then
- local max_ratio = 1.25 -- up to 25% more chars while shrinking
- local limit = math.max(0, math.floor(maxchars * max_ratio) - 3)
- if (#buttontext > limit) then
- while (#buttontext > limit) do
- buttontext = buttontext:gsub(".[\128-\191]*$", "")
- end
- buttontext = buttontext .. "..."
- end
- local _, nchars2 = buttontext:gsub(".[\128-\191]*", "")
- local stretch = (maxchars/#buttontext)*100
- buttontext = string.format("{\\fscx%f}",
- (maxchars/#buttontext)*100) .. buttontext
- end
-
- -- add hover effects
- local button_lo = element.layout.button
- local is_clickable = element.eventresponder and (
- element.eventresponder["mbtn_left_down"] ~= nil or
- element.eventresponder["mbtn_left_up"] ~= nil
- )
- local hovered = mouse_hit(element) and is_clickable and element.enabled and state.mouse_down_counter == 0
- local hoverstyle = button_lo.hoverstyle
- if hovered and (contains(user_opts.hover_effect, "size") or contains(user_opts.hover_effect, "color")) then
- -- remove font scale tags for these elements, it looks out of place
- if element.name == "title" or element.name == "description" or element.name == "tc_left" or element.name == "tc_right" or element.name == "chapter_title" then
- hoverstyle = hoverstyle:gsub("\\fscx%d+\\fscy%d+", "")
- end
- elem_ass:append(hoverstyle .. buttontext)
- else
- elem_ass:append(buttontext)
- end
-
- -- apply blur effect if "glow" is in hover effects
- if hovered and contains(user_opts.hover_effect, "glow") then
- local shadow_ass = mp.assdraw.ass_new()
- shadow_ass:merge(style_ass)
- shadow_ass:append("{\\blur" .. user_opts.button_glow_amount .. "}" .. hoverstyle .. buttontext)
- elem_ass:merge(shadow_ass)
- end
-
- -- add tooltip for audio and subtitle tracks
- if not (element.tooltipF == nil) then
- if mouse_hit(element) then
- local tooltiplabel = element.tooltipF
- local an = 1
- local ty = element.hitbox.y1
- local tx = get_virt_mouse_pos()
-
- if ty < osc_param.playresy / 2 then
- ty = element.hitbox.y2
- an = 7
- end
-
- -- tooltip label
- if element.enabled then
- if type(element.tooltipF) == 'function' then
- tooltiplabel = element.tooltipF()
- else
- tooltiplabel = element.tooltipF
- end
- else
- tooltiplabel = element.nothingavailable
- end
-
- if tx > osc_param.playresx / 2 then --move tooltip to left side of mouse cursor
- tx = tx - string.len(tooltiplabel) * 8
- end
-
- elem_ass:new_event()
- elem_ass:pos(tx, ty)
- elem_ass:an(an)
- elem_ass:append(element.tooltip_style)
- elem_ass:append(tooltiplabel)
- end
- end
- end
-
- master_ass:merge(elem_ass)
- end
-end
-
-function render_persistent_progressbar(master_ass)
- for n=1, #elements do
- local element = elements[n]
- if element.name == "persistentseekbar" then
- local style_ass = mp.assdraw.ass_new()
- style_ass:merge(element.style_ass)
- if state.animation or not state.osc_visible then
- ass_append_alpha(style_ass, element.layout.alpha, 0, true)
-
- local elem_ass = mp.assdraw.ass_new()
- elem_ass:merge(style_ass)
- if element.type ~= "button" then
- elem_ass:merge(element.static_ass)
- end
-
- -- draw pos marker
- draw_seekbar_progress(element, elem_ass)
-
- if user_opts.persistent_buffer then
- draw_seekbar_ranges(element, elem_ass, nil, nil)
- end
-
- elem_ass:draw_stop()
- master_ass:merge(elem_ass)
- end
- end
- end
-end
-
---
--- Message display
---
-
--- pos is 1 based
-function limited_list(prop, pos)
- local proplist = mp.get_property_native(prop, {})
- local count = #proplist
- if count == 0 then
- return count, proplist
- end
-
- local fs = tonumber(mp.get_property('options/osd-font-size'))
- local max = math.ceil(osc_param.unscaled_y * 1.25 / fs)
- if max % 2 == 0 then
- max = max - 1
- end
- local delta = math.ceil(max / 2) - 1
- local begi = math.max(math.min(pos - delta, count - max + 1), 1)
- local endi = math.min(begi + max - 1, count)
-
- local reslist = {}
- for i=begi, endi do
- local item = proplist[i]
- item.current = (i == pos) and true or nil
- table.insert(reslist, item)
- end
- return count, reslist
-end
-
-local function set_tick_delay(_, display_fps)
- -- may be nil if unavailable or 0 fps is reported
- if not display_fps then
- return
- end
- tick_delay = 1 / display_fps
-end
-
-local function newfilereset()
- request_init()
- state.downloaded_once = false
- state.videoDescription = "Loading description..."
- state.file_size_normalized = "Approximating size..."
- state.localDescription = "Loading..."
- state.localDescriptionIsClickable = false
- state.localDescriptionClick = "Loading..."
- if is_url(mp.get_property("path")) then
- mp.set_property("title", "Loading...")
- end
-end
-
-local function startupevents()
- state.new_file_flag = true
- set_tick_delay("display_fps", mp.get_property_number("display_fps"))
- state.videoDescription = "Loading description..."
- state.file_size_normalized = "Approximating size..."
- check_path_url()
- checktitle()
- if user_opts.automatic_keyframe_mode then
- if mp.get_property_number("duration", 0) > user_opts.automatic_keyframe_limit then
- user_opts.seekbar_keyframes = true
- else
- user_opts.seekbar_keyframes = false
- end
- end
- destroyscrollingkeys() -- close description
-
- if user_opts.FORCE_fix_not_ontop and state.is_URL then
- mp.commandv("cycle", "ontop")
- mp.commandv("cycle", "ontop")
- mp.set_property("geometry", "75%:75%")
- end
-end
-
-function checktitle()
- local mediatitle = mp.get_property("media-title")
- mp.set_property("title", mediatitle)
-
- if (mp.get_property("filename") ~= mediatitle) and user_opts.dynamic_title then
- user_opts.title = "${media-title}"
- end
-
- -- fake description using metadata
- state.localDescription = nil
- state.localDescriptionClick = nil
- local title = mp.get_property("media-title")
- local artist = mp.get_property("filtered-metadata/by-key/Album_Artist") or mp.get_property("filtered-metadata/by-key/Artist") or mp.get_property("filtered-metadata/by-key/Uploader")
- if (mp.get_property("filtered-metadata/by-key/Album_Artist") and mp.get_property("filtered-metadata/by-key/Artist")) then
- if (mp.get_property("filtered-metadata/by-key/Album_Artist") ~= mp.get_property("filtered-metadata/by-key/Artist")) then
- artist = mp.get_property("filtered-metadata/by-key/Album_Artist") .. ', ' .. mp.get_property("filtered-metadata/by-key/Artist")
- end
- end
- local album = mp.get_property("filtered-metadata/by-key/Album")
- local description = mp.get_property("filtered-metadata/by-key/Description")
- local date = mp.get_property("filtered-metadata/by-key/Date")
-
- state.ytdescription = ""
- state.youtubeuploader = artist
-
- print(dumptable(mp.get_property_native("metadata")))
- if mp.get_property_native('metadata') then
- state.ytdescription = mp.get_property_native('metadata').ytdl_description or description or ""
- state.ytdescription = state.ytdescription:gsub('\r', '\\N'):gsub('\n', '\\N'):gsub("%%", "%%%%")
- else
- print("Failed to load metadata")
- end
-
- if user_opts.show_description then
- if (title) then
- if (#state.ytdescription > 1) then
- state.localDescriptionClick = title .. "\\N────────────────────\\N" .. state.ytdescription .. "\\N────────────────────\\N"
-
- local utf8split, lastchar = splitUTF8(state.ytdescription, max_descsize)
-
- if #utf8split ~= #state.ytdescription then
- local tmp = utf8split:gsub("[,%.%s]+$", "")
-
- utf8split = tmp .. "..."
- end
- utf8split = utf8split:match("^(.-)%s*$")
- local artisttext = state.is_URL and "By: " or "Uploader: "
- if artist then
- utf8split = utf8split .. " | " .. artisttext .. artist
- state.localDescriptionClick = state.localDescriptionClick .. artisttext .. artist
- end
- state.descriptionLoaded = true
- state.videoDescription = utf8split:gsub("\r", ""):gsub("\n", " ")
- state.localDescription = state.videoDescription
- else
- state.localDescriptionClick = title .. "\\N────────────────────\\N"
- end
- end
- if (artist ~= nil) then
- if (state.localDescription == nil) then
- state.localDescription = artist
- state.localDescriptionClick = state.localDescriptionClick .. state.localDescription
- state.localDescriptionIsClickable = true
- end
- end
- if (album ~= nil) then
- if (state.localDescription == nil) then -- only metadata
- state.localDescription = "Album: " .. album
- state.localDescriptionClick = state.localDescriptionClick .. state.localDescription
- state.localDescriptionIsClickable = true
- else -- append to other metadata
- if (state.localDescriptionClick ~= nil) then
- state.localDescriptionClick = state.localDescriptionClick .. " | " .. album
- else
- state.localDescriptionClick = album
- state.localDescriptionIsClickable = true
- end
- state.localDescription = state.localDescription .. " | " .. album
- end
- end
- if (date ~= nil) then
- local datenormal = normaliseDate(date)
- local datetext = "Year"
- if (#datenormal > 4) then datetext = "Date" end
- if (state.localDescription == nil) then -- only metadata
- state.localDescription = datetext .. ": " .. datenormal
- state.localDescriptionClick = state.localDescriptionClick .. state.localDescription
- state.localDescriptionIsClickable = true
- else -- append to other metadata
- if (state.localDescriptionClick ~= nil) then
- state.localDescriptionClick = state.localDescriptionClick .. "\\N" .. datetext .. ": " .. datenormal
- else
- state.localDescriptionClick = datenormal
- state.localDescriptionIsClickable = true
- end
- if (artist ~= nil and datetext == "Year") then
- state.localDescription = state.localDescription .. " (" .. datenormal .. ")"
- end
- -- state.localDescription = state.localDescription .. " | " .. datetext .. ": " .. datenormal
- end
- end
-
- if (user_opts.show_file_size) then
- local file_size = mp.get_property_native("file-size")
- if (file_size ~= nil) then
- file_size = mp.utils.format_bytes_humanized(file_size)
- if (state.localDescription == nil) then -- only metadata
- state.localDescription = "Size: " .. file_size
- state.localDescriptionClick = state.localDescriptionClick .. state.localDescription
- state.localDescriptionIsClickable = true
- else
- state.localDescriptionClick = state.localDescriptionClick .. "\\NSize: " .. file_size
- end
- end
- end
- end
-end
-
-function normaliseDate(date)
- date = string.gsub(date:gsub("/", ""), "-", "")
- if (#date > 8) then -- YYYYMMDD HHMMSS (plus a time)
- local dateTable = {year = date:sub(1,4), month = date:sub(5,6), day = date:sub(7,8)}
- return os.date(user_opts.date_format, os.time(dateTable)) .. date:sub(9)
- elseif (#date > 4) then -- YYYYMMDD
- local dateTable = {year = date:sub(1,4), month = date:sub(5,6), day = date:sub(7,8)}
- return os.date(user_opts.date_format, os.time(dateTable))
- else -- YYYY
- return date
- end
-end
-
-function exec_async(args, callback)
- local ret = mp.command_native_async({
- name = "subprocess",
- args = args,
- capture_stdout = true,
- capture_stderr = true
- }, callback)
-
- return ret and ret.status or nil
-end
-
-function is_url(s)
- if not s then
- user_opts.download_button = false
- return false
- end
-
- local url_pattern = "^[%w]+://[%w%.%-_]+%.[%a]+[-%w%.%-%_/?&=]*"
- return string.match(s, url_pattern) ~= nil
-end
-
-function check_path_url()
- state.is_URL = false
- state.downloading = false
-
- state.youtubecomments = {}
- state.commentsParsed = false
- state.currentCommentIndex = 0
- state.commentsPage = 0
- state.maxCommentPages = 0
-
- local path = mp.get_property("path")
- if not path then return nil end
-
- if string.find(path, "https://") then
- path = string.gsub(path, "ytdl://", "") -- Remove "ytdl://" prefix
- else
- path = string.gsub(path, "ytdl://", "https://") -- Replace "ytdl://" with "https://"
- end
-
- if is_url(path) and path or nil then
- state.is_URL = true
- state.url_path = path
- mp.msg.info("URL detected.")
-
- if user_opts.download_button then
- mp.msg.info("Fetching file size...")
- local command = {
- "yt-dlp",
- "--no-download",
- "-O",
- "%(filesize,filesize_approx)s", -- Fetch file size or approximate size
- path
- }
- exec_async(command, process_filesize)
- end
-
- -- Youtube Return Dislike API
- state.dislikes = ""
- if path:find('youtu%.?be') and (user_opts.show_description or user_opts.title_youtube_stats) then
- mp.msg.info("[WEB] Loading dislike count...")
- local filename = mp.get_property_osd("filename")
- local pattern = "v=([^&]+)"
- local match = string.match(filename, pattern)
- if match then
- exec_async({"curl","https://returnyoutubedislikeapi.com/votes?videoId=" .. match}, process_dislikes)
- else
- local _, _, videoID = string.find(filename, "([%w_-]+)%?si=")
- if videoID then
- exec_async({"curl","https://returnyoutubedislikeapi.com/votes?videoId=" .. videoID}, process_dislikes)
- else
- mp.msg.info("[WEB] Failed to fetch dislikes")
- end
- end
- end
-
- if user_opts.show_description then
- mp.msg.info("[WEB] Loading video description...")
- local command = {
- "yt-dlp",
- "--no-download",
- "-O Views: %(view_count)s\nComments: %(comment_count)s\nLikes: %(like_count)s",
- state.url_path
- }
- exec_async(command, process_vid_stats)
- end
-
- if user_opts.show_youtube_comments then
- mp.msg.info("[WEB] Downloading comments...")
- check_comments()
- end
- end
-end
-
-function check_comments()
- local function file_exists(file)
- local f = io.open(file, "rb")
- if f then f:close() end
- return f ~= nil
- end
-
- local function lines_from(file)
- if not file_exists(file) then return {} end
- local lines = {}
- for line in io.lines(file) do
- lines[#lines + 1] = line
- end
- return lines
- end
-
- mp.command_native_async({
- name = "subprocess",
- args = {
- "yt-dlp",
- "--skip-download",
- "--write-comments",
- "-o%(id)s",
- "-P " .. mp.command_native({"expand-path", user_opts.comments_download_path}),
- state.url_path
- },
- capture_stdout = true,
- capture_stderr = true
- }, function(success, result, error)
- if not success then
- print("[WEB] Couldn't write youtube comments: " .. error)
- return
- end
-
- local filename = ""
- if (mp.get_property("filename")) then
- mp.msg.info("[WEB] Downloaded comments")
- filename = mp.command_native({"expand-path", user_opts.comments_download_path .. '/'}) .. mp.get_property("filename"):gsub("watch%?v=", ""):match("^[^%?&]+") .. ".info.json"
- else
- mp.msg.info("[WEB] Comments failed to download...")
- return
- end
-
- if file_exists(filename) then
- mp.msg.info("[WEB] Reading comments file...")
- local lines = lines_from(filename)
- state.jsoncomments = mp.utils.parse_json(lines[1]).comments
- else
- mp.msg.info("[WEB] Error opening comments file")
- return
- end
- state.maxCommentPages = math.ceil(#state.jsoncomments / comments_per_page)
- if (#state.jsoncomments > 0) then
- state.commentsParsed = true
- else
- user_opts.show_youtube_comments = false -- prevent crash when viewing comments
- end
- if state.showingDescription then
- show_description(state.localDescriptionClick)
- end
- mp.msg.info("[WEB] Read and parsed comments")
- end )
-end
-
-function loadSetOfComments(startIndex)
- if (#state.jsoncomments < 1) then
- return
- end
-
- state.commentDescription = ""
- for i=startIndex, #state.jsoncomments do
- if i > startIndex + (comments_per_page - 1) then
- state.currentCommentIndex = i
- break
- end
-
- local comment = state.jsoncomments[i]
- local commentconstruction = comment.author
-
- local linebreak = ''
- if (i ~= startIndex) then
- linebreak = '\\N'
- end
- if (comment.parent ~= "root") then
- commentconstruction = linebreak .. "\\N | " .. commentconstruction .. " (Replying) | "
- else
- if (linebreak == '\\N') then
- commentconstruction = linebreak .. '-----\\N' .. commentconstruction .. ' | '
- else
- commentconstruction = '\\N' .. commentconstruction .. ' | '
- end
- end
-
- if (comment._time_text) then
- commentconstruction = commentconstruction .. comment._time_text
- end
- if (comment.is_favorited) then
- commentconstruction = commentconstruction .. (comment.is_favorited and ' | Favorited ♡\\N')
- end
- if (comment.is_pinned) then
- commentconstruction = commentconstruction .. (comment.is_pinned and ' | Pinned 📌\\N')
- else
- commentconstruction = commentconstruction .. '\\N'
- end
-
- local replyPad = ""
- if (comment.parent ~= "root") then
- replyPad = " | "
- commentconstruction = commentconstruction .. replyPad .. comment.text:gsub('\n', '\\N' .. replyPad)
- else
- commentconstruction = commentconstruction .. comment.text
- end
-
- if (comment.like_count) then
- local likeText = " likes"
- if (comment.like_count == 1) then
- likeText = " like"
- end
- commentconstruction = commentconstruction .. '\\N' .. replyPad .. comment.like_count .. likeText
- else
- commentconstruction = commentconstruction .. '\\N' .. replyPad .. "0 likes"
- end
- -- print(commentconstruction)
- state.youtubecomments[i] = commentconstruction
- state.commentDescription = state.commentDescription .. commentconstruction
- end
-end
-
-function process_filesize(success, result, error)
- if not success then
- print("[WEB] Couldn't fetch video filesize: " .. error)
- return
- end
-
- local fileSizeString = result.stdout
- state.file_size_bytes = tonumber(fileSizeString)
-
- if state.file_size_bytes then
- state.file_size_normalized = mp.utils.format_bytes_humanized(state.file_size_bytes)
- mp.msg.info("[WEB] Download size: " .. state.file_size_normalized)
- else
- local fs_prop = mp.get_property_osd("file-size")
- if fs_prop and fs_prop ~= "" then
- state.file_size_normalized = fs_prop
- mp.msg.info(fs_prop)
- else
- state.file_size_normalized = "Unknown"
- mp.msg.info("Unable to retrieve file size.")
- end
- end
-
- request_tick()
-end
-
-local function download_done(success, result, error)
- if success then
- show_message("{\\an9}[WEB] Download saved to " .. mp.command_native({"expand-path", user_opts.download_path}))
- state.downloaded_once = true
- mp.msg.info("[WEB] Download completed")
- else
- show_message("{\\an9}[WEB] Download failed - " .. (error or "Unknown error"))
- mp.msg.info("[WEB] Download failed")
- end
- state.downloading = false
-end
-
-function splitUTF8(str, maxLength)
- local result = {}
- local currentIndex = 1
- local length = #str
- local lastchar = 0
- while currentIndex <= length do
- lastchar = lastchar + 1
- local byte = string.byte(str, currentIndex)
- local charLength
- if byte >= 0 and byte <= 127 then
- charLength = 1
- elseif byte >= 192 and byte <= 223 then
- charLength = 2
- elseif byte >= 224 and byte <= 239 then
- charLength = 3
- -- CJK
- elseif byte >= 240 and byte <= 247 then
- charLength = 4
- else
- -- Unsupported UTF-8 sequence, handle as needed
- print("Unsupported UTF-8 sequence detected.")
- break
- end
- local currentPart = string.sub(str, currentIndex, currentIndex + charLength - 1)
- if #result > 0 and #result[#result] + #currentPart <= maxLength then
- result[#result] = result[#result] .. currentPart
- else
- result[#result + 1] = currentPart
- end
- currentIndex = currentIndex + charLength
- if #result > 0 and #result[#result] >= maxLength then
- break
- end
- end
- return result[1], lastchar
-end
-
-function process_vid_stats(success, result, error)
- if not success then
- print("[WEB] Couldn't fetch video stats: " .. error)
- return
- end
-
- state.localDescriptionClick =
- mp.get_property("media-title", "") ..
- "\\N────────────────────\\N" ..
- string.gsub(
- string.gsub(result.stdout, '\r', '\\N') ..
- state.dislikes, '\n', '\\N'
- ) ..
- "\\N────────────────────\\N" ..
- state.ytdescription
-
- if (state.dislikes == "") then
- state.localDescriptionClick = state.localDescriptionClick .. string.gsub(string.gsub(result.stdout, '\r', '\\N'), '\n', '\\N')
- state.localDescriptionClick = state.localDescriptionClick:sub(1, #state.localDescriptionClick - 2)
- end
- addLikeCountToTitle()
-
- if (state.localDescriptionClick:match('Views: (%d+)')) then
- state.localDescriptionClick = state.localDescriptionClick:gsub(state.localDescriptionClick:match('Views: (%d+)'), add_commas_to_number(state.localDescriptionClick:match('Views: (%d+)')))
- end
- if (state.localDescriptionClick:match('Likes: (%d+)')) then
- state.localDescriptionClick = state.localDescriptionClick:gsub(state.localDescriptionClick:match('Likes: (%d+)'), add_commas_to_number(state.localDescriptionClick:match('Likes: (%d+)')))
- end
- if (state.localDescriptionClick:match('Comments: (%d+)')) then
- state.localDescriptionClick = state.localDescriptionClick:gsub(state.localDescriptionClick:match('Comments: (%d+)'), add_commas_to_number(state.localDescriptionClick:match('Comments: (%d+)')))
- end
-
- state.localDescriptionClick = state.localDescriptionClick:gsub("Uploader: NA\\N", "")
- state.localDescriptionClick = state.localDescriptionClick:gsub("Uploaded: NA\\N", "")
- state.localDescriptionClick = state.localDescriptionClick:gsub("Views: NA\\N", "")
- state.localDescriptionClick = state.localDescriptionClick:gsub("Comments: NA\\N", "")
- state.localDescriptionClick = state.localDescriptionClick:gsub("Likes: NA\\N", "")
- state.localDescriptionClick = state.localDescriptionClick:gsub("Likes: NA", "")
- state.localDescriptionClick = state.localDescriptionClick:gsub("Dislikes: NA\\N", "")
-
- if false then
- state.localDescriptionClick = state.localDescriptionClick:gsub("Views:", icons.emoticon.view):gsub("Comments:", icons.emoticon.comment):gsub("Likes:", icons.emoticon.like):gsub("Dislikes:", icons.emoticon.dislike) -- replace with icons
- end
-
- if not state.ytdescription then
- if mp.get_property_number("estimated-vf-fps") then
- state.videoDescription = mp.get_property("width") .. "x" .. mp.get_property("height") .. " | FPS: " ..
- (math.floor(mp.get_property_number("estimated-vf-fps") + 0.5) or "") -- can't get a normal description, display something else
- end
- end
-
- state.descriptionLoaded = true
- if state.showingDescription then
- show_description(state.localDescriptionClick)
- end
- mp.msg.info("[WEB] Loaded video description")
-end
-
-function process_dislikes(success, result, error)
- if not success then
- print("[WEB] Couldn't fetch video dislikes: " .. error)
- return
- end
-
- local dislikes = result.stdout
- dislikes = add_commas_to_number(dislikes:match('"dislikes":(%d+)'))
- state.dislikecount = dislikes
-
- if dislikes then
- state.dislikes = "Dislikes: " .. dislikes
- mp.msg.info("[WEB] Fetched dislike count")
- else
- state.dislikes = ""
- end
-
- if (not state.descriptionLoaded) then
- if state.localDescriptionClick then
- state.localDescriptionClick = state.localDescriptionClick .. '\\N' .. state.dislikes
- else
- state.localDescriptionClick = state.dislikes
- end
- else
- addLikeCountToTitle()
- end
-end
-
-function add_commas_to_number(number)
- if number == nil then return '' end
-
- return tostring(number) -- Make sure the "number" is a string
- :reverse() -- Reverse the string
- :gsub('%d%d%d', '%0,') -- insert one comma after every 3 numbers
- :gsub(',$', '') -- Remove a trailing comma if present
- :reverse() -- Reverse the string again
- :sub(1) -- a little hack to get rid of the second return value
- end
-
-function addLikeCountToTitle()
- if (user_opts.show_description and user_opts.title_youtube_stats) then
- state.viewcount = add_commas_to_number(state.localDescriptionClick:match('Views: (%d+)'))
- state.likecount = add_commas_to_number(state.localDescriptionClick:match('Likes: (%d+)'))
- if (state.viewcount ~= '' and state.likecount ~= '' and state.dislikecount) then
- mp.set_property("title", mp.get_property("media-title") ..
- " | " .. icons.emoticon.view .. state.viewcount ..
- " | " .. icons.emoticon.like .. state.likecount ..
- " | " .. icons.emoticon.dislike .. state.dislikecount)
- elseif (state.viewcount ~= '' and state.likecount ~= '') then
- mp.set_property("title", mp.get_property("media-title") ..
- " | " .. icons.emoticon.view .. state.viewcount ..
- " | " .. icons.emoticon.like .. state.likecount)
- end
- end
-end
-
--- playlist and chapters --
-function get_playlist()
- local pos = mp.get_property_number('playlist-pos', 0) + 1
- local count, limlist = limited_list('playlist', pos)
- if count == 0 then
- return texts.nolist
- end
-
- local message = string.format(texts.playlist .. ' [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local title = v.title
- local _, filename = mp.utils.split_path(v.filename)
- if title == nil then
- title = filename
- end
- message = string.format('%s %s %s\n', message,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function get_chapterlist()
- local pos = mp.get_property_number('chapter', 0) + 1
- local count, limlist = limited_list('chapter-list', pos)
- if count == 0 then
- return texts.nochapter
- end
-
- local message = string.format(texts.chapter.. ' [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local time = mp.format_time(v.time)
- local title = v.title
- if title == nil then
- title = string.format(texts.chapter .. ' %02d', i)
- end
- message = string.format('%s[%s] %s %s\n', message, time,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-local function make_sponsorblock_segments()
- if not user_opts.show_sponsorblock_segments then return end
-
- local sponsor_types = user_opts.sponsor_types
-
- state.sponsor_segments = {}
- local temp_segment = {}
- local is_start_added = false
- local current_category = ""
-
- local duration = mp.get_property_number('duration', nil)
-
- if duration then
- for _, chapter in ipairs(state.chapter_list_pre_sponsorblock) do
- if chapter.title then
- for _, value in ipairs(sponsor_types) do
- if string.find(string.lower(chapter.title), value) then
- current_category = value
- if not temp_segment[current_category] then
- temp_segment[current_category] = {}
- end
- if not state.sponsor_segments[current_category] then
- state.sponsor_segments[current_category] = {}
- end
- end
- end
-
- if string.find(chapter.title, ("start"):gsub("[%[%]]", "%%%1")) then
- if not is_start_added then
- temp_segment[current_category]["start"] = chapter.time / duration * 100
- temp_segment[current_category]["is_start_added"] = true
- end
- end
- if string.find(chapter.title, ("end"):gsub("[%[%]]", "%%%1")) then
- if temp_segment[current_category]["is_start_added"] then
- temp_segment[current_category]["end"] = chapter.time / duration * 100
- if state.sponsor_segments ~= 2 then
- temp_segment[current_category]["is_start_added"] = nil
- -- table.sort(temp_segment[current_category], function(a, b) return a.time < b.time end)
- table.insert(state.sponsor_segments[current_category], temp_segment[current_category])
- end
- temp_segment[current_category] = {}
- is_start_added = false
- end
- end
- end
- end
- end
-
- if not user_opts.add_sponsorblock_chapters then
- -- remove [SponsorBlock] chapters
- local updated_chapters = {}
- for _, chapter in ipairs(state.chapter_list_pre_sponsorblock) do
- if not string.find(chapter.title, "%[SponsorBlock%]") then
- table.insert(updated_chapters, chapter)
- end
- end
- -- updated chapter list
- state.chapter_list = updated_chapters
- mp.set_property_native("chapter-list", updated_chapters)
- end
-
- print("Added SponsorBlock segments")
-end
-
-function show_message(text, duration)
- if state.showingDescription then
- destroyscrollingkeys()
- end
- if duration == nil then
- duration = tonumber(mp.get_property('options/osd-duration')) / 1000
- elseif not type(duration) == 'number' then
- print('duration: ' .. duration)
- end
-
- -- cut the text short, otherwise the following functions
- -- may slow down massively on huge input
- text = string.sub(text, 0, 4000)
-
- -- replace actual linebreaks with ASS linebreaks
- text = string.gsub(text, '\n', '\\N')
- text = "\\N" .. text
- state.message_text = text
-
- if not state.message_hide_timer then
- state.message_hide_timer = mp.add_timeout(0, request_tick)
- end
- state.message_hide_timer:kill()
- state.message_hide_timer.timeout = duration
- state.message_hide_timer:resume()
- request_tick()
-end
-
-function bind_keys(keys, name, func, opts)
- if not keys then
- mp.add_forced_key_binding(keys, name, func, opts)
- return
- end
- local i = 1
- for key in keys:gmatch("[^%s]+") do
- local prefix = i == 1 and '' or i
- mp.add_forced_key_binding(key, name .. prefix, func, opts)
- i = i + 1
- end
-end
-
-function unbind_keys(keys, name)
- if not keys then
- mp.remove_key_binding(name)
- return
- end
- local i = 1
- for key in keys:gmatch("[^%s]+") do
- local prefix = i == 1 and '' or i
- mp.remove_key_binding(name .. prefix)
- i = i + 1
- end
-end
-
-function destroyscrollingkeys()
- state.showingDescription = false
- state.scrolledlines = 25
- show_message("", 0.01) -- clear text
- unbind_keys("UP WHEEL_UP", "move_up")
- unbind_keys("DOWN WHEEL_DOWN", "move_down")
- unbind_keys("ENTER MBTN_LEFT", "select")
- unbind_keys("ESC MBTN_RIGHT", "close")
- unbind_keys("LEFT", "comments_left")
- unbind_keys("RIGHT", "comments_right")
-end
-
-function check_description()
- if not user_opts.show_description then return end
- if state.descriptionLoaded or state.localDescriptionIsClickable then
- if state.showingDescription then
- state.showingDescription = false
- destroyscrollingkeys()
- else
- state.showingDescription = true
- if state.is_URL then
- show_description(state.localDescriptionClick)
- else
- if state.localDescriptionClick == nil then
- show_description(state.localDescription)
- else
- show_description(state.localDescriptionClick)
- end
- end
- end
- end
-end
-
-function show_description(text)
- if state.is_URL and user_opts.show_youtube_comments then
- if state.commentsParsed and user_opts.show_youtube_comments then
- local pageText = "pages"
- if state.maxCommentPages == 1 then
- pageText = "page"
- end
- state.commentsAdditionalText = '\\N────────────────────\\NPress LEFT/RIGHT to view comments\\N' .. state.maxCommentPages .. ' ' .. pageText .. ' (' .. #state.jsoncomments .. ' comments)'
- text = text .. state.commentsAdditionalText
- else
- text = text .. '\\N────────────────────\\NComments loading...'
- end
- end
- text = string.gsub(text, '\n', '\\N')
-
- -- enable scrolling of menu --
- bind_keys("UP WHEEL_UP", "move_up", function()
- state.scrolledlines = state.scrolledlines + user_opts.scrolling_speed
- if (state.scrolledlines > 25) then
- state.scrolledlines = 25
- end
- reset_desc_timer()
- request_tick()
- end, { repeatable = true })
- bind_keys("DOWN WHEEL_DOWN", "move_down", function()
- state.scrolledlines = state.scrolledlines - user_opts.scrolling_speed
- reset_desc_timer()
- request_tick()
- end, { repeatable = true })
- bind_keys("ENTER", "select", destroyscrollingkeys)
- bind_keys("ESC", "close", function()
- if (state.commentsPage > 0) then
- state.commentsPage = 0
- state.message_text = state.localDescriptionClick .. state.commentsAdditionalText
- reset_desc_timer()
- request_tick()
- state.scrolledlines = 25
- else
- destroyscrollingkeys()
- end
- end) -- close menu using ESC
-
- local function returnMessageText()
- local totalCommentCount = #state.jsoncomments
- local firstCommentCount = (state.commentsPage - 1) * comments_per_page + 1
- local lastCommentCount = (state.commentsPage) * comments_per_page
- if lastCommentCount > totalCommentCount then
- lastCommentCount = totalCommentCount
- end
- loadSetOfComments(firstCommentCount)
- return 'Comments\\NPage ' .. state.commentsPage .. '/' .. state.maxCommentPages .. ' (' .. firstCommentCount .. '/' .. #state.jsoncomments .. ')\\N────────────────────\\N' .. state.commentDescription:gsub('\n', '\\N') .. '\\N────────────────────\\NEnd of page\\NPage ' .. state.commentsPage .. '/' .. state.maxCommentPages .. ' (' .. lastCommentCount .. '/' .. totalCommentCount .. ')'
- end
-
- state.commentsPage = 0
- if (state.is_URL and user_opts.show_youtube_comments) then
- bind_keys("LEFT", "comments_left", function()
- if (state.commentsParsed) then
- state.commentsPage = state.commentsPage - 1
- if (state.commentsPage == 0) then
- state.message_text = state.localDescriptionClick .. state.commentsAdditionalText
- elseif (state.commentsPage > 0) then
- state.message_text = returnMessageText()
- else
- state.commentsPage = state.maxCommentPages
- state.message_text = returnMessageText()
- end
- state.scrolledlines = 25
- end
- reset_desc_timer()
- request_tick()
- end)
- bind_keys("RIGHT", "comments_right", function()
- if (state.commentsParsed) then
- state.commentsPage = state.commentsPage + 1
- if (state.commentsPage > state.maxCommentPages) then
- state.commentsPage = 0
- state.message_text = state.localDescriptionClick .. state.commentsAdditionalText
- else
- state.message_text = returnMessageText()
- end
- state.scrolledlines = 25
- end
- reset_desc_timer()
- request_tick()
- end)
- end
-
- text = "\\N" .. text
- state.message_text = text
-
- if not state.message_hide_timer then
- state.message_hide_timer = mp.add_timeout(0, request_tick)
- end
- reset_desc_timer()
- request_tick()
-end
-
-function reset_desc_timer()
- state.message_hide_timer:kill()
- state.message_hide_timer.timeout = 10
- state.message_hide_timer:resume()
-end
-
-function render_message(ass)
- if state.message_hide_timer and state.message_hide_timer:is_enabled() and state.message_text then
- local _, lines = string.gsub(state.message_text, "\\N", "")
-
- local fontsize = tonumber(mp.get_property('options/osd-font-size'))
- local outline = tonumber(mp.get_property('options/osd-border-size'))
- local maxlines = math.ceil(osc_param.unscaled_y*0.75 / fontsize)
- local counterscale = osc_param.playresy / osc_param.unscaled_y
-
- if state.showingDescription then
- fontsize = fontsize * 0.85
- outline = outline * 0.85
- else
- fontsize = fontsize * counterscale / math.max(0.5 + math.min(lines/maxlines, 1), 1)
- outline = outline * counterscale / math.max(0.5 + math.min(lines/maxlines, 1)/2, 1)
- end
-
- if state.showingDescription then
- ass.text = string.format('{\\pos(0,0)\\an7\\1c&H000000&\\alpha&H%X&}', user_opts.description_alpha)
- ass:draw_start()
- ass:rect_cw(0, 0, osc_param.playresx, osc_param.playresy)
- ass:draw_stop()
- ass:new_event()
- end
-
- local style = '{\\bord' .. outline .. '\\fs' .. fontsize .. '}'
-
- ass:new_event()
- ass:append(style .. state.message_text)
-
- if state.showingDescription then
- ass:pos(20, state.scrolledlines)
- end
- else
- state.message_text = nil
- if state.showingDescription then destroyscrollingkeys() end
- end
-end
-
---
--- Initialisation and Layout
---
-
-local function new_element(name, type)
- elements[name] = {}
- elements[name].type = type
- elements[name].name = name
-
- -- add default stuff
- elements[name].eventresponder = {}
- elements[name].visible = true
- elements[name].enabled = true
- elements[name].softrepeat = false
- elements[name].styledown = (type == "button")
- elements[name].state = {}
-
- if type == "slider" then
- elements[name].slider = {min = {value = 0}, max = {value = 100}}
- elements[name].thumbnailable = false
- end
-
- return elements[name]
-end
-
-local function add_layout(name)
- if elements[name] ~= nil then
- -- new layout
- elements[name].layout = {}
-
- -- set layout defaults
- elements[name].layout.layer = 50
- elements[name].layout.alpha = {[1] = 0, [2] = 255, [3] = 255, [4] = 255}
-
- if elements[name].type == "button" then
- elements[name].layout.button = {
- maxchars = nil,
- hoverstyle = osc_styles.element_hover,
- }
- elseif elements[name].type == "slider" then
- -- slider defaults
- elements[name].layout.slider = {
- border = 1,
- gap = 1,
- nibbles_top = true,
- nibbles_bottom = true,
- adjust_tooltip = true,
- tooltip_style = "",
- tooltip_an = 2,
- alpha = {[1] = 0, [2] = 255, [3] = 88, [4] = 255},
- hoverstyle = osc_styles.element_hover:gsub("\\fscx%d+\\fscy%d+", ""), -- font scales messes with handle positions in werid ways
- }
- elseif elements[name].type == "box" then
- elements[name].layout.box = {radius = 0, hexagon = false}
- end
-
- return elements[name].layout
- else
- mp.msg.error("Can't add_layout to element '"..name.."', doesn't exist.")
- end
-end
-
--- Window Controls
-function window_controls()
- local wc_geo = {
- x = 0,
- y = 30,
- an = 1,
- w = osc_param.playresx,
- h = 30
- }
-
- local controlbox_w = window_control_box_width
-
- -- Default alignment is 'right'
- local controlbox_left = wc_geo.w - controlbox_w
-
- add_area('window-controls',
- get_hitbox_coords(controlbox_left, wc_geo.y, wc_geo.an,
- controlbox_w, wc_geo.h))
-
- local lo, ne
-
- -- Background Bar
- if user_opts.title_bar_box then
- new_element("wcbar", "box")
- lo = add_layout("wcbar")
- lo.geometry = wc_geo
- lo.layer = 10
- lo.style = osc_styles.background_bar
- lo.alpha[1] = user_opts.window_fade_alpha
- end
-
- local button_y = wc_geo.y - (wc_geo.h / 2)
- local first_geo =
- {x = controlbox_left + 30, y = button_y, an = 5, w = 40, h = wc_geo.h}
- local second_geo =
- {x = controlbox_left + 74, y = button_y, an = 5, w = 40, h = wc_geo.h}
- local third_geo =
- {x = controlbox_left + 118, y = button_y, an = 5, w = 40, h = wc_geo.h}
-
- -- Window control buttons use symbols in the custom mpv osd font
- -- because the official unicode codepoints are sufficiently
- -- exotic that a system might lack an installed font with them,
- -- and libass will complain that they are not present in the
- -- default font, even if another font with them is available.
-
- if user_opts.window_controls then
- -- Close: 🗙
- ne = new_element('close', 'button')
- ne.content = '\238\132\149'
- ne.eventresponder['mbtn_left_up'] =
- function () mp.commandv('quit') end
- lo = add_layout('close')
- lo.geometry = third_geo
- lo.style = osc_styles.window_control
- lo.button.hoverstyle = "{\\c&H" .. osc_color_convert(user_opts.window_controls_close_hover) .. "&}"
-
- -- Minimize: 🗕
- ne = new_element('minimize', 'button')
- ne.content = '\238\132\146'
- ne.eventresponder['mbtn_left_up'] =
- function () mp.commandv('cycle', 'window-minimized') end
- lo = add_layout('minimize')
- lo.geometry = first_geo
- lo.style = osc_styles.window_control
- lo.button.hoverstyle = "{\\c&H" .. osc_color_convert(user_opts.window_controls_minmax_hover) .. "&}"
-
- -- Maximize: 🗖/🗗
- ne = new_element('maximize', 'button')
- if state.maximized or state.fullscreen then
- ne.content = '\238\132\148'
- else
- ne.content = '\238\132\147'
- end
- ne.eventresponder['mbtn_left_up'] =
- function ()
- if state.fullscreen then
- mp.commandv('cycle', 'fullscreen')
- else
- mp.commandv('cycle', 'window-maximized')
- end
- end
- lo = add_layout('maximize')
- lo.geometry = second_geo
- lo.style = osc_styles.window_control
- lo.button.hoverstyle = "{\\c&H" .. osc_color_convert(user_opts.window_controls_minmax_hover) .. "&}"
- end
-
- -- Window Title
- if user_opts.window_title then
- ne = new_element("window_title", "button")
- ne.content = function ()
- local title = mp.command_native({"expand-text", user_opts.window_controls_title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- local titleval = not (title == "") and title or "mpv video"
- if (mp.get_property('ontop') == 'yes') then return "📌 " .. titleval end
- return titleval
- end
- lo = add_layout('window_title')
-
- local geo = {x = 20, y = button_y + 14, an = 1, w = osc_param.playresx - 50, h = wc_geo.h}
- if user_opts.title_bar_box then
- geo = {x = 10, y = button_y + 10, an = 1, w = osc_param.playresx - 50, h = wc_geo.h}
- end
-
- lo.geometry = geo
- lo.style = osc_styles.window_title
- lo.button.maxchars = geo.w / 10
- end
-end
-
---
--- ModernX Layout
---
-
-local layouts = {}
-
--- Default layout
-layouts["original"] = function ()
- local osc_geo = {
- w = osc_param.playresx,
- h = 180
- }
-
- -- origin of the controllers, left/bottom corner
- local posX = 0
- local posY = osc_param.playresy
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area('input', get_hitbox_coords(posX, posY, 1, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- add_area('showhide', 0, 0, osc_param.playresx, osc_param.playresy)
-
- -- fetch values
- local osc_w, osc_h = osc_geo.w, osc_geo.h
-
- -- Controller Background
- local lo, geo
-
- new_element('box_bg', 'box')
- lo = add_layout('box_bg')
- lo.geometry = {x = posX, y = posY, an = 7, w = osc_w, h = 1}
- lo.style = osc_styles.box_bg
- lo.layer = 10
- lo.alpha[3] = 0
-
- local top_titlebar = window_controls_enabled() and (user_opts.window_title or user_opts.window_controls)
-
- if not user_opts.title_bar_box and (user_opts.window_top_bar == "yes" or (not state.border) or (not state.title_bar) or state.fullscreen) and top_titlebar then
- new_element("title_alpha_bg", "box")
- lo = add_layout("title_alpha_bg")
- lo.geometry = {x = posX, y = -100, an = 7, w = osc_w, h = -1}
- lo.style = osc_styles.title_bar_box_bg
- lo.layer = 10
- lo.alpha[3] = 0
- end
-
- -- Alignment
- local refX = osc_w / 2
- local refY = posY
-
- -- Seekbar
- new_element('seekbarbg', 'box')
- lo = add_layout('seekbarbg')
- lo.geometry = {x = refX , y = refY - 100, an = 5, w = osc_geo.w - 50, h = 2}
- lo.layer = 13
- lo.style = osc_styles.seekbar_bg
- lo.alpha[1] = 128
- lo.alpha[3] = 128
-
- lo = add_layout('seekbar')
- lo.geometry = {x = refX, y = refY - 100, an = 5, w = osc_geo.w - 50, h = user_opts.progress_bar_height}
- lo.style = osc_styles.seekbar_fg
- lo.slider.gap = 7
- lo.slider.tooltip_style = osc_styles.tooltip
- lo.slider.tooltip_an = 2
- lo.layer = 100
-
- if (user_opts.persistent_progress_default or user_opts.persistent_progress_toggle) then
- lo = add_layout('persistentseekbar')
- lo.geometry = {x = refX, y = refY, an = 5, w = osc_geo.w, h = user_opts.persistent_progress_height}
- lo.style = osc_styles.seekbar_fg
- lo.slider.gap = 7
- lo.slider.tooltip_an = 0
- end
-
- local jump_buttons = user_opts.jump_buttons
- local chapter_skip_buttons = user_opts.chapter_skip_buttons
- local track_nextprev_buttons = user_opts.track_nextprev_buttons
-
- local loop_button = user_opts.loop_button
- local info_button = user_opts.info_button
- local ontop_button = user_opts.ontop_button
- local screenshot_button = user_opts.screenshot_button
-
- if user_opts.compact_mode then
- user_opts.jump_buttons = false
- jump_buttons = false
- end
- local offset = jump_buttons and 60 or 0
- local outeroffset = (chapter_skip_buttons and 0 or 100) + (jump_buttons and 0 or 100)
-
- -- Title
- geo = {x = 25, y = refY - 117 + (((state.localDescription ~= nil or state.is_URL) and user_opts.show_description) and -20 or 0), an = 1, w = osc_geo.w - 50, h = 35}
- lo = add_layout("title")
- lo.geometry = geo
- lo.style = string.format("%s{\\clip(0,%f,%f,%f)}", osc_styles.title,
- geo.y - geo.h, geo.x + geo.w, geo.y + geo.h)
- lo.alpha[3] = 0
- -- lo.button.maxchars = geo.w / 11
-
- -- Description
- if (state.localDescription ~= nil or state.is_URL) and user_opts.show_description then
- geo = {x = 25, y = refY - 117, an = 1, w = osc_geo.w - 50, h = 19}
- lo = add_layout("description")
- lo.geometry = geo
-
- lo.style = string.format("%s{\\clip(0,%f,%f,%f)}", osc_styles.description,
- geo.y - geo.h, geo.x + geo.w, geo.y + geo.h)
-
- lo.alpha[3] = 0
- -- lo.button.maxchars = geo.w / 7
- end
-
- -- Volumebar
- if user_opts.volume_control then
- lo = new_element("volumebarbg", "box")
- lo.visible = (osc_param.playresx >= 900 - outeroffset) and user_opts.volume_control
- lo = add_layout("volumebarbg")
- lo.geometry = {x = 155, y = refY - 40, an = 4, w = 80, h = 2}
- lo.layer = 13
- lo.alpha[1] = 128
- lo.style = user_opts.volumebar_match_seek_color and osc_styles.seekbar_bg or osc_styles.volumebar_bg
-
- lo = add_layout("volumebar")
- lo.geometry = {x = 155, y = refY - 40, an = 4, w = 80, h = 8}
- lo.style = user_opts.volumebar_match_seek_color and osc_styles.seekbar_fg or osc_styles.volumebar_fg
- lo.slider.gap = 3
- lo.slider.tooltip_style = osc_styles.tooltip
- lo.slider.tooltip_an = 2
- end
-
- -- buttons
- if track_nextprev_buttons then
- lo = add_layout('pl_prev')
- lo.geometry = {x = refX - (60 + (chapter_skip_buttons and 60 or 0)) - offset, y = refY - 40 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- if chapter_skip_buttons then
- lo = add_layout('skipback')
- lo.geometry = {x = refX - 60 - offset, y = refY - 40 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- if jump_buttons then
- lo = add_layout('jumpback')
- lo.geometry = {x = refX - 60, y = refY - 40 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- lo = add_layout("play_pause")
- lo.geometry = {x = refX, y = refY - 40 , an = 5, w = 45, h = 45}
- lo.style = osc_styles.control_1
-
- if jump_buttons then
- lo = add_layout('jumpfrwd')
- lo.geometry = {x = refX + 60, y = refY - 40 , an = 5, w = 30, h = 24}
- -- HACK: jumpfrwd's icon must be mirrored for nonstandard # of seconds
- -- as the font only has an icon without a number for rewinding
- lo.style = (user_opts.jump_icon_number and icons.jumpicons[user_opts.jump_amount] ~= nil) and osc_styles.control_2 or osc_styles.control_2_flip
- end
-
- if chapter_skip_buttons then
- lo = add_layout('skipfrwd')
- lo.geometry = {x = refX + 60 + offset, y = refY - 40 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- if track_nextprev_buttons then
- lo = add_layout('pl_next')
- lo.geometry = {x = refX + (60 + (chapter_skip_buttons and 60 or 0)) + offset, y = refY - 40 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- -- Time
- local remsec = mp.get_property_number("playtime-remaining", 0)
- local possec = mp.get_property_number("playback-time", 0)
- local dur = mp.get_property_number("duration", 0)
-
- local show_hours = possec >= 3600 or user_opts.time_format ~= "dynamic"
- lo = add_layout("tc_left")
- lo.geometry = {x = 25, y = refY - 84, an = 7, w = 35 + (state.tc_ms and 30 or 0) + (show_hours and 20 or 0), h = 20}
- lo.style = osc_styles.time
-
- local show_remhours = (state.tc_right_rem and remsec >= 3600) or (not state.tc_right_rem and dur >= 3600) or user_opts.time_format ~= "dynamic"
- lo = add_layout("tc_right")
- lo.geometry = {x = osc_geo.w - 25 , y = refY -84, an = 9, w = 35 + (state.tc_ms and 30 or 0) + (show_remhours and 25 or 0), h = 20}
- lo.style = osc_styles.time
-
- -- Chapter Title (next to timestamp)
- if user_opts.show_chapter_title then
- lo = add_layout("separator")
- lo.geometry = {x = 65 + (state.tc_ms and 25 or 0) + (show_hours and 16 or 0), y = refY - 84, an = 7, w = 30, h = 20}
- lo.style = osc_styles.time
-
- lo = add_layout("chapter_title")
- lo.geometry = {x = 77 + (state.tc_ms and 25 or 0) + (show_hours and 16 or 0), y = refY - 84, an = 7, w = osc_geo.w - 200 - ((show_hours or state.tc_ms) and 60 or 0), h = 20}
- lo.style = osc_styles.chapter_title
- end
-
- -- Audio/Subtitle
- lo = add_layout('cy_audio')
- lo.geometry = {x = 37, y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 500 - outeroffset)
-
- lo = add_layout('cy_sub')
- lo.geometry = {x = 82, y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 600 - outeroffset)
-
- lo = add_layout('vol_ctrl')
- lo.geometry = {x = 127, y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 700 - outeroffset)
-
- -- Fullscreen/Loop/Info
- lo = add_layout('tog_fs')
- lo.geometry = {x = osc_geo.w - 37, y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 250 - outeroffset)
-
- if ontop_button then
- lo = add_layout('tog_ontop')
- lo.geometry = {x = osc_geo.w - 127 + (loop_button and 0 or 45), y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 700 - outeroffset)
- end
-
- if loop_button then
- lo = add_layout('tog_loop')
- lo.geometry = {x = osc_geo.w - 82, y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 600 - outeroffset)
- end
-
- if info_button then
- lo = add_layout('tog_info')
- lo.geometry = {x = osc_geo.w - 172 + (loop_button and 0 or 45) + (ontop_button and 0 or 45), y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 500 - outeroffset)
- end
-
- if screenshot_button then
- lo = add_layout('screenshot')
- lo.geometry = {x = osc_geo.w - 217 + (loop_button and 0 or 45) + (ontop_button and 0 or 45) + (info_button and 0 or 45), y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 300 - outeroffset)
- end
-
- if user_opts.download_button then
- lo = add_layout('download')
- lo.geometry = {x = osc_geo.w - 262 + (loop_button and 0 or 45) + (ontop_button and 0 or 45) + (info_button and 0 or 45) + (screenshot_button and 0 or 45), y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 400 - outeroffset)
- end
-end
-
--- Reduced occupation layout
-layouts["reduced"] = function ()
- local osc_geo = {
- w = osc_param.playresx,
- h = 180
- }
-
- -- origin of the controllers, left/bottom corner
- local posX = 0
- local posY = osc_param.playresy
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area('input', get_hitbox_coords(posX, posY, 1, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- add_area('showhide', 0, 0, osc_param.playresx, osc_param.playresy)
-
- -- fetch values
- local osc_w, osc_h = osc_geo.w, osc_geo.h
-
- -- Controller Background
- local lo, geo
-
- new_element('box_bg', 'box')
- lo = add_layout('box_bg')
- lo.geometry = {x = posX, y = posY, an = 7, w = osc_w, h = 1}
- lo.style = osc_styles.box_bg
- lo.layer = 10
- lo.alpha[3] = 0
-
- local top_titlebar = window_controls_enabled() and (user_opts.window_title or user_opts.window_controls)
-
- if not user_opts.title_bar_box and (user_opts.window_top_bar == "yes" or (not state.border) or (not state.title_bar) or state.fullscreen) and top_titlebar then
- new_element("title_alpha_bg", "box")
- lo = add_layout("title_alpha_bg")
- lo.geometry = {x = posX, y = -100, an = 7, w = osc_w, h = -1}
- lo.style = osc_styles.box_bg
- lo.layer = 10
- lo.alpha[3] = 0
- end
-
- -- Alignment
- local refX = osc_w / 2
- local refY = posY
-
- -- Seekbar
- new_element('seekbarbg', 'box')
- lo = add_layout('seekbarbg')
- lo.geometry = {x = refX , y = refY - 75, an = 5, w = osc_geo.w - 200, h = 2}
- lo.layer = 13
- lo.style = osc_styles.seekbar_bg
- lo.alpha[1] = 128
- lo.alpha[3] = 128
-
- lo = add_layout('seekbar')
- lo.geometry = {x = refX, y = refY - 75, an = 5, w = osc_geo.w - 200, h = 16}
- lo.style = osc_styles.seekbar_fg
- lo.slider.gap = 7
- lo.slider.tooltip_style = osc_styles.tooltip
- lo.slider.tooltip_an = 2
-
- if (user_opts.persistent_progress or user_opts.persistent_progresstoggle) then
- lo = add_layout('persistentseekbar')
- lo.geometry = {x = refX, y = refY, an = 5, w = osc_geo.w, h = user_opts.persistent_progressheight}
- lo.style = osc_styles.seekbar_fg
- lo.slider.gap = 7
- lo.slider.tooltip_an = 0
- end
-
- local jump_buttons = user_opts.jump_buttons
- local chapter_skip_buttons = user_opts.chapter_skip_buttons
- local track_nextprev_buttons = user_opts.track_nextprev_buttons
-
- local loop_button = user_opts.loop_button
- local info_button = user_opts.info_button
- local ontop_button = user_opts.ontop_button
- local screenshot_button = user_opts.screenshot_button
-
- if user_opts.compact_mode then
- user_opts.jump_buttons = false
- jump_buttons = false
- end
- local offset = jump_buttons and 60 or 0
- local outeroffset = (chapter_skip_buttons and 0 or 100) + (jump_buttons and 0 or 100)
-
- -- Title
- geo = {x = 25, y = refY - 97, an = 1, w = osc_geo.w - 170, h = 35}
- lo = add_layout("title")
- lo.geometry = geo
- lo.style = string.format("%s{\\clip(0,%f,%f,%f)}", osc_styles.title,
- geo.y - geo.h, geo.x + osc_geo.w - 170, geo.y + geo.h)
- lo.alpha[3] = 0
- lo.button.maxchars = geo.w / 5
-
- -- Description
- if (state.localDescription ~= nil or state.is_URL) and user_opts.show_description then
- geo = {x = osc_geo.w - 25, y = refY - 115, an = 9, w = 120, h = 19}
- lo = add_layout("description")
- lo.geometry = geo
- lo.style = string.format("%s{\\clip(0,%f,%f,%f)}", osc_styles.description,
- geo.y - geo.h, geo.x + geo.w, geo.y + geo.h)
- lo.alpha[3] = 0
- -- lo.button.maxchars = geo.w / 11
- end
-
- -- Volumebar
- if user_opts.volume_control then
- lo = new_element("volumebarbg", "box")
- lo.visible = (osc_param.playresx >= 900 - outeroffset) and user_opts.volume_control
- lo = add_layout("volumebarbg")
- lo.geometry = {x = 155, y = refY - 40, an = 4, w = 80, h = 2}
- lo.layer = 13
- lo.alpha[1] = 128
- lo.style = user_opts.volumebar_match_seek_color and osc_styles.seekbar_bg or osc_styles.volumebar_bg
-
- lo = add_layout("volumebar")
- lo.geometry = {x = 155, y = refY - 40, an = 4, w = 80, h = 8}
- lo.style = user_opts.volumebar_match_seek_color and osc_styles.seekbar_fg or osc_styles.volumebar_fg
- lo.slider.gap = 3
- lo.slider.tooltip_style = osc_styles.tooltip
- lo.slider.tooltip_an = 2
- end
-
- -- buttons
- if track_nextprev_buttons then
- lo = add_layout('pl_prev')
- lo.geometry = {x = refX - (60 + (chapter_skip_buttons and 60 or 0)) - offset, y = refY - 40 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- if chapter_skip_buttons then
- lo = add_layout('skipback')
- lo.geometry = {x = refX - 60 - offset, y = refY - 40 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- if jump_buttons then
- lo = add_layout('jumpback')
- lo.geometry = {x = refX - 60, y = refY - 40 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- lo = add_layout("play_pause")
- lo.geometry = {x = refX, y = refY - 40 , an = 5, w = 45, h = 45}
- lo.style = osc_styles.control_1
-
- if jump_buttons then
- lo = add_layout('jumpfrwd')
- lo.geometry = {x = refX + 60, y = refY - 40 , an = 5, w = 30, h = 24}
- -- HACK: jumpfrwd's icon must be mirrored for nonstandard # of seconds
- -- as the font only has an icon without a number for rewinding
- lo.style = (user_opts.jump_icon_number and icons.jumpicons[user_opts.jump_amount] ~= nil) and osc_styles.control_2 or osc_styles.control_2_flip
- end
-
- if chapter_skip_buttons then
- lo = add_layout('skipfrwd')
- lo.geometry = {x = refX + 60 + offset, y = refY - 40 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- if track_nextprev_buttons then
- lo = add_layout('pl_next')
- lo.geometry = {x = refX + (60 + (chapter_skip_buttons and 60 or 0)) + offset, y = refY - 40 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- -- Time
- local remsec = mp.get_property_number("playtime-remaining", 0)
- local possec = mp.get_property_number("playback-time", 0)
- local dur = mp.get_property_number("duration", 0)
-
- local show_hours = possec >= 3600 or user_opts.time_format ~= "dynamic"
- lo = add_layout("tc_left")
- lo.geometry = {x = 25, y = refY - 84, an = 7, w = 35 + (state.tc_ms and 30 or 0) + (show_hours and 20 or 0), h = 20}
- lo.style = osc_styles.time
-
- local show_remhours = (state.tc_right_rem and remsec >= 3600) or (not state.tc_right_rem and dur >= 3600) or user_opts.time_format ~= "dynamic"
- lo = add_layout("tc_right")
- lo.geometry = {x = osc_geo.w - 25 , y = refY -84, an = 9, w = 35 + (state.tc_ms and 30 or 0) + (show_remhours and 25 or 0), h = 20}
- lo.style = osc_styles.time
-
- -- Chapter Title (next to timestamp)
- if user_opts.show_chapter_title then
- lo = add_layout("chapter_title")
- lo.geometry = {x = 25, y = refY - 125, an = 1, w = 120, h = 19}
- lo.style = osc_styles.chapter_title
- end
-
- -- Audio/Subtitle
- lo = add_layout('cy_audio')
- lo.geometry = {x = 37, y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 500 - outeroffset)
-
- lo = add_layout('cy_sub')
- lo.geometry = {x = 82, y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 600 - outeroffset)
-
- lo = add_layout('vol_ctrl')
- lo.geometry = {x = 127, y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 700 - outeroffset)
-
- -- Fullscreen/Loop/Info
- lo = add_layout('tog_fs')
- lo.geometry = {x = osc_geo.w - 37, y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 250 - outeroffset)
-
- if ontop_button then
- lo = add_layout('tog_ontop')
- lo.geometry = {x = osc_geo.w - 127 + (loop_button and 0 or 45), y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 700 - outeroffset)
- end
-
- if loop_button then
- lo = add_layout('tog_loop')
- lo.geometry = {x = osc_geo.w - 82, y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 600 - outeroffset)
- end
-
- if info_button then
- lo = add_layout('tog_info')
- lo.geometry = {x = osc_geo.w - 172 + (loop_button and 0 or 45) + (ontop_button and 0 or 45), y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 500 - outeroffset)
- end
-
- if screenshot_button then
- lo = add_layout('screenshot')
- lo.geometry = {x = osc_geo.w - 217 + (loop_button and 0 or 45) + (ontop_button and 0 or 45) + (info_button and 0 or 45), y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 300 - outeroffset)
- end
-
- if user_opts.download_button then
- lo = add_layout('download')
- lo.geometry = {x = osc_geo.w - 262 + (loop_button and 0 or 45) + (ontop_button and 0 or 45) + (info_button and 0 or 45) + (screenshot_button and 0 or 45), y = refY - 40, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 400 - outeroffset)
- end
-end
-
--- Validate string type user options
-function validate_user_opts()
- if user_opts.window_top_bar ~= "auto" and
- user_opts.window_top_bar ~= "yes" and
- user_opts.window_top_bar ~= "no" then
- mp.msg.warn("window_top_bar cannot be '" .. user_opts.window_top_bar .. "'. Ignoring.")
- user_opts.window_top_bar = "auto"
- end
-
- if user_opts.volume_control_type ~= "linear" and
- user_opts.volume_control_type ~= "logarithmic" then
- mp.msg.warn("volume_control_type cannot be '" .. user_opts.volume_control_type .. "'. Ignoring.")
- user_opts.volume_control_type = "linear"
- end
-end
-
-function update_options(list)
- validate_user_opts()
- request_tick()
- visibility_mode("auto")
- request_init()
-end
-
--- OSC INIT
-local function osc_init()
- mp.msg.debug("osc_init")
-
- -- set canvas resolution according to display aspect and scaling setting
- local baseResY = 720
- local _, display_h, display_aspect = mp.get_osd_size()
- local scale
-
- if (mp.get_property("video") == "no") then -- dummy/forced window
- scale = user_opts.scale_forced_window
- elseif state.fullscreen then
- scale = user_opts.scale_fullscreen
- else
- scale = user_opts.scale_windowed
- end
-
- if user_opts.vid_scale then
- osc_param.unscaled_y = baseResY
- else
- osc_param.unscaled_y = display_h
- end
- osc_param.playresy = osc_param.unscaled_y / scale
- if display_aspect > 0 then
- osc_param.display_aspect = display_aspect
- end
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
-
- -- stop seeking with the slider to prevent skipping files
- state.active_element = nil
-
- elements = {}
-
- -- some often needed stuff
- local pl_count = mp.get_property_number("playlist-count", 0)
- local have_pl = pl_count > 1
- local pl_pos = mp.get_property_number("playlist-pos", 0) + 1
- local have_ch = mp.get_property_number("chapters", 0) > 0
- local loop = mp.get_property("loop-playlist", "no")
-
- local nojumpoffset = user_opts.jump_buttons and 0 or 100
- local noskipoffset = user_opts.chapter_skip_buttons and 0 or 100
-
- local compact_mode = user_opts.compact_mode
- if compact_mode then nojumpoffset = 100 end
- local outeroffset = (user_opts.chapter_skip_buttons and 0 or 140) + (user_opts.jump_buttons and 0 or 140)
- if compact_mode then outeroffset = 140 end
-
- local ne
-
- -- title
- ne = new_element("title", "button")
- ne.visible = user_opts.show_title
- ne.content = function ()
- local title = state.forced_title or
- mp.command_native({"expand-text", user_opts.title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv video"
- end
- ne.eventresponder["mbtn_left_up"] = function ()
- local title = mp.get_property_osd("media-title")
- show_message(title)
- end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(mp.get_property_osd("filename")) end
-
- -- description
- ne = new_element('description', 'button')
- ne.visible = (state.localDescription ~= nil or state.is_URL) and user_opts.show_description
- ne.content = function ()
- if #state.videoDescription > 25 and user_opts.layout_option == "reduced" then
- return "View description"
- end
-
- if state.is_URL then
- local title = "Loading description..."
- if state.descriptionLoaded then
- title = state.videoDescription:sub(1, 300)
-
- end
- -- get rid of new lines
- title = string.gsub(title, '\\N', ' ')
- return not (title == "") and title or "error"
- else
- if (state.localDescription == nil) then
- return ""
- else
- return string.gsub(state.localDescription, '\\N', ' ')
- end
- end
- end
- ne.eventresponder['mbtn_left_up'] =
- function ()
- check_description()
- end
-
- -- playlist buttons
- -- prev
- ne = new_element('pl_prev', 'button')
- ne.visible = (osc_param.playresx >= 500 - nojumpoffset - noskipoffset*(nojumpoffset == 0 and 1 or 10))
- ne.content = icons.previous
- ne.enabled = (pl_pos > 1) or (loop ~= 'no')
- ne.eventresponder['mbtn_left_up'] =
- function ()
- mp.commandv('playlist-prev', 'weak')
- destroyscrollingkeys()
- end
- ne.eventresponder['enter'] =
- function ()
- mp.commandv('playlist-prev', 'weak')
- destroyscrollingkeys()
- show_message(get_playlist())
- end
- ne.eventresponder['mbtn_right_up'] =
- function () show_message(get_playlist()) end
- ne.eventresponder['shift+mbtn_left_down'] =
- function () show_message(get_playlist()) end
-
- --next
- ne = new_element('pl_next', 'button')
- ne.visible = (osc_param.playresx >= 500 - nojumpoffset - noskipoffset*(nojumpoffset == 0 and 1 or 10))
- ne.content = icons.next
- ne.enabled = (have_pl and (pl_pos < pl_count)) or (loop ~= 'no')
- ne.eventresponder['mbtn_left_up'] =
- function ()
- mp.commandv('playlist-next', 'weak')
- destroyscrollingkeys()
- end
- ne.eventresponder['enter'] =
- function ()
- mp.commandv('playlist-next', 'weak')
- destroyscrollingkeys()
- show_message(get_playlist())
- end
- ne.eventresponder['mbtn_right_up'] =
- function () show_message(get_playlist()) end
- ne.eventresponder['shift+mbtn_left_down'] =
- function () show_message(get_playlist()) end
-
- --play control buttons
- --playpause
- ne = new_element("play_pause", "button")
- ne.content = function ()
- if mp.get_property("eof-reached") == "yes" then
- return icons.replay
- elseif mp.get_property("pause") == "yes" and not state.playingWhilstSeeking then
- return icons.play
- else
- return icons.pause
- end
- end
- ne.eventresponder["mbtn_left_up"] = function ()
- if mp.get_property("eof-reached") == "yes" then
- mp.commandv("seek", 0, "absolute-percent")
- mp.commandv("set", "pause", "no")
- else
- mp.commandv("cycle", "pause")
- end
- end
- ne.eventresponder["mbtn_right_down"] = function ()
- if user_opts.loop_in_pause then
- mp.command("show-text '" .. (state.looping and texts.loopdisable or texts.loopenable) .. "'")
- state.looping = not state.looping
- mp.set_property_native("loop-file", state.looping)
- end
- end
-
- --skipback
- local jump_amount = user_opts.jump_amount
- local jump_more_amount = user_opts.jump_more_amount
- local jump_mode = user_opts.jump_mode
- local tempicons = icons.jumpicons.default
-
- ne = new_element('skipback', 'button')
- ne.visible = (osc_param.playresx >= 400 - nojumpoffset*10)
- ne.softrepeat = user_opts.chapter_softrepeat == true
- ne.content = icons.rewind
- ne.enabled = (have_ch) or compact_mode -- disables button when no chapters available.
- ne.eventresponder['mbtn_left_down'] =
- function ()
- if compact_mode then
- mp.commandv('seek', -jump_amount, jump_mode)
- else
- mp.commandv("add", "chapter", -1)
- end
- end
- ne.eventresponder['mbtn_right_down'] =
- function ()
- if compact_mode then
- mp.commandv("add", "chapter", -1)
- show_message(get_chapterlist())
- show_message(get_chapterlist()) -- run twice as it might show the wrong chapter without another function
- else
- show_message(get_chapterlist())
- end
- end
- ne.eventresponder['shift+mbtn_left_down'] =
- function ()
- mp.commandv('seek', -jump_more_amount, jump_mode)
- end
- ne.eventresponder['shift+mbtn_right_down'] =
- function () show_message(get_chapterlist()) end
-
-
- --skipfrwd
- ne = new_element('skipfrwd', 'button')
- ne.visible = (osc_param.playresx >= 400 - nojumpoffset*10)
- ne.softrepeat = user_opts.chapter_softrepeat == true
- ne.content = icons.forward
- ne.enabled = (have_ch) or compact_mode -- disables button when no chapters available.
- ne.eventresponder['mbtn_left_down'] =
- function ()
- if compact_mode then
- mp.commandv('seek', jump_amount, jump_mode)
- else
- mp.commandv("add", "chapter", 1)
- end
- end
- ne.eventresponder['mbtn_right_down'] =
- function ()
- if compact_mode then
- mp.commandv("add", "chapter", 1)
- show_message(get_chapterlist())
- show_message(get_chapterlist()) -- run twice as it might show the wrong chapter without another function
- else
- show_message(get_chapterlist())
- end
- end
- ne.eventresponder['shift+mbtn_left_down'] =
- function ()
- mp.commandv('seek', jump_more_amount, jump_mode)
- end
- ne.eventresponder['shift+mbtn_right_down'] =
- function () show_message(get_chapterlist()) end
-
- if user_opts.jump_buttons then
- if user_opts.jump_icon_number then
- tempicons = icons.jumpicons[jump_amount] or icons.jumpicons.default
- end
-
- --jumpback
- ne = new_element('jumpback', 'button')
-
- ne.softrepeat = user_opts.jump_softrepeat == true
- ne.content = tempicons[1]
- ne.eventresponder['mbtn_left_down'] =
- function () mp.commandv('seek', -jump_amount, jump_mode) end
- ne.eventresponder['mbtn_right_down'] =
- function () mp.commandv('seek', -60, jump_mode) end
- ne.eventresponder['shift+mbtn_left_down'] =
- function () mp.commandv('frame-back-step') end
-
-
- --jumpfrwd
- ne = new_element('jumpfrwd', 'button')
-
- ne.softrepeat = user_opts.jump_softrepeat == true
- ne.content = tempicons[2]
- ne.eventresponder['mbtn_left_down'] =
- function () mp.commandv('seek', jump_amount, jump_mode) end
- ne.eventresponder['mbtn_right_down'] =
- function () mp.commandv('seek', 60, jump_mode) end
- ne.eventresponder['shift+mbtn_left_down'] =
- function () mp.commandv('frame-step') end
- end
-
- --
- update_tracklist()
-
- --cy_audio
- ne = new_element('cy_audio', 'button')
- ne.enabled = (#tracks_osc.audio > 0)
- ne.off = (get_track('audio') == 0)
- ne.visible = (osc_param.playresx >= 500 - outeroffset)
- ne.content = icons.audio
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = function ()
- local message = texts.off
- if not (get_track('audio') == 0) then
- message = (texts.audio .. ' [' .. get_track('audio') .. ' ∕ ' .. #tracks_osc.audio .. ']')
- local prop = mp.get_property('current-tracks/audio/title')
- if not prop then
- prop = mp.get_property('current-tracks/audio/lang')
- if not prop then
- prop = texts.na
- else
- message = message .. ' [' .. prop .. ']'
- end
- end
- return message
- end
- if not ne.enabled then
- message = "No audio tracks"
- end
- return message
- end
- ne.nothingavailable = texts.noaudio
- ne.eventresponder['mbtn_left_up'] =
- function () set_track('audio', 1) show_message(get_tracklist('audio')) end
- ne.eventresponder['enter'] =
- function ()
- set_track('audio', 1)
- show_message(get_tracklist('audio'))
- end
- ne.eventresponder['mbtn_right_up'] =
- function () set_track('audio', -1) show_message(get_tracklist('audio')) end
- ne.eventresponder['shift+mbtn_left_down'] =
- function () set_track('audio', 1) show_message(get_tracklist('audio')) end
- ne.eventresponder['shift+mbtn_right_down'] =
- function () show_message(get_tracklist('audio')) end
-
- --cy_sub
- ne = new_element('cy_sub', 'button')
- ne.enabled = #tracks_osc.sub > 0
- ne.off = get_track('sub') == 0
- ne.visible = (osc_param.playresx >= 600 - outeroffset)
- ne.content = icons.subtitle
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = function ()
- local message = texts.off
- if not (get_track('sub') == 0) then
- message = (texts.subtitle .. ' [' .. get_track('sub') .. ' ∕ ' .. #tracks_osc.sub .. ']')
- local prop = mp.get_property('current-tracks/sub/lang')
- if not prop then
- prop = texts.na
- else
- message = message .. ' [' .. prop .. ']'
- end
- prop = mp.get_property('current-tracks/sub/title')
- if prop then
- message = message .. ' ' .. prop
- end
- return message
- end
- return message
- end
- ne.nothingavailable = texts.nosub
- ne.eventresponder['mbtn_left_up'] =
- function ()
- mp.set_property_number("secondary-sid", 0)
- set_track('sub', 1)
- show_message(get_tracklist('sub'))
- end
- ne.eventresponder['enter'] =
- function ()
- mp.set_property_number("secondary-sid", 0)
- set_track('sub', 1)
- show_message(get_tracklist('sub'))
- end
- ne.eventresponder['mbtn_right_up'] =
- function ()
- mp.set_property_number("secondary-sid", 0)
- set_track('sub', -1)
- show_message(get_tracklist('sub'))
- end
- ne.eventresponder['shift+mbtn_left_down'] =
- function ()
- mp.set_property_number("secondary-sid", 0)
- set_track('sub', 1)
- show_message(get_tracklist('sub'))
- end
- ne.eventresponder['shift+mbtn_right_down'] =
- function () show_message(get_tracklist('sub')) end
-
-
-
- -- vol_ctrl
- ne = new_element("vol_ctrl", "button")
- ne.enabled = get_track("audio") > 0
- ne.off = get_track("audio") == 0
- ne.visible = (osc_param.playresx >= 700 - outeroffset) and user_opts.volume_control
- ne.content = function ()
- local volume = mp.get_property_number("volume", 0)
- if state.mute then
- return icons.volume_mute
- else
- if volume >= 75 then
- return icons.volume_high
- elseif volume >= 25 then
- return icons.volume_low
- else
- return icons.volume_quiet
- end
- end
- end
- ne.eventresponder['mbtn_left_up'] =
- function ()
- mp.commandv('cycle', 'mute')
- end
- ne.eventresponder["wheel_up_press"] =
- function ()
- if (state.mute) then mp.commandv('cycle', 'mute') end
- mp.commandv("osd-auto", "add", "volume", 5)
- end
- ne.eventresponder["wheel_down_press"] =
- function ()
- if (state.mute) then mp.commandv('cycle', 'mute') end
- mp.commandv("osd-auto", "add", "volume", -5)
- end
-
- --tog_fs
- ne = new_element('tog_fs', 'button')
- ne.content = function () return state.fullscreen and icons.fullscreen_exit or icons.fullscreen end
- ne.visible = (osc_param.playresx >= 250)
- ne.eventresponder['mbtn_left_up'] =
- function () mp.commandv('cycle', 'fullscreen') end
-
- --tog_loop
- ne = new_element('tog_loop', 'button')
- ne.content = function ()
- if (state.looping) then
- return (icons.loop_on)
- else
- return (icons.loop_off)
- end
- end
- ne.visible = (osc_param.playresx >= 600 - outeroffset)
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = function ()
- local message = texts.loopenable
- if state.looping then
- message = texts.loopdisable
- end
- return message
- end
- ne.eventresponder['mbtn_left_up'] =
- function ()
- state.looping = not state.looping
- mp.set_property_native("loop-file", state.looping)
- end
-
- --download
- ne = new_element("download", "button")
- ne.content = function () return state.downloading and icons.downloading or icons.download end
- ne.visible = (osc_param.playresx >= 1100 - outeroffset - (user_opts.loop_button and 0 or 100) - (user_opts.ontop_button and 0 or 100) - (user_opts.info_button and 0 or 100) - (user_opts.screenshot_button and 0 or 100)) and state.is_URL
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = function () return state.downloading and (texts.downloading .. "...") or (texts.download .. " (" .. state.file_size_normalized .. ")") end
- ne.eventresponder["mbtn_left_up"] = function ()
- if not state.videoCantBeDownloaded then
- local localpath = mp.command_native({"expand-path", user_opts.download_path})
-
- if state.downloaded_once then
- show_message("{\\an9}" .. texts.downloaded .. "...")
- elseif state.downloading then
- show_message("{\\an9}" .. texts.download_in_progress .. "...")
- else
- show_message("{\\an9}" .. texts.downloading .. "...")
- state.downloading = true
-
- -- use current or default ytdl-format
- local mpv_ytdl = (user_opts.ytdl_format and user_opts.ytdl_format ~= "") and user_opts.ytdl_format or mp.get_property("file-local-options/ytdl-format") or mp.get_property("ytdl-format") or ""
-
- local command = {
- "yt-dlp",
- mpv_ytdl,
- "--remux", "mp4",
- "--add-metadata",
- "--embed-subs",
- "-o", "%(title)s.%(ext)s",
- "-P", localpath,
- state.url_path
- }
-
- exec_async(command, download_done)
- end
- else
- show_message("{\\an9}Can't be downloaded")
- end
- end
-
- --screenshot
- ne = new_element("screenshot", "button")
- ne.content = icons.screenshot
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = texts.screenshot
- ne.visible = (osc_param.playresx >= 900 - outeroffset - (user_opts.loop_button and 0 or 100) - (user_opts.ontop_button and 0 or 100) - (user_opts.info_button and 0 or 100))
- ne.eventresponder["mbtn_left_up"] = function ()
- local temp_sub_pos = mp.get_property("sub-pos")
- if user_opts.screenshot_flag == "subtitles" or user_opts.screenshot_flag == "subtitles+each-frame" then
- mp.commandv("set", "sub-pos", 100)
- end
- mp.commandv("osd-msg", "screenshot", user_opts.screenshot_flag)
- mp.commandv("set", "sub-pos", temp_sub_pos)
- end
-
- --tog_info
- ne = new_element('tog_info', 'button')
- ne.content = icons.info
- ne.visible = (osc_param.playresx >= 800 - outeroffset - (user_opts.loop_button and 0 or 100) - (user_opts.ontop_button and 0 or 100))
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = texts.statsinfo
- ne.eventresponder['mbtn_left_up'] =
- function () mp.commandv('script-binding', 'stats/display-stats-toggle') end
-
- --tog_ontop
- ne = new_element('tog_ontop', 'button')
- ne.content = function ()
- if mp.get_property('ontop') == 'no' then
- return (icons.ontop_on)
- else
- return (icons.ontop_off)
- end
- end
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = function ()
- local message = texts.ontopdisable
- if mp.get_property('ontop') == 'no' then
- message = texts.ontop
- end
- return message
- end
- ne.visible = (osc_param.playresx >= 700 - outeroffset - (user_opts.loop_button and 0 or 100))
- ne.eventresponder['mbtn_left_up'] =
- function ()
- mp.commandv("cycle", "ontop")
- if (state.initialborder == 'yes') then
- if (mp.get_property('ontop') == 'yes') then
- mp.commandv('set', 'border', "no")
-
- else
- mp.commandv('set', 'border', "yes")
- end
- end
- end
-
- ne.eventresponder['mbtn_right_up'] =
- function ()
- mp.commandv("cycle", "ontop")
- end
-
- --seekbar
- ne = new_element('seekbar', 'slider')
- ne.enabled = not (mp.get_property('percent-pos') == nil)
- ne.thumbnailable = true
- state.slider_element = ne.enabled and ne or nil -- used for forced_title
- ne.slider.markerF = function ()
- local duration = mp.get_property_number('duration', nil)
- if duration then
- local chapters = mp.get_property_native("chapter-list", {})
- local markers = {}
- for n = 1, #chapters do
- markers[n] = (chapters[n].time / duration * 100)
- end
- return markers
- else
- return {}
- end
- end
- ne.slider.posF = function ()
- if mp.get_property_bool("eof-reached") then return 100 end
- return mp.get_property_number("percent-pos")
- end
- ne.slider.tooltipF = function (pos)
- state.touchingprogressbar = true
- local duration = mp.get_property_number("duration")
- if duration ~= nil and pos ~= nil then
- local possec = duration * (pos / 100)
- local time = mp.format_time(possec)
- -- If video is less than 1 hour, and the time format is not fixed, strip the "00:" prefix
- if possec < 3600 and user_opts.time_format ~= "fixed" then
- time = time:gsub("^00:", "")
- end
- return time
- else
- return ""
- end
-
- end
- ne.slider.seek_rangesF = function()
- if not user_opts.seek_range then
- return nil
- end
- local cache_state = state.cache_state
- if not cache_state then
- return nil
- end
- local duration = mp.get_property_number("duration")
- if (duration == nil) or duration <= 0 then
- return nil
- end
- local ranges = cache_state["seekable-ranges"]
- if #ranges == 0 then
- return nil
- end
- local nranges = {}
- for _, range in pairs(ranges) do
- nranges[#nranges + 1] = {
- ['start'] = 100 * range['start'] / duration,
- ['end'] = 100 * range['end'] / duration,
- }
- end
- return nranges
- end
- ne.eventresponder["mouse_move"] = --keyframe seeking when mouse is dragged
- function (element)
- if not element.state.mbtnleft then return end -- allow drag for mbtnleft only!
- -- mouse move events may pile up during seeking and may still get
- -- sent when the user is done seeking, so we need to throw away
- -- identical seeks
- if mp.get_property("pause") == "no" and user_opts.mouse_seek_pause then
- state.playingWhilstSeeking = true
- mp.commandv("cycle", "pause")
- end
- local seekto = get_slider_value(element)
- if element.state.lastseek == nil or element.state.lastseek ~= seekto then
- local flags = "absolute-percent"
- if not user_opts.seekbar_keyframes then
- flags = flags .. "+exact"
- end
- mp.commandv("seek", seekto, flags)
- element.state.lastseek = seekto
- end
-
- end
- ne.eventresponder['mbtn_left_down'] = --exact seeks on left click
- function (element)
- element.state.mbtnleft = true
- mp.commandv("seek", get_slider_value(element), "absolute-percent", "exact")
- end
- ne.eventresponder["shift+mbtn_left_down"] = --keyframe seeks on shift+left click
- function (element)
- element.state.mbtnleft = true
- mp.commandv("seek", get_slider_value(element), "absolute-percent")
- end
- ne.eventresponder["mbtn_left_up"] =
- function (element)
- element.state.mbtnleft = false
- end
- ne.eventresponder["mbtn_right_down"] = function (element)
- if (mp.get_property_native("chapter-list/count") > 0) then
- local chapter
- local pos = get_slider_value(element)
- local diff = math.huge
-
- for i, marker in ipairs(element.slider.markerF()) do
- if math.abs(pos - marker) < diff then
- diff = math.abs(pos - marker)
- chapter = i
- end
- end
-
- if chapter then
- mp.set_property("chapter", chapter - 1)
- end
- end
- end
- ne.eventresponder["reset"] =
- function (element)
- element.state.lastseek = nil
- if (state.playingWhilstSeeking) then
- if mp.get_property("eof-reached") == "no" then
- mp.commandv("cycle", "pause")
- end
- state.playingWhilstSeeking = false
- end
- end
-
- --volumebar
- if user_opts.volume_control then
- local volume_max = mp.get_property_number("volume-max") > 0 and mp.get_property_number("volume-max") or 100
- ne = new_element("volumebar", "slider")
- ne.visible = (osc_param.playresx >= 900 - outeroffset) and user_opts.volume_control
- ne.enabled = get_track('audio') > 0
- ne.slider = {min = {value = 0}, max = {value = volume_max}}
- ne.slider.markerF = function () return {} end
- ne.slider.seek_rangesF = function() return nil end
- ne.slider.posF = function ()
- local volume = mp.get_property_number("volume")
- if user_opts.volume_control_type == "logarithmic" then
- return math.sqrt(volume * 100)
- else
- return volume
- end
- end
- ne.slider.tooltipF = function (pos) return (get_track('audio') > 0) and set_volume(pos) or "" end
- ne.eventresponder["mouse_move"] = function (element)
- local pos = get_slider_value(element)
- local setvol = set_volume(pos)
- if element.state.lastseek == nil or element.state.lastseek ~= setvol then
- mp.commandv("osd-msg", "set", "volume", setvol)
- element.state.lastseek = setvol
- end
- end
- ne.eventresponder["mbtn_left_down"] = function (element)
- local pos = get_slider_value(element)
- mp.commandv("osd-msg", "set", "volume", set_volume(pos))
- end
- ne.eventresponder["reset"] = function (element) element.state.lastseek = nil end
- ne.eventresponder["wheel_up_press"] = function () mp.commandv("osd-msg", "add", "volume", 5) end
- ne.eventresponder["wheel_down_press"] = function () mp.commandv("osd-msg", "add", "volume", -5) end
- end
-
- --persistent seekbar
- if (user_opts.persistent_progress_default or user_opts.persistent_progress_toggle) then
- ne = new_element('persistentseekbar', 'slider')
- ne.enabled = not (mp.get_property('percent-pos') == nil)
- state.slider_element = ne.enabled and ne or nil -- used for forced_title
- ne.slider.markerF = function ()
- return {}
- end
- ne.slider.posF = function ()
- if mp.get_property_bool("eof-reached") then return 100 end
- return mp.get_property_number('percent-pos', nil)
- end
- ne.slider.tooltipF = function()
- return ""
- end
- ne.slider.seek_rangesF = function()
- if user_opts.persistent_buffer then
- if not user_opts.seek_range then
- return nil
- end
- local cache_state = state.cache_state
- if not cache_state then
- return nil
- end
- local duration = mp.get_property_number('duration', nil)
- if (duration == nil) or duration <= 0 then
- return nil
- end
- local ranges = cache_state['seekable-ranges']
- if #ranges == 0 then
- return nil
- end
- local nranges = {}
- for _, range in pairs(ranges) do
- nranges[#nranges + 1] = {
- ['start'] = 100 * range['start'] / duration,
- ['end'] = 100 * range['end'] / duration,
- }
- end
- return nranges
- end
- return nil
- end
- end
-
- -- Helper function to format time
- local function format_time(seconds)
- if not seconds then return "--:--" end
-
- local hours = math.floor(seconds / 3600)
- local minutes = math.floor((seconds % 3600) / 60)
- local whole_seconds = math.floor(seconds % 60)
- local milliseconds = state.tc_ms and math.floor((seconds % 1) * 1000) or nil
-
- -- Always show HH:MM:SS if user_opts.time_format is "fixed"
- local force_hours = user_opts.time_format == "fixed"
-
- -- Format string templates
- local format_with_ms = (hours > 0 or force_hours) and "%02d:%02d:%02d.%03d" or "%02d:%02d.%03d"
- local format_without_ms = (hours > 0 or force_hours) and "%02d:%02d:%02d" or "%02d:%02d"
-
- if state.tc_ms then
- return string.format(format_with_ms,
- (hours > 0 or force_hours) and hours or minutes,
- (hours > 0 or force_hours) and minutes or whole_seconds,
- (hours > 0 or force_hours) and whole_seconds or milliseconds,
- (hours > 0 or force_hours) and milliseconds or nil)
- else
- return string.format(format_without_ms,
- (hours > 0 or force_hours) and hours or minutes,
- (hours > 0 or force_hours) and minutes or whole_seconds,
- (hours > 0 or force_hours) and whole_seconds or nil)
- end
- end
-
- -- Current position time display
- ne = new_element("tc_left", "button")
- ne.content = function()
- local playback_time = mp.get_property_number("playback-time", 0)
- return format_time(playback_time)
- end
- ne.eventresponder["mbtn_left_up"] = function()
- state.tc_ms = not state.tc_ms
- request_init()
- end
-
- -- Chapter title (below seekbar)
- local chapter_index = mp.get_property_number("chapter", -1)
- ne = new_element("separator", "button")
- ne.visible = true
- ne.content = function()
- if chapter_index >= 0 or state.buffering then
- return " • "
- else
- return ""
- end
- end
-
- ne = new_element("chapter_title", "button")
- ne.visible = true
- ne.content = function()
- if state.buffering then
- return "Buffering..." .. " " .. mp.get_property("cache-buffering-state") .. "%"
- else
- if user_opts.chapter_fmt ~= "no" and chapter_index >= 0 then
- request_init()
- local chapters = mp.get_property_native("chapter-list", {})
- local chapter_title = (chapters[chapter_index + 1] and chapters[chapter_index + 1].title ~= "") and chapters[chapter_index + 1].title
- or chapter_index + 1 .. "/" .. #chapters
- chapter_title = mp.command_native({"escape-ass", chapter_title})
- return string.format(user_opts.chapter_fmt, chapter_title)
- end
- end
- return "" -- fallback
- end
- ne.eventresponder["mbtn_left_up"] = function() show_message(get_chapterlist()) end
- ne.eventresponder["mbtn_right_up"] = nil
-
- -- Total/remaining time display
- ne = new_element("tc_right", "button")
- ne.visible = (mp.get_property_number("duration", 0) > 0)
- ne.content = function()
- local duration = mp.get_property_number("duration", 0)
- if duration <= 0 then return "--:--" end
-
- local time_to_display = state.tc_right_rem and
- mp.get_property_number("playtime-remaining", 0) or duration
-
- local prefix = state.tc_right_rem and
- (user_opts.unicode_minus and UNICODE_MINUS or "-") or ""
-
- return prefix .. format_time(time_to_display)
- end
- ne.eventresponder["mbtn_left_up"] = function()
- state.tc_right_rem = not state.tc_right_rem
- end
-
- -- load layout
- layouts[user_opts.layout_option]()
-
- -- load window controls
- if window_controls_enabled() then
- window_controls()
- end
-
- --do something with the elements
- prepare_elements()
-end
-
---
--- Other important stuff
---
-function show_osc()
- -- show when disabled can happen (e.g. mouse_move) due to async/delayed unbinding
- if not state.enabled then return end
-
- mp.msg.trace('show_osc')
- --remember last time of invocation (mouse move)
- state.showtime = mp.get_time()
-
- osc_visible(true)
-
- if (user_opts.fade_duration > 0) then
- state.anitype = nil
- end
-end
-
-function hide_osc()
- mp.msg.trace('hide_osc')
- if not state.enabled then
- -- typically hide happens at render() from tick(), but now tick() is
- -- no-op and won't render again to remove the osc, so do that manually.
- state.osc_visible = false
- adjustSubtitles(false)
- render_wipe()
- elseif (user_opts.fade_duration > 0) then
- if not(state.osc_visible == false) then
- state.anitype = 'out'
- request_tick()
- end
- else
- osc_visible(false)
- end
- if thumbfast.available then
- mp.commandv("script-message-to", "thumbfast", "clear")
- end
-end
-
-function osc_visible(visible)
- if state.osc_visible ~= visible then
- state.osc_visible = visible
- adjustSubtitles(true) -- raise subtitles
- end
- request_tick()
-end
-
-function adjustSubtitles(visible)
- if visible and user_opts.raise_subtitles and state.osc_visible == true and (state.fullscreen == false or user_opts.show_fullscreen) then
- local _, h = mp.get_osd_size()
- if h > 0 then
- local subpos = math.floor((osc_param.playresy - user_opts.raise_subtitle_amount)/osc_param.playresy*100)
- if subpos < 0 then
- subpos = 100 -- out of screen, default to original position
- end
- mp.commandv('set', 'sub-pos', subpos) -- percentage
- end
- elseif user_opts.raise_subtitles then
- mp.commandv('set', 'sub-pos', 100)
- end
-end
-
-function pause_state(name, enabled)
- -- fix OSC instantly hiding after scrubbing (initiates a 'fake' pause to stop issues when scrubbing to the end of files)
- if (state.playingWhilstSeeking) then state.playingWhilstSeekingWaitingForEnd = true return end
- if (state.playingWhilstSeekingWaitingForEnd) then state.playingWhilstSeekingWaitingForEnd = false return end
- state.paused = enabled
- if user_opts.show_on_pause then
- if enabled then
- visibility_mode("auto")
- show_osc()
- else
- visibility_mode("auto")
- end
- end
- request_tick()
-end
-
-function cache_state(name, st)
- state.cache_state = st
- request_tick()
-end
-
-
-local function mouse_leave()
- if get_hide_timeout() >= 0 then
- hide_osc()
- end
- -- reset mouse position
- state.last_mouseX, state.last_mouseY = nil, nil
- state.mouse_in_window = false
-end
-
-local function do_enable_key_bindings()
- if state.enabled then
- if not state.showhide_enabled then
- mp.enable_key_bindings('showhide', 'allow-vo-dragging+allow-hide-cursor')
- mp.enable_key_bindings('showhide_wc', 'allow-vo-dragging+allow-hide-cursor')
- end
- state.showhide_enabled = true
- end
-end
-
-local function enable_osc(enable)
- state.enabled = enable
- if enable then
- do_enable_key_bindings()
- else
- hide_osc() -- acts immediately when state.enabled == false
- if state.showhide_enabled then
- mp.disable_key_bindings('showhide')
- mp.disable_key_bindings('showhide_wc')
- end
- state.showhide_enabled = false
- end
-end
-
-local function render()
- mp.msg.trace('rendering')
- local current_screen_sizeX, current_screen_sizeY, aspect = mp.get_osd_size()
- local mouseX, mouseY = get_virt_mouse_pos()
- local now = mp.get_time()
-
- -- check if display changed, if so request reinit
- if not (state.mp_screen_sizeX == current_screen_sizeX
- and state.mp_screen_sizeY == current_screen_sizeY) then
-
- request_init_resize()
-
- state.mp_screen_sizeX = current_screen_sizeX
- state.mp_screen_sizeY = current_screen_sizeY
- end
-
- -- init management
- if state.active_element then
- -- mouse is held down on some element - keep ticking and igore initReq
- -- till it's released, or else the mouse-up (click) will misbehave or
- -- get ignored. that's because osc_init() recreates the osc elements,
- -- but mouse handling depends on the elements staying unmodified
- -- between mouse-down and mouse-up (using the index active_element).
- request_tick()
- elseif state.initREQ then
- osc_init()
- state.initREQ = false
-
- -- store initial mouse position
- if (state.last_mouseX == nil or state.last_mouseY == nil)
- and not (mouseX == nil or mouseY == nil) then
-
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
- end
- end
-
-
- -- fade animation
- if not(state.anitype == nil) then
-
- if (state.anistart == nil) then
- state.anistart = now
- end
-
- if (now < state.anistart + (user_opts.fade_duration/1000)) then
-
- if (state.anitype == 'in') then --fade in
- osc_visible(true)
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fade_duration/1000)),
- 255, 0, now)
- elseif (state.anitype == 'out') then --fade out
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fade_duration/1000)),
- 0, 255, now)
- end
-
- else
- if (state.anitype == 'out') then
- osc_visible(false)
- end
- kill_animation()
- end
- else
- kill_animation()
- end
-
- -- mouse show/hide area
- for k,cords in pairs(osc_param.areas['showhide']) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, 'showhide')
- end
- if osc_param.areas['showhide_wc'] then
- for k,cords in pairs(osc_param.areas['showhide_wc']) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, 'showhide_wc')
- end
- else
- set_virt_mouse_area(0, 0, 0, 0, 'showhide_wc')
- end
- do_enable_key_bindings()
-
- -- mouse input area
- local mouse_over_osc = false
-
- for _,cords in ipairs(osc_param.areas['input']) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, 'input')
- end
- if state.osc_visible ~= state.input_enabled then
- if state.osc_visible then
- mp.enable_key_bindings('input')
- else
- mp.disable_key_bindings('input')
- end
- state.input_enabled = state.osc_visible
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
-
- if osc_param.areas['window-controls'] then
- for _,cords in ipairs(osc_param.areas['window-controls']) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, 'window-controls')
- mp.enable_key_bindings('window-controls')
- else
- mp.disable_key_bindings('window-controls')
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- if osc_param.areas['window-controls-title'] then
- for _,cords in ipairs(osc_param.areas['window-controls-title']) do
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- -- autohide
- if not (state.showtime == nil) and (get_hide_timeout() >= 0) then
- local timeout = state.showtime + (get_hide_timeout()/1000) - now
- if timeout <= 0 then
- if (state.active_element == nil) and (user_opts.bottom_hover or not (mouse_over_osc)) then
- if (not (state.paused and user_opts.keep_on_pause)) then
- hide_osc()
- end
- end
- else
- -- the timer is only used to recheck the state and to possibly run
- -- the code above again
- if not state.hide_timer then
- state.hide_timer = mp.add_timeout(0, tick)
- end
- state.hide_timer.timeout = timeout
- -- re-arm
- state.hide_timer:kill()
- state.hide_timer:resume()
- end
- end
-
-
- -- actual rendering
- local ass = mp.assdraw.ass_new()
-
- -- Messages
- render_message(ass)
-
- -- actual OSC
- if state.osc_visible then
- render_elements(ass)
- end
- if user_opts.persistent_progress_default or state.persistent_progresstoggle then
- render_persistent_progressbar(ass)
- end
-
- -- submit
- set_osd(osc_param.playresy * osc_param.display_aspect, osc_param.playresy, ass.text)
-end
-
---
--- Event handling
---
-
-local function element_has_action(element, action)
- return element and element.eventresponder and
- element.eventresponder[action]
-end
-
-function process_event(source, what)
- local action = string.format('%s%s', source,
- what and ('_' .. what) or '')
-
- if what == 'down' or what == 'press' then
-
- reset_timeout() -- clicking resets the hideosc timer
-
- for n = 1, #elements do
-
- if mouse_hit(elements[n]) and
- elements[n].eventresponder and
- (elements[n].eventresponder[source .. '_up'] or
- elements[n].eventresponder[action]) then
-
- if what == 'down' then
- state.active_element = n
- state.active_event_source = source
- end
- -- fire the down or press event if the element has one
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
-
- end
- end
-
- elseif what == 'up' then
-
- if elements[state.active_element] then
- local n = state.active_element
-
- if n == 0 then
- --click on background (does not work)
- elseif element_has_action(elements[n], action) and
- mouse_hit(elements[n]) then
-
- elements[n].eventresponder[action](elements[n])
- end
-
- --reset active element
- if element_has_action(elements[n], 'reset') then
- elements[n].eventresponder['reset'](elements[n])
- end
-
- end
- state.active_element = nil
- state.mouse_down_counter = 0
-
- elseif source == 'mouse_move' then
- state.mouse_in_window = true
-
- local mouseX, mouseY = get_virt_mouse_pos()
- if (user_opts.min_mouse_move == 0) or
- (not ((state.last_mouseX == nil) or (state.last_mouseY == nil)) and
- ((math.abs(mouseX - state.last_mouseX) >= user_opts.min_mouse_move)
- or (math.abs(mouseY - state.last_mouseY) >= user_opts.min_mouse_move)
- )
- ) then
- if user_opts.bottom_hover then -- if enabled, only show osc if mouse is hovering at the bottom of the screen (where the UI elements are)
- local top_hover = window_controls_enabled() and (user_opts.window_title or user_opts.window_top_bar)
- if mouseY > osc_param.playresy - (user_opts.bottom_hover_zone or 200) or
- (user_opts.window_top_bar == "yes" or (not state.border) or (not state.title_bar) or state.fullscreen) and (mouseY < 40 and top_hover) then
- show_osc()
- else
- hide_osc()
- end
- else
- show_osc()
- end
- end
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
-
- local n = state.active_element
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
- end
-
- -- ensure rendering after any (mouse) event - icons could change etc
- request_tick()
-end
-
--- called by mpv on every frame
-function tick()
- if not state.enabled then return end
-
- if state.idle then -- this is the screen mpv opens to (not playing a file directly), or if you quit a video (idle=yes in mpv.conf)
-
- -- render idle message
- mp.msg.trace('idle message')
- local _, _, display_aspect = mp.get_osd_size()
- if display_aspect == 0 then
- return
- end
- local display_h = 360
- local display_w = display_h * display_aspect
- -- logo is rendered at 2^(6-1) = 32 times resolution with size 1800x1800
- local icon_x, icon_y = (display_w - 1800 / 32) / 2, 140
- local line_prefix = ('{\\rDefault\\an7\\1a&H00&\\bord0\\shad0\\pos(%f,%f)}'):format(icon_x, icon_y)
-
- local ass = mp.assdraw.ass_new()
-
- -- mpv logo
- if user_opts.idle_screen then
- for i, line in ipairs(logo_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
- end
-
- -- Santa hat
- if is_december and user_opts.idle_screen and not user_opts.green_and_grumpy then
- for i, line in ipairs(santa_hat_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
- end
-
- if user_opts.idle_screen then
- ass:new_event()
- ass:pos(display_w / 2, icon_y + 65)
- ass:an(8)
- ass:append("{\\fs24\\1c&H0&\\1c&HFFFFFF&}" .. texts.welcome)
- end
- set_osd(display_w, display_h, ass.text)
-
- if state.showhide_enabled then
- mp.disable_key_bindings('showhide')
- mp.disable_key_bindings('showhide_wc')
- state.showhide_enabled = false
- end
-
-
- elseif (state.fullscreen and user_opts.show_fullscreen)
- or (not state.fullscreen and user_opts.show_windowed) then
-
- -- render the OSC
- render()
- else
- -- Flush OSD
- render_wipe()
- end
-
- state.tick_last_time = mp.get_time()
-
- if state.anitype ~= nil then
- -- state.anistart can be nil - animation should now start, or it can
- -- be a timestamp when it started. state.idle has no animation.
- if not state.idle and
- (not state.anistart or
- mp.get_time() < 1 + state.anistart + user_opts.fade_duration/1000)
- then
- -- animating or starting, or still within 1s past the deadline
- request_tick()
- else
- kill_animation()
- end
- end
-end
-
-mp.register_event('start-file', newfilereset)
-mp.register_event("file-loaded", startupevents)
-mp.observe_property('track-list', nil, request_init)
-mp.observe_property('playlist', nil, request_init)
-mp.observe_property("chapter-list", "native", function(_, list) -- chapter list changes
- list = list or {} -- safety, shouldn't return nil
- table.sort(list, function(a, b) return a.time < b.time end)
- state.chapter_list_pre_sponsorblock = list
- state.chapter_list = list
- -- make_sponsorblock_segments()
- request_init()
-end)
-mp.observe_property('seeking', nil, function()
- if user_opts.seek_resets_hide_timeout then
- reset_timeout()
- end
- if user_opts.osc_on_seek and not state.new_file_flag then
- show_osc()
- elseif state.new_file_flag then
- state.new_file_flag = false
- end
-end)
-
-if user_opts.key_bindings then
- local function changeChapter(number)
- mp.commandv("add", "chapter", number)
- reset_timeout()
- show_message(get_chapterlist())
- end
-
- -- chapter scrubbing
- mp.add_key_binding("ctrl+left", "prevfile", function()
- mp.commandv('playlist-prev', 'weak')
- destroyscrollingkeys()
- end);
- mp.add_key_binding("ctrl+right", "nextfile", function()
- mp.commandv('playlist-next', 'weak')
- destroyscrollingkeys()
- end);
- mp.add_key_binding("shift+left", "prevchapter", function()
- changeChapter(-1)
- end);
- mp.add_key_binding("shift+right", "nextchapter", function()
- changeChapter(1)
- end);
-
- -- extra key bindings
- mp.add_key_binding("x", "cycleaudiotracks", function()
- mp.set_property_number("secondary-sid", 0)
- set_track("audio", 1)
- show_message(get_tracklist("audio"))
- end);
-
- mp.add_key_binding("c", "cyclecaptions", function()
- mp.set_property_number("secondary-sid", 0)
- set_track("sub", 1)
- show_message(get_tracklist("sub"))
- end);
-
- if user_opts.persistent_progress_toggle then
- mp.add_key_binding("b", "persistenttoggle", function()
- if user_opts.persistent_progress_toggle then
- state.persistent_progresstoggle = not state.persistent_progresstoggle
- tick()
- end
- end);
- end
-
- if user_opts.show_description then
- mp.add_key_binding("d", "show_description", check_description);
- end
-
- mp.add_key_binding("tab", 'get_chapterlist', function() show_message(get_chapterlist()) end)
-
- mp.add_key_binding("p", "pinwindow", function()
- mp.commandv("cycle", "ontop")
- if state.initialborder == 'yes' then
- if mp.get_property('ontop') == 'yes' then
- show_message("Pinned window")
- mp.commandv('set', 'border', "no")
- else
- show_message("Unpinned window")
- mp.commandv('set', 'border', "yes")
- end
- end
- end);
-
- mp.add_key_binding(nil, 'show_osc', function() show_osc() end)
-end
-
-mp.observe_property('fullscreen', 'bool',
- function(name, val)
- state.fullscreen = val
- request_init_resize()
- end
-)
-mp.observe_property('mute', 'bool',
- function(name, val)
- state.mute = val
- end
-)
-mp.observe_property('paused-for-cache', 'bool',
- function(name, val)
- state.buffering = val
- end
-)
-mp.observe_property('loop-file', 'bool',
- function(name, val) -- ensure compatibility with auto looping scripts (eg: a script that sets videos under 2 seconds to loop by default)
- if (val == nil) then
- state.looping = true;
- else
- state.looping = false
- end
- end
-)
-mp.observe_property('border', 'bool',
- function(name, val)
- state.border = val
- request_init_resize()
- end
-)
-mp.observe_property('title-bar', 'bool',
- function(name, val)
- state.title_bar = val
- request_init_resize()
- end
-)
-mp.observe_property('window-maximized', 'bool',
- function(name, val)
- state.maximized = val
- request_init_resize()
- end
-)
-mp.observe_property('idle-active', 'bool',
- function(name, val)
- state.idle = val
- request_tick()
- end
-)
-mp.observe_property('pause', 'bool', pause_state)
-mp.observe_property('demuxer-cache-state', 'native', cache_state)
-mp.observe_property('vo-configured', 'bool', function(name, val)
- request_tick()
-end)
-mp.observe_property('playback-time', 'number', function(name, val)
- request_tick()
-end)
-mp.observe_property('osd-dimensions', 'native', function(name, val)
- -- (we could use the value instead of re-querying it all the time, but then
- -- we might have to worry about property update ordering)
- request_init_resize()
-end)
-mp.observe_property("display-fps", "number", set_tick_delay)
--- mouse show/hide bindings
-mp.set_key_bindings({
- {'mouse_move', function(e) process_event('mouse_move', nil) end},
- {'mouse_leave', mouse_leave},
-}, 'showhide', 'force')
-mp.set_key_bindings({
- {'mouse_move', function(e) process_event('mouse_move', nil) end},
- {'mouse_leave', mouse_leave},
-}, 'showhide_wc', 'force')
-do_enable_key_bindings()
-
---mouse input bindings
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
- {"shift+mbtn_left", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"shift+mbtn_right", function(e) process_event("shift+mbtn_right", "up") end,
- function(e) process_event("shift+mbtn_right", "down") end},
- {"mbtn_right", function(e) process_event("mbtn_right", "up") end,
- function(e) process_event("mbtn_right", "down") end},
- -- alias to shift_mbtn_left for single-handed mouse use
- {"mbtn_mid", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"wheel_up", function(e) process_event("wheel_up", "press") end},
- {"wheel_down", function(e) process_event("wheel_down", "press") end},
- {"mbtn_left_dbl", "ignore"},
- {"shift+mbtn_left_dbl", "ignore"},
- {"mbtn_right_dbl", "ignore"},
-}, "input", "force")
-mp.enable_key_bindings('input')
-
-mp.set_key_bindings({
- {'mbtn_left', function(e) process_event('mbtn_left', 'up') end,
- function(e) process_event('mbtn_left', 'down') end},
-}, 'window-controls', 'force')
-mp.enable_key_bindings('window-controls')
-
-function reset_timeout()
- state.showtime = mp.get_time()
-end
-
--- mode can be auto/always/never/cycle
--- the modes only affect internal variables and not stored on its own.
-function visibility_mode(mode)
- enable_osc(true)
-
- mp.set_property_native("user-data/osc/visibility", mode)
-
- -- Reset the input state on a mode change. The input state will be
- -- recalcuated on the next render cycle, except in 'never' mode where it
- -- will just stay disabled.
- mp.disable_key_bindings("input")
- mp.disable_key_bindings("window-controls")
- state.input_enabled = false
- request_tick()
-end
-
-mp.register_script_message("thumbfast-info", function(json)
- local data = mp.utils.parse_json(json)
- if type(data) ~= "table" or not data.width or not data.height then
- mp.msg.error("thumbfast-info: received json didn't produce a table with thumbnail information")
- else
- thumbfast = data
- end
-end)
-
-mp.register_script_message("sponsorblock-done", make_sponsorblock_segments)
-
-set_virt_mouse_area(0, 0, 0, 0, 'input')
-set_virt_mouse_area(0, 0, 0, 0, 'window-controls')
-mp.set_property("title", "mpv")
diff --git a/osc-style/modernz.lua b/osc-style/modernz.lua
deleted file mode 100644
index fe416f3..0000000
--- a/osc-style/modernz.lua
+++ /dev/null
@@ -1,3690 +0,0 @@
--- ModernZ (https://github.com/Samillion/ModernZ)
---
--- This script is a derivative of the original mpv-osc-modern by maoiscat
--- and subsequent forks:
--- * cyl0/ModernX
--- * dexeonify/ModernX
---
--- It is based on the official osc.lua from mpv, licensed under the
--- GNU Lesser General Public License v2.1 (LGPLv2.1).
--- Full license: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
-
-local assdraw = require "mp.assdraw"
-local msg = require "mp.msg"
-local opt = require "mp.options"
-local utils = require "mp.utils"
-
--- Parameters
--- default user option values
--- do not touch, change them in modernz.conf
-local user_opts = {
- -- Language and display
- language = "en", -- set language (for available options, see: https://github.com/Samillion/ModernZ/blob/main/docs/TRANSLATIONS.md)
- font = "mpv-osd-symbols", -- font for the OSC (default: mpv-osd-symbols or the one set in mpv.conf)
-
- idlescreen = true, -- show mpv logo when idle
- window_top_bar = "auto", -- show OSC window top bar: "auto", "yes", or "no" (borderless/fullscreen)
- showwindowed = true, -- show OSC when windowed
- showfullscreen = true, -- show OSC when fullscreen
- showonpause = true, -- show OSC when paused
- keeponpause = true, -- disable OSC hide timeout when paused
- greenandgrumpy = false, -- disable Santa hat in December
-
- -- OSC behaviour and scaling
- hidetimeout = 1500, -- time (in ms) before OSC hides if no mouse movement
- seek_resets_hidetimeout = true, -- if seeking should reset the hidetimeout
- fadeduration = 200, -- fade-out duration (in ms), set to 0 for no fade
- fadein = false, -- whether to enable fade-in effect
- minmousemove = 0, -- minimum mouse movement (in pixels) required to show OSC
- bottomhover = true, -- show OSC only when hovering at the bottom
- bottomhover_zone = 130, -- height of hover zone for bottomhover (in pixels)
- osc_on_seek = false, -- show OSC when seeking
- osc_on_start = false, -- show OSC on start of every file
- mouse_seek_pause = true, -- pause video while seeking with mouse move (on button hold)
- force_seek_tooltip = false, -- force show seekbar tooltip on mouse drag, even if not hovering seekbar
-
- vidscale = "auto", -- scale osc with the video
- scalewindowed = 1.0, -- osc scale factor when windowed
- scalefullscreen = 1.0, -- osc scale factor when fullscreen
-
- -- Elements display
- show_title = true, -- show title in the OSC (above seekbar)
- title = "${media-title}", -- title above seekbar format: "${media-title}" or "${filename}"
- title_font_size = 24, -- title font size (above seekbar)
- chapter_title_font_size = 14, -- chapter title font size
-
- cache_info = false, -- show cached time information
- cache_info_speed = false, -- show cache speed per second
- cache_info_font_size = 12, -- font size of the cache information
-
- show_chapter_title = true, -- show chapter title (above seekbar)
- chapter_fmt = "%s", -- format for chapter display on seekbar hover (set to "no" to disable)
-
- timetotal = true, -- show total time instead of remaining time
- timems = false, -- show timecodes with milliseconds
- unicodeminus = false, -- use the Unicode minus sign in remaining time
- time_format = "dynamic", -- "dynamic" or "fixed". dynamic shows MM:SS when possible, fixed always shows HH:MM:SS
- time_font_size = 16, -- font size of the time display
-
- tooltip_font_size = 14, -- tooltips font size
-
- -- Title bar settings
- window_title = false, -- show window title in borderless/fullscreen mode
- window_controls = true, -- show window controls (close, minimize, maximize) in borderless/fullscreen
- windowcontrols_title = "${media-title}", -- same as title but for windowcontrols
-
- -- Subtitle display settings
- raise_subtitles = true, -- raise subtitles above the OSC when shown
- raise_subtitle_amount = 125, -- amount by which subtitles are raised when the OSC is shown (in pixels)
-
- -- Buttons display and functionality
- jump_buttons = true, -- show the jump backward and forward buttons
- jump_amount = 10, -- change the jump amount in seconds
- jump_more_amount = 60, -- change the jump amount in seconds when right-clicking jump buttons and shift-clicking chapter skip buttons
- jump_icon_number = true, -- show different icon when jump_amount is set to 5, 10, or 30
- jump_mode = "relative", -- seek mode for jump buttons
- jump_softrepeat = true, -- enable continuous jumping when holding down seek buttons
- chapter_skip_buttons = false, -- show the chapter skip backward and forward buttons
- chapter_softrepeat = true, -- enable continuous skipping when holding down chapter skip buttons
- track_nextprev_buttons = true, -- show next/previous playlist track buttons
-
- volume_control = true, -- show mute button and volume slider
- volume_control_type = "linear", -- volume scale type: "linear" or "logarithmic"
- playlist_button = true, -- show playlist button: Left-click for simple playlist, Right-click for interactive playlist
- hide_empty_playlist_button = true, -- hide playlist button when no playlist exists
- gray_empty_playlist_button = true, -- gray out the playlist button when no playlist exists
-
- fullscreen_button = true, -- show fullscreen toggle button
- info_button = true, -- show info button
- ontop_button = true, -- show window on top button
- screenshot_button = false, -- show screenshot button
- screenshot_flag = "subtitles", -- flag for screenshot button: "subtitles", "video", "window", "each-frame"
- -- https://mpv.io/manual/master/#command-interface-screenshot-%3Cflags%3E
-
- download_button = true, -- show download button on web videos (requires yt-dlp and ffmpeg)
- download_path = "~~desktop/mpv", -- default download directory for videos (https://mpv.io/manual/master/#paths)
-
- loop_button = false, -- show loop button
- speed_button = false, -- show speed control button
- speed_button_click = 1, -- speed change amount per click
- speed_button_scroll = 0.25, -- speed change amount on scroll
-
- loop_in_pause = true, -- enable looping by right-clicking pause
-
- buttons_always_active = "none", -- force buttons to always be active. can add: playlist_prev, playlist_next
-
- playpause_size = 28, -- icon size for the play/pause button
- midbuttons_size = 24, -- icon size for the middle buttons
- sidebuttons_size = 24, -- icon size for the side buttons
-
- zoom_control = true, -- show zoom controls in image viewer mode
- zoom_in_max = 4, -- maximum zoom in value
- zoom_out_min = -1, -- minimum zoom out value
-
- -- Colors and style
- osc_color = "#000000", -- accent color of the OSC and title bar
- window_title_color = "#FFFFFF", -- color of the title in borderless/fullscreen mode
- window_controls_color = "#FFFFFF", -- color of the window controls (close, minimize, maximize) in borderless/fullscreen mode
- windowcontrols_close_hover = "#F45C5B", -- color of close window control on hover
- windowcontrols_max_hover = "#F8BC3A", -- color of maximize window controls on hover
- windowcontrols_min_hover = "#43CB44", -- color of minimize window controls on hover
- title_color = "#FFFFFF", -- color of the title (above seekbar)
- cache_info_color = "#FFFFFF", -- color of the cache information
- seekbarfg_color = "#FB8C00", -- color of the seekbar progress and handle
- seekbarbg_color = "#94754F", -- color of the remaining seekbar
- seekbar_cache_color = "#918F8E", -- color of the cache ranges on the seekbar
- volumebar_match_seek_color = false, -- match volume bar color with seekbar color (ignores side_buttons_color)
- time_color = "#FFFFFF", -- color of the timestamps (below seekbar)
- chapter_title_color = "#FFFFFF", -- color of the chapter title (above seekbar)
- side_buttons_color = "#FFFFFF", -- color of the side buttons (audio, subtitles, playlist, etc.)
- middle_buttons_color = "#FFFFFF", -- color of the middle buttons (skip, jump, chapter, etc.)
- playpause_color = "#FFFFFF", -- color of the play/pause button
- held_element_color = "#999999", -- color of the element when held down (pressed)
- hover_effect_color = "#FB8C00", -- color of a hovered button when hover_effect includes "color"
- thumbnail_border_color = "#111111", -- color of the border for thumbnails (with thumbfast)
- thumbnail_border_outline = "#404040", -- color of the border outline for thumbnails
-
- fade_alpha = 130, -- alpha of the OSC background (0 to disable)
- fade_blur_strength = 100, -- blur strength for the OSC alpha fade. caution: high values can take a lot of CPU time to render
- fade_transparency_strength = 0, -- use with "fade_blur_strength=0" to create a transparency box
- window_fade_alpha = 100, -- alpha of the window title bar (0 to disable)
- window_fade_blur_strength = 100, -- blur strength for the window title bar. caution: high values can take a lot of CPU time to render
- window_fade_transparency_strength = 0, -- use with "window_fade_blur_strength=0" to create a transparency box
- thumbnail_border = 3, -- width of the thumbnail border (for thumbfast)
- thumbnail_border_radius = 3, -- rounded corner radius for thumbnail border (0 to disable)
-
- -- Button hover effects
- hover_effect = "size,glow,color", -- active button hover effects: "glow", "size", "color"; can use multiple separated by commas
- hover_button_size = 115, -- relative size of a hovered button if "size" effect is active
- button_glow_amount = 5, -- glow intensity when "glow" hover effect is active
- hover_effect_for_sliders = true, -- apply size hover effect to slider handles
-
- -- Tooltips and hints
- tooltips_for_disabled_elements = true, -- enable tooltips for disabled buttons and elements
- tooltip_hints = true, -- enable text hints for info, loop, ontop, and screenshot buttons
-
- -- Progress bar settings
- seek_handle_size = 0.8, -- size ratio of the seek handle (range: 0 ~ 1)
- seekrange = true, -- show seek range overlay
- seekrangealpha = 150, -- transparency of the seek range
- livemarkers = true, -- update chapter markers on the seekbar when duration changes
- seekbarkeyframes = false, -- use keyframes when dragging the seekbar
-
- nibbles_top = true, -- top chapter nibbles above seekbar
- nibbles_bottom = true, -- bottom chapter nibbles below seekbar
- nibbles_style = "triangle", -- chapter nibble style. "triangle", "bar", or "single-bar"
-
- automatickeyframemode = true, -- automatically set keyframes for the seekbar based on video length
- automatickeyframelimit = 600, -- videos longer than this (in seconds) will have keyframes on the seekbar
-
- persistentprogress = false, -- always show a small progress line at the bottom of the screen
- persistentprogressheight = 17, -- height of the persistent progress bar
- persistentbuffer = false, -- show buffer status on web videos in the persistent progress line
-
- -- Miscellaneous settings
- visibility = "auto", -- only used at init to set visibility_mode(...)
- visibility_modes = "never_auto_always",-- visibility modes to cycle through
- tick_delay = 0.03, -- minimum interval between OSC redraws (in seconds)
- tick_delay_follow_display_fps = false, -- use display FPS as the minimum redraw interval
-
- -- Elements Position
- -- Useful when adjusting font size or type
- title_height = 96, -- title height position above seekbar
- title_with_chapter_height = 108, -- title height position if a chapter title is below it
- chapter_title_height = 91, -- chapter title height position above seekbar
- time_codes_height = 35, -- time codes height position
- time_codes_centered_height = 57, -- time codes height position with portrait window
- tooltip_height_offset = 2, -- tooltip height position offset
- tooltip_left_offset = 5, -- if tooltip contains many characters, it is moved to the left by offset
- portrait_window_trigger = 1000, -- portrait window width trigger to move some elements
- hide_volume_bar_trigger = 1150, -- hide volume bar trigger window width
- notitle_osc_h_offset = 25, -- osc height offset if title above seekbar is disabled
- nochapter_osc_h_offset = 10, -- osc height offset if chapter title is disabled or doesn't exist
- seek_hover_tooltip_h_offset = 0, -- seek hover timecodes tooltip height position offset
- osc_height = 132, -- osc height without offsets
-
- -- Mouse commands
- -- customize the button function based on mouse action
-
- -- title above seekbar mouse actions
- title_mbtn_left_command = "script-binding stats/display-page-5",
- title_mbtn_mid_command = "show-text ${path}",
- title_mbtn_right_command = "script-binding select/select-watch-history; script-message-to modernz osc-hide",
-
- -- playlist button mouse actions
- playlist_mbtn_left_command = "script-binding select/select-playlist; script-message-to modernz osc-hide",
- playlist_mbtn_right_command = "show-text ${playlist} 3000",
-
- -- volume mouse actions
- vol_ctrl_mbtn_left_command = "no-osd cycle mute",
- vol_ctrl_mbtn_right_command = "script-binding select/select-audio-device; script-message-to modernz osc-hide",
- vol_ctrl_wheel_down_command = "no-osd add volume -5",
- vol_ctrl_wheel_up_command = "no-osd add volume 5",
-
- -- audio button mouse actions
- audio_track_mbtn_left_command = "script-binding select/select-aid; script-message-to modernz osc-hide",
- audio_track_mbtn_mid_command = "cycle audio down",
- audio_track_mbtn_right_command = "cycle audio",
- audio_track_wheel_down_command = "cycle audio",
- audio_track_wheel_up_command = "cycle audio down",
-
- -- subtitle button mouse actions
- sub_track_mbtn_left_command = "script-binding select/select-sid; script-message-to modernz osc-hide",
- sub_track_mbtn_mid_command = "cycle sub down",
- sub_track_mbtn_right_command = "cycle sub",
- sub_track_wheel_down_command = "cycle sub",
- sub_track_wheel_up_command = "cycle sub down",
-
- -- chapter skip buttons mouse actions
- chapter_prev_mbtn_left_command = "add chapter -1",
- chapter_prev_mbtn_mid_command = "show-text ${chapter-list} 3000",
- chapter_prev_mbtn_right_command = "script-binding select/select-chapter; script-message-to modernz osc-hide",
-
- chapter_next_mbtn_left_command = "add chapter 1",
- chapter_next_mbtn_mid_command = "show-text ${chapter-list} 3000",
- chapter_next_mbtn_right_command = "script-binding select/select-chapter; script-message-to modernz osc-hide",
-
- -- chapter title (below seekbar) mouse actions
- chapter_title_mbtn_left_command = "script-binding select/select-chapter; script-message-to modernz osc-hide",
- chapter_title_mbtn_right_command = "show-text ${chapter-list} 3000",
-
- -- playlist skip buttons mouse actions
- playlist_prev_mbtn_left_command = "playlist-prev",
- playlist_prev_mbtn_mid_command = "show-text ${playlist} 3000",
- playlist_prev_mbtn_right_command = "script-binding select/select-playlist; script-message-to modernz osc-hide",
-
- playlist_next_mbtn_left_command = "playlist-next",
- playlist_next_mbtn_mid_command = "show-text ${playlist} 3000",
- playlist_next_mbtn_right_command = "script-binding select/select-playlist; script-message-to modernz osc-hide",
-
- -- fullscreen button mouse actions
- fullscreen_mbtn_left_command = "cycle fullscreen",
- fullscreen_mbtn_right_command = "cycle window-maximized",
-
- -- info button mouse actions
- info_mbtn_left_command = "script-binding stats/display-page-1-toggle",
-}
-
-mp.observe_property("osc", "bool", function(name, value) if value == true then mp.set_property("osc", "no") end end)
-
-local osc_param = { -- calculated by osc_init()
- playresy = 0, -- canvas size Y
- playresx = 0, -- canvas size X
- display_aspect = 1,
- unscaled_y = 0,
- areas = {},
- video_margins = {
- l = 0, r = 0, t = 0, b = 0, -- left/right/top/bottom
- },
-}
-
-local icons = {
- window = {
- maximize = "\238\159\171",
- unmaximize = "\238\174\150",
- minimize = "\238\175\144",
- close = "\239\141\169",
- },
- audio = "\238\175\139",
- subtitle = "\238\175\141",
- playlist = "\238\161\159",
- menu = "\238\160\170",
- volume_mute = "\238\173\138",
- volume_quiet = "\238\172\184",
- volume_low = "\238\172\189",
- volume_high = "\238\173\130",
-
- play = "\238\166\143",
- pause = "\238\163\140",
- replay = "\238\189\191",
- previous = "\239\152\167",
- next = "\239\149\168",
- rewind = "\238\168\158",
- forward = "\238\152\135",
- jump = {
- [5] = {"\238\171\186", "\238\171\187"},
- [10] = {"\238\171\188", "\238\172\129"},
- [30] = {"\238\172\133", "\238\172\134"},
- default = {"\238\172\138", "\238\172\138"}, -- second icon is mirrored in layout()
- },
-
- fullscreen = "\239\133\160",
- fullscreen_exit = "\239\133\166",
- info = "\239\146\164",
- ontop_on = "\238\165\190",
- ontop_off = "\238\166\129",
- screenshot = "\238\169\150",
- loop_off = "\239\133\178",
- loop_on = "\239\133\181",
- speed = "\239\160\177",
- download = "\239\133\144",
- downloading = "\239\140\174",
-
- zoom_in = "\238\186\142",
- zoom_out = "\238\186\143",
-}
-
---- localization
-local language = {
- ["en"] = {
- idle = "Drop files or URLs here to play",
- na = "Not available",
- video = "Video",
- audio = "Audio",
- subtitle = "Subtitle",
- no_subs = "No subtitles available",
- no_audio = "No audio tracks available",
- playlist = "Playlist",
- no_playlist = "Playlist is empty",
- chapter = "Chapter",
- ontop = "Pin Window",
- ontop_disable = "Unpin Window",
- loop_enable = "Loop",
- loop_disable = "Disable Loop",
- speed_control = "Speed Control",
- screenshot = "Screenshot",
- stats_info = "Information",
- cache = "Cache",
- buffering = "Buffering",
- zoom_in = "Zoom In",
- zoom_out = "Zoom Out",
- download = "Download",
- download_in_progress = "Download in progress",
- downloading = "Downloading",
- downloaded = "Already downloaded",
- },
-}
-
--- locale JSON file handler
-function get_locale_from_json(path)
- local expand_path = mp.command_native({'expand-path', path})
-
- local file_info = utils.file_info(expand_path)
- if not file_info or not file_info.is_file then
- return nil
- end
-
- local json_file = io.open(expand_path, 'r')
- if not json_file then
- return nil
- end
-
- local json = json_file:read('*all')
- json_file:close()
-
- local json_table, parse_error = utils.parse_json(json)
- if not json_table then
- mp.msg.error("JSON parse error:" .. parse_error)
- end
- return json_table
-end
-
--- load external locales if available
-local locale_path = "~~/script-opts/modernz-locale.json"
-local external = get_locale_from_json(locale_path)
-
-if external then
- for lang, strings in pairs(external) do
- if type(strings) == "table" then
- language[lang] = strings
-
- -- fill in missing locales with English defaults
- for key, value in pairs(language["en"]) do
- if strings[key] == nil then
- strings[key] = value or "" -- fallback to empty string if key is missing
- end
-
- -- debug log to verify all keys are populated
- if strings[key] == nil then
- mp.msg.warn("Locale key '" .. key .. "' is nil in language: " .. lang)
- end
- end
- else
- mp.msg.warn("Locale data for language " .. lang .. " is not in the correct format.")
- end
- end
-end
-
-local locale
-local function set_osc_locale()
- locale = language[user_opts.language] or language["en"]
- local idle_ass_tags = "{\\fs24\\1c&H0&\\1c&HFFFFFF&}"
- locale.idle = idle_ass_tags .. locale.idle
-end
-
-local function contains(list, item)
- local t = type(list) == "table" and list or {}
- if type(list) ~= "table" then
- for str in string.gmatch(list, '([^,]+)') do
- t[#t + 1] = str:match("^%s*(.-)%s*$") -- trim spaces
- end
- end
- for _, v in ipairs(t) do
- if v == item then
- return true
- end
- end
- return false
-end
-
-local thumbfast = {
- width = 0,
- height = 0,
- disabled = true,
- available = false
-}
-
-local tick_delay = 1 / 60
-local audio_track_count = 0
-local sub_track_count = 0
-local window_control_box_width = 150
-local is_december = os.date("*t").month == 12
-local UNICODE_MINUS = string.char(0xe2, 0x88, 0x92) -- UTF-8 for U+2212 MINUS SIGN
-local iconfont = "fluent-system-icons"
-
-local function osc_color_convert(color)
- return color:sub(6,7) .. color:sub(4,5) .. color:sub(2,3)
-end
-
-local osc_styles
-
-local function set_osc_styles()
- local playpause_size = user_opts.playpause_size or 28
- local midbuttons_size = user_opts.midbuttons_size or 24
- local sidebuttons_size = user_opts.sidebuttons_size or 24
- osc_styles = {
- osc_fade_bg = "{\\blur" .. user_opts.fade_blur_strength .. "\\bord" .. user_opts.fade_alpha .. "\\1c&H0&\\3c&H" .. osc_color_convert(user_opts.osc_color) .. "&}",
- window_fade_bg = "{\\blur" .. user_opts.window_fade_blur_strength .. "\\bord" .. user_opts.window_fade_alpha .. "\\1c&H0&\\3c&H" .. osc_color_convert(user_opts.osc_color) .. "&}",
- window_control = "{\\blur1\\bord0.5\\1c&H" .. osc_color_convert(user_opts.window_controls_color) .. "&\\3c&H0&\\fs25\\fn" .. iconfont .. "}",
- window_title = "{\\blur1\\bord0.5\\1c&H" .. osc_color_convert(user_opts.window_title_color) .. "&\\3c&H0&\\fs26\\q2\\fn" .. user_opts.font .. "}",
- title = "{\\blur1\\bord0.5\\1c&H" .. osc_color_convert(user_opts.title_color) .. "&\\3c&H0&\\fs".. user_opts.title_font_size .."\\q2\\fn" .. user_opts.font .. "}",
- chapter_title = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.chapter_title_color) .. "&\\3c&H0&\\fs" .. user_opts.chapter_title_font_size .. "\\fn" .. user_opts.font .. "}",
- seekbar_bg = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.seekbarbg_color) .. "&}",
- seekbar_fg = "{\\blur1\\bord1\\1c&H" .. osc_color_convert(user_opts.seekbarfg_color) .. "&}",
- thumbnail = "{\\blur0\\bord1\\1c&H" .. osc_color_convert(user_opts.thumbnail_border_color) .. "&\\3c&H" .. osc_color_convert(user_opts.thumbnail_border_outline) .. "&}",
- time = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.time_color) .. "&\\3c&H0&\\fs" .. user_opts.time_font_size .. "\\fn" .. user_opts.font .. "}",
- cache = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.cache_info_color) .. "&\\3c&H0&\\fs" .. user_opts.cache_info_font_size .. "\\fn" .. user_opts.font .. "}",
- tooltip = "{\\blur1\\bord0.5\\1c&HFFFFFF&\\3c&H0&\\fs" .. user_opts.tooltip_font_size .. "\\fn" .. user_opts.font .. "}",
- volumebar_bg = "{\\blur0\\bord0\\1c&H999999&}",
- volumebar_fg = "{\\blur1\\bord1\\1c&H" .. osc_color_convert(user_opts.side_buttons_color) .. "&}",
- control_1 = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.playpause_color) .. "&\\3c&HFFFFFF&\\fs" .. playpause_size .. "\\fn" .. iconfont .. "}",
- control_2 = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.middle_buttons_color) .. "&\\3c&HFFFFFF&\\fs" .. midbuttons_size .. "\\fn" .. iconfont .. "}",
- control_2_flip = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.middle_buttons_color) .. "&\\3c&HFFFFFF&\\fs" .. midbuttons_size .. "\\fn" .. iconfont .. "\\fry180}",
- control_3 = "{\\blur0\\bord0\\1c&H" .. osc_color_convert(user_opts.side_buttons_color) .. "&\\3c&HFFFFFF&\\fs" .. sidebuttons_size .. "\\fn" .. iconfont .. "}",
- element_down = "{\\1c&H" .. osc_color_convert(user_opts.held_element_color) .. "&}",
- element_hover = "{" .. (contains(user_opts.hover_effect, "color") and "\\1c&H" .. osc_color_convert(user_opts.hover_effect_color) .. "&" or "") .."\\2c&HFFFFFF&" .. (contains(user_opts.hover_effect, "size") and string.format("\\fscx%s\\fscy%s", user_opts.hover_button_size, user_opts.hover_button_size) or "") .. "}",
- }
-end
-
--- internal states, do not touch
-local state = {
- showtime = nil, -- time of last invocation (last mouse move)
- touchtime = nil, -- time of last invocation (last touch event)
- osc_visible = false,
- anistart = nil, -- time when the animation started
- anitype = nil, -- current type of animation
- animation = nil, -- current animation alpha
- mouse_down_counter = 0, -- used for softrepeat
- active_element = nil, -- nil = none, 0 = background, 1+ = see elements[]
- active_event_source = nil, -- the "button" that issued the current event
- tc_right_rem = not user_opts.timetotal, -- if the right timecode should display total or remaining time
- tc_ms = user_opts.timems, -- Should the timecodes display their time with milliseconds
- screen_sizeX = nil, screen_sizeY = nil, -- last screen-resolution, to detect resolution changes to issue reINITs
- initREQ = false, -- is a re-init request pending?
- marginsREQ = false, -- is a margins update pending?
- last_mouseX = nil, last_mouseY = nil, -- last mouse position, to detect significant mouse movement
- mouse_in_window = false,
- fullscreen = false,
- tick_timer = nil,
- tick_last_time = 0, -- when the last tick() was run
- hide_timer = nil,
- cache_state = nil,
- idle = false,
- enabled = true,
- input_enabled = true,
- showhide_enabled = false,
- windowcontrols_buttons = false,
- windowcontrols_title = false,
- dmx_cache = 0,
- border = true,
- maximized = false,
- osd = mp.create_osd_overlay("ass-events"),
- buffering = false,
- new_file_flag = false, -- flag to detect new file starts
- temp_visibility_mode = nil, -- store temporary visibility mode state
- chapter_list = {}, -- sorted by time
- visibility_modes = {}, -- visibility_modes to cycle through
- mute = false,
- looping = false,
- sliderpos = 0,
- touchingprogressbar = false, -- if the mouse is touching the progress bar
- initialborder = mp.get_property("border"),
- playtime_hour_force_init = false, -- used to force request_init() once
- playtime_nohour_force_init = false, -- used to force request_init() once
- playing_and_seeking = false,
- persistent_progress_toggle = user_opts.persistentprogress,
- original_subpos = mp.get_property_number("sub-pos") or 100,
- downloaded_once = false,
- downloading = false,
- file_size_bytes = 0,
- file_size_normalized = "Approximating size...",
- is_URL = false,
- is_image = false,
- url_path = "", -- used for yt-dlp downloading
-}
-
-local logo_lines = {
- -- White border
- "{\\c&HE5E5E5&\\p6}m 895 10 b 401 10 0 410 0 905 0 1399 401 1800 895 1800 1390 1800 1790 1399 1790 905 1790 410 1390 10 895 10 {\\p0}",
- -- Purple fill
- "{\\c&H682167&\\p6}m 925 42 b 463 42 87 418 87 880 87 1343 463 1718 925 1718 1388 1718 1763 1343 1763 880 1763 418 1388 42 925 42{\\p0}",
- -- Darker fill
- "{\\c&H430142&\\p6}m 1605 828 b 1605 1175 1324 1456 977 1456 631 1456 349 1175 349 828 349 482 631 200 977 200 1324 200 1605 482 1605 828{\\p0}",
- -- White fill
- "{\\c&HDDDBDD&\\p6}m 1296 910 b 1296 1131 1117 1310 897 1310 676 1310 497 1131 497 910 497 689 676 511 897 511 1117 511 1296 689 1296 910{\\p0}",
- -- Triangle
- "{\\c&H691F69&\\p6}m 762 1113 l 762 708 b 881 776 1000 843 1119 911 1000 978 881 1046 762 1113{\\p0}",
-}
-
-local santa_hat_lines = {
- -- Pompoms
- "{\\c&HC0C0C0&\\p6}m 500 -323 b 491 -322 481 -318 475 -311 465 -312 456 -319 446 -318 434 -314 427 -304 417 -297 410 -290 404 -282 395 -278 390 -274 387 -267 381 -265 377 -261 379 -254 384 -253 397 -244 409 -232 425 -228 437 -228 446 -218 457 -217 462 -216 466 -213 468 -209 471 -205 477 -203 482 -206 491 -211 499 -217 508 -222 532 -235 556 -249 576 -267 584 -272 584 -284 578 -290 569 -305 550 -312 533 -309 523 -310 515 -316 507 -321 505 -323 503 -323 500 -323{\\p0}",
- "{\\c&HE0E0E0&\\p6}m 315 -260 b 286 -258 259 -240 246 -215 235 -210 222 -215 211 -211 204 -188 177 -176 172 -151 170 -139 163 -128 154 -121 143 -103 141 -81 143 -60 139 -46 125 -34 129 -17 132 -1 134 16 142 30 145 56 161 80 181 96 196 114 210 133 231 144 266 153 303 138 328 115 373 79 401 28 423 -24 446 -73 465 -123 483 -174 487 -199 467 -225 442 -227 421 -232 402 -242 384 -254 364 -259 342 -250 322 -260 320 -260 317 -261 315 -260{\\p0}",
- -- Main cap
- "{\\c&H0000F0&\\p6}m 1151 -523 b 1016 -516 891 -458 769 -406 693 -369 624 -319 561 -262 526 -252 465 -235 479 -187 502 -147 551 -135 588 -111 1115 165 1379 232 1909 761 1926 800 1952 834 1987 858 2020 883 2053 912 2065 952 2088 1000 2146 962 2139 919 2162 836 2156 747 2143 662 2131 615 2116 567 2122 517 2120 410 2090 306 2089 199 2092 147 2071 99 2034 64 1987 5 1928 -41 1869 -86 1777 -157 1712 -256 1629 -337 1578 -389 1521 -436 1461 -476 1407 -509 1343 -507 1284 -515 1240 -519 1195 -521 1151 -523{\\p0}",
- -- Cap shadow
- "{\\c&H0000AA&\\p6}m 1657 248 b 1658 254 1659 261 1660 267 1669 276 1680 284 1689 293 1695 302 1700 311 1707 320 1716 325 1726 330 1735 335 1744 347 1752 360 1761 371 1753 352 1754 331 1753 311 1751 237 1751 163 1751 90 1752 64 1752 37 1767 14 1778 -3 1785 -24 1786 -45 1786 -60 1786 -77 1774 -87 1760 -96 1750 -78 1751 -65 1748 -37 1750 -8 1750 20 1734 78 1715 134 1699 192 1694 211 1689 231 1676 246 1671 251 1661 255 1657 248 m 1909 541 b 1914 542 1922 549 1917 539 1919 520 1921 502 1919 483 1918 458 1917 433 1915 407 1930 373 1942 338 1947 301 1952 270 1954 238 1951 207 1946 214 1947 229 1945 239 1939 278 1936 318 1924 356 1923 362 1913 382 1912 364 1906 301 1904 237 1891 175 1887 150 1892 126 1892 101 1892 68 1893 35 1888 2 1884 -9 1871 -20 1859 -14 1851 -6 1854 9 1854 20 1855 58 1864 95 1873 132 1883 179 1894 225 1899 273 1908 362 1910 451 1909 541{\\p0}",
- -- Brim and tip pompom
- "{\\c&HF8F8F8&\\p6}m 626 -191 b 565 -155 486 -196 428 -151 387 -115 327 -101 304 -47 273 2 267 59 249 113 219 157 217 213 215 265 217 309 260 302 285 283 373 264 465 264 555 257 608 252 655 292 709 287 759 294 816 276 863 298 903 340 972 324 1012 367 1061 394 1125 382 1167 424 1213 462 1268 482 1322 506 1385 546 1427 610 1479 662 1510 690 1534 725 1566 752 1611 796 1664 830 1703 880 1740 918 1747 986 1805 1005 1863 991 1897 932 1916 880 1914 823 1945 777 1961 725 1979 673 1957 622 1938 575 1912 534 1862 515 1836 473 1790 417 1755 351 1697 305 1658 266 1633 216 1593 176 1574 138 1539 116 1497 110 1448 101 1402 77 1371 37 1346 -16 1295 15 1254 6 1211 -27 1170 -62 1121 -86 1072 -104 1027 -128 976 -133 914 -130 851 -137 794 -162 740 -181 679 -168 626 -191 m 2051 917 b 1971 932 1929 1017 1919 1091 1912 1149 1923 1214 1970 1254 2000 1279 2027 1314 2066 1325 2139 1338 2212 1295 2254 1238 2281 1203 2287 1158 2282 1116 2292 1061 2273 1006 2229 970 2206 941 2167 938 2138 918{\\p0}",
-}
-
---
--- Helper functions
---
-
-local function kill_animation()
- state.anistart = nil
- state.animation = nil
- state.anitype = nil
-end
-
-local function set_osd(res_x, res_y, text, z)
- if state.osd.res_x == res_x and
- state.osd.res_y == res_y and
- state.osd.data == text then
- return
- end
- state.osd.res_x = res_x
- state.osd.res_y = res_y
- state.osd.data = text
- state.osd.z = z
- state.osd:update()
-end
-
-local function set_time_styles(timetotal_changed, timems_changed)
- if timetotal_changed then
- state.tc_right_rem = not user_opts.timetotal
- end
- if timems_changed then
- state.tc_ms = user_opts.timems
- end
-end
-
--- scale factor for translating between real and virtual ASS coordinates
-local function get_virt_scale_factor()
- local w, h = mp.get_osd_size()
- if w <= 0 or h <= 0 then
- return 0, 0
- end
- return osc_param.playresx / w, osc_param.playresy / h
-end
-
--- return mouse position in virtual ASS coordinates (playresx/y)
-local function get_virt_mouse_pos()
- if state.mouse_in_window then
- local sx, sy = get_virt_scale_factor()
- local x, y = mp.get_mouse_pos()
- return x * sx, y * sy
- else
- return -1, -1
- end
-end
-
-local function set_virt_mouse_area(x0, y0, x1, y1, name)
- local sx, sy = get_virt_scale_factor()
- mp.set_mouse_area(x0 / sx, y0 / sy, x1 / sx, y1 / sy, name)
-end
-
-local function scale_value(x0, x1, y0, y1, val)
- local m = (y1 - y0) / (x1 - x0)
- local b = y0 - (m * x0)
- return (m * val) + b
-end
-
--- returns hitbox spanning coordinates (top left, bottom right corner)
--- according to alignment
-local function get_hitbox_coords(x, y, an, w, h)
- local alignments = {
- [1] = function () return x, y-h, x+w, y end,
- [2] = function () return x-(w/2), y-h, x+(w/2), y end,
- [3] = function () return x-w, y-h, x, y end,
-
- [4] = function () return x, y-(h/2), x+w, y+(h/2) end,
- [5] = function () return x-(w/2), y-(h/2), x+(w/2), y+(h/2) end,
- [6] = function () return x-w, y-(h/2), x, y+(h/2) end,
-
- [7] = function () return x, y, x+w, y+h end,
- [8] = function () return x-(w/2), y, x+(w/2), y+h end,
- [9] = function () return x-w, y, x, y+h end,
- }
-
- return alignments[an]()
-end
-
-local function get_hitbox_coords_geo(geometry)
- return get_hitbox_coords(geometry.x, geometry.y, geometry.an,
- geometry.w, geometry.h)
-end
-
-local function get_element_hitbox(element)
- return element.hitbox.x1, element.hitbox.y1,
- element.hitbox.x2, element.hitbox.y2
-end
-
-local function mouse_hit_coords(bX1, bY1, bX2, bY2)
- local mX, mY = get_virt_mouse_pos()
- return (mX >= bX1 and mX <= bX2 and mY >= bY1 and mY <= bY2)
-end
-
-local function mouse_hit(element)
- return mouse_hit_coords(get_element_hitbox(element))
-end
-
-local function limit_range(min, max, val)
- if val > max then
- val = max
- elseif val < min then
- val = min
- end
- return val
-end
-
--- translate value into element coordinates
-local function get_slider_ele_pos_for(element, val)
- local ele_pos = scale_value(
- element.slider.min.value, element.slider.max.value,
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- val)
-
- return limit_range(
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- ele_pos)
-end
-
--- translates global (mouse) coordinates to value
-local function get_slider_value_at(element, glob_pos)
- if element then
- local val = scale_value(
- element.slider.min.glob_pos, element.slider.max.glob_pos,
- element.slider.min.value, element.slider.max.value,
- glob_pos)
-
- return limit_range(
- element.slider.min.value, element.slider.max.value,
- val)
- end
- -- fall back incase of loading errors
- return 0
-end
-
--- get value at current mouse position
-local function get_slider_value(element)
- return get_slider_value_at(element, get_virt_mouse_pos())
-end
-
--- multiplies two alpha values, formular can probably be improved
-local function mult_alpha(alphaA, alphaB)
- return 255 - (((1-(alphaA/255)) * (1-(alphaB/255))) * 255)
-end
-
-local function add_area(name, x1, y1, x2, y2)
- -- create area if needed
- if osc_param.areas[name] == nil then
- osc_param.areas[name] = {}
- end
- table.insert(osc_param.areas[name], {x1=x1, y1=y1, x2=x2, y2=y2})
-end
-
-local function ass_append_alpha(ass, alpha, modifier, inverse)
- local ar = {}
-
- for ai, av in pairs(alpha) do
- av = mult_alpha(av, modifier)
- if state.animation then
- local animpos = state.animation
- if inverse then
- animpos = 255 - animpos
- end
- av = mult_alpha(av, animpos)
- end
- ar[ai] = av
- end
-
- ass:append(string.format("{\\1a&H%X&\\2a&H%X&\\3a&H%X&\\4a&H%X&}",
- ar[1], ar[2], ar[3], ar[4]))
-end
-
-local function ass_draw_cir_cw(ass, x, y, r)
- ass:round_rect_cw(x-r, y-r, x+r, y+r, r)
-end
-
-local function ass_draw_rr_h_cw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_cw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_cw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-local function get_hidetimeout()
- if user_opts.visibility == "always" then
- return -1 -- disable autohide
- end
- return user_opts.hidetimeout
-end
-
-local function get_touchtimeout()
- if state.touchtime == nil then
- return 0
- end
- return state.touchtime + (get_hidetimeout() / 1000) - mp.get_time()
-end
-
-local function cache_enabled()
- return state.cache_state and #state.cache_state["seekable-ranges"] > 0
-end
-
-local function update_margins()
- local margins = osc_param.video_margins
-
- -- Don't use margins if it's visible only temporarily.
- if not state.osc_visible or get_hidetimeout() >= 0 or
- (state.fullscreen and not user_opts.showfullscreen) or
- (not state.fullscreen and not user_opts.showwindowed)
- then
- margins = {l = 0, r = 0, t = 0, b = 0}
- end
-
- mp.set_property_native("user-data/osc/margins", margins)
-end
-
-local tick
--- Request that tick() is called (which typically re-renders the OSC).
--- The tick is then either executed immediately, or rate-limited if it was
--- called a small time ago.
-local function request_tick()
- if state.tick_timer == nil then
- state.tick_timer = mp.add_timeout(0, tick)
- end
-
- if not state.tick_timer:is_enabled() then
- local now = mp.get_time()
- local timeout = tick_delay - (now - state.tick_last_time)
- if timeout < 0 then
- timeout = 0
- end
- state.tick_timer.timeout = timeout
- state.tick_timer:resume()
- end
-end
-
-local function request_init()
- state.initREQ = true
- request_tick()
-end
-
--- Like request_init(), but also request an immediate update
-local function request_init_resize()
- request_init()
- -- ensure immediate update
- state.tick_timer:kill()
- state.tick_timer.timeout = 0
- state.tick_timer:resume()
-end
-
-local function render_wipe()
- msg.trace("render_wipe()")
- state.osd.data = "" -- allows set_osd to immediately update on enable
- state.osd:remove()
-end
-
---
--- Tracklist Management
---
-
--- updates the OSC internal playlists, should be run each time the track-layout changes
-local function update_tracklist()
- audio_track_count, sub_track_count = 0, 0
-
- for _, track in pairs(mp.get_property_native("track-list")) do
- if track.type == "audio" then
- audio_track_count = audio_track_count + 1
- elseif track.type == "sub" then
- sub_track_count = sub_track_count + 1
- end
- end
-end
-
--- convert slider_pos to logarithmic depending on volume_control user_opts
-local function set_volume(slider_pos)
- local volume = slider_pos
- if user_opts.volume_control_type == "logarithmic" then
- volume = slider_pos^2 / 100
- end
- return math.floor(volume)
-end
-
--- WindowControl helpers
-local function window_controls_enabled()
- local val = user_opts.window_top_bar
- if val == "auto" then
- return not (state.border and state.title_bar) or state.fullscreen
- else
- return val == "yes"
- end
-end
-
---
--- Element Management
---
-local elements = {}
-
-local function prepare_elements()
- -- remove elements without layout or invisible
- local elements2 = {}
- for _, element in pairs(elements) do
- if element.layout ~= nil and element.visible then
- table.insert(elements2, element)
- end
- end
- elements = elements2
-
- local function elem_compare (a, b)
- return a.layout.layer < b.layout.layer
- end
-
- table.sort(elements, elem_compare)
-
- for _,element in pairs(elements) do
-
- local elem_geo = element.layout.geometry
-
- -- Calculate the hitbox
- local bX1, bY1, bX2, bY2 = get_hitbox_coords_geo(elem_geo)
- element.hitbox = {x1 = bX1, y1 = bY1, x2 = bX2, y2 = bY2}
-
- local style_ass = assdraw.ass_new()
-
- -- prepare static elements
- style_ass:append("{}") -- hack to troll new_event into inserting a \n
- style_ass:new_event()
- style_ass:pos(elem_geo.x, elem_geo.y)
- style_ass:an(elem_geo.an)
- style_ass:append(element.layout.style)
-
- element.style_ass = style_ass
-
- local static_ass = assdraw.ass_new()
-
- if element.type == "box" then
- --draw box
- static_ass:draw_start()
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h,
- element.layout.box.radius, element.layout.box.hexagon)
- static_ass:draw_stop()
-
- elseif element.type == "slider" then
- --draw static slider parts
- local slider_lo = element.layout.slider
- -- calculate positions of min and max points
- element.slider.min.ele_pos = user_opts.seek_handle_size > 0 and (user_opts.seek_handle_size * elem_geo.h / 2) or slider_lo.border
- element.slider.max.ele_pos = elem_geo.w - element.slider.min.ele_pos
- element.slider.min.glob_pos = element.hitbox.x1 + element.slider.min.ele_pos
- element.slider.max.glob_pos = element.hitbox.x1 + element.slider.max.ele_pos
-
- static_ass:draw_start()
- -- a hack which prepares the whole slider area to allow center placements such like an=5
- static_ass:rect_cw(0, 0, elem_geo.w, elem_geo.h)
- static_ass:rect_ccw(0, 0, elem_geo.w, elem_geo.h)
- -- marker nibbles
- if element.slider.markerF ~= nil and slider_lo.gap > 0 then
- local markers = element.slider.markerF()
- for _,marker in pairs(markers) do
- if marker >= element.slider.min.value and
- marker <= element.slider.max.value then
- local s = get_slider_ele_pos_for(element, marker)
- if slider_lo.gap > 5 then -- draw triangles / bars
- local bar_h = 3 -- for "bar" and "single-bar" only
- --top
- if slider_lo.nibbles_top then
- if slider_lo.nibbles_style == "triangle" then
- static_ass:move_to(s - 3, slider_lo.gap - 5)
- static_ass:line_to(s + 3, slider_lo.gap - 5)
- static_ass:line_to(s, slider_lo.gap - 1)
- elseif slider_lo.nibbles_style == "bar" then
- static_ass:rect_cw(s - 1, slider_lo.gap - bar_h, s + 1, slider_lo.gap);
- else
- static_ass:rect_cw(s - 1, slider_lo.gap - bar_h, s + 1, elem_geo.h - slider_lo.gap);
- end
- end
- --bottom
- if slider_lo.nibbles_bottom then
- if slider_lo.nibbles_style == "triangle" then
- static_ass:move_to(s - 3, elem_geo.h - slider_lo.gap + 5)
- static_ass:line_to(s, elem_geo.h - slider_lo.gap + 1)
- static_ass:line_to(s + 3, elem_geo.h - slider_lo.gap + 5)
- elseif slider_lo.nibbles_style == "bar" then
- static_ass:rect_cw(s - 1, elem_geo.h - slider_lo.gap, s + 1, elem_geo.h - slider_lo.gap + bar_h);
- else
- static_ass:rect_cw(s - 1, slider_lo.gap, s + 1, elem_geo.h - slider_lo.gap + bar_h);
- end
- end
- else -- draw 2x1px nibbles
- --top
- if slider_lo.nibbles_top then
- static_ass:rect_cw(s - 1, 0, s + 1, slider_lo.gap);
- end
- --bottom
- if slider_lo.nibbles_bottom then
- static_ass:rect_cw(s - 1, elem_geo.h - slider_lo.gap, s + 1, elem_geo.h);
- end
- end
- end
- end
- end
- end
-
- element.static_ass = static_ass
-
- -- if the element is supposed to be disabled,
- -- style it accordingly and kill the eventresponders
- if not element.enabled then
- element.layout.alpha[1] = 215
- if not (element.name == "sub_track" or element.name == "audio_track" or element.name == "tog_playlist") then -- keep these to display tooltips
- element.eventresponder = nil
- end
- end
-
- -- gray out the element if it is toggled off
- if element.off then
- element.layout.alpha[1] = 100
- end
- end
-end
-
---
--- Element Rendering
---
-
--- returns nil or a chapter element from the native property chapter-list
-local function get_chapter(possec)
- local cl = state.chapter_list -- sorted, get latest before possec, if any
-
- for n=#cl,1,-1 do
- if possec >= cl[n].time then
- return cl[n]
- end
- end
-end
-
--- Draws a handle on the seekbar according to user_opts
--- Returns handle position and radius
-local function draw_seekbar_handle(element, elem_ass, override_alpha)
- local pos = element.slider.posF()
- if not pos then
- return 0, 0
- end
- local display_handle = user_opts.seek_handle_size > 0
- local elem_geo = element.layout.geometry
- local rh = display_handle and (user_opts.seek_handle_size * elem_geo.h / 2) or 0 -- handle radius
- local xp = get_slider_ele_pos_for(element, pos) -- handle position
- local handle_hovered = mouse_hit_coords(element.hitbox.x1 + xp - rh, element.hitbox.y1 + elem_geo.h / 2 - rh, element.hitbox.x1 + xp + rh, element.hitbox.y1 + elem_geo.h / 2 + rh) and element.enabled
-
- if display_handle then
- -- Apply size hover_effect only if hovering over the handle
- if handle_hovered and user_opts.hover_effect_for_sliders then
- if contains(user_opts.hover_effect, "size") then
- rh = rh * (user_opts.hover_button_size / 100)
- end
- end
-
- ass_draw_cir_cw(elem_ass, xp, elem_geo.h / 2, rh)
-
- if user_opts.hover_effect_for_sliders then
- elem_ass:draw_stop()
- elem_ass:merge(element.style_ass)
- ass_append_alpha(elem_ass, element.layout.alpha, override_alpha or 0)
- elem_ass:merge(element.static_ass)
- end
-
- return xp, rh
- end
- return xp, 0
-end
-
--- Draws seekbar ranges according to user_opts
-local function draw_seekbar_ranges(element, elem_ass, xp, rh, override_alpha)
- local handle = xp and rh
- xp = xp or 0
- rh = rh or 0
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- local seekRanges = element.slider.seekRangesF()
- if not seekRanges then
- return
- end
- elem_ass:draw_stop()
- elem_ass:merge(element.style_ass)
- ass_append_alpha(elem_ass, element.layout.alpha, override_alpha or user_opts.seekrangealpha)
- elem_ass:append("{\\1cH&" .. osc_color_convert(user_opts.seekbar_cache_color) .. "&}")
- elem_ass:merge(element.static_ass)
-
- for _, range in pairs(seekRanges) do
- local pstart = math.max(0, get_slider_ele_pos_for(element, range["start"]) - slider_lo.gap)
- local pend = math.min(elem_geo.w, get_slider_ele_pos_for(element, range["end"]) + slider_lo.gap)
-
- if handle and (pstart < xp + rh and pend > xp - rh) then
- if pstart < xp - rh then
- elem_ass:rect_cw(pstart, slider_lo.gap, xp - rh, elem_geo.h - slider_lo.gap)
- end
- pstart = xp + rh
- end
-
- if pend > pstart then
- elem_ass:rect_cw(pstart, slider_lo.gap, pend, elem_geo.h - slider_lo.gap)
- end
- end
-end
-
--- Draw seekbar progress more accurately
-local function draw_seekbar_progress(element, elem_ass)
- local pos = element.slider.posF()
- if not pos then
- return
- end
- local xp = get_slider_ele_pos_for(element, pos)
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- elem_ass:rect_cw(0, slider_lo.gap, xp, elem_geo.h - slider_lo.gap)
-end
-
-local function render_elements(master_ass)
- -- when the slider is dragged or hovered and we have a target chapter name
- -- then we use it instead of the normal title. we calculate it before the
- -- render iterations because the title may be rendered before the slider.
- state.forced_title = nil
-
- -- disable displaying chapter name in title when thumbfast is available
- -- because thumbfast will render it above the thumbnail instead
- if thumbfast.disabled then
- local se, ae = state.slider_element, elements[state.active_element]
- if user_opts.chapter_fmt ~= "no" and state.touchingprogressbar then
- local dur = mp.get_property_number("duration", 0)
- if dur > 0 then
- local ch = get_chapter(state.sliderpos * dur / 100)
- if ch and ch.title and ch.title ~= "" then
- state.forced_title = string.format(user_opts.chapter_fmt, ch.title)
- end
- end
- end
- end
-
- state.touchingprogressbar = false
-
- for n=1, #elements do
- local element = elements[n]
- local style_ass = assdraw.ass_new()
- style_ass:merge(element.style_ass)
- ass_append_alpha(style_ass, element.layout.alpha, 0)
-
- if element.eventresponder and (state.active_element == n) then
- -- run render event functions
- if element.eventresponder.render ~= nil then
- element.eventresponder.render(element)
- end
- if mouse_hit(element) then
- -- mouse down styling
- if element.styledown then
- style_ass:append(osc_styles.element_down)
- end
- if element.softrepeat and state.mouse_down_counter >= 15
- and state.mouse_down_counter % 5 == 0 then
-
- element.eventresponder[state.active_event_source.."_down"](element)
- end
- state.mouse_down_counter = state.mouse_down_counter + 1
- end
- end
-
- local elem_ass = assdraw.ass_new()
- elem_ass:merge(style_ass)
-
- if element.type ~= "button" then
- elem_ass:merge(element.static_ass)
- end
-
- if element.type == "slider" then
- if element.name ~= "persistentseekbar" then
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- local s_min = element.slider.min.value
- local s_max = element.slider.max.value
-
- local xp, rh = draw_seekbar_handle(element, elem_ass) -- handle posistion, handle radius
- draw_seekbar_progress(element, elem_ass)
- draw_seekbar_ranges(element, elem_ass, xp, rh)
-
- elem_ass:draw_stop()
-
- -- add tooltip
- if element.slider.tooltipF ~= nil and element.enabled then
- local force_seek_tooltip = user_opts.force_seek_tooltip
- and element.name == "seekbar"
- and element.eventresponder["mbtn_left_down"]
- and element.state.mbtnleft
- and state.mouse_down_counter > 0
- and state.playing_and_seeking
- if mouse_hit(element) or force_seek_tooltip then
- local sliderpos = get_slider_value(element)
- local tooltiplabel = element.slider.tooltipF(sliderpos)
- local an = slider_lo.tooltip_an
- local ty
- if an == 2 then
- ty = element.hitbox.y1 - user_opts.seek_hover_tooltip_h_offset
- else
- ty = element.hitbox.y1 + elem_geo.h / 2 - user_opts.seek_hover_tooltip_h_offset
- end
-
- local tx = get_virt_mouse_pos()
- if slider_lo.adjust_tooltip then
- if an == 2 then
- if sliderpos < (s_min + 3) then
- an = an - 1
- elseif sliderpos > (s_max - 3) then
- an = an + 1
- end
- elseif (sliderpos > (s_max+s_min)/2) then
- an = an + 1
- tx = tx - 5
- else
- an = an - 1
- tx = tx + 10
- end
- end
-
- if element.name == "seekbar" then
- state.sliderpos = sliderpos
- end
-
- -- chapter title tooltip on show_title=false and no thumbfast
- -- add hovered chapter title above time code tooltip on seekbar hover
- if thumbfast.disabled and not user_opts.show_title and not user_opts.show_chapter_title then
- local osd_w = mp.get_property_number("osd-width")
- local r_w, r_h = get_virt_scale_factor()
- if osd_w then
- if user_opts.chapter_fmt ~= "no" and state.touchingprogressbar then
- local dur = mp.get_property_number("duration", 0)
- if dur > 0 then
- local ch = get_chapter(state.sliderpos * dur / 100)
- if ch and ch.title and ch.title ~= "" then
- local titleX = math.min(osd_w - (50 / r_w), math.max((60 / r_w), tx / r_w))
- local titleY = ty - (user_opts.time_font_size * 1.3)
-
- elem_ass:new_event()
- elem_ass:pos(titleX * r_w, titleY)
- elem_ass:an(2)
- elem_ass:append(slider_lo.tooltip_style)
- ass_append_alpha(elem_ass, slider_lo.alpha, 0)
- elem_ass:append(string.format(user_opts.chapter_fmt, ch.title))
- end
- end
- end
- end
- -- thumbfast
- elseif element.thumbnailable and not thumbfast.disabled then
- local osd_w = mp.get_property_number("osd-width")
- local r_w, r_h = get_virt_scale_factor()
-
- if osd_w then
- local hover_sec = 0
- if mp.get_property_number("duration") then hover_sec = mp.get_property_number("duration") * sliderpos / 100 end
- local thumbPad = user_opts.thumbnail_border
- local thumbMarginX = 18 / r_w
- local thumbMarginY = user_opts.time_font_size + thumbPad + 2 / r_h
- local thumbX = math.min(osd_w - thumbfast.width - thumbMarginX, math.max(thumbMarginX, tx / r_w - thumbfast.width / 2))
- local thumbY = (ty - thumbMarginY) / r_h - thumbfast.height
-
- thumbX = math.floor(thumbX + 0.5)
- thumbY = math.floor(thumbY + 0.5)
-
- if state.anitype == nil then
- elem_ass:new_event()
- elem_ass:append("{\\rDefault}")
- elem_ass:pos(thumbX * r_w, ty - thumbMarginY - thumbfast.height * r_h)
- elem_ass:an(7)
- elem_ass:append(osc_styles.thumbnail)
- elem_ass:draw_start()
- if user_opts.thumbnail_border_radius and user_opts.thumbnail_border_radius > 0 then
- elem_ass:round_rect_cw(-thumbPad * r_w, -thumbPad * r_h, (thumbfast.width + thumbPad) * r_w, (thumbfast.height + thumbPad) * r_h, user_opts.thumbnail_border_radius)
- else
- elem_ass:rect_cw(-thumbPad * r_w, -thumbPad * r_h, (thumbfast.width + thumbPad) * r_w, (thumbfast.height + thumbPad) * r_h)
- end
- elem_ass:draw_stop()
-
- -- force tooltip to be centered on the thumb, even at far left/right of screen
- tx = (thumbX + thumbfast.width / 2) * r_w
- an = 2
-
- mp.commandv("script-message-to", "thumbfast", "thumb", hover_sec, thumbX, thumbY)
- end
-
- -- chapter title tooltip
- local se, ae = state.slider_element, elements[state.active_element]
- if user_opts.chapter_fmt ~= "no" and state.touchingprogressbar then
- local dur = mp.get_property_number("duration", 0)
- if dur > 0 then
- local ch = get_chapter(state.sliderpos * dur / 100)
- if ch and ch.title and ch.title ~= "" then
- elem_ass:new_event()
- elem_ass:pos((thumbX + thumbfast.width / 2) * r_w, thumbY * r_h - user_opts.time_font_size / 2)
- elem_ass:an(an)
- elem_ass:append(slider_lo.tooltip_style)
- ass_append_alpha(elem_ass, slider_lo.alpha, 0)
- elem_ass:append(string.format(user_opts.chapter_fmt, ch.title))
- end
- end
- end
- end
- end
-
- -- tooltip label
- elem_ass:new_event()
- elem_ass:pos(tx, ty)
- elem_ass:an(an)
- elem_ass:append(slider_lo.tooltip_style)
- ass_append_alpha(elem_ass, slider_lo.alpha, 0)
- elem_ass:append(tooltiplabel)
- elseif element.thumbnailable and thumbfast.available then
- mp.commandv("script-message-to", "thumbfast", "clear")
- end
- end
- end
-
- elseif element.type == "button" then
- local buttontext
- if type(element.content) == "function" then
- buttontext = element.content() -- function objects
- elseif element.content ~= nil then
- buttontext = element.content -- text objects
- end
-
- local maxchars = element.layout.button.maxchars
- if maxchars ~= nil and #buttontext > maxchars then
- local max_ratio = 1.25 -- up to 25% more chars while shrinking
- local limit = math.max(0, math.floor(maxchars * max_ratio) - 3)
- if #buttontext > limit then
- while (#buttontext > limit) do
- buttontext = buttontext:gsub(".[\128-\191]*$", "")
- end
- buttontext = buttontext .. "..."
- end
- buttontext = string.format("{\\fscx%f}",
- (maxchars/#buttontext)*100) .. buttontext
- end
-
- -- add hover effects
- local button_lo = element.layout.button
- local is_clickable = element.eventresponder and (
- element.eventresponder["mbtn_left_down"] ~= nil or
- element.eventresponder["mbtn_left_up"] ~= nil
- )
- local hovered = mouse_hit(element) and is_clickable and element.enabled and state.mouse_down_counter == 0
- local hoverstyle = button_lo.hoverstyle
- if hovered and (contains(user_opts.hover_effect, "size") or contains(user_opts.hover_effect, "color")) then
- -- remove font scale tags for these elements, it looks out of place
- if element.name == "title" or element.name == "time_codes" or element.name == "chapter_title" or element.name == "cache_info" then
- hoverstyle = hoverstyle:gsub("\\fscx%d+\\fscy%d+", "")
- end
- elem_ass:append(hoverstyle .. buttontext)
- else
- elem_ass:append(buttontext)
- end
-
- -- apply blur effect if "glow" is in hover effects
- if hovered and contains(user_opts.hover_effect, "glow") then
- local shadow_ass = assdraw.ass_new()
- shadow_ass:merge(style_ass)
- shadow_ass:append("{\\blur" .. user_opts.button_glow_amount .. "}" .. hoverstyle .. buttontext)
- elem_ass:merge(shadow_ass)
- end
-
- -- add tooltip for button elements
- if element.tooltipF ~= nil and (user_opts.tooltips_for_disabled_elements or element.enabled) then
- if mouse_hit(element) then
- local tooltiplabel = element.tooltipF
- local an = 1
- local ty = element.hitbox.y1 - user_opts.tooltip_height_offset
- local tx = get_virt_mouse_pos()
-
- if ty < osc_param.playresy / 2 then
- ty = element.hitbox.y2 - user_opts.tooltip_height_offset
- an = 7
- end
-
- -- tooltip label
- if element.enabled then
- if type(element.tooltipF) == "function" then
- tooltiplabel = element.tooltipF()
- else
- tooltiplabel = element.tooltipF
- end
- else
- tooltiplabel = element.nothingavailable
- end
-
- if tx > osc_param.playresx / 2 then -- move tooltip to left side of mouse cursor
- tx = tx - string.len(tooltiplabel) * user_opts.tooltip_left_offset
- end
-
- elem_ass:new_event()
- elem_ass:append("{\\rDefault}")
- elem_ass:pos(tx, ty)
- elem_ass:an(an)
- elem_ass:append(element.tooltip_style)
- elem_ass:append(tooltiplabel)
- end
- end
- end
-
- master_ass:merge(elem_ass)
- end
-end
-
-local function render_persistentprogressbar(master_ass)
- for n=1, #elements do
- local element = elements[n]
- if element.name == "persistentseekbar" then
- local style_ass = assdraw.ass_new()
- style_ass:merge(element.style_ass)
- if state.animation or not state.osc_visible then
- ass_append_alpha(style_ass, element.layout.alpha, 0, true)
-
- local elem_ass = assdraw.ass_new()
- elem_ass:merge(style_ass)
- if element.type ~= "button" then
- elem_ass:merge(element.static_ass)
- end
-
- -- draw pos marker
- draw_seekbar_progress(element, elem_ass)
-
- if user_opts.persistentbuffer then
- draw_seekbar_ranges(element, elem_ass, nil, nil)
- end
-
- elem_ass:draw_stop()
- master_ass:merge(elem_ass)
- end
- end
- end
-end
-
---
--- Initialisation and Layout
---
-local function is_url(s)
- if not s then
- user_opts.download_button = false
- return false
- end
-
- local url_pattern = "^[%w]+://[%w%.%-_]+%.[%a]+[-%w%.%-%_/?&=]*"
- return string.match(s, url_pattern) ~= nil
-end
-
-local function exec_filesize(args)
- for i = #args, 1, -1 do
- if args[i] == nil or args[i] == "" then
- table.remove(args, i)
- end
- end
-
- mp.command_native_async({
- name = "subprocess",
- args = args,
- capture_stdout = true,
- capture_stderr = true
- }, function(res, val)
- local fileSizeString = val.stdout
- state.file_size_bytes = tonumber(fileSizeString)
-
- if state.file_size_bytes then
- state.file_size_normalized = utils.format_bytes_humanized(state.file_size_bytes)
- msg.info("Download size: " .. state.file_size_normalized)
- else
- local fs_prop = mp.get_property_osd("file-size")
-
- if fs_prop and fs_prop ~= "" then
- state.file_size_normalized = fs_prop
- msg.info("Download size: " .. fs_prop)
- else
- state.file_size_normalized = "Unknown"
- msg.info("Unable to retrieve file size.")
- end
- end
-
- request_tick()
- end)
-end
-
-local function download_done(success, result, error)
- if success then
- local download_path = mp.command_native({"expand-path", user_opts.download_path})
- mp.command("show-text 'Download saved to " .. download_path .. "'")
- state.downloaded_once = true
- msg.info("Download completed")
- else
- mp.command("show-text 'Download failed - " .. (error or "Unknown error") .. "'")
- msg.info("Download failed")
- end
- state.downloading = false
-end
-
-local function exec(args, callback)
- for i = #args, 1, -1 do
- if args[i] == nil or args[i] == "" then
- table.remove(args, i)
- end
- end
-
- msg.info("Executing command: " .. table.concat(args, " "))
-
- local ret = mp.command_native_async({
- name = "subprocess",
- args = args,
- capture_stdout = true,
- capture_stderr = true
- }, callback)
-
- return ret and ret.status or nil
-end
-
-local function check_path_url()
- state.is_URL = false
- state.downloading = false
-
- local path = mp.get_property("path")
- if not path then return nil end
-
- if string.find(path, "https://") then
- path = string.gsub(path, "ytdl://", "") -- Remove "ytdl://" prefix
- else
- path = string.gsub(path, "ytdl://", "https://") -- Replace "ytdl://" with "https://"
- end
-
- -- use current or default ytdl-format
- local mpv_ytdl = mp.get_property("file-local-options/ytdl-format") or mp.get_property("ytdl-format") or ""
- local ytdl_format = (mpv_ytdl and mpv_ytdl ~= "") and "-f " .. mpv_ytdl or "-f " .. "bestvideo+bestaudio/best"
-
- if is_url(path) then
- state.is_URL = true
- state.url_path = path
- msg.info("URL detected.")
-
- if user_opts.download_button then
- msg.info("Fetching file size...")
- local command = {
- "yt-dlp",
- state.is_image and "" or ytdl_format,
- "--no-download",
- "-O",
- "%(filesize,filesize_approx)s", -- Fetch file size or approximate size
- path
- }
- exec_filesize(command)
- end
- end
-end
-
-local function new_element(name, type)
- elements[name] = {}
- elements[name].type = type
- elements[name].name = name
-
- -- add default stuff
- elements[name].eventresponder = {}
- elements[name].visible = true
- elements[name].enabled = true
- elements[name].softrepeat = false
- elements[name].styledown = (type == "button")
- elements[name].state = {}
-
- if type == "slider" then
- elements[name].slider = {min = {value = 0}, max = {value = 100}}
- elements[name].thumbnailable = false
- end
-
- return elements[name]
-end
-
-local function add_layout(name)
- if elements[name] ~= nil then
- -- new layout
- elements[name].layout = {}
-
- -- set layout defaults
- elements[name].layout.layer = 50
- elements[name].layout.alpha = {[1] = 0, [2] = 255, [3] = 255, [4] = 255}
-
- if elements[name].type == "button" then
- elements[name].layout.button = {
- maxchars = nil,
- hoverstyle = osc_styles.element_hover,
- }
- elseif elements[name].type == "slider" then
- -- slider defaults
- elements[name].layout.slider = {
- border = 1,
- gap = 1,
- nibbles_top = user_opts.nibbles_top,
- nibbles_bottom = user_opts.nibbles_bottom,
- nibbles_style = user_opts.nibbles_style,
- adjust_tooltip = true,
- tooltip_style = "",
- tooltip_an = 2,
- alpha = {[1] = 0, [2] = 255, [3] = 88, [4] = 255},
- hoverstyle = osc_styles.element_hover:gsub("\\fscx%d+\\fscy%d+", ""), -- font scales messes with handle positions in werid ways
- }
- elseif elements[name].type == "box" then
- elements[name].layout.box = {radius = 0, hexagon = false}
- end
-
- return elements[name].layout
- else
- msg.error("Can't add_layout to element '"..name.."', doesn't exist.")
- end
-end
-
--- Window Controls
-local function window_controls()
- local wc_geo = {
- x = 0,
- y = 50,
- an = 1,
- w = osc_param.playresx,
- h = 50,
- }
-
- local lo
- local controlbox_w = window_control_box_width
- local titlebox_w = wc_geo.w - controlbox_w
- local controlbox_left = wc_geo.w - controlbox_w
- local titlebox_left = wc_geo.x
- local titlebox_right = wc_geo.w - controlbox_w
- local button_y = wc_geo.y - (wc_geo.h / 2)
- local first_geo = {x = controlbox_left + 25, y = button_y, an = 5, w = 50, h = wc_geo.h}
- local second_geo = {x = controlbox_left + 75, y = button_y, an = 5, w = 49, h = wc_geo.h}
- local third_geo = {x = controlbox_left + 125, y = button_y, an = 5, w = 50, h = wc_geo.h}
-
- -- Window controls
- if user_opts.window_controls then
- -- Close: 🗙
- lo = add_layout("close")
- lo.geometry = third_geo
- lo.style = osc_styles.window_control
- lo.button.hoverstyle = "{\\c&H" .. osc_color_convert(user_opts.windowcontrols_close_hover) .. "&" .. (contains(user_opts.hover_effect, "size") and string.format("\\fscx%s\\fscy%s", user_opts.hover_button_size, user_opts.hover_button_size) or "") .. "}"
-
- -- Minimize: 🗕
- lo = add_layout("minimize")
- lo.geometry = first_geo
- lo.style = osc_styles.window_control
- lo.button.hoverstyle = "{\\c&H" .. osc_color_convert(user_opts.windowcontrols_min_hover) .. "&" .. (contains(user_opts.hover_effect, "size") and string.format("\\fscx%s\\fscy%s", user_opts.hover_button_size, user_opts.hover_button_size) or "") .. "}"
-
- -- Maximize: 🗖 /🗗
- lo = add_layout("maximize")
- lo.geometry = second_geo
- lo.style = osc_styles.window_control
- lo.button.hoverstyle = "{\\c&H" .. osc_color_convert(user_opts.windowcontrols_max_hover) .. "&" .. (contains(user_opts.hover_effect, "size") and string.format("\\fscx%s\\fscy%s", user_opts.hover_button_size, user_opts.hover_button_size) or "") .. "}"
-
- add_area("window-controls", get_hitbox_coords(controlbox_left, wc_geo.y, wc_geo.an, controlbox_w, wc_geo.h))
- end
-
- -- Window Title
- if user_opts.window_title then
- lo = add_layout("windowtitle")
- lo.geometry = {x = 20, y = button_y + 14, an = 1, w = osc_param.playresx - 50, h = wc_geo.h}
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}", osc_styles.window_title, titlebox_left, wc_geo.y - wc_geo.h, titlebox_right, wc_geo.y + wc_geo.h)
-
- add_area("window-controls-title", titlebox_left, 0, titlebox_right, wc_geo.h)
- end
-end
-
---
--- ModernZ Layout
---
-
-local layouts = {}
-
--- Default layout
-layouts["modern"] = function ()
- local no_title =
- ((user_opts.title_mbtn_left_command == "" or user_opts.title_mbtn_left_command == "ignore") and
- (user_opts.title_mbtn_right_command == "" or user_opts.title_mbtn_right_command == "ignore")) or
- not user_opts.show_title
-
- local no_chapter =
- ((user_opts.chapter_title_mbtn_left_command == "" or user_opts.chapter_title_mbtn_left_command == "ignore") and
- (user_opts.chapter_title_mbtn_right_command == "" or user_opts.chapter_title_mbtn_right_command == "ignore")) or
- not user_opts.show_chapter_title
-
- local chapter_index = user_opts.show_chapter_title and mp.get_property_number("chapter", -1) >= 0
- local osc_height_offset = (no_title and user_opts.notitle_osc_h_offset or 0) + ((no_chapter or not chapter_index) and user_opts.nochapter_osc_h_offset or 0)
-
- local osc_geo = {
- w = osc_param.playresx,
- h = user_opts.osc_height - osc_height_offset
- }
-
- -- update bottom margin
- osc_param.video_margins.b = math.max(user_opts.osc_height, user_opts.fade_alpha) / osc_param.playresy
-
- -- origin of the controllers, left/bottom corner
- local posX = 0
- local posY = osc_param.playresy
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 1, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- add_area("showhide", 0, 0, osc_param.playresx, osc_param.playresy)
-
- -- fetch values
- local osc_w, osc_h = osc_geo.w, osc_geo.h
-
- -- Controller Background
- local lo, geo
-
- new_element("osc_fade_bg", "box")
- lo = add_layout("osc_fade_bg")
- lo.geometry = {x = posX, y = posY, an = 7, w = osc_w, h = 1}
- lo.style = osc_styles.osc_fade_bg
- lo.layer = 10
- lo.alpha[3] = user_opts.fade_transparency_strength
-
- local top_titlebar = window_controls_enabled() and (user_opts.window_title or user_opts.window_controls)
-
- -- Window bar alpha
- if ((user_opts.window_top_bar == "yes" or not (state.border and state.title_bar)) or state.fullscreen) and top_titlebar then
- new_element("window_bar_alpha_bg", "box")
- lo = add_layout("window_bar_alpha_bg")
- lo.geometry = {x = posX, y = -100, an = 7, w = osc_w, h = -1}
- lo.style = osc_styles.window_fade_bg
- lo.layer = 10
- lo.alpha[3] = user_opts.window_fade_transparency_strength
- end
-
- -- Alignment
- local refX = osc_w / 2
- local refY = posY
-
- -- Seekbar
- new_element("seekbarbg", "box")
- lo = add_layout("seekbarbg")
- local seekbar_bg_h = 4
- lo.geometry = {x = refX, y = refY - 72, an = 5, w = osc_geo.w - 50, h = seekbar_bg_h}
- lo.layer = 13
- lo.style = osc_styles.seekbar_bg
- lo.alpha[1] = 128
- lo.alpha[3] = 128
-
- lo = add_layout("seekbar")
- local seekbar_h = 18
- lo.geometry = {x = refX, y = refY - 72, an = 5, w = osc_geo.w - 50, h = seekbar_h}
- lo.layer = 51
- lo.style = osc_styles.seekbar_fg
- lo.slider.gap = (seekbar_h - seekbar_bg_h) / 2.0
- lo.slider.tooltip_style = osc_styles.tooltip
- lo.slider.tooltip_an = 2
-
- if user_opts.persistentprogress or state.persistent_progress_toggle then
- lo = add_layout("persistentseekbar")
- lo.geometry = {x = refX, y = refY, an = 5, w = osc_geo.w, h = user_opts.persistentprogressheight}
- lo.style = osc_styles.seekbar_fg
- lo.slider.gap = (seekbar_h - seekbar_bg_h) / 2.0
- lo.slider.tooltip_an = 0
- end
-
- local audio_track = audio_track_count > 0
- local subtitle_track = sub_track_count > 0
- local jump_buttons = user_opts.jump_buttons
- local chapter_skip_buttons = user_opts.chapter_skip_buttons
- local track_nextprev_buttons = user_opts.track_nextprev_buttons
- local fullscreen_button = user_opts.fullscreen_button
- local info_button = user_opts.info_button
- local ontop_button = user_opts.ontop_button
- local screenshot_button = user_opts.screenshot_button
- local loop_button = user_opts.loop_button
- local speed_button = user_opts.speed_button
- local download_button = user_opts.download_button and state.is_URL
- local playlist_button = user_opts.playlist_button and (not user_opts.hide_empty_playlist_button or mp.get_property_number("playlist-count", 0) > 1)
-
- local offset = jump_buttons and 60 or 0
- local outeroffset = (chapter_skip_buttons and 0 or 100) + (jump_buttons and 0 or 100)
-
- -- OSC title
- geo = {x = 25, y = refY - (chapter_index and user_opts.title_with_chapter_height or user_opts.title_height), an = 1, w = osc_geo.w - 50 - (loop_button and 45 or 0) - (speed_button and 45 or 0), h = user_opts.title_font_size}
- lo = add_layout("title")
- lo.geometry = geo
- lo.style = string.format("%s{\\clip(0,%f,%f,%f)}", osc_styles.title, geo.y - geo.h, geo.x + geo.w, geo.y + geo.h)
- lo.alpha[3] = 0
-
- -- Chapter title (above seekbar)
- if user_opts.show_chapter_title then
- lo = add_layout("chapter_title")
- lo.geometry = {x = 26, y = refY - user_opts.chapter_title_height, an = 1, w = osc_geo.w / 2, h = user_opts.chapter_title_font_size}
- lo.style = string.format("%s{\\clip(0,%f,%f,%f)}", osc_styles.chapter_title, geo.y - geo.h, geo.x + geo.w, geo.y + geo.h)
- end
-
- -- buttons
- if track_nextprev_buttons then
- lo = add_layout("playlist_prev")
- lo.geometry = {x = refX - (60 + (chapter_skip_buttons and 60 or 0)) - offset, y = refY - 35, an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- if chapter_skip_buttons then
- lo = add_layout("chapter_backward")
- lo.geometry = {x = refX - 60 - offset, y = refY - 35, an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- if jump_buttons then
- lo = add_layout("jump_backward")
- lo.geometry = {x = refX - 60, y = refY - 35, an = 5, w = 30, h = 24}
- lo.style = (user_opts.jump_icon_number and icons.jump[user_opts.jump_amount] ~= nil) and osc_styles.control_2 or osc_styles.control_2_flip
- end
-
- lo = add_layout("play_pause")
- lo.geometry = {x = refX, y = refY - 35, an = 5, w = 45, h = 28}
- lo.style = osc_styles.control_1
-
- if jump_buttons then
- lo = add_layout("jump_forward")
- lo.geometry = {x = refX + 60, y = refY - 35, an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- if chapter_skip_buttons then
- lo = add_layout("chapter_forward")
- lo.geometry = {x = refX + 60 + offset, y = refY - 35, an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- if track_nextprev_buttons then
- lo = add_layout("playlist_next")
- lo.geometry = {x = refX + (60 + (chapter_skip_buttons and 60 or 0)) + offset, y = refY - 35, an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- -- Audio
- if audio_track then
- lo = add_layout("audio_track")
- lo.geometry = {x = 37, y = refY - 35, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 500 - outeroffset)
- end
-
- -- Subtitle
- if subtitle_track then
- lo = add_layout("sub_track")
- lo.geometry = {x = 82 - (audio_track and 0 or 45), y = refY - 35, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 600 - outeroffset)
- end
-
- -- Playlist
- if playlist_button then
- lo = add_layout("tog_playlist")
- lo.geometry = {x = 127 - (audio_track and 0 or 45) - (subtitle_track and 0 or 45), y = refY - 35, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 600 - outeroffset)
- end
-
- if audio_track then
- -- Volume
- lo = add_layout("vol_ctrl")
- lo.geometry = {x = 172 - (audio_track and 0 or 45) - (subtitle_track and 0 or 45) - (playlist_button and 0 or 45), y = refY - 35, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 600 - outeroffset)
-
- -- Volumebar
- lo = new_element("volumebarbg", "box")
- lo.visible = (osc_param.playresx >= 1150 - outeroffset) and user_opts.volume_control
- lo = add_layout("volumebarbg")
- lo.geometry = {x = 200 - (audio_track and 0 or 45) - (subtitle_track and 0 or 45) - (playlist_button and 0 or 45), y = refY - 35, an = 4, w = 55, h = 4}
- lo.layer = 13
- lo.alpha[1] = 128
- lo.style = user_opts.volumebar_match_seek_color and osc_styles.seekbar_bg or osc_styles.volumebar_bg
-
- lo = add_layout("volumebar")
- lo.geometry = {x = 200 - (audio_track and 0 or 45) - (subtitle_track and 0 or 45) - (playlist_button and 0 or 45), y = refY - 35, an = 4, w = 55, h = 10}
- lo.style = user_opts.volumebar_match_seek_color and osc_styles.seekbar_fg or osc_styles.volumebar_fg
- lo.slider.gap = 3
- lo.slider.tooltip_style = osc_styles.tooltip
- lo.slider.tooltip_an = 2
- end
-
- -- Time codes
- local remsec = mp.get_property_number("playtime-remaining", 0)
- local dur = mp.get_property_number("duration", 0)
- local show_hours = mp.get_property_number("playback-time", 0) >= 3600 or user_opts.time_format ~= "dynamic"
- local show_remhours = (state.tc_right_rem and remsec >= 3600) or (not state.tc_right_rem and dur >= 3600) or user_opts.time_format ~= "dynamic"
- local auto_hide_volbar = (audio_track and user_opts.volume_control) and osc_param.playresx < (user_opts.hide_volume_bar_trigger - outeroffset)
- local time_codes_x = 275
- - (auto_hide_volbar and 75 or 0) -- window width with audio track and elements
- - (audio_track and not user_opts.volume_control and 115 or 0) -- audio track with no elements
- - (not audio_track and 160 or 0) -- no audio track or elements
- - (subtitle_track and 0 or 45)
- - (playlist_button and 0 or 45)
- local time_codes_width = 80
- + (state.tc_ms and 50 or 0)
- + (state.tc_right_rem and 15 or 0)
- + (show_hours and 20 or 0)
- + (show_remhours and 20 or 0)
- local narrow_win = osc_param.playresx < (
- user_opts.portrait_window_trigger
- - outeroffset
- - (playlist_button and 0 or 100)
- - (subtitle_track and 0 or 100)
- - (audio_track and 0 or 100)
- )
- lo = add_layout("time_codes")
- lo.geometry = {x = (narrow_win and refX or time_codes_x), y = refY - (narrow_win and user_opts.time_codes_centered_height or user_opts.time_codes_height), an = (narrow_win and 5 or 4), w = time_codes_width, h = user_opts.time_font_size}
- lo.style = osc_styles.time
-
- -- Fullscreen/Info/Pin/Screenshot/Loop/Speed
- if fullscreen_button then
- lo = add_layout("tog_fullscreen")
- lo.geometry = {x = osc_geo.w - 37, y = refY - 35, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 250 - outeroffset)
- end
-
- if info_button then
- lo = add_layout("tog_info")
- lo.geometry = {x = osc_geo.w - 82 + (fullscreen_button and 0 or 45), y = refY - 35, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 300 - outeroffset)
- end
-
- if ontop_button then
- lo = add_layout("tog_ontop")
- lo.geometry = {x = osc_geo.w - 127 + (info_button and 0 or 45) + (fullscreen_button and 0 or 45), y = refY - 35, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 500 - outeroffset)
- end
-
- if screenshot_button then
- lo = add_layout("screenshot")
- lo.geometry = {x = osc_geo.w - 172 + (ontop_button and 0 or 45) + (info_button and 0 or 45) + (fullscreen_button and 0 or 45), y = refY - 35, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 600 - outeroffset)
- end
-
- if loop_button then
- lo = add_layout("tog_loop")
- lo.geometry = {x = osc_geo.w - 217 + (screenshot_button and 0 or 45) + (ontop_button and 0 or 45) + (info_button and 0 or 45) + (fullscreen_button and 0 or 45), y = refY - 35, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 600 - outeroffset) and loop_button
- end
-
- if speed_button then
- lo = add_layout("tog_speed")
- lo.geometry = {x = osc_geo.w - 262 + (loop_button and 0 or 45) + (screenshot_button and 0 or 45) + (ontop_button and 0 or 45) + (info_button and 0 or 45) + (fullscreen_button and 0 or 45), y = refY - 35, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 600 - outeroffset)
- end
-
- if download_button then
- lo = add_layout("download")
- lo.geometry = {x = osc_geo.w - 307 + (speed_button and 0 or 45) + (loop_button and 0 or 45) + (screenshot_button and 0 or 45) + (ontop_button and 0 or 45) + (info_button and 0 or 45) + (fullscreen_button and 0 or 45), y = refY - 35, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 400 - outeroffset)
- end
-
- -- cache info
- if user_opts.cache_info then
- local cache_x_offset = (download_button and 0 or 45) + (speed_button and 0 or 45) + (loop_button and 0 or 45) + (screenshot_button and 0 or 45) + (ontop_button and 0 or 45) + (info_button and 0 or 45) + (fullscreen_button and 0 or 45)
-
- lo = add_layout("cache_info")
- lo.geometry = {x = osc_geo.w - 345 + cache_x_offset, y = refY - 35, an = 6, w = (user_opts.cache_info_speed and 70 or 45), h = 24}
- lo.style = osc_styles.cache
- end
-end
-
-layouts["modern-image"] = function ()
- local osc_geo = {
- w = osc_param.playresx,
- h = 50
- }
-
- -- update bottom margin
- osc_param.video_margins.b = math.max(50, user_opts.fade_alpha) / osc_param.playresy
-
- -- origin of the controllers, left/bottom corner
- local posX = 0
- local posY = osc_param.playresy
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 1, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- add_area("showhide", 0, 0, osc_param.playresx, osc_param.playresy)
-
- -- fetch values
- local osc_w, osc_h = osc_geo.w, osc_geo.h
-
- -- Controller Background
- local lo, geo
-
- new_element("osc_fade_bg", "box")
- lo = add_layout("osc_fade_bg")
- lo.geometry = {x = posX, y = posY, an = 7, w = osc_w, h = 1}
- lo.style = osc_styles.osc_fade_bg
- lo.layer = 10
- lo.alpha[3] = user_opts.fade_transparency_strength
-
- local top_titlebar = window_controls_enabled() and (user_opts.window_title or user_opts.window_controls)
-
- -- Window bar alpha
- if ((user_opts.window_top_bar == "yes" or not (state.border and state.title_bar)) or state.fullscreen) and top_titlebar then
- new_element("window_bar_alpha_bg", "box")
- lo = add_layout("window_bar_alpha_bg")
- lo.geometry = {x = posX, y = -100, an = 7, w = osc_w, h = -1}
- lo.style = osc_styles.window_fade_bg
- lo.layer = 10
- lo.alpha[3] = user_opts.window_fade_transparency_strength
- end
-
- -- Alignment
- local refX = osc_w / 2
- local refY = posY
-
- local track_nextprev_buttons = user_opts.track_nextprev_buttons
- local fullscreen_button = user_opts.fullscreen_button
- local info_button = user_opts.info_button
- local ontop_button = user_opts.ontop_button
- local playlist_button = user_opts.playlist_button and (not user_opts.hide_empty_playlist_button or mp.get_property_number("playlist-count", 0) > 1)
- local zoom_control = user_opts.zoom_control
-
- -- Playlist
- if playlist_button then
- lo = add_layout("tog_playlist")
- lo.geometry = {x = 25, y = refY - 30, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = osc_param.playresx >= 250
- end
-
- if track_nextprev_buttons then
- lo = add_layout("playlist_prev")
- lo.geometry = {x = 55 - (playlist_button and 0 or 25), y = refY - 30 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
-
- lo = add_layout("playlist_next")
- lo.geometry = {x = 80 - (playlist_button and 0 or 25), y = refY - 30 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- if zoom_control then
- -- zoom control
- lo = add_layout("zoom_out_icon")
- lo.geometry = {x = 130 - (playlist_button and 0 or 25) - (track_nextprev_buttons and 0 or 70), y = refY - 30 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
-
- lo = new_element("zoom_control_bg", "box")
- lo.visible = osc_param.playresx >= 400 and user_opts.zoom_control
- lo = add_layout("zoom_control_bg")
- lo.geometry = {x = 145 - (playlist_button and 0 or 25) - (track_nextprev_buttons and 0 or 70), y = refY - 30, an = 4, w = 80, h = 4}
- lo.layer = 13
- lo.alpha[1] = 128
- lo.style = osc_styles.volumebar_bg
-
- lo = add_layout("zoom_control")
- lo.geometry = {x = 145 - (playlist_button and 0 or 25) - (track_nextprev_buttons and 0 or 70), y = refY - 30, an = 4, w = 80, h = 10}
- lo.style = osc_styles.volumebar_fg
- lo.slider.gap = 3
- lo.slider.tooltip_style = osc_styles.tooltip
- lo.slider.tooltip_an = 2
-
- lo = add_layout("zoom_in_icon")
- lo.geometry = {x = 240 - (playlist_button and 0 or 25) - (track_nextprev_buttons and 0 or 70), y = refY - 30 , an = 5, w = 30, h = 24}
- lo.style = osc_styles.control_2
- end
-
- -- Fullscreen/Info/Pin/Download
- if fullscreen_button then
- lo = add_layout("tog_fullscreen")
- lo.geometry = {x = osc_geo.w - 37, y = refY - 30, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 250)
- end
-
- if info_button then
- lo = add_layout("tog_info")
- lo.geometry = {x = osc_geo.w - 82 + (fullscreen_button and 0 or 45), y = refY - 30, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 300)
- end
-
- if ontop_button then
- lo = add_layout("tog_ontop")
- lo.geometry = {x = osc_geo.w - 127 + (info_button and 0 or 45) + (fullscreen_button and 0 or 45), y = refY - 30, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 500)
- end
-
- if user_opts.download_button then
- lo = add_layout("download")
- lo.geometry = {x = osc_geo.w - 172 + (ontop_button and 0 or 45) + (info_button and 0 or 45) + (fullscreen_button and 0 or 45), y = refY - 30, an = 5, w = 24, h = 24}
- lo.style = osc_styles.control_3
- lo.visible = (osc_param.playresx >= 400)
- end
-end
-
-local function adjust_subtitles(visible)
- if not mp.get_property_native("sid") then return end
-
- local scale
- if state.fullscreen then
- scale = user_opts.scalefullscreen
- else
- scale = user_opts.scalewindowed
- end
-
- if visible and user_opts.raise_subtitles and state.osc_visible == true then
- local w, h = mp.get_osd_size()
- if h > 0 then
- local raise_factor = user_opts.raise_subtitle_amount
-
- -- adjust for extreme scales
- if scale > 1 then
- raise_factor = raise_factor * (1 + (scale - 1) * 0.2) -- slight increase when scale > 1
- elseif scale < 1 then
- raise_factor = raise_factor * (0.8 + (scale - 0.5) * 0.5) -- slight decrease when scale < 1
- end
-
- local adjusted_subpos = math.floor((osc_param.playresy - raise_factor) / osc_param.playresy * 100)
- if adjusted_subpos < 0 then
- adjusted_subpos = state.original_subpos -- original position if out of bounds
- end
- mp.commandv("set", "sub-pos", adjusted_subpos)
- end
- elseif user_opts.raise_subtitles then
- mp.commandv("set", "sub-pos", state.original_subpos)
- end
-end
-
-local function is_image()
- local current_track = mp.get_property_native("current-tracks/video")
- if current_track and current_track.image and not current_track.albumart then
- state.is_image = true
- else
- state.is_image = false
- end
-end
-
-local function osc_visible(visible)
- if state.osc_visible ~= visible then
- state.osc_visible = visible
- update_margins()
- adjust_subtitles(true)
- end
- request_tick()
-end
-
-local function command_callback(command)
- if command ~= "" and command ~= "ignore" then
- return function ()
- mp.command(command)
- end
- end
-end
-
-local function osc_init()
- msg.debug("osc_init")
-
- -- set canvas resolution according to display aspect and scaling setting
- local baseResY = 720
- local _, display_h, display_aspect = mp.get_osd_size()
- local scale
-
- if state.fullscreen then
- scale = user_opts.scalefullscreen
- else
- scale = user_opts.scalewindowed
- end
-
- local scale_with_video
- if user_opts.vidscale == "auto" then
- scale_with_video = mp.get_property_native("osd-scale-by-window")
- else
- scale_with_video = user_opts.vidscale == "yes"
- end
-
- if scale_with_video then
- osc_param.unscaled_y = baseResY
- else
- osc_param.unscaled_y = display_h
- end
- osc_param.playresy = osc_param.unscaled_y / scale
- if display_aspect > 0 then
- osc_param.display_aspect = display_aspect
- end
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
-
- -- stop seeking with the slider to prevent skipping files
- state.active_element = nil
-
- elements = {}
-
- -- some often needed stuff
- local pl_count = mp.get_property_number("playlist-count", 0)
- local have_pl = pl_count > 1
- local pl_pos = mp.get_property_number("playlist-pos", 0) + 1
- local have_ch = mp.get_property_number("chapters", 0) > 0
- local loop = mp.get_property("loop-playlist", "no")
-
- local nojumpoffset = user_opts.jump_buttons and 0 or 100
- local noskipoffset = user_opts.chapter_skip_buttons and 0 or 100
- local outeroffset = (user_opts.chapter_skip_buttons and 0 or 100) + (user_opts.jump_buttons and 0 or 100)
- local audio_offset = (audio_track_count == 0 or not mp.get_property_native("aid")) and 100 or 0
- local sub_offset = (sub_track_count == 0 or not mp.get_property_native("sid")) and 100 or 0
- local playlist_offset = not have_pl and 100 or 0
-
- local ne
-
- -- Window controls
- -- Close: 🗙
- ne = new_element("close", "button")
- ne.content = icons.window.close
- ne.eventresponder["mbtn_left_up"] = function () mp.commandv("quit") end
-
- -- Minimize: 🗕
- ne = new_element("minimize", "button")
- ne.content = icons.window.minimize
- ne.eventresponder["mbtn_left_up"] = function () mp.commandv("cycle", "window-minimized") end
-
- -- Maximize: 🗖 /🗗
- ne = new_element("maximize", "button")
- ne.content = (state.maximized or state.fullscreen) and icons.window.unmaximize or icons.window.maximize
- ne.eventresponder["mbtn_left_up"] = function () mp.commandv("cycle", (state.fullscreen and "fullscreen" or "window-maximized")) end
-
- -- Window Title
- ne = new_element("windowtitle", "button")
- ne.content = function ()
- local title = mp.command_native({"expand-text", user_opts.windowcontrols_title}) or ""
- title = title:gsub("\n", " ")
- return title ~= "" and mp.command_native({"escape-ass", title}) or "mpv"
- end
-
- -- OSC title
- ne = new_element("title", "button")
- ne.visible = user_opts.show_title
- ne.content = function ()
- local title = state.forced_title or mp.command_native({"expand-text", user_opts.title})
- title = title:gsub("\n", " ")
- return title ~= "" and mp.command_native({"escape-ass", title}) or "mpv"
- end
- ne.eventresponder["mbtn_left_up"] = command_callback(user_opts.title_mbtn_left_command)
- ne.eventresponder["mbtn_right_up"] = command_callback(user_opts.title_mbtn_right_command)
- ne.eventresponder["shift+mbtn_left_down"] = command_callback(user_opts.title_mbtn_mid_command)
-
- -- Chapter title (above seekbar)
- ne = new_element("chapter_title", "button")
- ne.visible = mp.get_property_number("chapter", -1) >= 0
- ne.content = function()
- local chapter_index = mp.get_property_number("chapter", -1)
- if user_opts.chapter_fmt == "no" or chapter_index < 0 then
- return ""
- end
-
- local chapters = mp.get_property_native("chapter-list", {})
- local chapter_data = chapters[chapter_index + 1]
- local chapter_title = chapter_data and chapter_data.title ~= "" and chapter_data.title
- or string.format("%s: %d/%d", locale.chapter, chapter_index + 1, #chapters)
-
- chapter_title = mp.command_native({"escape-ass", chapter_title})
- if thumbfast.disabled and not user_opts.show_title and state.forced_title then
- chapter_title = state.forced_title
- end
-
- return string.format(user_opts.chapter_fmt, chapter_title)
- end
- ne.eventresponder["mbtn_left_up"] = command_callback(user_opts.chapter_title_mbtn_left_command)
- ne.eventresponder["mbtn_right_up"] = command_callback(user_opts.chapter_title_mbtn_right_command)
-
- -- playlist buttons
- -- prev
- ne = new_element("playlist_prev", "button")
- ne.visible = (osc_param.playresx >= (state.is_image and 300 or 500) - nojumpoffset - noskipoffset*(nojumpoffset == 0 and 1 or 10))
- ne.content = icons.previous
- ne.enabled = (pl_pos > 1) or (loop ~= "no") or contains(user_opts.buttons_always_active, "playlist_prev")
- ne.eventresponder["mbtn_left_up"] = command_callback(user_opts.playlist_prev_mbtn_left_command)
- ne.eventresponder["mbtn_right_up"] = command_callback(user_opts.playlist_prev_mbtn_right_command)
- ne.eventresponder["shift+mbtn_left_down"] = command_callback(user_opts.playlist_prev_mbtn_mid_command)
-
- --next
- ne = new_element("playlist_next", "button")
- ne.visible = (osc_param.playresx >= (state.is_image and 300 or 500) - nojumpoffset - noskipoffset*(nojumpoffset == 0 and 1 or 10))
- ne.content = icons.next
- ne.enabled = (have_pl and (pl_pos < pl_count)) or (loop ~= "no") or contains(user_opts.buttons_always_active, "playlist_next")
- ne.eventresponder["mbtn_left_up"] = command_callback(user_opts.playlist_next_mbtn_left_command)
- ne.eventresponder["mbtn_right_up"] = command_callback(user_opts.playlist_next_mbtn_right_command)
- ne.eventresponder["shift+mbtn_left_down"] = command_callback(user_opts.playlist_next_mbtn_mid_command)
-
- --play control buttons
- --play_pause
- ne = new_element("play_pause", "button")
- ne.content = function ()
- if mp.get_property("eof-reached") == "yes" then
- return icons.replay
- elseif mp.get_property("pause") == "yes" and not state.playing_and_seeking then
- return icons.play
- else
- return icons.pause
- end
- end
- ne.eventresponder["mbtn_left_up"] = function ()
- if mp.get_property("eof-reached") == "yes" then
- mp.commandv("seek", 0, "absolute-percent")
- mp.commandv("set", "pause", "no")
- else
- mp.commandv("cycle", "pause")
- end
- end
- ne.eventresponder["mbtn_right_down"] = function ()
- if user_opts.loop_in_pause then
- mp.command("show-text '" .. (state.looping and locale.loop_disable or locale.loop_enable) .. "'")
- state.looping = not state.looping
- mp.set_property_native("loop-file", state.looping)
- end
- end
-
- local jump_amount = user_opts.jump_amount
- local jump_more_amount = user_opts.jump_more_amount
- local jump_mode = user_opts.jump_mode
- local jump_icon = user_opts.jump_icon_number and icons.jump[jump_amount] or icons.jump.default
-
- --jump_backward
- ne = new_element("jump_backward", "button")
- ne.softrepeat = user_opts.jump_softrepeat == true
- ne.content = jump_icon[1]
- ne.eventresponder["mbtn_left_down"] = function () mp.commandv("seek", -jump_amount, jump_mode) end
- ne.eventresponder["mbtn_right_down"] = function () mp.commandv("seek", -jump_more_amount, jump_mode) end
- ne.eventresponder["shift+mbtn_left_down"] = function () mp.commandv("frame-back-step") end
-
- --jump_forward
- ne = new_element("jump_forward", "button")
- ne.softrepeat = user_opts.jump_softrepeat == true
- ne.content = jump_icon[2]
- ne.eventresponder["mbtn_left_down"] = function () mp.commandv("seek", jump_amount, jump_mode) end
- ne.eventresponder["mbtn_right_down"] = function () mp.commandv("seek", jump_more_amount, jump_mode) end
- ne.eventresponder["shift+mbtn_left_down"] = function () mp.commandv("frame-step") end
-
- --chapter_backward
- ne = new_element("chapter_backward", "button")
- ne.visible = (osc_param.playresx >= 400 - nojumpoffset*10)
- ne.softrepeat = user_opts.chapter_softrepeat == true
- ne.content = icons.rewind
- ne.enabled = (have_ch) -- disables button when no chapters available.
- ne.eventresponder["mbtn_left_down"] = command_callback(user_opts.chapter_prev_mbtn_left_command)
- ne.eventresponder["mbtn_right_down"] = command_callback(user_opts.chapter_prev_mbtn_right_command)
- ne.eventresponder["shift+mbtn_left_down"] = command_callback(user_opts.chapter_prev_mbtn_mid_command)
- ne.eventresponder["shift+mbtn_right_down"] = function () mp.commandv("seek", -jump_more_amount, jump_mode) end
-
- --chapter_forward
- ne = new_element("chapter_forward", "button")
- ne.visible = (osc_param.playresx >= 400 - nojumpoffset*10)
- ne.softrepeat = user_opts.chapter_softrepeat == true
- ne.content = icons.forward
- ne.enabled = (have_ch) -- disables button when no chapters available.
- ne.eventresponder["mbtn_left_down"] = command_callback(user_opts.chapter_next_mbtn_left_command)
- ne.eventresponder["mbtn_right_down"] = command_callback(user_opts.chapter_next_mbtn_right_command)
- ne.eventresponder["shift+mbtn_left_down"] = command_callback(user_opts.chapter_next_mbtn_mid_command)
- ne.eventresponder["shift+mbtn_right_down"] = function () mp.commandv("seek", jump_more_amount, jump_mode) end
-
- update_tracklist()
-
- --audio_track
- ne = new_element("audio_track", "button")
- ne.enabled = audio_track_count > 0
- ne.off = audio_track_count == 0 or not mp.get_property_native("aid")
- ne.visible = (osc_param.playresx >= 550 - outeroffset)
- ne.content = icons.audio
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = function ()
- local prop = mp.get_property("current-tracks/audio/title") or mp.get_property("current-tracks/audio/lang") or locale.na
- return (locale.audio .. " " .. mp.get_property_number("aid", "-") .. "/" .. audio_track_count .. " [" .. prop .. "]")
- end
- ne.nothingavailable = locale.no_audio
- ne.eventresponder["mbtn_left_up"] = command_callback(user_opts.audio_track_mbtn_left_command)
- ne.eventresponder["mbtn_right_up"] = command_callback(user_opts.audio_track_mbtn_right_command)
- ne.eventresponder["shift+mbtn_left_down"] = command_callback(user_opts.audio_track_mbtn_mid_command)
- ne.eventresponder["wheel_down_press"] = command_callback(user_opts.audio_track_wheel_down_command)
- ne.eventresponder["wheel_up_press"] = command_callback(user_opts.audio_track_wheel_up_command)
-
- --sub_track
- ne = new_element("sub_track", "button")
- ne.enabled = sub_track_count > 0
- ne.off = sub_track_count == 0 or not mp.get_property_native("sid")
- ne.visible = (osc_param.playresx >= 650 - outeroffset)
- ne.content = icons.subtitle
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = function ()
- local prop = mp.get_property("current-tracks/sub/title") or mp.get_property("current-tracks/sub/lang") or locale.na
- return (locale.subtitle .. " " .. mp.get_property_number("sid", "-") .. "/" .. sub_track_count .. " [" .. prop .. "]")
- end
- ne.nothingavailable = locale.no_subs
- ne.eventresponder["mbtn_left_up"] = command_callback(user_opts.sub_track_mbtn_left_command)
- ne.eventresponder["mbtn_right_up"] = command_callback(user_opts.sub_track_mbtn_right_command)
- ne.eventresponder["shift+mbtn_left_down"] = command_callback(user_opts.sub_track_mbtn_mid_command)
- ne.eventresponder["wheel_down_press"] = command_callback(user_opts.sub_track_wheel_down_command)
- ne.eventresponder["wheel_up_press"] = command_callback(user_opts.sub_track_wheel_up_command)
-
- --tog_playlist
- ne = new_element("tog_playlist", "button")
- ne.enabled = have_pl or not user_opts.gray_empty_playlist_button
- ne.off = not have_pl and user_opts.gray_empty_playlist_button
- ne.visible = (osc_param.playresx >= (state.is_image and 250 or 750) - outeroffset)
- ne.content = icons.playlist
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = have_pl and locale.playlist .. " [" .. pl_pos .. "/" .. pl_count .. "]" or locale.playlist
- ne.nothingavailable = locale.no_playlist
- ne.eventresponder["mbtn_left_up"] = command_callback(user_opts.playlist_mbtn_left_command)
- ne.eventresponder["mbtn_right_up"] = command_callback(user_opts.playlist_mbtn_right_command)
-
- -- vol_ctrl
- local vol_visible_offset = sub_offset + playlist_offset
- ne = new_element("vol_ctrl", "button")
- ne.enabled = audio_track_count > 0
- ne.off = audio_track_count == 0
- ne.visible = (osc_param.playresx >= 900 - vol_visible_offset - outeroffset) and user_opts.volume_control
- ne.content = function ()
- local volume = mp.get_property_number("volume", 0)
- if state.mute then
- return icons.volume_mute
- else
- if volume >= 75 then
- return icons.volume_high
- elseif volume >= 25 then
- return icons.volume_low
- else
- return icons.volume_quiet
- end
- end
- end
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = function ()
- local volume = mp.get_property_number("volume", 0) or 0
- -- show only one decimal, if decimals exist
- volume = volume % 1 == 0 and string.format("%.0f", volume) or string.format("%.1f", volume)
- return volume
- end
- ne.eventresponder["mbtn_left_up"] = command_callback(user_opts.vol_ctrl_mbtn_left_command)
- ne.eventresponder["mbtn_right_up"] = command_callback(user_opts.vol_ctrl_mbtn_right_command)
- ne.eventresponder["wheel_up_press"] = command_callback(user_opts.vol_ctrl_wheel_up_command)
- ne.eventresponder["wheel_down_press"] = command_callback(user_opts.vol_ctrl_wheel_down_command)
-
- --volumebar
- local volume_max = mp.get_property_number("volume-max") > 0 and mp.get_property_number("volume-max") or 100
- ne = new_element("volumebar", "slider")
- ne.visible = (osc_param.playresx >= 1150 - outeroffset) and user_opts.volume_control
- ne.enabled = audio_track_count > 0
- ne.slider = {min = {value = 0}, max = {value = volume_max}}
- ne.slider.markerF = function () return {} end
- ne.slider.seekRangesF = function() return nil end
- ne.slider.posF = function ()
- local volume = mp.get_property_number("volume")
- if user_opts.volume_control == "logarithmic" then
- return math.sqrt(volume * 100)
- else
- return volume
- end
- end
- ne.slider.tooltipF = function (pos) return (audio_track_count > 0) and set_volume(pos) or "" end
- ne.eventresponder["mouse_move"] = function (element)
- local pos = get_slider_value(element)
- local setvol = set_volume(pos)
- if element.state.lastseek == nil or element.state.lastseek ~= setvol then
- mp.commandv("osd-msg", "set", "volume", setvol)
- element.state.lastseek = setvol
- end
- end
- ne.eventresponder["mbtn_left_down"] = function (element)
- local pos = get_slider_value(element)
- mp.commandv("osd-msg", "set", "volume", set_volume(pos))
- end
- ne.eventresponder["reset"] = function (element) element.state.lastseek = nil end
- ne.eventresponder["wheel_up_press"] = command_callback(user_opts.vol_ctrl_wheel_up_command)
- ne.eventresponder["wheel_down_press"] = command_callback(user_opts.vol_ctrl_wheel_down_command)
-
- -- zoom control
- -- zoom out icon
- local current_zoom = mp.get_property_number("video-zoom")
- ne = new_element("zoom_out_icon", "button")
- ne.visible = (osc_param.playresx >= 400)
- ne.content = icons.zoom_out
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = user_opts.tooltip_hints and locale.zoom_out or ""
- ne.eventresponder["mbtn_left_up"] = function () mp.commandv("osd-msg", "set", "video-zoom", math.max(user_opts.zoom_out_min, current_zoom - 0.05)) end
- ne.eventresponder["mbtn_right_up"] = function () mp.commandv("osd-msg", "set", "video-zoom", 0) end
- ne.eventresponder["wheel_up_press"] = function () mp.commandv("osd-msg", "set", "video-zoom", math.min(user_opts.zoom_in_max, current_zoom + 0.05)) end
- ne.eventresponder["wheel_down_press"] = function () mp.commandv("osd-msg", "set", "video-zoom", math.max(user_opts.zoom_out_min, current_zoom - 0.05)) end
-
- -- zoom slider
- ne = new_element("zoom_control", "slider")
- ne.slider = {min = {value = user_opts.zoom_out_min}, max = {value = user_opts.zoom_in_max}}
- ne.visible = (osc_param.playresx >= 400) and user_opts.zoom_control and state.is_image
- ne.slider.markerF = function () return {} end
- ne.slider.seekRangesF = function() return nil end
- ne.slider.posF = function () return mp.get_property_number("video-zoom") end
- ne.slider.tooltipF = function (pos) return string.format("%.3f", pos):gsub("%.?0*$", "") end
- ne.eventresponder["mouse_move"] = function (element)
- local pos = get_slider_value(element)
- if element.state.lastseek == nil or element.state.lastseek ~= pos then
- mp.commandv("osd-msg", "set", "video-zoom", pos)
- element.state.lastseek = pos
- end
- end
- ne.eventresponder["mbtn_left_down"] = function (element) mp.commandv("osd-msg", "set", "video-zoom", get_slider_value(element)) end
- ne.eventresponder["reset"] = function (element) element.state.lastseek = nil end
- ne.eventresponder["mbtn_right_up"] = function () mp.commandv("osd-msg", "set", "video-zoom", 0) end
- ne.eventresponder["wheel_up_press"] = function () mp.commandv("osd-msg", "set", "video-zoom", math.min(user_opts.zoom_in_max, current_zoom + 0.05)) end
- ne.eventresponder["wheel_down_press"] = function () mp.commandv("osd-msg", "set", "video-zoom", math.max(user_opts.zoom_out_min, current_zoom - 0.05)) end
-
- -- zoom in icon
- ne = new_element("zoom_in_icon", "button")
- ne.visible = (osc_param.playresx >= 400)
- ne.content = icons.zoom_in
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = user_opts.tooltip_hints and locale.zoom_in or ""
- ne.eventresponder["mbtn_left_up"] = function () mp.commandv("osd-msg", "set", "video-zoom", math.min(user_opts.zoom_in_max, current_zoom + 0.05)) end
- ne.eventresponder["mbtn_right_up"] = function () mp.commandv("osd-msg", "set", "video-zoom", 0) end
- ne.eventresponder["wheel_up_press"] = function () mp.commandv("osd-msg", "set", "video-zoom", math.min(user_opts.zoom_in_max, current_zoom + 0.05)) end
- ne.eventresponder["wheel_down_press"] = function () mp.commandv("osd-msg", "set", "video-zoom", math.max(user_opts.zoom_out_min, current_zoom - 0.05)) end
-
- --tog_fullscreen
- ne = new_element("tog_fullscreen", "button")
- ne.content = function () return state.fullscreen and icons.fullscreen_exit or icons.fullscreen end
- ne.visible = (osc_param.playresx >= 250)
- ne.eventresponder["mbtn_left_up"] = command_callback(user_opts.fullscreen_mbtn_left_command)
- ne.eventresponder["mbtn_right_up"] = command_callback(user_opts.fullscreen_mbtn_right_command)
-
- --tog_info
- ne = new_element("tog_info", "button")
- ne.content = icons.info
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = user_opts.tooltip_hints and locale.stats_info or ""
- ne.visible = (osc_param.playresx >= 650 - outeroffset - (user_opts.fullscreen_button and 0 or 100))
- ne.eventresponder["mbtn_left_up"] = command_callback(user_opts.info_mbtn_left_command)
-
- --tog_ontop
- ne = new_element("tog_ontop", "button")
- ne.content = function () return mp.get_property("ontop") == "no" and icons.ontop_on or icons.ontop_off end
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = function () return user_opts.tooltip_hints and (mp.get_property("ontop") == "no" and locale.ontop or locale.ontop_disable) or "" end
- ne.visible = (osc_param.playresx >= 850 - outeroffset - (user_opts.info_button and 0 or 100) - (user_opts.fullscreen_button and 0 or 100))
- ne.eventresponder["mbtn_left_up"] = function ()
- mp.commandv("cycle", "ontop")
- if state.initialborder == "yes" then
- if mp.get_property("ontop") == "yes" then
- mp.commandv("set", "border", "no")
- else
- mp.commandv("set", "border", "yes")
- end
- end
- end
- ne.eventresponder["mbtn_right_up"] = function ()
- mp.commandv("cycle", "ontop")
- if mp.get_property("border") == "no" then
- mp.commandv("set", "border", "yes")
- end
- end
-
- --screenshot
- ne = new_element("screenshot", "button")
- ne.content = icons.screenshot
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = user_opts.tooltip_hints and locale.screenshot or ""
- ne.visible = (osc_param.playresx >= 950 - outeroffset - (user_opts.ontop_button and 0 or 100) - (user_opts.info_button and 0 or 100) - (user_opts.fullscreen_button and 0 or 100))
- ne.eventresponder["mbtn_left_up"] = function ()
- local temp_sub_pos = mp.get_property("sub-pos")
- if user_opts.screenshot_flag == "subtitles" or user_opts.screenshot_flag == "subtitles+each-frame" then
- mp.commandv("set", "sub-pos", 100)
- end
- mp.commandv("osd-msg", "screenshot", user_opts.screenshot_flag)
- mp.commandv("set", "sub-pos", temp_sub_pos)
- end
-
- --tog_loop
- ne = new_element("tog_loop", "button")
- ne.content = function() return state.looping and icons.loop_on or icons.loop_off end
- ne.visible = (osc_param.playresx >= 1050 - outeroffset - (user_opts.screenshot_button and 0 or 100) - (user_opts.ontop_button and 0 or 100) - (user_opts.info_button and 0 or 100) - (user_opts.fullscreen_button and 0 or 100))
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = function() return user_opts.tooltip_hints and (state.looping and locale.loop_disable or locale.loop_enable) or "" end
- ne.eventresponder["mbtn_left_up"] = function ()
- mp.command("show-text '" .. (state.looping and locale.loop_disable or locale.loop_enable) .. "'")
- state.looping = not state.looping
- mp.set_property_native("loop-file", state.looping)
- end
-
- --tog_speed
- ne = new_element("tog_speed", "button")
- ne.content = icons.speed
- ne.visible = (osc_param.playresx >= 1150 - outeroffset - (user_opts.loop_button and 0 or 100) - (user_opts.screenshot_button and 0 or 100) - (user_opts.ontop_button and 0 or 100) - (user_opts.info_button and 0 or 100) - (user_opts.fullscreen_button and 0 or 100))
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = user_opts.tooltip_hints and locale.speed_control or ""
- ne.eventresponder["mbtn_left_up"] = function ()
- mp.commandv("osd-msg", "set", "speed", math.min(100, mp.get_property_number("speed") + user_opts.speed_button_click))
- end
- ne.eventresponder["mbtn_right_up"] = function () mp.commandv("osd-msg", "set", "speed", 1) end
- ne.eventresponder["wheel_up_press"] = function ()
- mp.commandv("osd-msg", "set", "speed", math.min(100, mp.get_property_number("speed") + user_opts.speed_button_scroll))
- end
- ne.eventresponder["wheel_down_press"] = function ()
- mp.commandv("osd-msg", "set", "speed", math.max(0.25, mp.get_property_number("speed") - user_opts.speed_button_scroll))
- end
-
- --download
- ne = new_element("download", "button")
- ne.content = function () return state.downloading and icons.downloading or icons.download end
- ne.visible = (osc_param.playresx >= 1250 - outeroffset - (user_opts.speed_button and 0 or 100) - (user_opts.loop_button and 0 or 100) - (user_opts.screenshot_button and 0 or 100) - (user_opts.ontop_button and 0 or 100) - (user_opts.info_button and 0 or 100) - (user_opts.fullscreen_button and 0 or 100)) and state.is_URL
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = function () return state.downloading and locale.downloading .. "..." or locale.download .. " (" .. state.file_size_normalized .. ")" end
- ne.eventresponder["mbtn_left_up"] = function ()
- local localpath = mp.command_native({"expand-path", user_opts.download_path})
-
- if state.downloaded_once then
- mp.commandv("show-text", locale.downloaded)
- elseif state.downloading then
- mp.commandv("show-text", locale.download_in_progress)
- else
- mp.commandv("show-text", locale.downloading .. "...")
- state.downloading = true
- -- use current or default ytdl-format
- local mpv_ytdl = mp.get_property("file-local-options/ytdl-format") or mp.get_property("ytdl-format") or ""
- local ytdl_format = (mpv_ytdl and mpv_ytdl ~= "") and "-f " .. mpv_ytdl or "-f " .. "bestvideo+bestaudio/best"
- local command = {
- "yt-dlp",
- state.is_image and "" or ytdl_format,
- state.is_image and "" or "--remux", state.is_image and "" or "mp4",
- "--add-metadata",
- "--embed-subs",
- "-o", "%(title)s.%(ext)s",
- "-P", localpath,
- state.url_path
- }
-
- local status = exec(command, download_done)
- end
- end
-
- -- cache info
- ne = new_element("cache_info", "button")
- ne.visible = (osc_param.playresx >= 1250 - outeroffset - (user_opts.speed_button and 0 or 100) - (user_opts.loop_button and 0 or 100) - (user_opts.screenshot_button and 0 or 100) - (user_opts.ontop_button and 0 or 100) - (user_opts.info_button and 0 or 100) - (user_opts.fullscreen_button and 0 or 100))
- ne.content = function ()
- if not cache_enabled() then return "" end
- local dmx_cache = state.cache_state["cache-duration"]
- local thresh = math.min(state.dmx_cache * 0.05, 5) -- 5% or 5s
- if dmx_cache and math.abs(dmx_cache - state.dmx_cache) >= thresh then
- state.dmx_cache = dmx_cache
- else
- dmx_cache = state.dmx_cache
- end
- local min = math.floor(dmx_cache / 60)
- local sec = math.floor(dmx_cache % 60) -- don't round e.g. 59.9 to 60
- local cache_time = (min > 0 and string.format("%sm%02.0fs", min, sec) or string.format("%3.0fs", sec))
-
- local dmx_speed = state.cache_state["raw-input-rate"] or 0
- local cache_speed = utils.format_bytes_humanized(dmx_speed)
- local number, unit = cache_speed:match("([%d%.]+)%s*(%S+)")
- local cache_info = state.buffering and locale.buffering .. ": " .. mp.get_property("cache-buffering-state") .. "%" or cache_time
- local cache_info_speed = string.format("%8s %4s/s", number, unit)
-
- return user_opts.cache_info_speed and cache_info .. "\\N" .. cache_info_speed or cache_info
- end
- ne.tooltip_style = osc_styles.tooltip
- ne.tooltipF = (user_opts.tooltip_hints and cache_enabled()) and locale.cache or ""
- ne.eventresponder["mbtn_left_up"] = function() mp.command("script-binding stats/display-page-3") end
-
- --seekbar
- ne = new_element("seekbar", "slider")
- ne.enabled = mp.get_property("percent-pos") ~= nil
- ne.thumbnailable = true
- state.slider_element = ne.enabled and ne or nil -- used for forced_title
- ne.slider.markerF = function ()
- local duration = mp.get_property_number("duration")
- if duration ~= nil then
- local chapters = mp.get_property_native("chapter-list", {})
- local markers = {}
- for n = 1, #chapters do
- markers[n] = (chapters[n].time / duration * 100)
- end
- return markers
- else
- return {}
- end
- end
- ne.slider.posF = function ()
- if mp.get_property_bool("eof-reached") then return 100 end
- return mp.get_property_number("percent-pos")
- end
- ne.slider.tooltipF = function (pos)
- state.touchingprogressbar = true
- local duration = mp.get_property_number("duration")
- if duration ~= nil and pos ~= nil then
- local possec = duration * (pos / 100)
- local time = mp.format_time(possec)
- -- If video is less than 1 hour, and the time format is not fixed, strip the "00:" prefix
- if possec < 3600 and user_opts.time_format ~= "fixed" then
- time = time:gsub("^00:", "")
- end
- return time
- else
- return ""
- end
- end
- ne.slider.seekRangesF = function()
- if not user_opts.seekrange or not cache_enabled() then
- return nil
- end
- local duration = mp.get_property_number("duration")
- if duration == nil or duration <= 0 then
- return nil
- end
- local nranges = {}
- for _, range in pairs(state.cache_state["seekable-ranges"]) do
- nranges[#nranges + 1] = {
- ["start"] = 100 * range["start"] / duration,
- ["end"] = 100 * range["end"] / duration,
- }
- end
- return nranges
- end
- ne.eventresponder["mouse_move"] = function (element)
- if not element.state.mbtnleft then return end -- allow drag for mbtnleft only!
- -- mouse move events may pile up during seeking and may still get
- -- sent when the user is done seeking, so we need to throw away
- -- identical seeks
- state.playing_and_seeking = true
- if mp.get_property("pause") == "no" and user_opts.mouse_seek_pause then
- mp.commandv("cycle", "pause")
- end
- local seekto = get_slider_value(element)
- if element.state.lastseek == nil or
- element.state.lastseek ~= seekto then
- local flags = "absolute-percent"
- if not user_opts.seekbarkeyframes then
- flags = flags .. "+exact"
- end
- mp.commandv("seek", seekto, flags)
- element.state.lastseek = seekto
- end
- end
- ne.eventresponder["mbtn_left_down"] = function (element)
- element.state.mbtnleft = true
- mp.commandv("seek", get_slider_value(element), "absolute-percent+exact")
- end
- ne.eventresponder["shift+mbtn_left_down"] = function (element)
- element.state.mbtnleft = true
- mp.commandv("seek", get_slider_value(element), "absolute-percent")
- end
- ne.eventresponder["mbtn_left_up"] = function (element)
- element.state.mbtnleft = false
- end
- ne.eventresponder["mbtn_right_down"] = function (element)
- local chapter
- local pos = get_slider_value(element)
- local diff = math.huge
-
- for i, marker in ipairs(element.slider.markerF()) do
- if math.abs(pos - marker) < diff then
- diff = math.abs(pos - marker)
- chapter = i
- end
- end
-
- if chapter then
- mp.set_property("chapter", chapter - 1)
- end
- end
- ne.eventresponder["reset"] = function (element)
- element.state.lastseek = nil
- if state.playing_and_seeking then
- if mp.get_property("eof-reached") == "no" and user_opts.mouse_seek_pause then
- mp.commandv("cycle", "pause")
- end
- state.playing_and_seeking = false
- end
- end
- ne.eventresponder["wheel_up_press"] = function () mp.commandv("seek", 10) end
- ne.eventresponder["wheel_down_press"] = function () mp.commandv("seek", -10) end
-
- --persistent seekbar
- ne = new_element("persistentseekbar", "slider")
- ne.enabled = mp.get_property("percent-pos") ~= nil
- state.slider_element = ne.enabled and ne or nil -- used for forced_title
- ne.slider.markerF = function () return {} end
- ne.slider.posF = function ()
- if mp.get_property_bool("eof-reached") then return 100 end
- return mp.get_property_number("percent-pos")
- end
- ne.slider.tooltipF = function() return "" end
- ne.slider.seekRangesF = function()
- if user_opts.persistentbuffer then
- if not user_opts.seekrange then
- return nil
- end
- local cache_state = state.cache_state
- if not cache_state then
- return nil
- end
- local duration = mp.get_property_number("duration")
- if duration == nil or duration <= 0 then
- return nil
- end
- local ranges = cache_state["seekable-ranges"]
- if #ranges == 0 then
- return nil
- end
- local nranges = {}
- for _, range in pairs(ranges) do
- nranges[#nranges + 1] = {
- ["start"] = 100 * range["start"] / duration,
- ["end"] = 100 * range["end"] / duration,
- }
- end
- return nranges
- end
- return nil
- end
-
- -- Helper function to format time
- local function format_time(seconds)
- if not seconds then return "--:--" end
-
- local hours = math.floor(seconds / 3600)
- local minutes = math.floor((seconds % 3600) / 60)
- local whole_seconds = math.floor(seconds % 60)
- local milliseconds = state.tc_ms and math.floor((seconds % 1) * 1000) or nil
-
- -- Always show HH:MM:SS if user_opts.time_format is "fixed"
- local force_hours = user_opts.time_format == "fixed"
-
- -- Format string templates
- local format_with_ms = (hours > 0 or force_hours) and "%02d:%02d:%02d.%03d" or "%02d:%02d.%03d"
- local format_without_ms = (hours > 0 or force_hours) and "%02d:%02d:%02d" or "%02d:%02d"
-
- if state.tc_ms then
- return string.format(format_with_ms,
- (hours > 0 or force_hours) and hours or minutes,
- (hours > 0 or force_hours) and minutes or whole_seconds,
- (hours > 0 or force_hours) and whole_seconds or milliseconds,
- (hours > 0 or force_hours) and milliseconds or nil)
- else
- return string.format(format_without_ms,
- (hours > 0 or force_hours) and hours or minutes,
- (hours > 0 or force_hours) and minutes or whole_seconds,
- (hours > 0 or force_hours) and whole_seconds or nil)
- end
- end
-
- -- Time codes display
- local tc_visible_offset = audio_offset + sub_offset + playlist_offset
- ne = new_element("time_codes", "button")
- ne.visible = mp.get_property_number("duration", 0) > 0
- ne.content = function()
- local playback_time = mp.get_property_number("playback-time", 0)
-
- -- call request_init() only when needed to update time code width
- if user_opts.time_format ~= "fixed" and playback_time then
- local hour_or_more = playback_time >= 3600
- if hour_or_more ~= state.playtime_hour_force_init then
- request_init()
- state.playtime_hour_force_init = hour_or_more
- state.playtime_nohour_force_init = not hour_or_more
- end
- end
-
- local duration = mp.get_property_number("duration", 0)
- if duration <= 0 then return "--:--" end
-
- local playtime_remaining = state.tc_right_rem and
- mp.get_property_number("playtime-remaining", 0) or duration
-
- local prefix = state.tc_right_rem and
- (user_opts.unicodeminus and UNICODE_MINUS or "-") or ""
-
- return format_time(playback_time) .. " / " .. prefix .. format_time(playtime_remaining)
- end
- ne.eventresponder["mbtn_left_up"] = function()
- state.tc_right_rem = not state.tc_right_rem
- end
- ne.eventresponder["mbtn_right_up"] = function()
- state.tc_ms = not state.tc_ms
- request_init()
- end
-
- -- load layout
- if state.is_image then
- layouts["modern-image"]()
- else
- layouts["modern"]()
- end
-
- -- load window controls
- if window_controls_enabled() then
- window_controls()
- end
-
- --do something with the elements
- prepare_elements()
- update_margins()
-end
-
-local function show_osc()
- -- show when disabled can happen (e.g. mouse_move) due to async/delayed unbinding
- if not state.enabled then return end
-
- msg.trace("show_osc")
- --remember last time of invocation (mouse move)
- state.showtime = mp.get_time()
-
- if user_opts.fadeduration <= 0 then
- osc_visible(true)
- elseif user_opts.fadein then
- if not state.osc_visible then
- state.anitype = "in"
- request_tick()
- end
- else
- osc_visible(true)
- state.anitype = nil
- end
-end
-
-local function hide_osc()
- msg.trace("hide_osc")
- if thumbfast.width ~= 0 and thumbfast.height ~= 0 then
- mp.commandv("script-message-to", "thumbfast", "clear")
- end
- if not state.enabled then
- -- typically hide happens at render() from tick(), but now tick() is
- -- no-op and won't render again to remove the osc, so do that manually.
- state.osc_visible = false
- adjust_subtitles(false)
- render_wipe()
- elseif user_opts.fadeduration > 0 then
- if state.osc_visible then
- state.anitype = "out"
- request_tick()
- end
- else
- osc_visible(false)
- end
-end
-
-local function pause_state(_, enabled)
- state.paused = enabled
- request_tick()
-end
-
-local function cache_state(_, st)
- state.cache_state = st
- request_tick()
-end
-
-local function mouse_leave()
- state.touchtime = nil
-
- if get_hidetimeout() >= 0 and get_touchtimeout() <= 0 then
- local elapsed_time = mp.get_time() - state.showtime
-
- if elapsed_time >= (get_hidetimeout() / 1000) then
- hide_osc()
- end
- end
-
- -- reset mouse position
- state.last_mouseX, state.last_mouseY = nil, nil
- state.mouse_in_window = false
-end
-
-local function handle_touch()
- --remember last time of invocation (touch event)
- state.touchtime = mp.get_time()
-end
-
---
--- Event handling
---
-local function reset_timeout()
- state.showtime = mp.get_time()
-end
-
-local function element_has_action(element, action)
- return element and element.eventresponder and
- element.eventresponder[action]
-end
-
-local function process_event(source, what)
- local action = string.format("%s%s", source,
- what and ("_" .. what) or "")
-
- if what == "down" or what == "press" then
- reset_timeout() -- clicking resets the hideosc timer
-
- for n = 1, #elements do
- if mouse_hit(elements[n]) and
- elements[n].eventresponder and
- (elements[n].eventresponder[source .. "_up"] or
- elements[n].eventresponder[action]) then
-
- if what == "down" then
- state.active_element = n
- state.active_event_source = source
- end
- -- fire the down or press event if the element has one
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
- end
- end
- elseif what == "up" then
- if elements[state.active_element] then
- local n = state.active_element
-
- if n == 0 then
- --click on background (does not work)
- elseif element_has_action(elements[n], action) and
- mouse_hit(elements[n]) then
-
- elements[n].eventresponder[action](elements[n])
- end
-
- --reset active element
- if element_has_action(elements[n], "reset") then
- elements[n].eventresponder["reset"](elements[n])
- end
- end
- state.active_element = nil
- state.mouse_down_counter = 0
- elseif source == "mouse_move" then
- state.mouse_in_window = true
-
- local mouseX, mouseY = get_virt_mouse_pos()
- if user_opts.minmousemove == 0 or
- ((state.last_mouseX ~= nil and state.last_mouseY ~= nil) and
- ((math.abs(mouseX - state.last_mouseX) >= user_opts.minmousemove)
- or (math.abs(mouseY - state.last_mouseY) >= user_opts.minmousemove)
- )
- ) then
- if user_opts.bottomhover then -- if enabled, only show osc if mouse is hovering at the bottom of the screen (where the UI elements are)
- local top_hover = window_controls_enabled() and (user_opts.window_title or user_opts.window_controls)
- if mouseY > osc_param.playresy - (user_opts.bottomhover_zone or 130)
- or ((user_opts.window_top_bar == "yes" or not (state.border and state.title_bar)) or state.fullscreen) and (mouseY < 40 and top_hover) then
- show_osc()
- else
- state.touchtime = nil
-
- if get_hidetimeout() >= 0 and get_touchtimeout() <= 0 then
- local elapsed_time = mp.get_time() - state.showtime
-
- if elapsed_time >= (get_hidetimeout() / 1000) then
- hide_osc()
- end
- end
- end
- else
- show_osc()
- end
- end
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
-
- local n = state.active_element
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
- end
-
- -- ensure rendering after any (mouse) event - icons could change etc
- request_tick()
-end
-
-local function do_enable_keybindings()
- if state.enabled then
- if not state.showhide_enabled then
- mp.enable_key_bindings("showhide", "allow-vo-dragging+allow-hide-cursor")
- mp.enable_key_bindings("showhide_wc", "allow-vo-dragging+allow-hide-cursor")
- end
- state.showhide_enabled = true
- end
-end
-
-local function enable_osc(enable)
- state.enabled = enable
- if enable then
- do_enable_keybindings()
- else
- hide_osc() -- acts immediately when state.enabled == false
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- end
- state.showhide_enabled = false
- end
-end
-
-local function render()
- msg.trace("rendering")
- local current_screen_sizeX, current_screen_sizeY = mp.get_osd_size()
- local mouseX, mouseY = get_virt_mouse_pos()
- local now = mp.get_time()
-
- -- check if display changed, if so request reinit
- if state.screen_sizeX ~= current_screen_sizeX
- or state.screen_sizeY ~= current_screen_sizeY then
-
- request_init_resize()
-
- state.screen_sizeX = current_screen_sizeX
- state.screen_sizeY = current_screen_sizeY
- end
-
- -- init management
- if state.active_element then
- -- mouse is held down on some element - keep ticking and ignore initReq
- -- till it's released, or else the mouse-up (click) will misbehave or
- -- get ignored. that's because osc_init() recreates the osc elements,
- -- but mouse handling depends on the elements staying unmodified
- -- between mouse-down and mouse-up (using the index active_element).
- request_tick()
- elseif state.initREQ then
- osc_init()
- state.initREQ = false
-
- -- store initial mouse position
- if (state.last_mouseX == nil or state.last_mouseY == nil)
- and not (mouseX == nil or mouseY == nil) then
-
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
- end
- end
-
- -- fade animation
- if state.anitype ~= nil then
- if state.anistart == nil then
- state.anistart = now
- end
-
- if now < state.anistart + (user_opts.fadeduration / 1000) then
- if state.anitype == "in" then --fade in
- osc_visible(true)
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration / 1000)),
- 255, 0, now)
- elseif state.anitype == "out" then --fade out
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration / 1000)),
- 0, 255, now)
- end
- else
- if state.anitype == "out" then
- osc_visible(false)
- end
- kill_animation()
- end
- else
- kill_animation()
- end
-
- --mouse show/hide area
- for _, cords in pairs(osc_param.areas["showhide"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide")
- end
- if osc_param.areas["showhide_wc"] then
- for _, cords in pairs(osc_param.areas["showhide_wc"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide_wc")
- end
- else
- set_virt_mouse_area(0, 0, 0, 0, "showhide_wc")
- end
- do_enable_keybindings()
-
- --mouse input area
- local mouse_over_osc = false
-
- for _,cords in ipairs(osc_param.areas["input"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "input")
- end
- if state.osc_visible ~= state.input_enabled then
- if state.osc_visible then
- mp.enable_key_bindings("input")
- else
- mp.disable_key_bindings("input")
- end
- state.input_enabled = state.osc_visible
- end
-
- if mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2) then
- mouse_over_osc = true
- end
- end
-
- if osc_param.areas["window-controls"] then
- for _,cords in ipairs(osc_param.areas["window-controls"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "window-controls")
- mp.enable_key_bindings("window-controls")
- else
- mp.disable_key_bindings("window-controls")
- end
-
- if mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2) then
- mouse_over_osc = true
- end
- end
- end
-
- if osc_param.areas["window-controls-title"] then
- for _,cords in ipairs(osc_param.areas["window-controls-title"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "window-controls-title")
- end
- if state.osc_visible ~= state.windowcontrols_title then
- if state.osc_visible then
- mp.enable_key_bindings("window-controls-title", "allow-vo-dragging")
- else
- mp.disable_key_bindings("window-controls-title", "allow-vo-dragging")
- end
- state.windowcontrols_title = state.osc_visible
- end
-
- if mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2) then
- mouse_over_osc = true
- end
- end
- end
-
- -- autohide
- if state.showtime ~= nil and get_hidetimeout() >= 0 then
- local timeout = state.showtime + (get_hidetimeout() / 1000) - now
- if timeout <= 0 and get_touchtimeout() <= 0 then
- if state.active_element == nil and not mouse_over_osc then
- hide_osc()
- end
- else
- -- the timer is only used to recheck the state and to possibly run
- -- the code above again
- if not state.hide_timer then
- state.hide_timer = mp.add_timeout(0, tick)
- end
- state.hide_timer.timeout = timeout
- -- re-arm
- state.hide_timer:kill()
- state.hide_timer:resume()
- end
- end
-
- -- actual rendering
- local ass = assdraw.ass_new()
-
- -- actual OSC
- if state.osc_visible then
- render_elements(ass)
- end
-
- if user_opts.persistentprogress or state.persistent_progress_toggle then
- render_persistentprogressbar(ass)
- end
-
- -- submit
- set_osd(osc_param.playresy * osc_param.display_aspect,
- osc_param.playresy, ass.text, 1000)
-end
-
--- called by mpv on every frame
-tick = function()
- if state.marginsREQ == true then
- update_margins()
- state.marginsREQ = false
- end
-
- if not state.enabled then return end
-
- if state.idle then
- -- render idle message
- msg.trace("idle message")
- local _, _, display_aspect = mp.get_osd_size()
- if display_aspect == 0 then
- return
- end
- local display_h = 360
- local display_w = display_h * display_aspect
- -- logo is rendered at 2^(6-1) = 32 times resolution with size 1800x1800
- local icon_x, icon_y = (display_w - 1800 / 32) / 2, 140
- local line_prefix = ("{\\rDefault\\an7\\1a&H00&\\bord0\\shad0\\pos(%f,%f)}"):format(icon_x, icon_y)
-
- local ass = assdraw.ass_new()
- -- mpv logo
- if user_opts.idlescreen then
- for _, line in ipairs(logo_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
- end
-
- -- Santa hat
- if is_december and user_opts.idlescreen and not user_opts.greenandgrumpy then
- for _, line in ipairs(santa_hat_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
- end
-
- if user_opts.idlescreen then
- ass:new_event()
- ass:pos(display_w / 2, icon_y + 65)
- ass:an(8)
- ass:append(locale.idle)
- end
- set_osd(display_w, display_h, ass.text, -1000)
-
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- state.showhide_enabled = false
- end
- elseif (state.fullscreen and user_opts.showfullscreen)
- or (not state.fullscreen and user_opts.showwindowed) then
-
- -- render the OSC
- render()
- else
- -- Flush OSD
- render_wipe()
- end
-
- state.tick_last_time = mp.get_time()
-
- if state.anitype ~= nil then
- -- state.anistart can be nil - animation should now start, or it can
- -- be a timestamp when it started. state.idle has no animation.
- if not state.idle and
- (not state.anistart or
- mp.get_time() < 1 + state.anistart + user_opts.fadeduration/1000)
- then
- -- animating or starting, or still within 1s past the deadline
- request_tick()
- else
- kill_animation()
- end
- end
-end
-
--- duration is observed for the sole purpose of updating chapter markers
--- positions. live streams with chapters are very rare, and the update is also
--- expensive (with request_init), so it's only observed when we have chapters
--- and the user didn't disable the livemarkers option (update_duration_watch).
-local function on_duration() request_init() end
-
-local duration_watched = false
-local function update_duration_watch()
- local want_watch = user_opts.livemarkers and
- (mp.get_property_number("chapters", 0) or 0) > 0 and
- true or false -- ensure it's a boolean
-
- if want_watch ~= duration_watched then
- if want_watch then
- mp.observe_property("duration", "native", on_duration)
- else
- mp.unobserve_property(on_duration)
- end
- duration_watched = want_watch
- end
-end
-
-local function set_tick_delay(_, display_fps)
- -- may be nil if unavailable or 0 fps is reported
- if not display_fps or not user_opts.tick_delay_follow_display_fps then
- tick_delay = user_opts.tick_delay
- return
- end
- tick_delay = 1 / display_fps
-end
-
-mp.register_event("file-loaded", function()
- is_image() -- check if file is an image
- state.new_file_flag = true
- state.file_size_normalized = "Approximating size..."
- check_path_url()
- if user_opts.automatickeyframemode then
- if mp.get_property_number("duration", 0) > user_opts.automatickeyframelimit then
- user_opts.seekbarkeyframes = true
- else
- user_opts.seekbarkeyframes = false
- end
- end
- if user_opts.osc_on_start then
- show_osc()
- end
-end)
-mp.register_event("start-file", request_init)
-mp.observe_property("track-list", "native", request_init)
-mp.observe_property("playlist-count", "native", request_init)
-mp.observe_property("chapter-list", "native", function(_, list)
- list = list or {} -- safety, shouldn't return nil
- table.sort(list, function(a, b) return a.time < b.time end)
- state.chapter_list = list
- update_duration_watch()
- request_init()
-end)
-mp.observe_property("seeking", "native", function(_, seeking)
- if user_opts.seek_resets_hidetimeout then
- reset_timeout()
- end
-
- if state.new_file_flag then
- state.new_file_flag = false
- return
- end
-
- if seeking and user_opts.osc_on_seek then
- mp.register_event("seek", show_osc) -- show OSC while seeking
- else
- mp.unregister_event(show_osc) -- remove event when seeking stops
- end
-end)
-mp.observe_property("fullscreen", "bool", function(_, val)
- state.fullscreen = val
- state.marginsREQ = true
- adjust_subtitles(state.osc_visible)
- request_init_resize()
-end)
-mp.observe_property("border", "bool", function(_, val)
- state.border = val
- request_init_resize()
-end)
-mp.observe_property("title-bar", "bool", function(_, val)
- state.title_bar = val
- request_init_resize()
-end)
-mp.observe_property("window-maximized", "bool", function(_, val)
- state.maximized = val
- request_init_resize()
-end)
-mp.observe_property("idle-active", "bool", function(_, val)
- state.idle = val
- request_tick()
-end)
-mp.observe_property("display-fps", "number", set_tick_delay)
-mp.observe_property("demuxer-cache-state", "native", cache_state)
-mp.observe_property("vo-configured", "bool", request_tick)
-mp.observe_property("playback-time", "number", request_tick)
-mp.observe_property("osd-dimensions", "native", function()
- -- (we could use the value instead of re-querying it all the time, but then
- -- we might have to worry about property update ordering)
- request_init_resize()
- adjust_subtitles(state.osc_visible)
-end)
-mp.observe_property("osd-scale-by-window", "native", request_init_resize)
-mp.observe_property("touch-pos", "native", handle_touch)
-mp.observe_property("mute", "bool", function(_, val)
- state.mute = val
- request_tick()
-end)
-mp.observe_property("paused-for-cache", "bool", function(_, val) state.buffering = val end)
--- ensure compatibility with auto looping scripts (eg: a script that sets videos under 2 seconds to loop by default)
-mp.observe_property("loop-file", "bool", function(_, val)
- if (val == nil) then
- state.looping = true
- else
- state.looping = false
- end
-end)
-
--- mouse show/hide bindings
-mp.set_key_bindings({
- {"mouse_move", function() process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide", "force")
-mp.set_key_bindings({
- {"mouse_move", function() process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide_wc", "force")
-do_enable_keybindings()
-
---mouse input bindings
-mp.set_key_bindings({
- {"mbtn_left", function() process_event("mbtn_left", "up") end,
- function() process_event("mbtn_left", "down") end},
- {"shift+mbtn_left", function() process_event("shift+mbtn_left", "up") end,
- function() process_event("shift+mbtn_left", "down") end},
- {"mbtn_right", function() process_event("mbtn_right", "up") end,
- function() process_event("mbtn_right", "down") end},
- {"shift+mbtn_right", function(e) process_event("shift+mbtn_right", "up") end,
- function(e) process_event("shift+mbtn_right", "down") end},
- -- alias to shift_mbtn_left for single-handed mouse use
- {"mbtn_mid", function() process_event("shift+mbtn_left", "up") end,
- function() process_event("shift+mbtn_left", "down") end},
- {"wheel_up", function() process_event("wheel_up", "press") end},
- {"wheel_down", function() process_event("wheel_down", "press") end},
- {"mbtn_left_dbl", "ignore"},
- {"shift+mbtn_left_dbl", "ignore"},
- {"mbtn_right_dbl", "ignore"},
-}, "input", "force")
-mp.enable_key_bindings("input")
-
-mp.set_key_bindings({
- {"mbtn_left", function() process_event("mbtn_left", "up") end,
- function() process_event("mbtn_left", "down") end},
-}, "window-controls", "force")
-mp.enable_key_bindings("window-controls")
-
-local function always_on(val)
- if state.enabled then
- if val then
- show_osc()
- else
- hide_osc()
- end
- end
-end
-
--- mode can be auto/always/never/cycle
--- the modes only affect internal variables and not stored on its own.
-local function visibility_mode(mode, no_osd)
- if mode == "cycle" then
- for i, allowed_mode in ipairs(state.visibility_modes) do
- if i == #state.visibility_modes then
- mode = state.visibility_modes[1]
- break
- elseif user_opts.visibility == allowed_mode then
- mode = state.visibility_modes[i + 1]
- break
- end
- end
- end
-
- if mode == "auto" then
- always_on(false)
- enable_osc(true)
- elseif mode == "always" then
- enable_osc(true)
- always_on(true)
- elseif mode == "never" then
- enable_osc(false)
- else
- msg.warn("Ignoring unknown visibility mode '" .. mode .. "'")
- return
- end
-
- user_opts.visibility = mode
- mp.set_property_native("user-data/osc/visibility", mode)
-
- if not no_osd and tonumber(mp.get_property("osd-level")) >= 1 then
- mp.osd_message("OSC visibility: " .. mode)
- end
-
- -- Reset the input state on a mode change. The input state will be
- -- recalculated on the next render cycle, except in 'never' mode where it
- -- will just stay disabled.
- mp.disable_key_bindings("input")
- mp.disable_key_bindings("window-controls")
- state.input_enabled = false
-
- update_margins()
- request_tick()
-end
-
-local function idlescreen_visibility(mode, no_osd)
- if mode == "cycle" then
- if user_opts.idlescreen then
- mode = "no"
- else
- mode = "yes"
- end
- end
-
- if mode == "yes" then
- user_opts.idlescreen = true
- else
- user_opts.idlescreen = false
- end
-
- mp.set_property_native("user-data/osc/idlescreen", user_opts.idlescreen)
-
- if not no_osd and tonumber(mp.get_property("osd-level")) >= 1 then
- mp.osd_message("OSC logo visibility: " .. tostring(mode))
- end
-
- request_tick()
-end
-
-mp.observe_property("pause", "bool", function(name, enabled)
- pause_state(name, enabled)
- if user_opts.showonpause and user_opts.visibility ~= "never" then
- state.enabled = enabled
- if enabled then
- -- save mode if a temporary change is needed
- if not state.temp_visibility_mode and user_opts.visibility ~= "always" then
- state.temp_visibility_mode = user_opts.visibility
- end
-
- if user_opts.keeponpause then
- -- set visibility to "always" temporarily
- visibility_mode("always", true)
- else
- show_osc()
- end
- else
- -- restore mode if it was changed temporarily
- if state.temp_visibility_mode then
- visibility_mode(state.temp_visibility_mode, true)
- state.temp_visibility_mode = nil
- else
- -- respect "always" mode on unpause
- visibility_mode(user_opts.visibility, true)
- end
- end
- end
-end)
-
-mp.register_script_message("osc-visibility", visibility_mode)
-mp.register_script_message("osc-show", show_osc)
-mp.register_script_message("osc-hide", function()
- if user_opts.visibility == "auto" then
- osc_visible(false)
- end
-end)
-mp.add_key_binding(nil, "visibility", function() visibility_mode("cycle") end)
-mp.add_key_binding(nil, "progress-toggle", function()
- user_opts.persistentprogress = not user_opts.persistentprogress
- state.persistent_progress_toggle = user_opts.persistentprogress
- request_init()
-end)
-mp.register_script_message("osc-idlescreen", idlescreen_visibility)
-mp.register_script_message("thumbfast-info", function(json)
- local data = utils.parse_json(json)
- if type(data) ~= "table" or not data.width or not data.height then
- msg.error("thumbfast-info: received json didn't produce a table with thumbnail information")
- else
- thumbfast = data
- end
-end)
-
--- validate string type user options
-local function validate_user_opts()
- if user_opts.window_top_bar ~= "auto" and
- user_opts.window_top_bar ~= "yes" and
- user_opts.window_top_bar ~= "no" then
- msg.warn("window_top_bar cannot be '" .. user_opts.window_top_bar .. "'. Ignoring.")
- user_opts.window_top_bar = "auto"
- end
-
- if user_opts.seek_handle_size < 0 then
- msg.warn("seek_handle_size must be 0 or higher. Setting it to 0 (minimum).")
- user_opts.seek_handle_size = 0
- end
-
- if user_opts.volume_control_type ~= "linear" and
- user_opts.volume_control_type ~= "logarithmic" then
- msg.warn("volumecontrol cannot be '" .. user_opts.volume_control_type .. "'. Ignoring.")
- user_opts.volume_control_type = "linear"
- end
-
- if user_opts.screenshot_flag ~= "subtitles" and
- user_opts.screenshot_flag ~= "video" and
- user_opts.screenshot_flag ~= "window" and
- user_opts.screenshot_flag ~= "each-frame" and
- user_opts.screenshot_flag ~= "subtitles+each-frame" and
- user_opts.screenshot_flag ~= "video+each-frame" and
- user_opts.screenshot_flag ~= "window+each-frame" then
- msg.warn("screenshot_flag cannot be '" .. user_opts.screenshot_flag .. "'. Ignoring.")
- user_opts.screenshot_flag = "subtitles"
- end
-
- if not language[user_opts.language] then
- msg.warn("language '" .. user_opts.language .. "' not found. Ignoring.")
- user_opts.language = "en"
- if not language["en"] then
- msg.warn("ERROR: can't find the default 'en' language or the one set by user_opts.")
- end
- end
-
- local colors = {
- user_opts.osc_color, user_opts.seekbarfg_color, user_opts.seekbarbg_color,
- user_opts.title_color, user_opts.time_color, user_opts.side_buttons_color,
- user_opts.middle_buttons_color, user_opts.playpause_color, user_opts.window_title_color,
- user_opts.window_controls_color, user_opts.held_element_color, user_opts.thumbnail_border_color,
- user_opts.chapter_title_color, user_opts.seekbar_cache_color, user_opts.hover_effect_color,
- user_opts.windowcontrols_close_hover, user_opts.windowcontrols_max_hover, user_opts.windowcontrols_min_hover,
- user_opts.cache_info_color, user_opts.thumbnail_border_outline,
- }
-
- for _, color in pairs(colors) do
- if color:find("^#%x%x%x%x%x%x$") == nil then
- msg.warn("'" .. color .. "' is not a valid color")
- end
- end
-
- for str in string.gmatch(user_opts.visibility_modes, "([^_]+)") do
- if str ~= "auto" and str ~= "always" and str ~= "never" then
- msg.warn("Ignoring unknown visibility mode '" .. str .."' in list")
- else
- table.insert(state.visibility_modes, str)
- end
- end
-end
-
--- read options from config and command-line
-opt.read_options(user_opts, "modernz", function(changed)
- validate_user_opts()
- set_osc_locale()
- set_osc_styles()
- set_time_styles(changed.timetotal, changed.timems)
- if changed.tick_delay or changed.tick_delay_follow_display_fps then
- set_tick_delay("display_fps", mp.get_property_number("display_fps"))
- end
- request_tick()
- visibility_mode(user_opts.visibility, true)
- update_duration_watch()
- request_init()
-end)
-
-validate_user_opts()
-set_osc_locale()
-set_osc_styles()
-set_time_styles(true, true)
-set_tick_delay("display_fps", mp.get_property_number("display_fps"))
-visibility_mode(user_opts.visibility, true)
-update_duration_watch()
-
-set_virt_mouse_area(0, 0, 0, 0, "input")
-set_virt_mouse_area(0, 0, 0, 0, "window-controls")
-set_virt_mouse_area(0, 0, 0, 0, "window-controls-title")
diff --git a/osc-style/osc-default-blue-box-bar-or-knob-45.lua b/osc-style/osc-default-blue-box-bar-or-knob-45.lua
deleted file mode 100644
index 2b06f5f..0000000
--- a/osc-style/osc-default-blue-box-bar-or-knob-45.lua
+++ /dev/null
@@ -1,2893 +0,0 @@
---此lua脚本由软件No1修改并提供支持
---This lua script is modified by www.rjno1.com
---此lua脚本原始版本: github.com/mpv-player/mpv/blob/master/player/lua/osc.lua
---The original version of this lua script:github.com/mpv-player/mpv/blob/master/player/lua/osc.lua
-local assdraw = require 'mp.assdraw'
-local msg = require 'mp.msg'
-local opt = require 'mp.options'
-local utils = require 'mp.utils'
-
---
--- Parameters
---
--- default user option values
--- do not touch, change them in osc.conf
-local user_opts = {
- showwindowed = true, -- show OSC when windowed?
- showfullscreen = true, -- show OSC when fullscreen?
- scalewindowed = 1, -- scaling of the controller when windowed
- scalefullscreen = 1, -- scaling of the controller when fullscreen
- scaleforcedwindow = 2, -- scaling when rendered on a forced window
- vidscale = true, -- scale the controller with the video?
- valign = 0.8, -- vertical alignment, -1 (top) to 1 (bottom)
- halign = 0, -- horizontal alignment, -1 (left) to 1 (right)
- barmargin = 0, -- vertical margin of top/bottombar
- boxalpha = 45, -- alpha of the background box,
- -- 0 (opaque) to 255 (fully transparent)
- hidetimeout = 500, -- duration in ms until the OSC hides if no
- -- mouse movement. enforced non-negative for the
- -- user, but internally negative is "always-on".
- fadeduration = 200, -- duration of fade out in ms, 0 = no fade
- deadzonesize = 0.5, -- size of deadzone
- minmousemove = 0, -- minimum amount of pixels the mouse has to
- -- move between ticks to make the OSC show up
- iamaprogrammer = false, -- use native mpv values and disable OSC
- -- internal track list management (and some
- -- functions that depend on it)
- layout = "box",
- seekbarstyle = "bar", -- bar, diamond or knob
- seekbarhandlesize = 0.6, -- size ratio of the diamond and knob handle
- seekrangestyle = "inverted",-- bar, line, slider, inverted or none
- seekrangeseparate = true, -- wether the seekranges overlay on the bar-style seekbar
- seekrangealpha = 200, -- transparency of seekranges
- seekbarkeyframes = true, -- use keyframes when dragging the seekbar
- title = "${media-title}", -- string compatible with property-expansion
- -- to be shown as OSC title
- rjno1title = "MPV-EASY Player - ${filename}", --用来修改显示-口x时的标题
- tooltipborder = 1, -- border of tooltip in bottom/topbar
- timetotal = false, -- display total time instead of remaining time?
- timems = false, -- display timecodes with milliseconds?
- visibility = "auto", -- only used at init to set visibility_mode(...)
- boxmaxchars = 145, -- title crop threshold for box layout
- boxvideo = false, -- apply osc_param.video_margins to video
- windowcontrols = "auto", -- whether to show window controls
- windowcontrols_alignment = "right", -- which side to show window controls on
- greenandgrumpy = false, -- disable santa hat
- livemarkers = true, -- update seekbar chapter markers on duration change
-}
-
--- read options from config and command-line
-opt.read_options(user_opts, "osc", function(list) update_options(list) end)
-
-local osc_param = { -- calculated by osc_init()
- playresy = 0, -- canvas size Y
- playresx = 0, -- canvas size X
- display_aspect = 1,
- unscaled_y = 0,
- areas = {},
- video_margins = {
- l = 0, r = 0, t = 0, b = 0, -- left/right/top/bottom
- },
-}
-
-local osc_styles = {
-
- rjno150Buttons = "{\\blur0\\bord0\\1c&HCBCBCB\\3c&HFFFFFF\\fs46\\fnmpv-osd-symbols}",
- rjno140Buttons = "{\\blur0\\bord0\\1c&HCBCBCB\\3c&HFFFFFF\\fs36\\fnmpv-osd-symbols}",
- rjno130Buttons = "{\\blur0\\bord0\\1c&HCBCBCB\\3c&HFFFFFF\\fs26\\fnmpv-osd-symbols}",
- rjno125Buttons = "{\\blur0\\bord0\\1c&HCBCBCB\\3c&HFFFFFF\\fs25\\fnmpv-osd-symbols}",
- rjno120Buttons = "{\\blur0\\bord0\\1c&HCBCBCB\\3c&HFFFFFF\\fs20\\fnmpv-osd-symbols}",
- rjno116Buttons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs16\\fnmpv-osd-symbols}",
- rjno1box = "{\\rDefault\\blur0\\bord0\\1c&H3D3833\\3c&HFFFFFF}",
- rjno1timecodes = "{\\blur0\\bord0\\1c&HDD9A00\\3c&HFFFFFF\\fs13}",
- rjno1timePosBar = "{\\blur0\\bord".. user_opts.tooltipborder .."\\1c&HFFFFFF\\3c&H000000\\fs28}",
- rjno1vidtitleBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs13\\q2}",
-
- rjno1wcButtons = "{\\1c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- rjno1wcTitle = "{\\1c&HFFFFFF\\fs18\\q2}",
- rjno1wcBar = "{\\1c&H3D3833}",
-
- bigButtons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs50\\fnmpv-osd-symbols}",
- smallButtonsL = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs19\\fnmpv-osd-symbols}",
- smallButtonsLlabel = "{\\fscx105\\fscy105\\fn" .. mp.get_property("options/osd-font") .. "}",
- smallButtonsR = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs30\\fnmpv-osd-symbols}",
- topButtons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs12\\fnmpv-osd-symbols}",
-
- elementDown = "{\\1c&H999999}",
- timecodes = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs20}",
- vidtitle = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs12\\q2}",
- box = "{\\rDefault\\blur0\\bord1\\1c&H000000\\3c&HFFFFFF}",
-
- topButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\fnmpv-osd-symbols}",
- smallButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs28\\fnmpv-osd-symbols}",
- timecodesBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs27}",
- timePosBar = "{\\blur0\\bord".. user_opts.tooltipborder .."\\1c&HFFFFFF\\3c&H000000\\fs30}",
- vidtitleBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\q2}",
-
- wcButtons = "{\\1c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- wcTitle = "{\\1c&HFFFFFF\\fs24\\q2}",
- wcBar = "{\\1c&H000000}",
-}
-
--- internal states, do not touch
-local state = {
- showtime, -- time of last invocation (last mouse move)
- osc_visible = false,
- anistart, -- time when the animation started
- anitype, -- current type of animation
- animation, -- current animation alpha
- mouse_down_counter = 0, -- used for softrepeat
- active_element = nil, -- nil = none, 0 = background, 1+ = see elements[]
- active_event_source = nil, -- the "button" that issued the current event
- rightTC_trem = not user_opts.timetotal, -- if the right timecode should display total or remaining time
- tc_ms = user_opts.timems, -- Should the timecodes display their time with milliseconds
- mp_screen_sizeX, mp_screen_sizeY, -- last screen-resolution, to detect resolution changes to issue reINITs
- initREQ = false, -- is a re-init request pending?
- marginsREQ = false, -- is a margins update pending?
- last_mouseX, last_mouseY, -- last mouse position, to detect significant mouse movement
- mouse_in_window = false,
- message_text,
- message_hide_timer,
- fullscreen = false,
- tick_timer = nil,
- tick_last_time = 0, -- when the last tick() was run
- hide_timer = nil,
- cache_state = nil,
- idle = false,
- enabled = true,
- input_enabled = true,
- showhide_enabled = false,
- dmx_cache = 0,
- using_video_margins = false,
- border = true,
- maximized = false,
- osd = mp.create_osd_overlay("ass-events"),
-}
-
-local window_control_box_width = 80
-local tick_delay = 0.03
-
-local is_december = os.date("*t").month == 12
-
---
--- Helperfunctions
---
-
-function kill_animation()
- state.anistart = nil
- state.animation = nil
- state.anitype = nil
-end
-
-function set_osd(res_x, res_y, text)
- if state.osd.res_x == res_x and
- state.osd.res_y == res_y and
- state.osd.data == text then
- return
- end
- state.osd.res_x = res_x
- state.osd.res_y = res_y
- state.osd.data = text
- state.osd.z = 1000
- state.osd:update()
-end
-
-local margins_opts = {
- {"l", "video-margin-ratio-left"},
- {"r", "video-margin-ratio-right"},
- {"t", "video-margin-ratio-top"},
- {"b", "video-margin-ratio-bottom"},
-}
-
--- scale factor for translating between real and virtual ASS coordinates
-function get_virt_scale_factor()
- local w, h = mp.get_osd_size()
- if w <= 0 or h <= 0 then
- return 0, 0
- end
- return osc_param.playresx / w, osc_param.playresy / h
-end
-
--- return mouse position in virtual ASS coordinates (playresx/y)
-function get_virt_mouse_pos()
- if state.mouse_in_window then
- local sx, sy = get_virt_scale_factor()
- local x, y = mp.get_mouse_pos()
- return x * sx, y * sy
- else
- return -1, -1
- end
-end
-
-function set_virt_mouse_area(x0, y0, x1, y1, name)
- local sx, sy = get_virt_scale_factor()
- mp.set_mouse_area(x0 / sx, y0 / sy, x1 / sx, y1 / sy, name)
-end
-
-function scale_value(x0, x1, y0, y1, val)
- local m = (y1 - y0) / (x1 - x0)
- local b = y0 - (m * x0)
- return (m * val) + b
-end
-
--- returns hitbox spanning coordinates (top left, bottom right corner)
--- according to alignment
-function get_hitbox_coords(x, y, an, w, h)
-
- local alignments = {
- [1] = function () return x, y-h, x+w, y end,
- [2] = function () return x-(w/2), y-h, x+(w/2), y end,
- [3] = function () return x-w, y-h, x, y end,
-
- [4] = function () return x, y-(h/2), x+w, y+(h/2) end,
- [5] = function () return x-(w/2), y-(h/2), x+(w/2), y+(h/2) end,
- [6] = function () return x-w, y-(h/2), x, y+(h/2) end,
-
- [7] = function () return x, y, x+w, y+h end,
- [8] = function () return x-(w/2), y, x+(w/2), y+h end,
- [9] = function () return x-w, y, x, y+h end,
- }
-
- return alignments[an]()
-end
-
-function get_hitbox_coords_geo(geometry)
- return get_hitbox_coords(geometry.x, geometry.y, geometry.an,
- geometry.w, geometry.h)
-end
-
-function get_element_hitbox(element)
- return element.hitbox.x1, element.hitbox.y1,
- element.hitbox.x2, element.hitbox.y2
-end
-
-function mouse_hit(element)
- return mouse_hit_coords(get_element_hitbox(element))
-end
-
-function mouse_hit_coords(bX1, bY1, bX2, bY2)
- local mX, mY = get_virt_mouse_pos()
- return (mX >= bX1 and mX <= bX2 and mY >= bY1 and mY <= bY2)
-end
-
-function limit_range(min, max, val)
- if val > max then
- val = max
- elseif val < min then
- val = min
- end
- return val
-end
-
--- translate value into element coordinates
-function get_slider_ele_pos_for(element, val)
-
- local ele_pos = scale_value(
- element.slider.min.value, element.slider.max.value,
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- val)
-
- return limit_range(
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- ele_pos)
-end
-
--- translates global (mouse) coordinates to value
-function get_slider_value_at(element, glob_pos)
-
- local val = scale_value(
- element.slider.min.glob_pos, element.slider.max.glob_pos,
- element.slider.min.value, element.slider.max.value,
- glob_pos)
-
- return limit_range(
- element.slider.min.value, element.slider.max.value,
- val)
-end
-
--- get value at current mouse position
-function get_slider_value(element)
- return get_slider_value_at(element, get_virt_mouse_pos())
-end
-
-function countone(val)
- if not (user_opts.iamaprogrammer) then
- val = val + 1
- end
- return val
-end
-
--- align: -1 .. +1
--- frame: size of the containing area
--- obj: size of the object that should be positioned inside the area
--- margin: min. distance from object to frame (as long as -1 <= align <= +1)
-function get_align(align, frame, obj, margin)
- return (frame / 2) + (((frame / 2) - margin - (obj / 2)) * align)
-end
-
--- multiplies two alpha values, formular can probably be improved
-function mult_alpha(alphaA, alphaB)
- return 255 - (((1-(alphaA/255)) * (1-(alphaB/255))) * 255)
-end
-
-function add_area(name, x1, y1, x2, y2)
- -- create area if needed
- if (osc_param.areas[name] == nil) then
- osc_param.areas[name] = {}
- end
- table.insert(osc_param.areas[name], {x1=x1, y1=y1, x2=x2, y2=y2})
-end
-
-function ass_append_alpha(ass, alpha, modifier)
- local ar = {}
-
- for ai, av in pairs(alpha) do
- av = mult_alpha(av, modifier)
- if state.animation then
- av = mult_alpha(av, state.animation)
- end
- ar[ai] = av
- end
-
- ass:append(string.format("{\\1a&H%X&\\2a&H%X&\\3a&H%X&\\4a&H%X&}",
- ar[1], ar[2], ar[3], ar[4]))
-end
-
-function ass_draw_rr_h_cw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_cw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_cw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-function ass_draw_rr_h_ccw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_ccw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_ccw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-
---
--- Tracklist Management
---
-
-local nicetypes = {video = "Video", audio = "Audio", sub = "Subtitle"}
-
--- updates the OSC internal playlists, should be run each time the track-layout changes
-function update_tracklist()
- local tracktable = mp.get_property_native("track-list", {})
-
- -- by osc_id
- tracks_osc = {}
- tracks_osc.video, tracks_osc.audio, tracks_osc.sub = {}, {}, {}
- -- by mpv_id
- tracks_mpv = {}
- tracks_mpv.video, tracks_mpv.audio, tracks_mpv.sub = {}, {}, {}
- for n = 1, #tracktable do
- if not (tracktable[n].type == "unknown") then
- local type = tracktable[n].type
- local mpv_id = tonumber(tracktable[n].id)
-
- -- by osc_id
- table.insert(tracks_osc[type], tracktable[n])
-
- -- by mpv_id
- tracks_mpv[type][mpv_id] = tracktable[n]
- tracks_mpv[type][mpv_id].osc_id = #tracks_osc[type]
- end
- end
-end
-
--- return a nice list of tracks of the given type (video, audio, sub)
-function get_tracklist(type)
- local msg = "Available " .. nicetypes[type] .. " Tracks: "
- if #tracks_osc[type] == 0 then
- msg = msg .. "none"
- else
- for n = 1, #tracks_osc[type] do
- local track = tracks_osc[type][n]
- local lang, title, selected = "unknown", "", "○"
- if not(track.lang == nil) then lang = track.lang end
- if not(track.title == nil) then title = track.title end
- if (track.id == tonumber(mp.get_property(type))) then
- selected = "●"
- end
- msg = msg.."\n"..selected.." "..n..": ["..lang.."] "..title
- end
- end
- return msg
-end
-
--- relatively change the track of given by tracks
- --(+1 -> next, -1 -> previous)
-function set_track(type, next)
- local current_track_mpv, current_track_osc
- if (mp.get_property(type) == "no") then
- current_track_osc = 0
- else
- current_track_mpv = tonumber(mp.get_property(type))
- current_track_osc = tracks_mpv[type][current_track_mpv].osc_id
- end
- local new_track_osc = (current_track_osc + next) % (#tracks_osc[type] + 1)
- local new_track_mpv
- if new_track_osc == 0 then
- new_track_mpv = "no"
- else
- new_track_mpv = tracks_osc[type][new_track_osc].id
- end
-
- mp.commandv("set", type, new_track_mpv)
-
- if (new_track_osc == 0) then
- show_message(nicetypes[type] .. " Track: none")
- else
- show_message(nicetypes[type] .. " Track: "
- .. new_track_osc .. "/" .. #tracks_osc[type]
- .. " [".. (tracks_osc[type][new_track_osc].lang or "unknown") .."] "
- .. (tracks_osc[type][new_track_osc].title or ""))
- end
-end
-
--- get the currently selected track of , OSC-style counted
-function get_track(type)
- local track = mp.get_property(type)
- if track ~= "no" and track ~= nil then
- local tr = tracks_mpv[type][tonumber(track)]
- if tr then
- return tr.osc_id
- end
- end
- return 0
-end
-
--- WindowControl helpers
-function window_controls_enabled()
- val = user_opts.windowcontrols
- if val == "auto" then
- return not state.border
- else
- return val ~= "no"
- end
-end
-
-function window_controls_alignment()
- return user_opts.windowcontrols_alignment
-end
-
---
--- Element Management
---
-
-local elements = {}
-
-function prepare_elements()
-
- -- remove elements without layout or invisble
- local elements2 = {}
- for n, element in pairs(elements) do
- if not (element.layout == nil) and (element.visible) then
- table.insert(elements2, element)
- end
- end
- elements = elements2
-
- function elem_compare (a, b)
- return a.layout.layer < b.layout.layer
- end
-
- table.sort(elements, elem_compare)
-
-
- for _,element in pairs(elements) do
-
- local elem_geo = element.layout.geometry
-
- -- Calculate the hitbox
- local bX1, bY1, bX2, bY2 = get_hitbox_coords_geo(elem_geo)
- element.hitbox = {x1 = bX1, y1 = bY1, x2 = bX2, y2 = bY2}
-
- local style_ass = assdraw.ass_new()
-
- -- prepare static elements
- style_ass:append("{}") -- hack to troll new_event into inserting a \n
- style_ass:new_event()
- style_ass:pos(elem_geo.x, elem_geo.y)
- style_ass:an(elem_geo.an)
- style_ass:append(element.layout.style)
-
- element.style_ass = style_ass
-
- local static_ass = assdraw.ass_new()
-
-
- if (element.type == "box") then
- --draw box
- static_ass:draw_start()
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h,
- element.layout.box.radius, element.layout.box.hexagon)
- static_ass:draw_stop()
-
- elseif (element.type == "slider") then
- --draw static slider parts
-
- local r1 = 0
- local r2 = 0
- local slider_lo = element.layout.slider
- -- offset between element outline and drag-area
- local foV = slider_lo.border + slider_lo.gap
-
- -- calculate positions of min and max points
- if (slider_lo.stype ~= "bar") then
- r1 = elem_geo.h / 2
- element.slider.min.ele_pos = elem_geo.h / 2
- element.slider.max.ele_pos = elem_geo.w - (elem_geo.h / 2)
- if (slider_lo.stype == "diamond") then
- r2 = (elem_geo.h - 2 * slider_lo.border) / 2
- elseif (slider_lo.stype == "knob") then
- r2 = r1
- end
- else
- element.slider.min.ele_pos =
- slider_lo.border + slider_lo.gap
- element.slider.max.ele_pos =
- elem_geo.w - (slider_lo.border + slider_lo.gap)
- end
-
- element.slider.min.glob_pos =
- element.hitbox.x1 + element.slider.min.ele_pos
- element.slider.max.glob_pos =
- element.hitbox.x1 + element.slider.max.ele_pos
-
- -- -- --
-
- static_ass:draw_start()
-
- -- the box
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h, r1, slider_lo.stype == "diamond")
-
- -- the "hole"
- ass_draw_rr_h_ccw(static_ass, slider_lo.border, slider_lo.border,
- elem_geo.w - slider_lo.border, elem_geo.h - slider_lo.border,
- r2, slider_lo.stype == "diamond")
-
- -- marker nibbles
- if not (element.slider.markerF == nil) and (slider_lo.gap > 0) then
- local markers = element.slider.markerF()
- for _,marker in pairs(markers) do
- if (marker > element.slider.min.value) and
- (marker < element.slider.max.value) then
-
- local s = get_slider_ele_pos_for(element, marker)
-
- if (slider_lo.gap > 1) then -- draw triangles
-
- local a = slider_lo.gap / 0.5 --0.866
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:move_to(s - (a/2), slider_lo.border)
- static_ass:line_to(s + (a/2), slider_lo.border)
- static_ass:line_to(s, foV)
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:move_to(s - (a/2),
- elem_geo.h - slider_lo.border)
- static_ass:line_to(s,
- elem_geo.h - foV)
- static_ass:line_to(s + (a/2),
- elem_geo.h - slider_lo.border)
- end
-
- else -- draw 2x1px nibbles
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:rect_cw(s - 1, slider_lo.border,
- s + 1, slider_lo.border + slider_lo.gap);
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:rect_cw(s - 1,
- elem_geo.h -slider_lo.border -slider_lo.gap,
- s + 1, elem_geo.h - slider_lo.border);
- end
- end
- end
- end
- end
- end
-
- element.static_ass = static_ass
-
-
- -- if the element is supposed to be disabled,
- -- style it accordingly and kill the eventresponders
- if not (element.enabled) then
- element.layout.alpha[1] = 136
- element.eventresponder = nil
- end
- end
-end
-
-
---
--- Element Rendering
---
-
--- returns nil or a chapter element from the native property chapter-list
-function get_chapter(possec)
- local cl = mp.get_property_native("chapter-list", {})
- local ch = nil
-
- -- chapters might not be sorted by time. find nearest-before/at possec
- for n=1, #cl do
- if possec >= cl[n].time and (not ch or cl[n].time > ch.time) then
- ch = cl[n]
- end
- end
- return ch
-end
-
-function render_elements(master_ass)
-
- -- when the slider is dragged or hovered and we have a target chapter name
- -- then we use it instead of the normal title. we calculate it before the
- -- render iterations because the title may be rendered before the slider.
- state.forced_title = nil
- local se, ae = state.slider_element, elements[state.active_element]
- if se and (ae == se or (not ae and mouse_hit(se))) then
- local dur = mp.get_property_number("duration", 0)
- if dur > 0 then
- local possec = get_slider_value(se) * dur / 100 -- of mouse pos
- local ch = get_chapter(possec)
- if ch and ch.title and ch.title ~= "" then
- state.forced_title = "Chapter: " .. ch.title
- end
- end
- end
-
- for n=1, #elements do
- local element = elements[n]
-
- local style_ass = assdraw.ass_new()
- style_ass:merge(element.style_ass)
- ass_append_alpha(style_ass, element.layout.alpha, 0)
-
- if element.eventresponder and (state.active_element == n) then
-
- -- run render event functions
- if not (element.eventresponder.render == nil) then
- element.eventresponder.render(element)
- end
-
- if mouse_hit(element) then
- -- mouse down styling
- if (element.styledown) then
- style_ass:append(osc_styles.elementDown)
- end
-
- if (element.softrepeat) and (state.mouse_down_counter >= 15
- and state.mouse_down_counter % 5 == 0) then
-
- element.eventresponder[state.active_event_source.."_down"](element)
- end
- state.mouse_down_counter = state.mouse_down_counter + 1
- end
-
- end
-
- local elem_ass = assdraw.ass_new()
-
- elem_ass:merge(style_ass)
-
- if not (element.type == "button") then
- elem_ass:merge(element.static_ass)
- end
-
- if (element.type == "slider") then
-
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- local s_min = element.slider.min.value
- local s_max = element.slider.max.value
-
- -- draw pos marker
- local foH, xp
- local pos = element.slider.posF()
- local foV = slider_lo.border + slider_lo.gap
- local innerH = elem_geo.h - (2 * foV)
- local seekRanges = element.slider.seekRangesF()
- local seekRangeLineHeight = innerH / 5
-
- if slider_lo.stype ~= "bar" then
- foH = elem_geo.h / 2
- else
- foH = slider_lo.border + slider_lo.gap
- end
-
- if pos then
- xp = get_slider_ele_pos_for(element, pos)
-
- if slider_lo.stype ~= "bar" then
- local r = (user_opts.seekbarhandlesize * innerH) / 2
- ass_draw_rr_h_cw(elem_ass, xp - r, foH - r,
- xp + r, foH + r,
- r, slider_lo.stype == "diamond")
- else
- local h = 0
- if seekRanges and user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- h = seekRangeLineHeight
- end
- elem_ass:rect_cw(foH, foV, xp, elem_geo.h - foV - h)
-
- if seekRanges and not user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- -- Punch holes for the seekRanges to be drawn later
- for _,range in pairs(seekRanges) do
- if range["start"] < pos then
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = xp
-
- if pos > range["end"] then
- pend = get_slider_ele_pos_for(element, range["end"])
- end
- elem_ass:rect_ccw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- end
- end
- end
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, foH - innerH / 6, foH - innerH / 6,
- xp, foH + innerH / 6,
- innerH / 6, slider_lo.stype == "diamond", 0)
- ass_draw_rr_h_cw(elem_ass, xp, foH - innerH / 15,
- elem_geo.w - foH + innerH / 15, foH + innerH / 15,
- 0, slider_lo.stype == "diamond", innerH / 15)
- for _,range in pairs(seekRanges or {}) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
- ass_draw_rr_h_ccw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- end
- end
- end
-
- if seekRanges then
- if slider_lo.rtype ~= "inverted" then
- elem_ass:draw_stop()
- elem_ass:merge(element.style_ass)
- ass_append_alpha(elem_ass, element.layout.alpha, user_opts.seekrangealpha)
- elem_ass:merge(element.static_ass)
- end
-
- for _,range in pairs(seekRanges) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- elseif slider_lo.rtype == "line" then
- if slider_lo.stype == "bar" then
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- else
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 8, foH - innerH / 8,
- pend + innerH / 8, foH + innerH / 8,
- innerH / 8, slider_lo.stype == "diamond")
- end
- elseif slider_lo.rtype == "bar" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 2, foV,
- pend + innerH / 2, foV + innerH,
- innerH / 2, slider_lo.stype == "diamond")
- elseif range["end"] >= (pos or 0) then
- elem_ass:rect_cw(pstart, foV, pend, elem_geo.h - foV)
- else
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- elseif slider_lo.rtype == "inverted" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_ccw(elem_ass, pstart, (elem_geo.h / 2) - 1, pend,
- (elem_geo.h / 2) + 1,
- 1, slider_lo.stype == "diamond")
- else
- elem_ass:rect_ccw(pstart, (elem_geo.h / 2) - 1, pend, (elem_geo.h / 2) + 1)
- end
- end
- end
- end
-
- elem_ass:draw_stop()
-
- -- add tooltip
- if not (element.slider.tooltipF == nil) then
-
- if mouse_hit(element) then
- local sliderpos = get_slider_value(element)
- local tooltiplabel = element.slider.tooltipF(sliderpos)
-
- local an = slider_lo.tooltip_an
-
- local ty
-
- if (an == 2) then
- ty = element.hitbox.y1 - slider_lo.border
- else
- ty = element.hitbox.y1 + elem_geo.h/2
- end
-
- local tx = get_virt_mouse_pos()
- if (slider_lo.adjust_tooltip) then
- if (an == 2) then
- if (sliderpos < (s_min + 3)) then
- an = an - 1
- elseif (sliderpos > (s_max - 3)) then
- an = an + 1
- end
- elseif (sliderpos > (s_max-s_min)/2) then
- an = an + 1
- tx = tx - 5
- else
- an = an - 1
- tx = tx + 10
- end
- end
-
- -- tooltip label
- elem_ass:new_event()
- elem_ass:pos(tx, ty)
- elem_ass:an(an)
- elem_ass:append(slider_lo.tooltip_style)
- ass_append_alpha(elem_ass, slider_lo.alpha, 0)
- elem_ass:append(tooltiplabel)
-
- end
- end
-
- elseif (element.type == "button") then
-
- local buttontext
- if type(element.content) == "function" then
- buttontext = element.content() -- function objects
- elseif not (element.content == nil) then
- buttontext = element.content -- text objects
- end
-
- --匹配:(XXX) unknows 替换成:(XXX),注意XXX只能为0-3个字符
- buttontext = buttontext:gsub(":%((.?.?.?)%) unknown ", ":%(%1%)") --gsub("%) unknown %(\"", "")
-
- local maxchars = element.layout.button.maxchars
- if not (maxchars == nil) and (#buttontext > maxchars) then
- local max_ratio = 1.25 -- up to 25% more chars while shrinking
- local limit = math.max(0, math.floor(maxchars * max_ratio) - 3)
- if (#buttontext > limit) then
- while (#buttontext > limit) do
- buttontext = buttontext:gsub(".[\128-\191]*$", "")
- end
- buttontext = buttontext .. "..."
- end
- local _, nchars2 = buttontext:gsub(".[\128-\191]*", "")
- local stretch = (maxchars/#buttontext)*100
- buttontext = string.format("{\\fscx%f}",
- (maxchars/#buttontext)*100) .. buttontext
- end
-
- elem_ass:append(buttontext)
- end
-
- master_ass:merge(elem_ass)
- end
-end
-
---
--- Message display
---
-
--- pos is 1 based
-function limited_list(prop, pos)
- local proplist = mp.get_property_native(prop, {})
- local count = #proplist
- if count == 0 then
- return count, proplist
- end
-
- local fs = tonumber(mp.get_property('options/osd-font-size'))
- local max = math.ceil(osc_param.unscaled_y*0.75 / fs)
- if max % 2 == 0 then
- max = max - 1
- end
- local delta = math.ceil(max / 2) - 1
- local begi = math.max(math.min(pos - delta, count - max + 1), 1)
- local endi = math.min(begi + max - 1, count)
-
- local reslist = {}
- for i=begi, endi do
- local item = proplist[i]
- item.current = (i == pos) and true or nil
- table.insert(reslist, item)
- end
- return count, reslist
-end
-
-function get_playlist()
- local pos = mp.get_property_number('playlist-pos', 0) + 1
- local count, limlist = limited_list('playlist', pos)
- if count == 0 then
- return 'Empty playlist.'
- end
-
- local message = string.format('Playlist [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local title = v.title
- local _, filename = utils.split_path(v.filename)
- if title == nil then
- title = filename
- end
- message = string.format('%s %s %s\n', message,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function get_chapterlist()
- local pos = mp.get_property_number('chapter', 0) + 1
- local count, limlist = limited_list('chapter-list', pos)
- if count == 0 then
- return 'No chapters.'
- end
-
- local message = string.format('Chapters [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local time = mp.format_time(v.time)
- local title = v.title
- if title == nil then
- title = string.format('Chapter %02d', i)
- end
- message = string.format('%s[%s] %s %s\n', message, time,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function show_message(text, duration)
-
- --print("text: "..text.." duration: " .. duration)
- if duration == nil then
- duration = tonumber(mp.get_property("options/osd-duration")) / 1000
- elseif not type(duration) == "number" then
- print("duration: " .. duration)
- end
-
- -- cut the text short, otherwise the following functions
- -- may slow down massively on huge input
- text = string.sub(text, 0, 4000)
-
- -- replace actual linebreaks with ASS linebreaks
- text = string.gsub(text, "\n", "\\N")
-
- state.message_text = text
-
- if not state.message_hide_timer then
- state.message_hide_timer = mp.add_timeout(0, request_tick)
- end
- state.message_hide_timer:kill()
- state.message_hide_timer.timeout = duration
- state.message_hide_timer:resume()
- request_tick()
-end
-
-function render_message(ass)
- if state.message_hide_timer and state.message_hide_timer:is_enabled() and
- state.message_text
- then
- local _, lines = string.gsub(state.message_text, "\\N", "")
-
- local fontsize = tonumber(mp.get_property("options/osd-font-size"))
- local outline = tonumber(mp.get_property("options/osd-border-size"))
- local maxlines = math.ceil(osc_param.unscaled_y*0.75 / fontsize)
- local counterscale = osc_param.playresy / osc_param.unscaled_y
-
- fontsize = fontsize * counterscale / math.max(0.65 + math.min(lines/maxlines, 1), 1)
- outline = outline * counterscale / math.max(0.75 + math.min(lines/maxlines, 1)/2, 1)
-
- local style = "{\\bord" .. outline .. "\\fs" .. fontsize .. "}"
-
-
- ass:new_event()
- ass:append(style .. state.message_text)
- else
- state.message_text = nil
- end
-end
-
---
--- Initialisation and Layout
---
-
-function new_element(name, type)
- elements[name] = {}
- elements[name].type = type
-
- -- add default stuff
- elements[name].eventresponder = {}
- elements[name].visible = true
- elements[name].enabled = true
- elements[name].softrepeat = false
- elements[name].styledown = (type == "button")
- elements[name].state = {}
-
- if (type == "slider") then
- elements[name].slider = {min = {value = 0}, max = {value = 100}}
- end
-
-
- return elements[name]
-end
-
-function add_layout(name)
- if not (elements[name] == nil) then
- -- new layout
- elements[name].layout = {}
-
- -- set layout defaults
- elements[name].layout.layer = 50
- elements[name].layout.alpha = {[1] = 0, [2] = 255, [3] = 255, [4] = 255}
-
- if (elements[name].type == "button") then
- elements[name].layout.button = {
- maxchars = nil,
- }
- elseif (elements[name].type == "slider") then
- -- slider defaults
- elements[name].layout.slider = {
- border = 1,
- gap = 1,
- nibbles_top = true,
- nibbles_bottom = true,
- stype = "slider",
- adjust_tooltip = true,
- tooltip_style = "",
- tooltip_an = 2,
- alpha = {[1] = 0, [2] = 255, [3] = 88, [4] = 255},
- }
- elseif (elements[name].type == "box") then
- elements[name].layout.box = {radius = 0, hexagon = false}
- end
-
- return elements[name].layout
- else
- msg.error("Can't add_layout to element \""..name.."\", doesn't exist.")
- end
-end
-
--- Window Controls
-function window_controls(topbar)
- local wc_geo = {
- x = 0,
- -- -2去除默认情况下上方和边框之间的4px间隔
- y = 30 + user_opts.barmargin -2,
- an = 1,
- w = osc_param.playresx,
- h = 30,
- }
-
- local alignment = window_controls_alignment()
- local controlbox_w = window_control_box_width
- local titlebox_w = wc_geo.w - controlbox_w
-
- -- Default alignment is "right"
- local controlbox_left = wc_geo.w - controlbox_w
- local titlebox_left = wc_geo.x
- local titlebox_right = wc_geo.w - controlbox_w
-
- if alignment == "left" then
- controlbox_left = wc_geo.x
- titlebox_left = wc_geo.x + controlbox_w
- titlebox_right = wc_geo.w
- end
-
- add_area("window-controls",
- get_hitbox_coords(controlbox_left, wc_geo.y, wc_geo.an,
- controlbox_w, wc_geo.h))
-
- local lo
-
- -- Background Bar
- new_element("wcbar", "box")
- lo = add_layout("wcbar")
- lo.geometry = wc_geo
- lo.layer = 10
- lo.style = osc_styles.rjno1wcBar
- lo.alpha[1] = user_opts.boxalpha
-
- local button_y = wc_geo.y - (wc_geo.h / 2)
- local first_geo =
- {x = controlbox_left + 5, y = button_y, an = 4, w = 25, h = 25}
- local second_geo =
- {x = controlbox_left + 30, y = button_y, an = 4, w = 25, h = 25}
- local third_geo =
- {x = controlbox_left + 55, y = button_y, an = 4, w = 25, h = 25}
-
- -- Window control buttons use symbols in the custom mpv osd font
- -- because the official unicode codepoints are sufficiently
- -- exotic that a system might lack an installed font with them,
- -- and libass will complain that they are not present in the
- -- default font, even if another font with them is available.
-
- -- Close: 🗙
- ne = new_element("close", "button")
- ne.content = "\238\132\149"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("quit") end
- lo = add_layout("close")
- lo.geometry = alignment == "left" and first_geo or third_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- Minimize: 🗕
- ne = new_element("minimize", "button")
- ne.content = "\238\132\146"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "window-minimized") end
- lo = add_layout("minimize")
- lo.geometry = alignment == "left" and second_geo or first_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- Maximize: 🗖 /🗗
- ne = new_element("maximize", "button")
- if state.maximized or state.fullscreen then
- ne.content = "\238\132\148"
- else
- ne.content = "\238\132\147"
- end
- ne.eventresponder["mbtn_left_up"] =
- function ()
- if state.fullscreen then
- mp.commandv("cycle", "fullscreen")
- else
- mp.commandv("cycle", "window-maximized")
- end
- end
- lo = add_layout("maximize")
- lo.geometry = alignment == "left" and third_geo or second_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- deadzone below window controls
- local sh_area_y0, sh_area_y1
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (wc_geo.y + (wc_geo.h / 2)) +
- get_align(1 - (2 * user_opts.deadzonesize),
- osc_param.playresy - (wc_geo.y + (wc_geo.h / 2)), 0, 0)
- add_area("showhide_wc", wc_geo.x, sh_area_y0, wc_geo.w, sh_area_y1)
-
- if topbar then
- -- The title is already there as part of the top bar
- return
- else
- -- Apply boxvideo margins to the control bar
- osc_param.video_margins.t = wc_geo.h / osc_param.playresy
- end
-
- -- Window Title
- ne = new_element("wctitle", "button")
- ne.content = function ()
- --local title = mp.command_native({"expand-text", user_opts.title})
- --使用这个lua脚本顶部设置中的rjno1title参数替代title参数显示标题
- local title = mp.command_native({"expand-text", user_opts.rjno1title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
- local left_pad = 5
- local right_pad = 10
- lo = add_layout("wctitle")
- -- -3用来解决由于字体从24变为18后字体太靠下的问题
- lo.geometry =
- { x = titlebox_left + left_pad, y = wc_geo.y - 3 -3, an = 1,
- w = titlebox_w, h = wc_geo.h }
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.rjno1wcTitle,
- titlebox_left + left_pad, wc_geo.y - wc_geo.h,
- titlebox_right - right_pad , wc_geo.y + wc_geo.h)
-
- add_area("window-controls-title",
- titlebox_left, 0, titlebox_right, wc_geo.h)
-end
-
---
--- Layouts
---
-
-local layouts = {}
-
--- Classic box layout
-layouts["box"] = function ()
-
- local osc_geo = {
- w = 1100, -- width
- h = 65, -- height
- r = 0, -- corner-radius
- p = 0, -- padding
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w + (2 * osc_geo.p))) then
- osc_param.playresy = (osc_geo.w+(2*osc_geo.p))/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- -- position offset for contents aligned at the borders of the box
- local pos_offsetX = (osc_geo.w - (2*osc_geo.p)) / 2
- local pos_offsetY = (osc_geo.h - (2*osc_geo.p)) / 2
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- -- fetch values
- local osc_w, osc_h, osc_r, osc_p =
- osc_geo.w, osc_geo.h, osc_geo.r, osc_geo.p
-
- local lo
-
- --
- -- Background box
- --
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY, an = 5, w = osc_w, h = osc_h}
- lo.layer = 10
- lo.style = osc_styles.rjno1box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = user_opts.boxalpha
- lo.box.radius = osc_r
-
- --
- -- Title row
- --
---an是元素根据自己的中心线上下浮动,an=1时 元素中心全部在中心点上,an=9 元素全部在中心点右侧和之下
---box左上角x坐标 posX - pos_offsetX 但an=5 元素中心点坐标和这个坐标一致,所以还要根据an=?加减元素的宽度
---box左上角y坐标 posY - pos_offsetY 但an=5 元素中心点坐标和这个坐标一致,所以还要根据an=?加减元素的高度
- local rjno1X = posX - pos_offsetX
- local rjno1Y = posY - pos_offsetY
-
-
- --
- -- Seekbar
- --
- geo ={x = rjno1X + 1100 / 2 , y = rjno1Y + 6 , an = 5, w = 1100, h = 13}
- --lo = add_layout("seekbar")
-
---if user_opts["seekbarstyle"] ~= "knob" then
-
- new_element("bgbar1", "box")
- lo = add_layout("bgbar1")
-
- lo.geometry = geo
- lo.layer = 13
- lo.style = osc_styles.rjno1vidtitleBar
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.05)
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = geo.h / 2
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
---end
-
- lo = add_layout("seekbar")
- lo.geometry = geo
- lo.style = osc_styles.rjno1timecodes
- lo.slider.border = 0
- lo.slider.gap = 0
- lo.slider.tooltip_style = osc_styles.rjno1timePosBar
- lo.slider.tooltip_an = 5
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
---if user_opts["seekbarstyle"] == "knob" then
--- lo.geometry.y = rjno1Y + 6 + 4
--- end
-
-
-
-
- lo = add_layout("pl_prev")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 0 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno130Buttons
-
- lo = add_layout("ch_prev")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 1 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno140Buttons
-
- lo = add_layout("skipback")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 2 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno140Buttons
-
-
- lo = add_layout("playpause")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 3 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno150Buttons
-
-
- lo = add_layout("skipfrwd")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 4 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno140Buttons
-
-
- lo = add_layout("ch_next")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 5 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno140Buttons
-
-
-
- lo = add_layout("pl_next")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 6 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno130Buttons
-
-
---an = 5 时文字居中显示 往2边增加,所以一定要用1,这样多出的文字只会往右侧增长
- lo = add_layout("title")
- lo.geometry = {x = rjno1X + 10 * 26 , y = rjno1Y + 10 * 2.6 + 20 / 2 , an = 1, w = 1100 - 10 * 3.5 * 7, h = 20}
- lo.style = osc_styles.rjno116Buttons
- --lo.button.maxchars = user_opts.boxmaxchars
-
-
-
-
-
-
---an = 1 这样左侧的时间变长才会往右,但y轴要调整
- lo = add_layout("tc_left")
- lo.geometry = {x = rjno1X + 10 * 26, y = rjno1Y + 10 * 5.1+ 20 / 2, an = 1, w = 110, h = 20}
- lo.style = osc_styles.rjno120Buttons
-
---an = 5
- lo = add_layout("cache")
- lo.geometry = {x = rjno1X + 10 * 50 + 10 * 11 / 2, y = rjno1Y + 10 * 5.1, an = 5, w = 110, h = 20}
- lo.style = osc_styles.rjno120Buttons
---an = 9 这样右侧的时间变长才会往左,但y轴要调整
- lo = add_layout("tc_right")
- lo.geometry = {x = rjno1X + 10 * 78 + 10 * 11 / 2, y = rjno1Y + 10 * 5.1- 20 / 2 + 1, an = 9, w = 110, h = 20}
- lo.style = osc_styles.rjno120Buttons
-
-
-
-
-
-
-
- lo = add_layout("cy_audio")
- lo.geometry = {x = rjno1X + 10 * 85 + 10 * 7/2, y = rjno1Y + 10 * 5.1, an = 5, w = 70, h = 20}
- lo.style = osc_styles.rjno120Buttons
-
- lo = add_layout("cy_sub")
- lo.geometry = {x = rjno1X + 10 * 93 + 10 * 7/2, y = rjno1Y + 10 * 5.1, an = 5, w = 70, h = 20}
- lo.style = osc_styles.rjno120Buttons
-
---an = 1 图标最左侧才能点击
- lo = add_layout("volume")
- lo.geometry = {x = rjno1X + 10 * 102 , y = rjno1Y + 10 * 5 + 13, an = 1, w = 30, h = 26}
- lo.style = osc_styles.rjno125Buttons
---an = 1 图标最左侧才能点击
- lo = add_layout("tog_fs")
- lo.geometry = {x = rjno1X + 10 * 106, y = rjno1Y + 10 * 5 + 13 +1 , an = 1, w = 30, h =26 }
- lo.style = osc_styles.rjno125Buttons
-
-end
-
--- slim box layout
-layouts["slimbox"] = function ()
-
- local osc_geo = {
- w = 660, -- width
- h = 70, -- height
- r = 10, -- corner-radius
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w)) then
- osc_param.playresy = (osc_geo.w)/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo
-
- local tc_w, ele_h, inner_w = 100, 20, osc_geo.w - 100
-
- -- styles
- local styles = {
- box = "{\\rDefault\\blur0\\bord1\\1c&H000000\\3c&HFFFFFF}",
- timecodes = "{\\1c&HFFFFFF\\3c&H000000\\fs20\\bord2\\blur1}",
- tooltip = "{\\1c&HFFFFFF\\3c&H000000\\fs12\\bord1\\blur0.5}",
- }
-
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = 0
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = osc_geo.r
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
-
- lo = add_layout("seekbar")
- lo.geometry =
- {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.style = osc_styles.timecodes
- lo.slider.border = 0
- lo.slider.gap = 1.5
- lo.slider.tooltip_style = styles.tooltip
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
- lo.slider.adjust_tooltip = false
-
- --
- -- Timecodes
- --
-
- lo = add_layout("tc_left")
- lo.geometry =
- {x = posX - (inner_w/2) + osc_geo.r, y = posY + 1,
- an = 7, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- lo = add_layout("tc_right")
- lo.geometry =
- {x = posX + (inner_w/2) - osc_geo.r, y = posY + 1,
- an = 9, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- -- Cache
-
- lo = add_layout("cache")
- lo.geometry =
- {x = posX, y = posY + 1,
- an = 8, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
-
-end
-
-function bar_layout(direction)
- local osc_geo = {
- x = -2,
- y,
- an = (direction < 0) and 7 or 1,
- w,
- h = 56,
- }
-
- local padX = 9
- local padY = 3
- local buttonW = 27
- local tcW = (state.tc_ms) and 170 or 110
- local tsW = 90
- local minW = (buttonW + padX)*5 + (tcW + padX)*4 + (tsW + padX)*2
-
- -- Special topbar handling when window controls are present
- local padwc_l
- local padwc_r
- if direction < 0 or not window_controls_enabled() then
- padwc_l = 0
- padwc_r = 0
- elseif window_controls_alignment() == "left" then
- padwc_l = window_control_box_width
- padwc_r = 0
- else
- padwc_l = 0
- padwc_r = window_control_box_width
- end
-
- if ((osc_param.display_aspect > 0) and (osc_param.playresx < minW)) then
- osc_param.playresy = minW / osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- osc_geo.y = direction * (54 + user_opts.barmargin)
- osc_geo.w = osc_param.playresx + 4
- if direction < 0 then
- osc_geo.y = osc_geo.y + osc_param.playresy
- end
-
- local line1 = osc_geo.y - direction * (9 + padY)
- local line2 = osc_geo.y - direction * (36 + padY)
-
- osc_param.areas = {}
-
- add_area("input", get_hitbox_coords(osc_geo.x, osc_geo.y, osc_geo.an,
- osc_geo.w, osc_geo.h))
-
- local sh_area_y0, sh_area_y1
- if direction > 0 then
- -- deadzone below OSC
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (osc_geo.y + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (osc_geo.y + (osc_geo.h / 2)), 0, 0)
- else
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- osc_geo.y - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy - user_opts.barmargin
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo, geo
-
- -- Background bar
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = osc_geo
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
-
-
- -- Playlist prev/next
- geo = { x = osc_geo.x + padX, y = line1,
- an = 4, w = 18, h = 18 - padY }
- lo = add_layout("pl_prev")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("pl_next")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- local t_l = geo.x + geo.w + padX
-
- -- Cache
- geo = { x = osc_geo.x + osc_geo.w - padX, y = geo.y,
- an = 6, w = 150, h = geo.h }
- lo = add_layout("cache")
- lo.geometry = geo
- lo.style = osc_styles.vidtitleBar
-
- local t_r = geo.x - geo.w - padX*2
-
- -- Title
- geo = { x = t_l, y = geo.y, an = 4,
- w = t_r - t_l, h = geo.h }
- lo = add_layout("title")
- lo.geometry = geo
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.vidtitleBar,
- geo.x, geo.y-geo.h, geo.w, geo.y+geo.h)
-
-
- -- Playback control buttons
- geo = { x = osc_geo.x + padX + padwc_l, y = line2, an = 4,
- w = buttonW, h = 36 - padY*2}
- lo = add_layout("playpause")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_prev")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_next")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Left timecode
- geo = { x = geo.x + geo.w + padX + tcW, y = geo.y, an = 6,
- w = tcW, h = geo.h }
- lo = add_layout("tc_left")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_l = geo.x + padX
-
- -- Fullscreen button
- geo = { x = osc_geo.x + osc_geo.w - buttonW - padX - padwc_r, y = geo.y, an = 4,
- w = buttonW, h = geo.h }
- lo = add_layout("tog_fs")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Volume
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("volume")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Track selection buttons
- geo = { x = geo.x - tsW - padX, y = geo.y, an = geo.an, w = tsW, h = geo.h }
- lo = add_layout("cy_sub")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("cy_audio")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
-
- -- Right timecode
- geo = { x = geo.x - padX - tcW - 10, y = geo.y, an = geo.an,
- w = tcW, h = geo.h }
- lo = add_layout("tc_right")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_r = geo.x - padX
-
-
- -- Seekbar
- geo = { x = sb_l, y = geo.y, an = geo.an,
- w = math.max(0, sb_r - sb_l), h = geo.h }
- new_element("bgbar1", "box")
- lo = add_layout("bgbar1")
-
- lo.geometry = geo
- lo.layer = 15
- lo.style = osc_styles.timecodesBar
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.8)
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = geo.h / 2
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
- lo = add_layout("seekbar")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
- lo.slider.border = 0
- lo.slider.gap = 2
- lo.slider.tooltip_style = osc_styles.timePosBar
- lo.slider.tooltip_an = 5
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
- if direction < 0 then
- osc_param.video_margins.b = osc_geo.h / osc_param.playresy
- else
- osc_param.video_margins.t = osc_geo.h / osc_param.playresy
- end
-end
-
-layouts["bottombar"] = function()
- bar_layout(-1)
-end
-
-layouts["topbar"] = function()
- bar_layout(1)
-end
-
--- Validate string type user options
-function validate_user_opts()
- if layouts[user_opts.layout] == nil then
- msg.warn("Invalid setting \""..user_opts.layout.."\" for layout")
- user_opts.layout = "bottombar"
- end
-
- if user_opts.seekbarstyle ~= "bar" and
- user_opts.seekbarstyle ~= "diamond" and
- user_opts.seekbarstyle ~= "knob" then
- msg.warn("Invalid setting \"" .. user_opts.seekbarstyle
- .. "\" for seekbarstyle")
- user_opts.seekbarstyle = "bar"
- end
-
- if user_opts.seekrangestyle ~= "bar" and
- user_opts.seekrangestyle ~= "line" and
- user_opts.seekrangestyle ~= "slider" and
- user_opts.seekrangestyle ~= "inverted" and
- user_opts.seekrangestyle ~= "none" then
- msg.warn("Invalid setting \"" .. user_opts.seekrangestyle
- .. "\" for seekrangestyle")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.seekrangestyle == "slider" and
- user_opts.seekbarstyle == "bar" then
- msg.warn("Using \"slider\" seekrangestyle together with \"bar\" seekbarstyle is not supported")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.windowcontrols ~= "auto" and
- user_opts.windowcontrols ~= "yes" and
- user_opts.windowcontrols ~= "no" then
- msg.warn("windowcontrols cannot be \"" ..
- user_opts.windowcontrols .. "\". Ignoring.")
- user_opts.windowcontrols = "auto"
- end
- if user_opts.windowcontrols_alignment ~= "right" and
- user_opts.windowcontrols_alignment ~= "left" then
- msg.warn("windowcontrols_alignment cannot be \"" ..
- user_opts.windowcontrols_alignment .. "\". Ignoring.")
- user_opts.windowcontrols_alignment = "right"
- end
-end
-
-function update_options(list)
- validate_user_opts()
- request_tick()
- visibility_mode(user_opts.visibility, true)
- update_duration_watch()
- request_init()
-end
-
--- OSC INIT
-function osc_init()
- msg.debug("osc_init")
-
- -- set canvas resolution according to display aspect and scaling setting
- local baseResY = 720
- local display_w, display_h, display_aspect = mp.get_osd_size()
- local scale = 1
-
- if (mp.get_property("video") == "no") then -- dummy/forced window
- scale = user_opts.scaleforcedwindow
- elseif state.fullscreen then
- scale = user_opts.scalefullscreen
- else
- scale = user_opts.scalewindowed
- end
-
- if user_opts.vidscale then
- osc_param.unscaled_y = baseResY
- else
- osc_param.unscaled_y = display_h
- end
- osc_param.playresy = osc_param.unscaled_y / scale
- if (display_aspect > 0) then
- osc_param.display_aspect = display_aspect
- end
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
-
- -- stop seeking with the slider to prevent skipping files
- state.active_element = nil
-
- osc_param.video_margins = {l = 0, r = 0, t = 0, b = 0}
-
- elements = {}
-
- -- some often needed stuff
- local pl_count = mp.get_property_number("playlist-count", 0)
- local have_pl = (pl_count > 1)
- local pl_pos = mp.get_property_number("playlist-pos", 0) + 1
- local have_ch = (mp.get_property_number("chapters", 0) > 0)
- local loop = mp.get_property("loop-playlist", "no")
-
- local ne
-
- -- title
- ne = new_element("title", "button")
-
- ne.content = function ()
- local title = state.forced_title or
- mp.command_native({"expand-text", user_opts.title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
-
- ne.eventresponder["mbtn_left_up"] = function ()
- local title = mp.get_property_osd("media-title")
- if (have_pl) then
- title = string.format("[%d/%d] %s", countone(pl_pos - 1),
- pl_count, title)
- end
- show_message(title)
- end
-
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(mp.get_property_osd("filename")) end
-
- -- playlist buttons
-
- -- prev
- ne = new_element("pl_prev", "button")
-
- ne.content = "\238\132\144"
- ne.enabled = (pl_pos > 1) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-prev", "weak")
- show_message(get_playlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
- --next
- ne = new_element("pl_next", "button")
-
- ne.content = "\238\132\129"
- ne.enabled = (have_pl and (pl_pos < pl_count)) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-next", "weak")
- show_message(get_playlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
-
- -- big buttons
-
- --playpause
- ne = new_element("playpause", "button")
-
- ne.content = function ()
- if mp.get_property("pause") == "yes" then
- return ("\238\132\129")
- else
- return ("\238\128\130")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "pause") end
-
- --skipback
- ne = new_element("skipback", "button")
-
- ne.softrepeat = true
- ne.content = "\238\128\132"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", -5, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-back-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", -30, "relative", "keyframes") end
-
- --skipfrwd
- ne = new_element("skipfrwd", "button")
-
- ne.softrepeat = true
- ne.content = "\238\128\133"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", 10, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", 60, "relative", "keyframes") end
-
- --ch_prev
- ne = new_element("ch_prev", "button")
-
- ne.enabled = have_ch
- ne.content = "\238\132\132"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", -1)
- show_message(get_chapterlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --ch_next
- ne = new_element("ch_next", "button")
-
- ne.enabled = have_ch
- ne.content = "\238\132\133"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", 1)
- show_message(get_chapterlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --
- update_tracklist()
-
- --cy_audio
- ne = new_element("cy_audio", "button")
-
- ne.enabled = (#tracks_osc.audio > 0)
- ne.content = function ()
- local aid = "–"
- if not (get_track("audio") == 0) then
- aid = get_track("audio")
- end
- return ("\238\132\134" .. osc_styles.smallButtonsLlabel
- .. " " .. aid .. "/" .. #tracks_osc.audio)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("audio", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("audio", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("audio"), 2) end
-
- --cy_sub
- ne = new_element("cy_sub", "button")
-
- ne.enabled = (#tracks_osc.sub > 0)
- ne.content = function ()
- local sid = "–"
- if not (get_track("sub") == 0) then
- sid = get_track("sub")
- end
- return ("\238\132\135" .. osc_styles.smallButtonsLlabel
- .. " " .. sid .. "/" .. #tracks_osc.sub)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("sub", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("sub", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("sub"), 2) end
-
- --tog_fs
- ne = new_element("tog_fs", "button")
- ne.content = function ()
- if (state.fullscreen) then
- return ("\238\132\137")
- else
- return ("\238\132\136")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "fullscreen") end
-
- --seekbar
- ne = new_element("seekbar", "slider")
-
- ne.enabled = not (mp.get_property("percent-pos") == nil)
- state.slider_element = ne.enabled and ne or nil -- used for forced_title
- ne.slider.markerF = function ()
- local duration = mp.get_property_number("duration", nil)
- if not (duration == nil) then
- local chapters = mp.get_property_native("chapter-list", {})
- local markers = {}
- for n = 1, #chapters do
- markers[n] = (chapters[n].time / duration * 100)
- end
- return markers
- else
- return {}
- end
- end
- ne.slider.posF =
- function () return mp.get_property_number("percent-pos", nil) end
- ne.slider.tooltipF = function (pos)
- local duration = mp.get_property_number("duration", nil)
- if not ((duration == nil) or (pos == nil)) then
- possec = duration * (pos / 100)
- return mp.format_time(possec)
- else
- return ""
- end
- end
- ne.slider.seekRangesF = function()
- if user_opts.seekrangestyle == "none" then
- return nil
- end
- local cache_state = state.cache_state
- if not cache_state then
- return nil
- end
- local duration = mp.get_property_number("duration", nil)
- if (duration == nil) or duration <= 0 then
- return nil
- end
- local ranges = cache_state["seekable-ranges"]
- if #ranges == 0 then
- return nil
- end
- local nranges = {}
- for _, range in pairs(ranges) do
- nranges[#nranges + 1] = {
- ["start"] = 100 * range["start"] / duration,
- ["end"] = 100 * range["end"] / duration,
- }
- end
- return nranges
- end
- ne.eventresponder["mouse_move"] = --keyframe seeking when mouse is dragged
- function (element)
- -- mouse move events may pile up during seeking and may still get
- -- sent when the user is done seeking, so we need to throw away
- -- identical seeks
- local seekto = get_slider_value(element)
- if (element.state.lastseek == nil) or
- (not (element.state.lastseek == seekto)) then
- local flags = "absolute-percent"
- if not user_opts.seekbarkeyframes then
- flags = flags .. "+exact"
- end
- mp.commandv("seek", seekto, flags)
- element.state.lastseek = seekto
- end
-
- end
- ne.eventresponder["mbtn_left_down"] = --exact seeks on single clicks
- function (element) mp.commandv("seek", get_slider_value(element),
- "absolute-percent", "exact") end
- ne.eventresponder["reset"] =
- function (element) element.state.lastseek = nil end
-
-
- -- tc_left (current pos)
- ne = new_element("tc_left", "button")
-
- ne.content = function ()
- if (state.tc_ms) then
- return (mp.get_property_osd("playback-time/full"))
- else
- return (mp.get_property_osd("playback-time"))
- end
- end
- ne.eventresponder["mbtn_left_up"] = function ()
- state.tc_ms = not state.tc_ms
- request_init()
- end
-
- -- tc_right (total/remaining time)
- ne = new_element("tc_right", "button")
-
- ne.visible = (mp.get_property_number("duration", 0) > 0)
- ne.content = function ()
- if (state.rightTC_trem) then
- if state.tc_ms then
- return ("-"..mp.get_property_osd("playtime-remaining/full"))
- else
- return ("-"..mp.get_property_osd("playtime-remaining"))
- end
- else
- if state.tc_ms then
- return (mp.get_property_osd("duration/full"))
- else
- return (mp.get_property_osd("duration"))
- end
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () state.rightTC_trem = not state.rightTC_trem end
-
- -- cache
- ne = new_element("cache", "button")
-
- ne.content = function ()
- local cache_state = state.cache_state
- if not (cache_state and cache_state["seekable-ranges"] and
- #cache_state["seekable-ranges"] > 0) then
- -- probably not a network stream
- return ""
- end
- local dmx_cache = cache_state and cache_state["cache-duration"]
- local thresh = math.min(state.dmx_cache * 0.05, 5) -- 5% or 5s
- if dmx_cache and math.abs(dmx_cache - state.dmx_cache) >= thresh then
- state.dmx_cache = dmx_cache
- else
- dmx_cache = state.dmx_cache
- end
- local min = math.floor(dmx_cache / 60)
- local sec = dmx_cache % 60
- return "Cache: " .. (min > 0 and
- string.format("%sm%02.0fs", min, sec) or
- string.format("%3.0fs", dmx_cache))
- end
-
- -- volume
- ne = new_element("volume", "button")
-
- ne.content = function()
- local volume = mp.get_property_number("volume", 0)
- local mute = mp.get_property_native("mute")
- local volicon = {"\238\132\139", "\238\132\140",
- "\238\132\141", "\238\132\142"}
- if volume == 0 or mute then
- return "\238\132\138"
- else
- return volicon[math.min(4,math.ceil(volume / (100/3)))]
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "mute") end
-
- ne.eventresponder["wheel_up_press"] =
- function () mp.commandv("osd-auto", "add", "volume", 5) end
- ne.eventresponder["wheel_down_press"] =
- function () mp.commandv("osd-auto", "add", "volume", -5) end
-
-
- -- load layout
- layouts[user_opts.layout]()
-
- -- load window controls
- if window_controls_enabled() then
- window_controls(user_opts.layout == "topbar")
- end
-
- --do something with the elements
- prepare_elements()
-
- update_margins()
-end
-
-function reset_margins()
- if state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- mp.set_property_number(opt[2], 0.0)
- end
- state.using_video_margins = false
- end
-end
-
-function update_margins()
- local margins = osc_param.video_margins
-
- -- Don't use margins if it's visible only temporarily.
- if (not state.osc_visible) or (get_hidetimeout() >= 0) or
- (state.fullscreen and not user_opts.showfullscreen) or
- (not state.fullscreen and not user_opts.showwindowed)
- then
- margins = {l = 0, r = 0, t = 0, b = 0}
- end
-
- if user_opts.boxvideo then
- -- check whether any margin option has a non-default value
- local margins_used = false
-
- if not state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- if mp.get_property_number(opt[2], 0.0) ~= 0.0 then
- margins_used = true
- end
- end
- end
-
- if not margins_used then
- for _, opt in ipairs(margins_opts) do
- local v = margins[opt[1]]
- if (v ~= 0) or state.using_video_margins then
- mp.set_property_number(opt[2], v)
- state.using_video_margins = true
- end
- end
- end
- else
- reset_margins()
- end
-
- utils.shared_script_property_set("osc-margins",
- string.format("%f,%f,%f,%f", margins.l, margins.r, margins.t, margins.b))
-end
-
-function shutdown()
- reset_margins()
- utils.shared_script_property_set("osc-margins", nil)
-end
-
---
--- Other important stuff
---
-
-
-function show_osc()
- -- show when disabled can happen (e.g. mouse_move) due to async/delayed unbinding
- if not state.enabled then return end
-
- msg.trace("show_osc")
- --remember last time of invocation (mouse move)
- state.showtime = mp.get_time()
-
- osc_visible(true)
-
- if (user_opts.fadeduration > 0) then
- state.anitype = nil
- end
-end
-
-function hide_osc()
- msg.trace("hide_osc")
- if not state.enabled then
- -- typically hide happens at render() from tick(), but now tick() is
- -- no-op and won't render again to remove the osc, so do that manually.
- state.osc_visible = false
- render_wipe()
- elseif (user_opts.fadeduration > 0) then
- if not(state.osc_visible == false) then
- state.anitype = "out"
- request_tick()
- end
- else
- osc_visible(false)
- end
-end
-
-function osc_visible(visible)
- if state.osc_visible ~= visible then
- state.osc_visible = visible
- update_margins()
- end
- request_tick()
-end
-
-function pause_state(name, enabled)
- state.paused = enabled
- request_tick()
-end
-
-function cache_state(name, st)
- state.cache_state = st
- request_tick()
-end
-
--- Request that tick() is called (which typically re-renders the OSC).
--- The tick is then either executed immediately, or rate-limited if it was
--- called a small time ago.
-function request_tick()
- if state.tick_timer == nil then
- state.tick_timer = mp.add_timeout(0, tick)
- end
-
- if not state.tick_timer:is_enabled() then
- local now = mp.get_time()
- local timeout = tick_delay - (now - state.tick_last_time)
- if timeout < 0 then
- timeout = 0
- end
- state.tick_timer.timeout = timeout
- state.tick_timer:resume()
- end
-end
-
-function mouse_leave()
- if get_hidetimeout() >= 0 then
- hide_osc()
- end
- -- reset mouse position
- state.last_mouseX, state.last_mouseY = nil, nil
- state.mouse_in_window = false
-end
-
-function request_init()
- state.initREQ = true
- request_tick()
-end
-
--- Like request_init(), but also request an immediate update
-function request_init_resize()
- request_init()
- -- ensure immediate update
- state.tick_timer:kill()
- state.tick_timer.timeout = 0
- state.tick_timer:resume()
-end
-
-function render_wipe()
- msg.trace("render_wipe()")
- state.osd.data = "" -- allows set_osd to immediately update on enable
- state.osd:remove()
-end
-
-function render()
- msg.trace("rendering")
- local current_screen_sizeX, current_screen_sizeY, aspect = mp.get_osd_size()
- local mouseX, mouseY = get_virt_mouse_pos()
- local now = mp.get_time()
-
- -- check if display changed, if so request reinit
- if not (state.mp_screen_sizeX == current_screen_sizeX
- and state.mp_screen_sizeY == current_screen_sizeY) then
-
- request_init_resize()
-
- state.mp_screen_sizeX = current_screen_sizeX
- state.mp_screen_sizeY = current_screen_sizeY
- end
-
- -- init management
- if state.active_element then
- -- mouse is held down on some element - keep ticking and igore initReq
- -- till it's released, or else the mouse-up (click) will misbehave or
- -- get ignored. that's because osc_init() recreates the osc elements,
- -- but mouse handling depends on the elements staying unmodified
- -- between mouse-down and mouse-up (using the index active_element).
- request_tick()
- elseif state.initREQ then
- osc_init()
- state.initREQ = false
-
- -- store initial mouse position
- if (state.last_mouseX == nil or state.last_mouseY == nil)
- and not (mouseX == nil or mouseY == nil) then
-
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
- end
- end
-
-
- -- fade animation
- if not(state.anitype == nil) then
-
- if (state.anistart == nil) then
- state.anistart = now
- end
-
- if (now < state.anistart + (user_opts.fadeduration/1000)) then
-
- if (state.anitype == "in") then --fade in
- osc_visible(true)
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 255, 0, now)
- elseif (state.anitype == "out") then --fade out
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 0, 255, now)
- end
-
- else
- if (state.anitype == "out") then
- osc_visible(false)
- end
- kill_animation()
- end
- else
- kill_animation()
- end
-
- --mouse show/hide area
- for k,cords in pairs(osc_param.areas["showhide"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide")
- end
- if osc_param.areas["showhide_wc"] then
- for k,cords in pairs(osc_param.areas["showhide_wc"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide_wc")
- end
- else
- set_virt_mouse_area(0, 0, 0, 0, "showhide_wc")
- end
- do_enable_keybindings()
-
- --mouse input area
- local mouse_over_osc = false
-
- for _,cords in ipairs(osc_param.areas["input"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "input")
- end
- if state.osc_visible ~= state.input_enabled then
- if state.osc_visible then
- mp.enable_key_bindings("input")
- else
- mp.disable_key_bindings("input")
- end
- state.input_enabled = state.osc_visible
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
-
- if osc_param.areas["window-controls"] then
- for _,cords in ipairs(osc_param.areas["window-controls"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "window-controls")
- mp.enable_key_bindings("window-controls")
- else
- mp.disable_key_bindings("window-controls")
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- if osc_param.areas["window-controls-title"] then
- for _,cords in ipairs(osc_param.areas["window-controls-title"]) do
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- -- autohide
- if not (state.showtime == nil) and (get_hidetimeout() >= 0) then
- local timeout = state.showtime + (get_hidetimeout()/1000) - now
- if timeout <= 0 then
- if (state.active_element == nil) and not (mouse_over_osc) then
- hide_osc()
- end
- else
- -- the timer is only used to recheck the state and to possibly run
- -- the code above again
- if not state.hide_timer then
- state.hide_timer = mp.add_timeout(0, tick)
- end
- state.hide_timer.timeout = timeout
- -- re-arm
- state.hide_timer:kill()
- state.hide_timer:resume()
- end
- end
-
-
- -- actual rendering
- local ass = assdraw.ass_new()
-
- -- Messages
- render_message(ass)
-
- -- actual OSC
- if state.osc_visible then
- render_elements(ass)
- end
-
- -- submit
- set_osd(osc_param.playresy * osc_param.display_aspect,
- osc_param.playresy, ass.text)
-end
-
---
--- Eventhandling
---
-
-local function element_has_action(element, action)
- return element and element.eventresponder and
- element.eventresponder[action]
-end
-
-function process_event(source, what)
- local action = string.format("%s%s", source,
- what and ("_" .. what) or "")
-
- if what == "down" or what == "press" then
-
- for n = 1, #elements do
-
- if mouse_hit(elements[n]) and
- elements[n].eventresponder and
- (elements[n].eventresponder[source .. "_up"] or
- elements[n].eventresponder[action]) then
-
- if what == "down" then
- state.active_element = n
- state.active_event_source = source
- end
- -- fire the down or press event if the element has one
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
-
- end
- end
-
- elseif what == "up" then
-
- if elements[state.active_element] then
- local n = state.active_element
-
- if n == 0 then
- --click on background (does not work)
- elseif element_has_action(elements[n], action) and
- mouse_hit(elements[n]) then
-
- elements[n].eventresponder[action](elements[n])
- end
-
- --reset active element
- if element_has_action(elements[n], "reset") then
- elements[n].eventresponder["reset"](elements[n])
- end
-
- end
- state.active_element = nil
- state.mouse_down_counter = 0
-
- elseif source == "mouse_move" then
-
- state.mouse_in_window = true
-
- local mouseX, mouseY = get_virt_mouse_pos()
- if (user_opts.minmousemove == 0) or
- (not ((state.last_mouseX == nil) or (state.last_mouseY == nil)) and
- ((math.abs(mouseX - state.last_mouseX) >= user_opts.minmousemove)
- or (math.abs(mouseY - state.last_mouseY) >= user_opts.minmousemove)
- )
- ) then
- show_osc()
- end
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
-
- local n = state.active_element
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
- end
-
- -- ensure rendering after any (mouse) event - icons could change etc
- request_tick()
-end
-
-
-local logo_lines = {
- -- White border
- "{\\c&HE5E5E5&\\p6}m 895 10 b 401 10 0 410 0 905 0 1399 401 1800 895 1800 1390 1800 1790 1399 1790 905 1790 410 1390 10 895 10 {\\p0}",
- -- Purple fill
- "{\\c&H682167&\\p6}m 925 42 b 463 42 87 418 87 880 87 1343 463 1718 925 1718 1388 1718 1763 1343 1763 880 1763 418 1388 42 925 42{\\p0}",
- -- Darker fill
- "{\\c&H430142&\\p6}m 1605 828 b 1605 1175 1324 1456 977 1456 631 1456 349 1175 349 828 349 482 631 200 977 200 1324 200 1605 482 1605 828{\\p0}",
- -- White fill
- "{\\c&HDDDBDD&\\p6}m 1296 910 b 1296 1131 1117 1310 897 1310 676 1310 497 1131 497 910 497 689 676 511 897 511 1117 511 1296 689 1296 910{\\p0}",
- -- Triangle
- "{\\c&H691F69&\\p6}m 762 1113 l 762 708 b 881 776 1000 843 1119 911 1000 978 881 1046 762 1113{\\p0}",
-}
-
-local santa_hat_lines = {
- -- Pompoms
- "{\\c&HC0C0C0&\\p6}m 500 -323 b 491 -322 481 -318 475 -311 465 -312 456 -319 446 -318 434 -314 427 -304 417 -297 410 -290 404 -282 395 -278 390 -274 387 -267 381 -265 377 -261 379 -254 384 -253 397 -244 409 -232 425 -228 437 -228 446 -218 457 -217 462 -216 466 -213 468 -209 471 -205 477 -203 482 -206 491 -211 499 -217 508 -222 532 -235 556 -249 576 -267 584 -272 584 -284 578 -290 569 -305 550 -312 533 -309 523 -310 515 -316 507 -321 505 -323 503 -323 500 -323{\\p0}",
- "{\\c&HE0E0E0&\\p6}m 315 -260 b 286 -258 259 -240 246 -215 235 -210 222 -215 211 -211 204 -188 177 -176 172 -151 170 -139 163 -128 154 -121 143 -103 141 -81 143 -60 139 -46 125 -34 129 -17 132 -1 134 16 142 30 145 56 161 80 181 96 196 114 210 133 231 144 266 153 303 138 328 115 373 79 401 28 423 -24 446 -73 465 -123 483 -174 487 -199 467 -225 442 -227 421 -232 402 -242 384 -254 364 -259 342 -250 322 -260 320 -260 317 -261 315 -260{\\p0}",
- -- Main cap
- "{\\c&H0000F0&\\p6}m 1151 -523 b 1016 -516 891 -458 769 -406 693 -369 624 -319 561 -262 526 -252 465 -235 479 -187 502 -147 551 -135 588 -111 1115 165 1379 232 1909 761 1926 800 1952 834 1987 858 2020 883 2053 912 2065 952 2088 1000 2146 962 2139 919 2162 836 2156 747 2143 662 2131 615 2116 567 2122 517 2120 410 2090 306 2089 199 2092 147 2071 99 2034 64 1987 5 1928 -41 1869 -86 1777 -157 1712 -256 1629 -337 1578 -389 1521 -436 1461 -476 1407 -509 1343 -507 1284 -515 1240 -519 1195 -521 1151 -523{\\p0}",
- -- Cap shadow
- "{\\c&H0000AA&\\p6}m 1657 248 b 1658 254 1659 261 1660 267 1669 276 1680 284 1689 293 1695 302 1700 311 1707 320 1716 325 1726 330 1735 335 1744 347 1752 360 1761 371 1753 352 1754 331 1753 311 1751 237 1751 163 1751 90 1752 64 1752 37 1767 14 1778 -3 1785 -24 1786 -45 1786 -60 1786 -77 1774 -87 1760 -96 1750 -78 1751 -65 1748 -37 1750 -8 1750 20 1734 78 1715 134 1699 192 1694 211 1689 231 1676 246 1671 251 1661 255 1657 248 m 1909 541 b 1914 542 1922 549 1917 539 1919 520 1921 502 1919 483 1918 458 1917 433 1915 407 1930 373 1942 338 1947 301 1952 270 1954 238 1951 207 1946 214 1947 229 1945 239 1939 278 1936 318 1924 356 1923 362 1913 382 1912 364 1906 301 1904 237 1891 175 1887 150 1892 126 1892 101 1892 68 1893 35 1888 2 1884 -9 1871 -20 1859 -14 1851 -6 1854 9 1854 20 1855 58 1864 95 1873 132 1883 179 1894 225 1899 273 1908 362 1910 451 1909 541{\\p0}",
- -- Brim and tip pompom
- "{\\c&HF8F8F8&\\p6}m 626 -191 b 565 -155 486 -196 428 -151 387 -115 327 -101 304 -47 273 2 267 59 249 113 219 157 217 213 215 265 217 309 260 302 285 283 373 264 465 264 555 257 608 252 655 292 709 287 759 294 816 276 863 298 903 340 972 324 1012 367 1061 394 1125 382 1167 424 1213 462 1268 482 1322 506 1385 546 1427 610 1479 662 1510 690 1534 725 1566 752 1611 796 1664 830 1703 880 1740 918 1747 986 1805 1005 1863 991 1897 932 1916 880 1914 823 1945 777 1961 725 1979 673 1957 622 1938 575 1912 534 1862 515 1836 473 1790 417 1755 351 1697 305 1658 266 1633 216 1593 176 1574 138 1539 116 1497 110 1448 101 1402 77 1371 37 1346 -16 1295 15 1254 6 1211 -27 1170 -62 1121 -86 1072 -104 1027 -128 976 -133 914 -130 851 -137 794 -162 740 -181 679 -168 626 -191 m 2051 917 b 1971 932 1929 1017 1919 1091 1912 1149 1923 1214 1970 1254 2000 1279 2027 1314 2066 1325 2139 1338 2212 1295 2254 1238 2281 1203 2287 1158 2282 1116 2292 1061 2273 1006 2229 970 2206 941 2167 938 2138 918{\\p0}",
-}
-
--- called by mpv on every frame
-function tick()
- if state.marginsREQ == true then
- update_margins()
- state.marginsREQ = false
- end
-
- if (not state.enabled) then return end
-
- if (state.idle) then
-
- -- render idle message
- msg.trace("idle message")
- local icon_x, icon_y = 320 - 26, 140
- local line_prefix = ("{\\rDefault\\an7\\1a&H00&\\bord0\\shad0\\pos(%f,%f)}"):format(icon_x, icon_y)
-
- local ass = assdraw.ass_new()
- -- mpv logo
- for i, line in ipairs(logo_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
-
- -- Santa hat
- if is_december and not user_opts.greenandgrumpy then
- for i, line in ipairs(santa_hat_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
- end
-
- ass:new_event()
- ass:pos(320, icon_y+65)
- ass:an(8)
- ass:append("Drop files or URLs to play here.")
- set_osd(640, 360, ass.text)
-
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- state.showhide_enabled = false
- end
-
-
- elseif (state.fullscreen and user_opts.showfullscreen)
- or (not state.fullscreen and user_opts.showwindowed) then
-
- -- render the OSC
- render()
- else
- -- Flush OSD
- render_wipe()
- end
-
- state.tick_last_time = mp.get_time()
-
- if state.anitype ~= nil then
- -- state.anistart can be nil - animation should now start, or it can
- -- be a timestamp when it started. state.idle has no animation.
- if not state.idle and
- (not state.anistart or
- mp.get_time() < 1 + state.anistart + user_opts.fadeduration/1000)
- then
- -- animating or starting, or still within 1s past the deadline
- request_tick()
- else
- kill_animation()
- end
- end
-end
-
-function do_enable_keybindings()
- if state.enabled then
- if not state.showhide_enabled then
- mp.enable_key_bindings("showhide", "allow-vo-dragging+allow-hide-cursor")
- mp.enable_key_bindings("showhide_wc", "allow-vo-dragging+allow-hide-cursor")
- end
- state.showhide_enabled = true
- end
-end
-
-function enable_osc(enable)
- state.enabled = enable
- if enable then
- do_enable_keybindings()
- else
- hide_osc() -- acts immediately when state.enabled == false
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- end
- state.showhide_enabled = false
- end
-end
-
--- duration is observed for the sole purpose of updating chapter markers
--- positions. live streams with chapters are very rare, and the update is also
--- expensive (with request_init), so it's only observed when we have chapters
--- and the user didn't disable the livemarkers option (update_duration_watch).
-function on_duration() request_init() end
-
-local duration_watched = false
-function update_duration_watch()
- local want_watch = user_opts.livemarkers and
- (mp.get_property_number("chapters", 0) or 0) > 0 and
- true or false -- ensure it's a boolean
-
- if (want_watch ~= duration_watched) then
- if want_watch then
- mp.observe_property("duration", nil, on_duration)
- else
- mp.unobserve_property(on_duration)
- end
- duration_watched = want_watch
- end
-end
-
-validate_user_opts()
-update_duration_watch()
-
-mp.register_event("shutdown", shutdown)
-mp.register_event("start-file", request_init)
-mp.observe_property("track-list", nil, request_init)
-mp.observe_property("playlist", nil, request_init)
-mp.observe_property("chapter-list", nil, function()
- update_duration_watch()
- request_init()
-end)
-
-mp.register_script_message("osc-message", show_message)
-mp.register_script_message("osc-chapterlist", function(dur)
- show_message(get_chapterlist(), dur)
-end)
-mp.register_script_message("osc-playlist", function(dur)
- show_message(get_playlist(), dur)
-end)
-mp.register_script_message("osc-tracklist", function(dur)
- local msg = {}
- for k,v in pairs(nicetypes) do
- table.insert(msg, get_tracklist(k))
- end
- show_message(table.concat(msg, '\n\n'), dur)
-end)
-
-mp.observe_property("fullscreen", "bool",
- function(name, val)
- state.fullscreen = val
- state.marginsREQ = true
- request_init_resize()
- end
-)
-mp.observe_property("border", "bool",
- function(name, val)
- state.border = val
- request_init_resize()
- end
-)
-mp.observe_property("window-maximized", "bool",
- function(name, val)
- state.maximized = val
- request_init_resize()
- end
-)
-mp.observe_property("idle-active", "bool",
- function(name, val)
- state.idle = val
- request_tick()
- end
-)
-mp.observe_property("pause", "bool", pause_state)
-mp.observe_property("demuxer-cache-state", "native", cache_state)
-mp.observe_property("vo-configured", "bool", function(name, val)
- request_tick()
-end)
-mp.observe_property("playback-time", "number", function(name, val)
- request_tick()
-end)
-mp.observe_property("osd-dimensions", "native", function(name, val)
- -- (we could use the value instead of re-querying it all the time, but then
- -- we might have to worry about property update ordering)
- request_init_resize()
-end)
-
--- mouse show/hide bindings
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide", "force")
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide_wc", "force")
-do_enable_keybindings()
-
---mouse input bindings
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
- {"shift+mbtn_left", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"mbtn_right", function(e) process_event("mbtn_right", "up") end,
- function(e) process_event("mbtn_right", "down") end},
- -- alias to shift_mbtn_left for single-handed mouse use
- {"mbtn_mid", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"wheel_up", function(e) process_event("wheel_up", "press") end},
- {"wheel_down", function(e) process_event("wheel_down", "press") end},
- {"mbtn_left_dbl", "ignore"},
- {"shift+mbtn_left_dbl", "ignore"},
- {"mbtn_right_dbl", "ignore"},
-}, "input", "force")
-mp.enable_key_bindings("input")
-
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
-}, "window-controls", "force")
-mp.enable_key_bindings("window-controls")
-
-function get_hidetimeout()
- if user_opts.visibility == "always" then
- return -1 -- disable autohide
- end
- return user_opts.hidetimeout
-end
-
-function always_on(val)
- if state.enabled then
- if val then
- show_osc()
- else
- hide_osc()
- end
- end
-end
-
--- mode can be auto/always/never/cycle
--- the modes only affect internal variables and not stored on its own.
-function visibility_mode(mode, no_osd)
- if mode == "cycle" then
- if not state.enabled then
- mode = "auto"
- elseif user_opts.visibility ~= "always" then
- mode = "always"
- else
- mode = "never"
- end
- end
-
- if mode == "auto" then
- always_on(false)
- enable_osc(true)
- elseif mode == "always" then
- enable_osc(true)
- always_on(true)
- elseif mode == "never" then
- enable_osc(false)
- else
- msg.warn("Ignoring unknown visibility mode '" .. mode .. "'")
- return
- end
-
- user_opts.visibility = mode
- utils.shared_script_property_set("osc-visibility", mode)
-
- if not no_osd and tonumber(mp.get_property("osd-level")) >= 1 then
- mp.osd_message("OSC visibility: " .. mode)
- end
-
- -- Reset the input state on a mode change. The input state will be
- -- recalcuated on the next render cycle, except in 'never' mode where it
- -- will just stay disabled.
- mp.disable_key_bindings("input")
- mp.disable_key_bindings("window-controls")
- state.input_enabled = false
-
- update_margins()
- request_tick()
-end
-
-visibility_mode(user_opts.visibility, true)
-mp.register_script_message("osc-visibility", visibility_mode)
-mp.add_key_binding(nil, "visibility", function() visibility_mode("cycle") end)
-
-set_virt_mouse_area(0, 0, 0, 0, "input")
-set_virt_mouse_area(0, 0, 0, 0, "window-controls")
\ No newline at end of file
diff --git a/osc-style/osc-default-green-box-bar-or-knob-45.lua b/osc-style/osc-default-green-box-bar-or-knob-45.lua
deleted file mode 100644
index 3873046..0000000
--- a/osc-style/osc-default-green-box-bar-or-knob-45.lua
+++ /dev/null
@@ -1,2893 +0,0 @@
---此lua脚本由软件No1修改并提供支持
---This lua script is modified by www.rjno1.com
---此lua脚本原始版本: github.com/mpv-player/mpv/blob/master/player/lua/osc.lua
---The original version of this lua script:github.com/mpv-player/mpv/blob/master/player/lua/osc.lua
-local assdraw = require 'mp.assdraw'
-local msg = require 'mp.msg'
-local opt = require 'mp.options'
-local utils = require 'mp.utils'
-
---
--- Parameters
---
--- default user option values
--- do not touch, change them in osc.conf
-local user_opts = {
- showwindowed = true, -- show OSC when windowed?
- showfullscreen = true, -- show OSC when fullscreen?
- scalewindowed = 1, -- scaling of the controller when windowed
- scalefullscreen = 1, -- scaling of the controller when fullscreen
- scaleforcedwindow = 2, -- scaling when rendered on a forced window
- vidscale = true, -- scale the controller with the video?
- valign = 0.8, -- vertical alignment, -1 (top) to 1 (bottom)
- halign = 0, -- horizontal alignment, -1 (left) to 1 (right)
- barmargin = 0, -- vertical margin of top/bottombar
- boxalpha = 45, -- alpha of the background box,
- -- 0 (opaque) to 255 (fully transparent)
- hidetimeout = 500, -- duration in ms until the OSC hides if no
- -- mouse movement. enforced non-negative for the
- -- user, but internally negative is "always-on".
- fadeduration = 200, -- duration of fade out in ms, 0 = no fade
- deadzonesize = 0.5, -- size of deadzone
- minmousemove = 0, -- minimum amount of pixels the mouse has to
- -- move between ticks to make the OSC show up
- iamaprogrammer = false, -- use native mpv values and disable OSC
- -- internal track list management (and some
- -- functions that depend on it)
- layout = "box",
- seekbarstyle = "bar", -- bar, diamond or knob
- seekbarhandlesize = 0.6, -- size ratio of the diamond and knob handle
- seekrangestyle = "inverted",-- bar, line, slider, inverted or none
- seekrangeseparate = true, -- wether the seekranges overlay on the bar-style seekbar
- seekrangealpha = 200, -- transparency of seekranges
- seekbarkeyframes = true, -- use keyframes when dragging the seekbar
- title = "${media-title}", -- string compatible with property-expansion
- -- to be shown as OSC title
- rjno1title = "MPV-EASY Player - ${filename}", --用来修改显示-口x时的标题
- tooltipborder = 1, -- border of tooltip in bottom/topbar
- timetotal = false, -- display total time instead of remaining time?
- timems = false, -- display timecodes with milliseconds?
- visibility = "auto", -- only used at init to set visibility_mode(...)
- boxmaxchars = 145, -- title crop threshold for box layout
- boxvideo = false, -- apply osc_param.video_margins to video
- windowcontrols = "auto", -- whether to show window controls
- windowcontrols_alignment = "right", -- which side to show window controls on
- greenandgrumpy = false, -- disable santa hat
- livemarkers = true, -- update seekbar chapter markers on duration change
-}
-
--- read options from config and command-line
-opt.read_options(user_opts, "osc", function(list) update_options(list) end)
-
-local osc_param = { -- calculated by osc_init()
- playresy = 0, -- canvas size Y
- playresx = 0, -- canvas size X
- display_aspect = 1,
- unscaled_y = 0,
- areas = {},
- video_margins = {
- l = 0, r = 0, t = 0, b = 0, -- left/right/top/bottom
- },
-}
-
-local osc_styles = {
-
- rjno150Buttons = "{\\blur0\\bord0\\1c&HCBCBCB\\3c&HFFFFFF\\fs46\\fnmpv-osd-symbols}",
- rjno140Buttons = "{\\blur0\\bord0\\1c&HCBCBCB\\3c&HFFFFFF\\fs36\\fnmpv-osd-symbols}",
- rjno130Buttons = "{\\blur0\\bord0\\1c&HCBCBCB\\3c&HFFFFFF\\fs26\\fnmpv-osd-symbols}",
- rjno125Buttons = "{\\blur0\\bord0\\1c&HCBCBCB\\3c&HFFFFFF\\fs25\\fnmpv-osd-symbols}",
- rjno120Buttons = "{\\blur0\\bord0\\1c&HCBCBCB\\3c&HFFFFFF\\fs20\\fnmpv-osd-symbols}",
- rjno116Buttons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs16\\fnmpv-osd-symbols}",
- rjno1box = "{\\rDefault\\blur0\\bord0\\1c&H3D3833\\3c&HFFFFFF}",
- rjno1timecodes = "{\\blur0\\bord0\\1c&H4CB122\\3c&HFFFFFF\\fs13}",
- rjno1timePosBar = "{\\blur0\\bord".. user_opts.tooltipborder .."\\1c&HFFFFFF\\3c&H000000\\fs28}",
- rjno1vidtitleBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs13\\q2}",
-
- rjno1wcButtons = "{\\1c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- rjno1wcTitle = "{\\1c&HFFFFFF\\fs18\\q2}",
- rjno1wcBar = "{\\1c&H3D3833}",
-
- bigButtons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs50\\fnmpv-osd-symbols}",
- smallButtonsL = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs19\\fnmpv-osd-symbols}",
- smallButtonsLlabel = "{\\fscx105\\fscy105\\fn" .. mp.get_property("options/osd-font") .. "}",
- smallButtonsR = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs30\\fnmpv-osd-symbols}",
- topButtons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs12\\fnmpv-osd-symbols}",
-
- elementDown = "{\\1c&H999999}",
- timecodes = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs20}",
- vidtitle = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs12\\q2}",
- box = "{\\rDefault\\blur0\\bord1\\1c&H000000\\3c&HFFFFFF}",
-
- topButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\fnmpv-osd-symbols}",
- smallButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs28\\fnmpv-osd-symbols}",
- timecodesBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs27}",
- timePosBar = "{\\blur0\\bord".. user_opts.tooltipborder .."\\1c&HFFFFFF\\3c&H000000\\fs30}",
- vidtitleBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\q2}",
-
- wcButtons = "{\\1c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- wcTitle = "{\\1c&HFFFFFF\\fs24\\q2}",
- wcBar = "{\\1c&H000000}",
-}
-
--- internal states, do not touch
-local state = {
- showtime, -- time of last invocation (last mouse move)
- osc_visible = false,
- anistart, -- time when the animation started
- anitype, -- current type of animation
- animation, -- current animation alpha
- mouse_down_counter = 0, -- used for softrepeat
- active_element = nil, -- nil = none, 0 = background, 1+ = see elements[]
- active_event_source = nil, -- the "button" that issued the current event
- rightTC_trem = not user_opts.timetotal, -- if the right timecode should display total or remaining time
- tc_ms = user_opts.timems, -- Should the timecodes display their time with milliseconds
- mp_screen_sizeX, mp_screen_sizeY, -- last screen-resolution, to detect resolution changes to issue reINITs
- initREQ = false, -- is a re-init request pending?
- marginsREQ = false, -- is a margins update pending?
- last_mouseX, last_mouseY, -- last mouse position, to detect significant mouse movement
- mouse_in_window = false,
- message_text,
- message_hide_timer,
- fullscreen = false,
- tick_timer = nil,
- tick_last_time = 0, -- when the last tick() was run
- hide_timer = nil,
- cache_state = nil,
- idle = false,
- enabled = true,
- input_enabled = true,
- showhide_enabled = false,
- dmx_cache = 0,
- using_video_margins = false,
- border = true,
- maximized = false,
- osd = mp.create_osd_overlay("ass-events"),
-}
-
-local window_control_box_width = 80
-local tick_delay = 0.03
-
-local is_december = os.date("*t").month == 12
-
---
--- Helperfunctions
---
-
-function kill_animation()
- state.anistart = nil
- state.animation = nil
- state.anitype = nil
-end
-
-function set_osd(res_x, res_y, text)
- if state.osd.res_x == res_x and
- state.osd.res_y == res_y and
- state.osd.data == text then
- return
- end
- state.osd.res_x = res_x
- state.osd.res_y = res_y
- state.osd.data = text
- state.osd.z = 1000
- state.osd:update()
-end
-
-local margins_opts = {
- {"l", "video-margin-ratio-left"},
- {"r", "video-margin-ratio-right"},
- {"t", "video-margin-ratio-top"},
- {"b", "video-margin-ratio-bottom"},
-}
-
--- scale factor for translating between real and virtual ASS coordinates
-function get_virt_scale_factor()
- local w, h = mp.get_osd_size()
- if w <= 0 or h <= 0 then
- return 0, 0
- end
- return osc_param.playresx / w, osc_param.playresy / h
-end
-
--- return mouse position in virtual ASS coordinates (playresx/y)
-function get_virt_mouse_pos()
- if state.mouse_in_window then
- local sx, sy = get_virt_scale_factor()
- local x, y = mp.get_mouse_pos()
- return x * sx, y * sy
- else
- return -1, -1
- end
-end
-
-function set_virt_mouse_area(x0, y0, x1, y1, name)
- local sx, sy = get_virt_scale_factor()
- mp.set_mouse_area(x0 / sx, y0 / sy, x1 / sx, y1 / sy, name)
-end
-
-function scale_value(x0, x1, y0, y1, val)
- local m = (y1 - y0) / (x1 - x0)
- local b = y0 - (m * x0)
- return (m * val) + b
-end
-
--- returns hitbox spanning coordinates (top left, bottom right corner)
--- according to alignment
-function get_hitbox_coords(x, y, an, w, h)
-
- local alignments = {
- [1] = function () return x, y-h, x+w, y end,
- [2] = function () return x-(w/2), y-h, x+(w/2), y end,
- [3] = function () return x-w, y-h, x, y end,
-
- [4] = function () return x, y-(h/2), x+w, y+(h/2) end,
- [5] = function () return x-(w/2), y-(h/2), x+(w/2), y+(h/2) end,
- [6] = function () return x-w, y-(h/2), x, y+(h/2) end,
-
- [7] = function () return x, y, x+w, y+h end,
- [8] = function () return x-(w/2), y, x+(w/2), y+h end,
- [9] = function () return x-w, y, x, y+h end,
- }
-
- return alignments[an]()
-end
-
-function get_hitbox_coords_geo(geometry)
- return get_hitbox_coords(geometry.x, geometry.y, geometry.an,
- geometry.w, geometry.h)
-end
-
-function get_element_hitbox(element)
- return element.hitbox.x1, element.hitbox.y1,
- element.hitbox.x2, element.hitbox.y2
-end
-
-function mouse_hit(element)
- return mouse_hit_coords(get_element_hitbox(element))
-end
-
-function mouse_hit_coords(bX1, bY1, bX2, bY2)
- local mX, mY = get_virt_mouse_pos()
- return (mX >= bX1 and mX <= bX2 and mY >= bY1 and mY <= bY2)
-end
-
-function limit_range(min, max, val)
- if val > max then
- val = max
- elseif val < min then
- val = min
- end
- return val
-end
-
--- translate value into element coordinates
-function get_slider_ele_pos_for(element, val)
-
- local ele_pos = scale_value(
- element.slider.min.value, element.slider.max.value,
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- val)
-
- return limit_range(
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- ele_pos)
-end
-
--- translates global (mouse) coordinates to value
-function get_slider_value_at(element, glob_pos)
-
- local val = scale_value(
- element.slider.min.glob_pos, element.slider.max.glob_pos,
- element.slider.min.value, element.slider.max.value,
- glob_pos)
-
- return limit_range(
- element.slider.min.value, element.slider.max.value,
- val)
-end
-
--- get value at current mouse position
-function get_slider_value(element)
- return get_slider_value_at(element, get_virt_mouse_pos())
-end
-
-function countone(val)
- if not (user_opts.iamaprogrammer) then
- val = val + 1
- end
- return val
-end
-
--- align: -1 .. +1
--- frame: size of the containing area
--- obj: size of the object that should be positioned inside the area
--- margin: min. distance from object to frame (as long as -1 <= align <= +1)
-function get_align(align, frame, obj, margin)
- return (frame / 2) + (((frame / 2) - margin - (obj / 2)) * align)
-end
-
--- multiplies two alpha values, formular can probably be improved
-function mult_alpha(alphaA, alphaB)
- return 255 - (((1-(alphaA/255)) * (1-(alphaB/255))) * 255)
-end
-
-function add_area(name, x1, y1, x2, y2)
- -- create area if needed
- if (osc_param.areas[name] == nil) then
- osc_param.areas[name] = {}
- end
- table.insert(osc_param.areas[name], {x1=x1, y1=y1, x2=x2, y2=y2})
-end
-
-function ass_append_alpha(ass, alpha, modifier)
- local ar = {}
-
- for ai, av in pairs(alpha) do
- av = mult_alpha(av, modifier)
- if state.animation then
- av = mult_alpha(av, state.animation)
- end
- ar[ai] = av
- end
-
- ass:append(string.format("{\\1a&H%X&\\2a&H%X&\\3a&H%X&\\4a&H%X&}",
- ar[1], ar[2], ar[3], ar[4]))
-end
-
-function ass_draw_rr_h_cw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_cw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_cw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-function ass_draw_rr_h_ccw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_ccw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_ccw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-
---
--- Tracklist Management
---
-
-local nicetypes = {video = "Video", audio = "Audio", sub = "Subtitle"}
-
--- updates the OSC internal playlists, should be run each time the track-layout changes
-function update_tracklist()
- local tracktable = mp.get_property_native("track-list", {})
-
- -- by osc_id
- tracks_osc = {}
- tracks_osc.video, tracks_osc.audio, tracks_osc.sub = {}, {}, {}
- -- by mpv_id
- tracks_mpv = {}
- tracks_mpv.video, tracks_mpv.audio, tracks_mpv.sub = {}, {}, {}
- for n = 1, #tracktable do
- if not (tracktable[n].type == "unknown") then
- local type = tracktable[n].type
- local mpv_id = tonumber(tracktable[n].id)
-
- -- by osc_id
- table.insert(tracks_osc[type], tracktable[n])
-
- -- by mpv_id
- tracks_mpv[type][mpv_id] = tracktable[n]
- tracks_mpv[type][mpv_id].osc_id = #tracks_osc[type]
- end
- end
-end
-
--- return a nice list of tracks of the given type (video, audio, sub)
-function get_tracklist(type)
- local msg = "Available " .. nicetypes[type] .. " Tracks: "
- if #tracks_osc[type] == 0 then
- msg = msg .. "none"
- else
- for n = 1, #tracks_osc[type] do
- local track = tracks_osc[type][n]
- local lang, title, selected = "unknown", "", "○"
- if not(track.lang == nil) then lang = track.lang end
- if not(track.title == nil) then title = track.title end
- if (track.id == tonumber(mp.get_property(type))) then
- selected = "●"
- end
- msg = msg.."\n"..selected.." "..n..": ["..lang.."] "..title
- end
- end
- return msg
-end
-
--- relatively change the track of given by tracks
- --(+1 -> next, -1 -> previous)
-function set_track(type, next)
- local current_track_mpv, current_track_osc
- if (mp.get_property(type) == "no") then
- current_track_osc = 0
- else
- current_track_mpv = tonumber(mp.get_property(type))
- current_track_osc = tracks_mpv[type][current_track_mpv].osc_id
- end
- local new_track_osc = (current_track_osc + next) % (#tracks_osc[type] + 1)
- local new_track_mpv
- if new_track_osc == 0 then
- new_track_mpv = "no"
- else
- new_track_mpv = tracks_osc[type][new_track_osc].id
- end
-
- mp.commandv("set", type, new_track_mpv)
-
- if (new_track_osc == 0) then
- show_message(nicetypes[type] .. " Track: none")
- else
- show_message(nicetypes[type] .. " Track: "
- .. new_track_osc .. "/" .. #tracks_osc[type]
- .. " [".. (tracks_osc[type][new_track_osc].lang or "unknown") .."] "
- .. (tracks_osc[type][new_track_osc].title or ""))
- end
-end
-
--- get the currently selected track of , OSC-style counted
-function get_track(type)
- local track = mp.get_property(type)
- if track ~= "no" and track ~= nil then
- local tr = tracks_mpv[type][tonumber(track)]
- if tr then
- return tr.osc_id
- end
- end
- return 0
-end
-
--- WindowControl helpers
-function window_controls_enabled()
- val = user_opts.windowcontrols
- if val == "auto" then
- return not state.border
- else
- return val ~= "no"
- end
-end
-
-function window_controls_alignment()
- return user_opts.windowcontrols_alignment
-end
-
---
--- Element Management
---
-
-local elements = {}
-
-function prepare_elements()
-
- -- remove elements without layout or invisble
- local elements2 = {}
- for n, element in pairs(elements) do
- if not (element.layout == nil) and (element.visible) then
- table.insert(elements2, element)
- end
- end
- elements = elements2
-
- function elem_compare (a, b)
- return a.layout.layer < b.layout.layer
- end
-
- table.sort(elements, elem_compare)
-
-
- for _,element in pairs(elements) do
-
- local elem_geo = element.layout.geometry
-
- -- Calculate the hitbox
- local bX1, bY1, bX2, bY2 = get_hitbox_coords_geo(elem_geo)
- element.hitbox = {x1 = bX1, y1 = bY1, x2 = bX2, y2 = bY2}
-
- local style_ass = assdraw.ass_new()
-
- -- prepare static elements
- style_ass:append("{}") -- hack to troll new_event into inserting a \n
- style_ass:new_event()
- style_ass:pos(elem_geo.x, elem_geo.y)
- style_ass:an(elem_geo.an)
- style_ass:append(element.layout.style)
-
- element.style_ass = style_ass
-
- local static_ass = assdraw.ass_new()
-
-
- if (element.type == "box") then
- --draw box
- static_ass:draw_start()
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h,
- element.layout.box.radius, element.layout.box.hexagon)
- static_ass:draw_stop()
-
- elseif (element.type == "slider") then
- --draw static slider parts
-
- local r1 = 0
- local r2 = 0
- local slider_lo = element.layout.slider
- -- offset between element outline and drag-area
- local foV = slider_lo.border + slider_lo.gap
-
- -- calculate positions of min and max points
- if (slider_lo.stype ~= "bar") then
- r1 = elem_geo.h / 2
- element.slider.min.ele_pos = elem_geo.h / 2
- element.slider.max.ele_pos = elem_geo.w - (elem_geo.h / 2)
- if (slider_lo.stype == "diamond") then
- r2 = (elem_geo.h - 2 * slider_lo.border) / 2
- elseif (slider_lo.stype == "knob") then
- r2 = r1
- end
- else
- element.slider.min.ele_pos =
- slider_lo.border + slider_lo.gap
- element.slider.max.ele_pos =
- elem_geo.w - (slider_lo.border + slider_lo.gap)
- end
-
- element.slider.min.glob_pos =
- element.hitbox.x1 + element.slider.min.ele_pos
- element.slider.max.glob_pos =
- element.hitbox.x1 + element.slider.max.ele_pos
-
- -- -- --
-
- static_ass:draw_start()
-
- -- the box
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h, r1, slider_lo.stype == "diamond")
-
- -- the "hole"
- ass_draw_rr_h_ccw(static_ass, slider_lo.border, slider_lo.border,
- elem_geo.w - slider_lo.border, elem_geo.h - slider_lo.border,
- r2, slider_lo.stype == "diamond")
-
- -- marker nibbles
- if not (element.slider.markerF == nil) and (slider_lo.gap > 0) then
- local markers = element.slider.markerF()
- for _,marker in pairs(markers) do
- if (marker > element.slider.min.value) and
- (marker < element.slider.max.value) then
-
- local s = get_slider_ele_pos_for(element, marker)
-
- if (slider_lo.gap > 1) then -- draw triangles
-
- local a = slider_lo.gap / 0.5 --0.866
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:move_to(s - (a/2), slider_lo.border)
- static_ass:line_to(s + (a/2), slider_lo.border)
- static_ass:line_to(s, foV)
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:move_to(s - (a/2),
- elem_geo.h - slider_lo.border)
- static_ass:line_to(s,
- elem_geo.h - foV)
- static_ass:line_to(s + (a/2),
- elem_geo.h - slider_lo.border)
- end
-
- else -- draw 2x1px nibbles
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:rect_cw(s - 1, slider_lo.border,
- s + 1, slider_lo.border + slider_lo.gap);
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:rect_cw(s - 1,
- elem_geo.h -slider_lo.border -slider_lo.gap,
- s + 1, elem_geo.h - slider_lo.border);
- end
- end
- end
- end
- end
- end
-
- element.static_ass = static_ass
-
-
- -- if the element is supposed to be disabled,
- -- style it accordingly and kill the eventresponders
- if not (element.enabled) then
- element.layout.alpha[1] = 136
- element.eventresponder = nil
- end
- end
-end
-
-
---
--- Element Rendering
---
-
--- returns nil or a chapter element from the native property chapter-list
-function get_chapter(possec)
- local cl = mp.get_property_native("chapter-list", {})
- local ch = nil
-
- -- chapters might not be sorted by time. find nearest-before/at possec
- for n=1, #cl do
- if possec >= cl[n].time and (not ch or cl[n].time > ch.time) then
- ch = cl[n]
- end
- end
- return ch
-end
-
-function render_elements(master_ass)
-
- -- when the slider is dragged or hovered and we have a target chapter name
- -- then we use it instead of the normal title. we calculate it before the
- -- render iterations because the title may be rendered before the slider.
- state.forced_title = nil
- local se, ae = state.slider_element, elements[state.active_element]
- if se and (ae == se or (not ae and mouse_hit(se))) then
- local dur = mp.get_property_number("duration", 0)
- if dur > 0 then
- local possec = get_slider_value(se) * dur / 100 -- of mouse pos
- local ch = get_chapter(possec)
- if ch and ch.title and ch.title ~= "" then
- state.forced_title = "Chapter: " .. ch.title
- end
- end
- end
-
- for n=1, #elements do
- local element = elements[n]
-
- local style_ass = assdraw.ass_new()
- style_ass:merge(element.style_ass)
- ass_append_alpha(style_ass, element.layout.alpha, 0)
-
- if element.eventresponder and (state.active_element == n) then
-
- -- run render event functions
- if not (element.eventresponder.render == nil) then
- element.eventresponder.render(element)
- end
-
- if mouse_hit(element) then
- -- mouse down styling
- if (element.styledown) then
- style_ass:append(osc_styles.elementDown)
- end
-
- if (element.softrepeat) and (state.mouse_down_counter >= 15
- and state.mouse_down_counter % 5 == 0) then
-
- element.eventresponder[state.active_event_source.."_down"](element)
- end
- state.mouse_down_counter = state.mouse_down_counter + 1
- end
-
- end
-
- local elem_ass = assdraw.ass_new()
-
- elem_ass:merge(style_ass)
-
- if not (element.type == "button") then
- elem_ass:merge(element.static_ass)
- end
-
- if (element.type == "slider") then
-
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- local s_min = element.slider.min.value
- local s_max = element.slider.max.value
-
- -- draw pos marker
- local foH, xp
- local pos = element.slider.posF()
- local foV = slider_lo.border + slider_lo.gap
- local innerH = elem_geo.h - (2 * foV)
- local seekRanges = element.slider.seekRangesF()
- local seekRangeLineHeight = innerH / 5
-
- if slider_lo.stype ~= "bar" then
- foH = elem_geo.h / 2
- else
- foH = slider_lo.border + slider_lo.gap
- end
-
- if pos then
- xp = get_slider_ele_pos_for(element, pos)
-
- if slider_lo.stype ~= "bar" then
- local r = (user_opts.seekbarhandlesize * innerH) / 2
- ass_draw_rr_h_cw(elem_ass, xp - r, foH - r,
- xp + r, foH + r,
- r, slider_lo.stype == "diamond")
- else
- local h = 0
- if seekRanges and user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- h = seekRangeLineHeight
- end
- elem_ass:rect_cw(foH, foV, xp, elem_geo.h - foV - h)
-
- if seekRanges and not user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- -- Punch holes for the seekRanges to be drawn later
- for _,range in pairs(seekRanges) do
- if range["start"] < pos then
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = xp
-
- if pos > range["end"] then
- pend = get_slider_ele_pos_for(element, range["end"])
- end
- elem_ass:rect_ccw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- end
- end
- end
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, foH - innerH / 6, foH - innerH / 6,
- xp, foH + innerH / 6,
- innerH / 6, slider_lo.stype == "diamond", 0)
- ass_draw_rr_h_cw(elem_ass, xp, foH - innerH / 15,
- elem_geo.w - foH + innerH / 15, foH + innerH / 15,
- 0, slider_lo.stype == "diamond", innerH / 15)
- for _,range in pairs(seekRanges or {}) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
- ass_draw_rr_h_ccw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- end
- end
- end
-
- if seekRanges then
- if slider_lo.rtype ~= "inverted" then
- elem_ass:draw_stop()
- elem_ass:merge(element.style_ass)
- ass_append_alpha(elem_ass, element.layout.alpha, user_opts.seekrangealpha)
- elem_ass:merge(element.static_ass)
- end
-
- for _,range in pairs(seekRanges) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- elseif slider_lo.rtype == "line" then
- if slider_lo.stype == "bar" then
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- else
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 8, foH - innerH / 8,
- pend + innerH / 8, foH + innerH / 8,
- innerH / 8, slider_lo.stype == "diamond")
- end
- elseif slider_lo.rtype == "bar" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 2, foV,
- pend + innerH / 2, foV + innerH,
- innerH / 2, slider_lo.stype == "diamond")
- elseif range["end"] >= (pos or 0) then
- elem_ass:rect_cw(pstart, foV, pend, elem_geo.h - foV)
- else
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- elseif slider_lo.rtype == "inverted" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_ccw(elem_ass, pstart, (elem_geo.h / 2) - 1, pend,
- (elem_geo.h / 2) + 1,
- 1, slider_lo.stype == "diamond")
- else
- elem_ass:rect_ccw(pstart, (elem_geo.h / 2) - 1, pend, (elem_geo.h / 2) + 1)
- end
- end
- end
- end
-
- elem_ass:draw_stop()
-
- -- add tooltip
- if not (element.slider.tooltipF == nil) then
-
- if mouse_hit(element) then
- local sliderpos = get_slider_value(element)
- local tooltiplabel = element.slider.tooltipF(sliderpos)
-
- local an = slider_lo.tooltip_an
-
- local ty
-
- if (an == 2) then
- ty = element.hitbox.y1 - slider_lo.border
- else
- ty = element.hitbox.y1 + elem_geo.h/2
- end
-
- local tx = get_virt_mouse_pos()
- if (slider_lo.adjust_tooltip) then
- if (an == 2) then
- if (sliderpos < (s_min + 3)) then
- an = an - 1
- elseif (sliderpos > (s_max - 3)) then
- an = an + 1
- end
- elseif (sliderpos > (s_max-s_min)/2) then
- an = an + 1
- tx = tx - 5
- else
- an = an - 1
- tx = tx + 10
- end
- end
-
- -- tooltip label
- elem_ass:new_event()
- elem_ass:pos(tx, ty)
- elem_ass:an(an)
- elem_ass:append(slider_lo.tooltip_style)
- ass_append_alpha(elem_ass, slider_lo.alpha, 0)
- elem_ass:append(tooltiplabel)
-
- end
- end
-
- elseif (element.type == "button") then
-
- local buttontext
- if type(element.content) == "function" then
- buttontext = element.content() -- function objects
- elseif not (element.content == nil) then
- buttontext = element.content -- text objects
- end
-
- --匹配:(XXX) unknows 替换成:(XXX),注意XXX只能为0-3个字符
- buttontext = buttontext:gsub(":%((.?.?.?)%) unknown ", ":%(%1%)") --gsub("%) unknown %(\"", "")
-
- local maxchars = element.layout.button.maxchars
- if not (maxchars == nil) and (#buttontext > maxchars) then
- local max_ratio = 1.25 -- up to 25% more chars while shrinking
- local limit = math.max(0, math.floor(maxchars * max_ratio) - 3)
- if (#buttontext > limit) then
- while (#buttontext > limit) do
- buttontext = buttontext:gsub(".[\128-\191]*$", "")
- end
- buttontext = buttontext .. "..."
- end
- local _, nchars2 = buttontext:gsub(".[\128-\191]*", "")
- local stretch = (maxchars/#buttontext)*100
- buttontext = string.format("{\\fscx%f}",
- (maxchars/#buttontext)*100) .. buttontext
- end
-
- elem_ass:append(buttontext)
- end
-
- master_ass:merge(elem_ass)
- end
-end
-
---
--- Message display
---
-
--- pos is 1 based
-function limited_list(prop, pos)
- local proplist = mp.get_property_native(prop, {})
- local count = #proplist
- if count == 0 then
- return count, proplist
- end
-
- local fs = tonumber(mp.get_property('options/osd-font-size'))
- local max = math.ceil(osc_param.unscaled_y*0.75 / fs)
- if max % 2 == 0 then
- max = max - 1
- end
- local delta = math.ceil(max / 2) - 1
- local begi = math.max(math.min(pos - delta, count - max + 1), 1)
- local endi = math.min(begi + max - 1, count)
-
- local reslist = {}
- for i=begi, endi do
- local item = proplist[i]
- item.current = (i == pos) and true or nil
- table.insert(reslist, item)
- end
- return count, reslist
-end
-
-function get_playlist()
- local pos = mp.get_property_number('playlist-pos', 0) + 1
- local count, limlist = limited_list('playlist', pos)
- if count == 0 then
- return 'Empty playlist.'
- end
-
- local message = string.format('Playlist [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local title = v.title
- local _, filename = utils.split_path(v.filename)
- if title == nil then
- title = filename
- end
- message = string.format('%s %s %s\n', message,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function get_chapterlist()
- local pos = mp.get_property_number('chapter', 0) + 1
- local count, limlist = limited_list('chapter-list', pos)
- if count == 0 then
- return 'No chapters.'
- end
-
- local message = string.format('Chapters [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local time = mp.format_time(v.time)
- local title = v.title
- if title == nil then
- title = string.format('Chapter %02d', i)
- end
- message = string.format('%s[%s] %s %s\n', message, time,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function show_message(text, duration)
-
- --print("text: "..text.." duration: " .. duration)
- if duration == nil then
- duration = tonumber(mp.get_property("options/osd-duration")) / 1000
- elseif not type(duration) == "number" then
- print("duration: " .. duration)
- end
-
- -- cut the text short, otherwise the following functions
- -- may slow down massively on huge input
- text = string.sub(text, 0, 4000)
-
- -- replace actual linebreaks with ASS linebreaks
- text = string.gsub(text, "\n", "\\N")
-
- state.message_text = text
-
- if not state.message_hide_timer then
- state.message_hide_timer = mp.add_timeout(0, request_tick)
- end
- state.message_hide_timer:kill()
- state.message_hide_timer.timeout = duration
- state.message_hide_timer:resume()
- request_tick()
-end
-
-function render_message(ass)
- if state.message_hide_timer and state.message_hide_timer:is_enabled() and
- state.message_text
- then
- local _, lines = string.gsub(state.message_text, "\\N", "")
-
- local fontsize = tonumber(mp.get_property("options/osd-font-size"))
- local outline = tonumber(mp.get_property("options/osd-border-size"))
- local maxlines = math.ceil(osc_param.unscaled_y*0.75 / fontsize)
- local counterscale = osc_param.playresy / osc_param.unscaled_y
-
- fontsize = fontsize * counterscale / math.max(0.65 + math.min(lines/maxlines, 1), 1)
- outline = outline * counterscale / math.max(0.75 + math.min(lines/maxlines, 1)/2, 1)
-
- local style = "{\\bord" .. outline .. "\\fs" .. fontsize .. "}"
-
-
- ass:new_event()
- ass:append(style .. state.message_text)
- else
- state.message_text = nil
- end
-end
-
---
--- Initialisation and Layout
---
-
-function new_element(name, type)
- elements[name] = {}
- elements[name].type = type
-
- -- add default stuff
- elements[name].eventresponder = {}
- elements[name].visible = true
- elements[name].enabled = true
- elements[name].softrepeat = false
- elements[name].styledown = (type == "button")
- elements[name].state = {}
-
- if (type == "slider") then
- elements[name].slider = {min = {value = 0}, max = {value = 100}}
- end
-
-
- return elements[name]
-end
-
-function add_layout(name)
- if not (elements[name] == nil) then
- -- new layout
- elements[name].layout = {}
-
- -- set layout defaults
- elements[name].layout.layer = 50
- elements[name].layout.alpha = {[1] = 0, [2] = 255, [3] = 255, [4] = 255}
-
- if (elements[name].type == "button") then
- elements[name].layout.button = {
- maxchars = nil,
- }
- elseif (elements[name].type == "slider") then
- -- slider defaults
- elements[name].layout.slider = {
- border = 1,
- gap = 1,
- nibbles_top = true,
- nibbles_bottom = true,
- stype = "slider",
- adjust_tooltip = true,
- tooltip_style = "",
- tooltip_an = 2,
- alpha = {[1] = 0, [2] = 255, [3] = 88, [4] = 255},
- }
- elseif (elements[name].type == "box") then
- elements[name].layout.box = {radius = 0, hexagon = false}
- end
-
- return elements[name].layout
- else
- msg.error("Can't add_layout to element \""..name.."\", doesn't exist.")
- end
-end
-
--- Window Controls
-function window_controls(topbar)
- local wc_geo = {
- x = 0,
- -- -2去除默认情况下上方和边框之间的4px间隔
- y = 30 + user_opts.barmargin -2,
- an = 1,
- w = osc_param.playresx,
- h = 30,
- }
-
- local alignment = window_controls_alignment()
- local controlbox_w = window_control_box_width
- local titlebox_w = wc_geo.w - controlbox_w
-
- -- Default alignment is "right"
- local controlbox_left = wc_geo.w - controlbox_w
- local titlebox_left = wc_geo.x
- local titlebox_right = wc_geo.w - controlbox_w
-
- if alignment == "left" then
- controlbox_left = wc_geo.x
- titlebox_left = wc_geo.x + controlbox_w
- titlebox_right = wc_geo.w
- end
-
- add_area("window-controls",
- get_hitbox_coords(controlbox_left, wc_geo.y, wc_geo.an,
- controlbox_w, wc_geo.h))
-
- local lo
-
- -- Background Bar
- new_element("wcbar", "box")
- lo = add_layout("wcbar")
- lo.geometry = wc_geo
- lo.layer = 10
- lo.style = osc_styles.rjno1wcBar
- lo.alpha[1] = user_opts.boxalpha
-
- local button_y = wc_geo.y - (wc_geo.h / 2)
- local first_geo =
- {x = controlbox_left + 5, y = button_y, an = 4, w = 25, h = 25}
- local second_geo =
- {x = controlbox_left + 30, y = button_y, an = 4, w = 25, h = 25}
- local third_geo =
- {x = controlbox_left + 55, y = button_y, an = 4, w = 25, h = 25}
-
- -- Window control buttons use symbols in the custom mpv osd font
- -- because the official unicode codepoints are sufficiently
- -- exotic that a system might lack an installed font with them,
- -- and libass will complain that they are not present in the
- -- default font, even if another font with them is available.
-
- -- Close: 🗙
- ne = new_element("close", "button")
- ne.content = "\238\132\149"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("quit") end
- lo = add_layout("close")
- lo.geometry = alignment == "left" and first_geo or third_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- Minimize: 🗕
- ne = new_element("minimize", "button")
- ne.content = "\238\132\146"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "window-minimized") end
- lo = add_layout("minimize")
- lo.geometry = alignment == "left" and second_geo or first_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- Maximize: 🗖 /🗗
- ne = new_element("maximize", "button")
- if state.maximized or state.fullscreen then
- ne.content = "\238\132\148"
- else
- ne.content = "\238\132\147"
- end
- ne.eventresponder["mbtn_left_up"] =
- function ()
- if state.fullscreen then
- mp.commandv("cycle", "fullscreen")
- else
- mp.commandv("cycle", "window-maximized")
- end
- end
- lo = add_layout("maximize")
- lo.geometry = alignment == "left" and third_geo or second_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- deadzone below window controls
- local sh_area_y0, sh_area_y1
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (wc_geo.y + (wc_geo.h / 2)) +
- get_align(1 - (2 * user_opts.deadzonesize),
- osc_param.playresy - (wc_geo.y + (wc_geo.h / 2)), 0, 0)
- add_area("showhide_wc", wc_geo.x, sh_area_y0, wc_geo.w, sh_area_y1)
-
- if topbar then
- -- The title is already there as part of the top bar
- return
- else
- -- Apply boxvideo margins to the control bar
- osc_param.video_margins.t = wc_geo.h / osc_param.playresy
- end
-
- -- Window Title
- ne = new_element("wctitle", "button")
- ne.content = function ()
- --local title = mp.command_native({"expand-text", user_opts.title})
- --使用这个lua脚本顶部设置中的rjno1title参数替代title参数显示标题
- local title = mp.command_native({"expand-text", user_opts.rjno1title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
- local left_pad = 5
- local right_pad = 10
- lo = add_layout("wctitle")
- -- -3用来解决由于字体从24变为18后字体太靠下的问题
- lo.geometry =
- { x = titlebox_left + left_pad, y = wc_geo.y - 3 -3, an = 1,
- w = titlebox_w, h = wc_geo.h }
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.rjno1wcTitle,
- titlebox_left + left_pad, wc_geo.y - wc_geo.h,
- titlebox_right - right_pad , wc_geo.y + wc_geo.h)
-
- add_area("window-controls-title",
- titlebox_left, 0, titlebox_right, wc_geo.h)
-end
-
---
--- Layouts
---
-
-local layouts = {}
-
--- Classic box layout
-layouts["box"] = function ()
-
- local osc_geo = {
- w = 1100, -- width
- h = 65, -- height
- r = 0, -- corner-radius
- p = 0, -- padding
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w + (2 * osc_geo.p))) then
- osc_param.playresy = (osc_geo.w+(2*osc_geo.p))/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- -- position offset for contents aligned at the borders of the box
- local pos_offsetX = (osc_geo.w - (2*osc_geo.p)) / 2
- local pos_offsetY = (osc_geo.h - (2*osc_geo.p)) / 2
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- -- fetch values
- local osc_w, osc_h, osc_r, osc_p =
- osc_geo.w, osc_geo.h, osc_geo.r, osc_geo.p
-
- local lo
-
- --
- -- Background box
- --
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY, an = 5, w = osc_w, h = osc_h}
- lo.layer = 10
- lo.style = osc_styles.rjno1box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = user_opts.boxalpha
- lo.box.radius = osc_r
-
- --
- -- Title row
- --
---an是元素根据自己的中心线上下浮动,an=1时 元素中心全部在中心点上,an=9 元素全部在中心点右侧和之下
---box左上角x坐标 posX - pos_offsetX 但an=5 元素中心点坐标和这个坐标一致,所以还要根据an=?加减元素的宽度
---box左上角y坐标 posY - pos_offsetY 但an=5 元素中心点坐标和这个坐标一致,所以还要根据an=?加减元素的高度
- local rjno1X = posX - pos_offsetX
- local rjno1Y = posY - pos_offsetY
-
-
- --
- -- Seekbar
- --
- geo ={x = rjno1X + 1100 / 2 , y = rjno1Y + 6 , an = 5, w = 1100, h = 13}
- --lo = add_layout("seekbar")
-
---if user_opts["seekbarstyle"] ~= "knob" then
-
- new_element("bgbar1", "box")
- lo = add_layout("bgbar1")
-
- lo.geometry = geo
- lo.layer = 13
- lo.style = osc_styles.rjno1vidtitleBar
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.05)
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = geo.h / 2
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
---end
-
- lo = add_layout("seekbar")
- lo.geometry = geo
- lo.style = osc_styles.rjno1timecodes
- lo.slider.border = 0
- lo.slider.gap = 0
- lo.slider.tooltip_style = osc_styles.rjno1timePosBar
- lo.slider.tooltip_an = 5
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
---if user_opts["seekbarstyle"] == "knob" then
--- lo.geometry.y = rjno1Y + 6 + 4
--- end
-
-
-
-
- lo = add_layout("pl_prev")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 0 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno130Buttons
-
- lo = add_layout("ch_prev")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 1 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno140Buttons
-
- lo = add_layout("skipback")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 2 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno140Buttons
-
-
- lo = add_layout("playpause")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 3 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno150Buttons
-
-
- lo = add_layout("skipfrwd")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 4 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno140Buttons
-
-
- lo = add_layout("ch_next")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 5 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno140Buttons
-
-
-
- lo = add_layout("pl_next")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 6 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno130Buttons
-
-
---an = 5 时文字居中显示 往2边增加,所以一定要用1,这样多出的文字只会往右侧增长
- lo = add_layout("title")
- lo.geometry = {x = rjno1X + 10 * 26 , y = rjno1Y + 10 * 2.6 + 20 / 2 , an = 1, w = 1100 - 10 * 3.5 * 7, h = 20}
- lo.style = osc_styles.rjno116Buttons
- --lo.button.maxchars = user_opts.boxmaxchars
-
-
-
-
-
-
---an = 1 这样左侧的时间变长才会往右,但y轴要调整
- lo = add_layout("tc_left")
- lo.geometry = {x = rjno1X + 10 * 26, y = rjno1Y + 10 * 5.1+ 20 / 2, an = 1, w = 110, h = 20}
- lo.style = osc_styles.rjno120Buttons
-
---an = 5
- lo = add_layout("cache")
- lo.geometry = {x = rjno1X + 10 * 50 + 10 * 11 / 2, y = rjno1Y + 10 * 5.1, an = 5, w = 110, h = 20}
- lo.style = osc_styles.rjno120Buttons
---an = 9 这样右侧的时间变长才会往左,但y轴要调整
- lo = add_layout("tc_right")
- lo.geometry = {x = rjno1X + 10 * 78 + 10 * 11 / 2, y = rjno1Y + 10 * 5.1- 20 / 2 + 1, an = 9, w = 110, h = 20}
- lo.style = osc_styles.rjno120Buttons
-
-
-
-
-
-
-
- lo = add_layout("cy_audio")
- lo.geometry = {x = rjno1X + 10 * 85 + 10 * 7/2, y = rjno1Y + 10 * 5.1, an = 5, w = 70, h = 20}
- lo.style = osc_styles.rjno120Buttons
-
- lo = add_layout("cy_sub")
- lo.geometry = {x = rjno1X + 10 * 93 + 10 * 7/2, y = rjno1Y + 10 * 5.1, an = 5, w = 70, h = 20}
- lo.style = osc_styles.rjno120Buttons
-
---an = 1 图标最左侧才能点击
- lo = add_layout("volume")
- lo.geometry = {x = rjno1X + 10 * 102 , y = rjno1Y + 10 * 5 + 13, an = 1, w = 30, h = 26}
- lo.style = osc_styles.rjno125Buttons
---an = 1 图标最左侧才能点击
- lo = add_layout("tog_fs")
- lo.geometry = {x = rjno1X + 10 * 106, y = rjno1Y + 10 * 5 + 13 +1 , an = 1, w = 30, h =26 }
- lo.style = osc_styles.rjno125Buttons
-
-end
-
--- slim box layout
-layouts["slimbox"] = function ()
-
- local osc_geo = {
- w = 660, -- width
- h = 70, -- height
- r = 10, -- corner-radius
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w)) then
- osc_param.playresy = (osc_geo.w)/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo
-
- local tc_w, ele_h, inner_w = 100, 20, osc_geo.w - 100
-
- -- styles
- local styles = {
- box = "{\\rDefault\\blur0\\bord1\\1c&H000000\\3c&HFFFFFF}",
- timecodes = "{\\1c&HFFFFFF\\3c&H000000\\fs20\\bord2\\blur1}",
- tooltip = "{\\1c&HFFFFFF\\3c&H000000\\fs12\\bord1\\blur0.5}",
- }
-
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = 0
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = osc_geo.r
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
-
- lo = add_layout("seekbar")
- lo.geometry =
- {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.style = osc_styles.timecodes
- lo.slider.border = 0
- lo.slider.gap = 1.5
- lo.slider.tooltip_style = styles.tooltip
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
- lo.slider.adjust_tooltip = false
-
- --
- -- Timecodes
- --
-
- lo = add_layout("tc_left")
- lo.geometry =
- {x = posX - (inner_w/2) + osc_geo.r, y = posY + 1,
- an = 7, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- lo = add_layout("tc_right")
- lo.geometry =
- {x = posX + (inner_w/2) - osc_geo.r, y = posY + 1,
- an = 9, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- -- Cache
-
- lo = add_layout("cache")
- lo.geometry =
- {x = posX, y = posY + 1,
- an = 8, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
-
-end
-
-function bar_layout(direction)
- local osc_geo = {
- x = -2,
- y,
- an = (direction < 0) and 7 or 1,
- w,
- h = 56,
- }
-
- local padX = 9
- local padY = 3
- local buttonW = 27
- local tcW = (state.tc_ms) and 170 or 110
- local tsW = 90
- local minW = (buttonW + padX)*5 + (tcW + padX)*4 + (tsW + padX)*2
-
- -- Special topbar handling when window controls are present
- local padwc_l
- local padwc_r
- if direction < 0 or not window_controls_enabled() then
- padwc_l = 0
- padwc_r = 0
- elseif window_controls_alignment() == "left" then
- padwc_l = window_control_box_width
- padwc_r = 0
- else
- padwc_l = 0
- padwc_r = window_control_box_width
- end
-
- if ((osc_param.display_aspect > 0) and (osc_param.playresx < minW)) then
- osc_param.playresy = minW / osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- osc_geo.y = direction * (54 + user_opts.barmargin)
- osc_geo.w = osc_param.playresx + 4
- if direction < 0 then
- osc_geo.y = osc_geo.y + osc_param.playresy
- end
-
- local line1 = osc_geo.y - direction * (9 + padY)
- local line2 = osc_geo.y - direction * (36 + padY)
-
- osc_param.areas = {}
-
- add_area("input", get_hitbox_coords(osc_geo.x, osc_geo.y, osc_geo.an,
- osc_geo.w, osc_geo.h))
-
- local sh_area_y0, sh_area_y1
- if direction > 0 then
- -- deadzone below OSC
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (osc_geo.y + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (osc_geo.y + (osc_geo.h / 2)), 0, 0)
- else
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- osc_geo.y - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy - user_opts.barmargin
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo, geo
-
- -- Background bar
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = osc_geo
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
-
-
- -- Playlist prev/next
- geo = { x = osc_geo.x + padX, y = line1,
- an = 4, w = 18, h = 18 - padY }
- lo = add_layout("pl_prev")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("pl_next")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- local t_l = geo.x + geo.w + padX
-
- -- Cache
- geo = { x = osc_geo.x + osc_geo.w - padX, y = geo.y,
- an = 6, w = 150, h = geo.h }
- lo = add_layout("cache")
- lo.geometry = geo
- lo.style = osc_styles.vidtitleBar
-
- local t_r = geo.x - geo.w - padX*2
-
- -- Title
- geo = { x = t_l, y = geo.y, an = 4,
- w = t_r - t_l, h = geo.h }
- lo = add_layout("title")
- lo.geometry = geo
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.vidtitleBar,
- geo.x, geo.y-geo.h, geo.w, geo.y+geo.h)
-
-
- -- Playback control buttons
- geo = { x = osc_geo.x + padX + padwc_l, y = line2, an = 4,
- w = buttonW, h = 36 - padY*2}
- lo = add_layout("playpause")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_prev")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_next")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Left timecode
- geo = { x = geo.x + geo.w + padX + tcW, y = geo.y, an = 6,
- w = tcW, h = geo.h }
- lo = add_layout("tc_left")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_l = geo.x + padX
-
- -- Fullscreen button
- geo = { x = osc_geo.x + osc_geo.w - buttonW - padX - padwc_r, y = geo.y, an = 4,
- w = buttonW, h = geo.h }
- lo = add_layout("tog_fs")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Volume
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("volume")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Track selection buttons
- geo = { x = geo.x - tsW - padX, y = geo.y, an = geo.an, w = tsW, h = geo.h }
- lo = add_layout("cy_sub")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("cy_audio")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
-
- -- Right timecode
- geo = { x = geo.x - padX - tcW - 10, y = geo.y, an = geo.an,
- w = tcW, h = geo.h }
- lo = add_layout("tc_right")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_r = geo.x - padX
-
-
- -- Seekbar
- geo = { x = sb_l, y = geo.y, an = geo.an,
- w = math.max(0, sb_r - sb_l), h = geo.h }
- new_element("bgbar1", "box")
- lo = add_layout("bgbar1")
-
- lo.geometry = geo
- lo.layer = 15
- lo.style = osc_styles.timecodesBar
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.8)
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = geo.h / 2
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
- lo = add_layout("seekbar")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
- lo.slider.border = 0
- lo.slider.gap = 2
- lo.slider.tooltip_style = osc_styles.timePosBar
- lo.slider.tooltip_an = 5
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
- if direction < 0 then
- osc_param.video_margins.b = osc_geo.h / osc_param.playresy
- else
- osc_param.video_margins.t = osc_geo.h / osc_param.playresy
- end
-end
-
-layouts["bottombar"] = function()
- bar_layout(-1)
-end
-
-layouts["topbar"] = function()
- bar_layout(1)
-end
-
--- Validate string type user options
-function validate_user_opts()
- if layouts[user_opts.layout] == nil then
- msg.warn("Invalid setting \""..user_opts.layout.."\" for layout")
- user_opts.layout = "bottombar"
- end
-
- if user_opts.seekbarstyle ~= "bar" and
- user_opts.seekbarstyle ~= "diamond" and
- user_opts.seekbarstyle ~= "knob" then
- msg.warn("Invalid setting \"" .. user_opts.seekbarstyle
- .. "\" for seekbarstyle")
- user_opts.seekbarstyle = "bar"
- end
-
- if user_opts.seekrangestyle ~= "bar" and
- user_opts.seekrangestyle ~= "line" and
- user_opts.seekrangestyle ~= "slider" and
- user_opts.seekrangestyle ~= "inverted" and
- user_opts.seekrangestyle ~= "none" then
- msg.warn("Invalid setting \"" .. user_opts.seekrangestyle
- .. "\" for seekrangestyle")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.seekrangestyle == "slider" and
- user_opts.seekbarstyle == "bar" then
- msg.warn("Using \"slider\" seekrangestyle together with \"bar\" seekbarstyle is not supported")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.windowcontrols ~= "auto" and
- user_opts.windowcontrols ~= "yes" and
- user_opts.windowcontrols ~= "no" then
- msg.warn("windowcontrols cannot be \"" ..
- user_opts.windowcontrols .. "\". Ignoring.")
- user_opts.windowcontrols = "auto"
- end
- if user_opts.windowcontrols_alignment ~= "right" and
- user_opts.windowcontrols_alignment ~= "left" then
- msg.warn("windowcontrols_alignment cannot be \"" ..
- user_opts.windowcontrols_alignment .. "\". Ignoring.")
- user_opts.windowcontrols_alignment = "right"
- end
-end
-
-function update_options(list)
- validate_user_opts()
- request_tick()
- visibility_mode(user_opts.visibility, true)
- update_duration_watch()
- request_init()
-end
-
--- OSC INIT
-function osc_init()
- msg.debug("osc_init")
-
- -- set canvas resolution according to display aspect and scaling setting
- local baseResY = 720
- local display_w, display_h, display_aspect = mp.get_osd_size()
- local scale = 1
-
- if (mp.get_property("video") == "no") then -- dummy/forced window
- scale = user_opts.scaleforcedwindow
- elseif state.fullscreen then
- scale = user_opts.scalefullscreen
- else
- scale = user_opts.scalewindowed
- end
-
- if user_opts.vidscale then
- osc_param.unscaled_y = baseResY
- else
- osc_param.unscaled_y = display_h
- end
- osc_param.playresy = osc_param.unscaled_y / scale
- if (display_aspect > 0) then
- osc_param.display_aspect = display_aspect
- end
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
-
- -- stop seeking with the slider to prevent skipping files
- state.active_element = nil
-
- osc_param.video_margins = {l = 0, r = 0, t = 0, b = 0}
-
- elements = {}
-
- -- some often needed stuff
- local pl_count = mp.get_property_number("playlist-count", 0)
- local have_pl = (pl_count > 1)
- local pl_pos = mp.get_property_number("playlist-pos", 0) + 1
- local have_ch = (mp.get_property_number("chapters", 0) > 0)
- local loop = mp.get_property("loop-playlist", "no")
-
- local ne
-
- -- title
- ne = new_element("title", "button")
-
- ne.content = function ()
- local title = state.forced_title or
- mp.command_native({"expand-text", user_opts.title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
-
- ne.eventresponder["mbtn_left_up"] = function ()
- local title = mp.get_property_osd("media-title")
- if (have_pl) then
- title = string.format("[%d/%d] %s", countone(pl_pos - 1),
- pl_count, title)
- end
- show_message(title)
- end
-
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(mp.get_property_osd("filename")) end
-
- -- playlist buttons
-
- -- prev
- ne = new_element("pl_prev", "button")
-
- ne.content = "\238\132\144"
- ne.enabled = (pl_pos > 1) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-prev", "weak")
- show_message(get_playlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
- --next
- ne = new_element("pl_next", "button")
-
- ne.content = "\238\132\129"
- ne.enabled = (have_pl and (pl_pos < pl_count)) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-next", "weak")
- show_message(get_playlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
-
- -- big buttons
-
- --playpause
- ne = new_element("playpause", "button")
-
- ne.content = function ()
- if mp.get_property("pause") == "yes" then
- return ("\238\132\129")
- else
- return ("\238\128\130")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "pause") end
-
- --skipback
- ne = new_element("skipback", "button")
-
- ne.softrepeat = true
- ne.content = "\238\128\132"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", -5, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-back-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", -30, "relative", "keyframes") end
-
- --skipfrwd
- ne = new_element("skipfrwd", "button")
-
- ne.softrepeat = true
- ne.content = "\238\128\133"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", 10, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", 60, "relative", "keyframes") end
-
- --ch_prev
- ne = new_element("ch_prev", "button")
-
- ne.enabled = have_ch
- ne.content = "\238\132\132"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", -1)
- show_message(get_chapterlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --ch_next
- ne = new_element("ch_next", "button")
-
- ne.enabled = have_ch
- ne.content = "\238\132\133"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", 1)
- show_message(get_chapterlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --
- update_tracklist()
-
- --cy_audio
- ne = new_element("cy_audio", "button")
-
- ne.enabled = (#tracks_osc.audio > 0)
- ne.content = function ()
- local aid = "–"
- if not (get_track("audio") == 0) then
- aid = get_track("audio")
- end
- return ("\238\132\134" .. osc_styles.smallButtonsLlabel
- .. " " .. aid .. "/" .. #tracks_osc.audio)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("audio", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("audio", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("audio"), 2) end
-
- --cy_sub
- ne = new_element("cy_sub", "button")
-
- ne.enabled = (#tracks_osc.sub > 0)
- ne.content = function ()
- local sid = "–"
- if not (get_track("sub") == 0) then
- sid = get_track("sub")
- end
- return ("\238\132\135" .. osc_styles.smallButtonsLlabel
- .. " " .. sid .. "/" .. #tracks_osc.sub)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("sub", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("sub", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("sub"), 2) end
-
- --tog_fs
- ne = new_element("tog_fs", "button")
- ne.content = function ()
- if (state.fullscreen) then
- return ("\238\132\137")
- else
- return ("\238\132\136")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "fullscreen") end
-
- --seekbar
- ne = new_element("seekbar", "slider")
-
- ne.enabled = not (mp.get_property("percent-pos") == nil)
- state.slider_element = ne.enabled and ne or nil -- used for forced_title
- ne.slider.markerF = function ()
- local duration = mp.get_property_number("duration", nil)
- if not (duration == nil) then
- local chapters = mp.get_property_native("chapter-list", {})
- local markers = {}
- for n = 1, #chapters do
- markers[n] = (chapters[n].time / duration * 100)
- end
- return markers
- else
- return {}
- end
- end
- ne.slider.posF =
- function () return mp.get_property_number("percent-pos", nil) end
- ne.slider.tooltipF = function (pos)
- local duration = mp.get_property_number("duration", nil)
- if not ((duration == nil) or (pos == nil)) then
- possec = duration * (pos / 100)
- return mp.format_time(possec)
- else
- return ""
- end
- end
- ne.slider.seekRangesF = function()
- if user_opts.seekrangestyle == "none" then
- return nil
- end
- local cache_state = state.cache_state
- if not cache_state then
- return nil
- end
- local duration = mp.get_property_number("duration", nil)
- if (duration == nil) or duration <= 0 then
- return nil
- end
- local ranges = cache_state["seekable-ranges"]
- if #ranges == 0 then
- return nil
- end
- local nranges = {}
- for _, range in pairs(ranges) do
- nranges[#nranges + 1] = {
- ["start"] = 100 * range["start"] / duration,
- ["end"] = 100 * range["end"] / duration,
- }
- end
- return nranges
- end
- ne.eventresponder["mouse_move"] = --keyframe seeking when mouse is dragged
- function (element)
- -- mouse move events may pile up during seeking and may still get
- -- sent when the user is done seeking, so we need to throw away
- -- identical seeks
- local seekto = get_slider_value(element)
- if (element.state.lastseek == nil) or
- (not (element.state.lastseek == seekto)) then
- local flags = "absolute-percent"
- if not user_opts.seekbarkeyframes then
- flags = flags .. "+exact"
- end
- mp.commandv("seek", seekto, flags)
- element.state.lastseek = seekto
- end
-
- end
- ne.eventresponder["mbtn_left_down"] = --exact seeks on single clicks
- function (element) mp.commandv("seek", get_slider_value(element),
- "absolute-percent", "exact") end
- ne.eventresponder["reset"] =
- function (element) element.state.lastseek = nil end
-
-
- -- tc_left (current pos)
- ne = new_element("tc_left", "button")
-
- ne.content = function ()
- if (state.tc_ms) then
- return (mp.get_property_osd("playback-time/full"))
- else
- return (mp.get_property_osd("playback-time"))
- end
- end
- ne.eventresponder["mbtn_left_up"] = function ()
- state.tc_ms = not state.tc_ms
- request_init()
- end
-
- -- tc_right (total/remaining time)
- ne = new_element("tc_right", "button")
-
- ne.visible = (mp.get_property_number("duration", 0) > 0)
- ne.content = function ()
- if (state.rightTC_trem) then
- if state.tc_ms then
- return ("-"..mp.get_property_osd("playtime-remaining/full"))
- else
- return ("-"..mp.get_property_osd("playtime-remaining"))
- end
- else
- if state.tc_ms then
- return (mp.get_property_osd("duration/full"))
- else
- return (mp.get_property_osd("duration"))
- end
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () state.rightTC_trem = not state.rightTC_trem end
-
- -- cache
- ne = new_element("cache", "button")
-
- ne.content = function ()
- local cache_state = state.cache_state
- if not (cache_state and cache_state["seekable-ranges"] and
- #cache_state["seekable-ranges"] > 0) then
- -- probably not a network stream
- return ""
- end
- local dmx_cache = cache_state and cache_state["cache-duration"]
- local thresh = math.min(state.dmx_cache * 0.05, 5) -- 5% or 5s
- if dmx_cache and math.abs(dmx_cache - state.dmx_cache) >= thresh then
- state.dmx_cache = dmx_cache
- else
- dmx_cache = state.dmx_cache
- end
- local min = math.floor(dmx_cache / 60)
- local sec = dmx_cache % 60
- return "Cache: " .. (min > 0 and
- string.format("%sm%02.0fs", min, sec) or
- string.format("%3.0fs", dmx_cache))
- end
-
- -- volume
- ne = new_element("volume", "button")
-
- ne.content = function()
- local volume = mp.get_property_number("volume", 0)
- local mute = mp.get_property_native("mute")
- local volicon = {"\238\132\139", "\238\132\140",
- "\238\132\141", "\238\132\142"}
- if volume == 0 or mute then
- return "\238\132\138"
- else
- return volicon[math.min(4,math.ceil(volume / (100/3)))]
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "mute") end
-
- ne.eventresponder["wheel_up_press"] =
- function () mp.commandv("osd-auto", "add", "volume", 5) end
- ne.eventresponder["wheel_down_press"] =
- function () mp.commandv("osd-auto", "add", "volume", -5) end
-
-
- -- load layout
- layouts[user_opts.layout]()
-
- -- load window controls
- if window_controls_enabled() then
- window_controls(user_opts.layout == "topbar")
- end
-
- --do something with the elements
- prepare_elements()
-
- update_margins()
-end
-
-function reset_margins()
- if state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- mp.set_property_number(opt[2], 0.0)
- end
- state.using_video_margins = false
- end
-end
-
-function update_margins()
- local margins = osc_param.video_margins
-
- -- Don't use margins if it's visible only temporarily.
- if (not state.osc_visible) or (get_hidetimeout() >= 0) or
- (state.fullscreen and not user_opts.showfullscreen) or
- (not state.fullscreen and not user_opts.showwindowed)
- then
- margins = {l = 0, r = 0, t = 0, b = 0}
- end
-
- if user_opts.boxvideo then
- -- check whether any margin option has a non-default value
- local margins_used = false
-
- if not state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- if mp.get_property_number(opt[2], 0.0) ~= 0.0 then
- margins_used = true
- end
- end
- end
-
- if not margins_used then
- for _, opt in ipairs(margins_opts) do
- local v = margins[opt[1]]
- if (v ~= 0) or state.using_video_margins then
- mp.set_property_number(opt[2], v)
- state.using_video_margins = true
- end
- end
- end
- else
- reset_margins()
- end
-
- utils.shared_script_property_set("osc-margins",
- string.format("%f,%f,%f,%f", margins.l, margins.r, margins.t, margins.b))
-end
-
-function shutdown()
- reset_margins()
- utils.shared_script_property_set("osc-margins", nil)
-end
-
---
--- Other important stuff
---
-
-
-function show_osc()
- -- show when disabled can happen (e.g. mouse_move) due to async/delayed unbinding
- if not state.enabled then return end
-
- msg.trace("show_osc")
- --remember last time of invocation (mouse move)
- state.showtime = mp.get_time()
-
- osc_visible(true)
-
- if (user_opts.fadeduration > 0) then
- state.anitype = nil
- end
-end
-
-function hide_osc()
- msg.trace("hide_osc")
- if not state.enabled then
- -- typically hide happens at render() from tick(), but now tick() is
- -- no-op and won't render again to remove the osc, so do that manually.
- state.osc_visible = false
- render_wipe()
- elseif (user_opts.fadeduration > 0) then
- if not(state.osc_visible == false) then
- state.anitype = "out"
- request_tick()
- end
- else
- osc_visible(false)
- end
-end
-
-function osc_visible(visible)
- if state.osc_visible ~= visible then
- state.osc_visible = visible
- update_margins()
- end
- request_tick()
-end
-
-function pause_state(name, enabled)
- state.paused = enabled
- request_tick()
-end
-
-function cache_state(name, st)
- state.cache_state = st
- request_tick()
-end
-
--- Request that tick() is called (which typically re-renders the OSC).
--- The tick is then either executed immediately, or rate-limited if it was
--- called a small time ago.
-function request_tick()
- if state.tick_timer == nil then
- state.tick_timer = mp.add_timeout(0, tick)
- end
-
- if not state.tick_timer:is_enabled() then
- local now = mp.get_time()
- local timeout = tick_delay - (now - state.tick_last_time)
- if timeout < 0 then
- timeout = 0
- end
- state.tick_timer.timeout = timeout
- state.tick_timer:resume()
- end
-end
-
-function mouse_leave()
- if get_hidetimeout() >= 0 then
- hide_osc()
- end
- -- reset mouse position
- state.last_mouseX, state.last_mouseY = nil, nil
- state.mouse_in_window = false
-end
-
-function request_init()
- state.initREQ = true
- request_tick()
-end
-
--- Like request_init(), but also request an immediate update
-function request_init_resize()
- request_init()
- -- ensure immediate update
- state.tick_timer:kill()
- state.tick_timer.timeout = 0
- state.tick_timer:resume()
-end
-
-function render_wipe()
- msg.trace("render_wipe()")
- state.osd.data = "" -- allows set_osd to immediately update on enable
- state.osd:remove()
-end
-
-function render()
- msg.trace("rendering")
- local current_screen_sizeX, current_screen_sizeY, aspect = mp.get_osd_size()
- local mouseX, mouseY = get_virt_mouse_pos()
- local now = mp.get_time()
-
- -- check if display changed, if so request reinit
- if not (state.mp_screen_sizeX == current_screen_sizeX
- and state.mp_screen_sizeY == current_screen_sizeY) then
-
- request_init_resize()
-
- state.mp_screen_sizeX = current_screen_sizeX
- state.mp_screen_sizeY = current_screen_sizeY
- end
-
- -- init management
- if state.active_element then
- -- mouse is held down on some element - keep ticking and igore initReq
- -- till it's released, or else the mouse-up (click) will misbehave or
- -- get ignored. that's because osc_init() recreates the osc elements,
- -- but mouse handling depends on the elements staying unmodified
- -- between mouse-down and mouse-up (using the index active_element).
- request_tick()
- elseif state.initREQ then
- osc_init()
- state.initREQ = false
-
- -- store initial mouse position
- if (state.last_mouseX == nil or state.last_mouseY == nil)
- and not (mouseX == nil or mouseY == nil) then
-
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
- end
- end
-
-
- -- fade animation
- if not(state.anitype == nil) then
-
- if (state.anistart == nil) then
- state.anistart = now
- end
-
- if (now < state.anistart + (user_opts.fadeduration/1000)) then
-
- if (state.anitype == "in") then --fade in
- osc_visible(true)
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 255, 0, now)
- elseif (state.anitype == "out") then --fade out
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 0, 255, now)
- end
-
- else
- if (state.anitype == "out") then
- osc_visible(false)
- end
- kill_animation()
- end
- else
- kill_animation()
- end
-
- --mouse show/hide area
- for k,cords in pairs(osc_param.areas["showhide"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide")
- end
- if osc_param.areas["showhide_wc"] then
- for k,cords in pairs(osc_param.areas["showhide_wc"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide_wc")
- end
- else
- set_virt_mouse_area(0, 0, 0, 0, "showhide_wc")
- end
- do_enable_keybindings()
-
- --mouse input area
- local mouse_over_osc = false
-
- for _,cords in ipairs(osc_param.areas["input"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "input")
- end
- if state.osc_visible ~= state.input_enabled then
- if state.osc_visible then
- mp.enable_key_bindings("input")
- else
- mp.disable_key_bindings("input")
- end
- state.input_enabled = state.osc_visible
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
-
- if osc_param.areas["window-controls"] then
- for _,cords in ipairs(osc_param.areas["window-controls"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "window-controls")
- mp.enable_key_bindings("window-controls")
- else
- mp.disable_key_bindings("window-controls")
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- if osc_param.areas["window-controls-title"] then
- for _,cords in ipairs(osc_param.areas["window-controls-title"]) do
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- -- autohide
- if not (state.showtime == nil) and (get_hidetimeout() >= 0) then
- local timeout = state.showtime + (get_hidetimeout()/1000) - now
- if timeout <= 0 then
- if (state.active_element == nil) and not (mouse_over_osc) then
- hide_osc()
- end
- else
- -- the timer is only used to recheck the state and to possibly run
- -- the code above again
- if not state.hide_timer then
- state.hide_timer = mp.add_timeout(0, tick)
- end
- state.hide_timer.timeout = timeout
- -- re-arm
- state.hide_timer:kill()
- state.hide_timer:resume()
- end
- end
-
-
- -- actual rendering
- local ass = assdraw.ass_new()
-
- -- Messages
- render_message(ass)
-
- -- actual OSC
- if state.osc_visible then
- render_elements(ass)
- end
-
- -- submit
- set_osd(osc_param.playresy * osc_param.display_aspect,
- osc_param.playresy, ass.text)
-end
-
---
--- Eventhandling
---
-
-local function element_has_action(element, action)
- return element and element.eventresponder and
- element.eventresponder[action]
-end
-
-function process_event(source, what)
- local action = string.format("%s%s", source,
- what and ("_" .. what) or "")
-
- if what == "down" or what == "press" then
-
- for n = 1, #elements do
-
- if mouse_hit(elements[n]) and
- elements[n].eventresponder and
- (elements[n].eventresponder[source .. "_up"] or
- elements[n].eventresponder[action]) then
-
- if what == "down" then
- state.active_element = n
- state.active_event_source = source
- end
- -- fire the down or press event if the element has one
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
-
- end
- end
-
- elseif what == "up" then
-
- if elements[state.active_element] then
- local n = state.active_element
-
- if n == 0 then
- --click on background (does not work)
- elseif element_has_action(elements[n], action) and
- mouse_hit(elements[n]) then
-
- elements[n].eventresponder[action](elements[n])
- end
-
- --reset active element
- if element_has_action(elements[n], "reset") then
- elements[n].eventresponder["reset"](elements[n])
- end
-
- end
- state.active_element = nil
- state.mouse_down_counter = 0
-
- elseif source == "mouse_move" then
-
- state.mouse_in_window = true
-
- local mouseX, mouseY = get_virt_mouse_pos()
- if (user_opts.minmousemove == 0) or
- (not ((state.last_mouseX == nil) or (state.last_mouseY == nil)) and
- ((math.abs(mouseX - state.last_mouseX) >= user_opts.minmousemove)
- or (math.abs(mouseY - state.last_mouseY) >= user_opts.minmousemove)
- )
- ) then
- show_osc()
- end
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
-
- local n = state.active_element
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
- end
-
- -- ensure rendering after any (mouse) event - icons could change etc
- request_tick()
-end
-
-
-local logo_lines = {
- -- White border
- "{\\c&HE5E5E5&\\p6}m 895 10 b 401 10 0 410 0 905 0 1399 401 1800 895 1800 1390 1800 1790 1399 1790 905 1790 410 1390 10 895 10 {\\p0}",
- -- Purple fill
- "{\\c&H682167&\\p6}m 925 42 b 463 42 87 418 87 880 87 1343 463 1718 925 1718 1388 1718 1763 1343 1763 880 1763 418 1388 42 925 42{\\p0}",
- -- Darker fill
- "{\\c&H430142&\\p6}m 1605 828 b 1605 1175 1324 1456 977 1456 631 1456 349 1175 349 828 349 482 631 200 977 200 1324 200 1605 482 1605 828{\\p0}",
- -- White fill
- "{\\c&HDDDBDD&\\p6}m 1296 910 b 1296 1131 1117 1310 897 1310 676 1310 497 1131 497 910 497 689 676 511 897 511 1117 511 1296 689 1296 910{\\p0}",
- -- Triangle
- "{\\c&H691F69&\\p6}m 762 1113 l 762 708 b 881 776 1000 843 1119 911 1000 978 881 1046 762 1113{\\p0}",
-}
-
-local santa_hat_lines = {
- -- Pompoms
- "{\\c&HC0C0C0&\\p6}m 500 -323 b 491 -322 481 -318 475 -311 465 -312 456 -319 446 -318 434 -314 427 -304 417 -297 410 -290 404 -282 395 -278 390 -274 387 -267 381 -265 377 -261 379 -254 384 -253 397 -244 409 -232 425 -228 437 -228 446 -218 457 -217 462 -216 466 -213 468 -209 471 -205 477 -203 482 -206 491 -211 499 -217 508 -222 532 -235 556 -249 576 -267 584 -272 584 -284 578 -290 569 -305 550 -312 533 -309 523 -310 515 -316 507 -321 505 -323 503 -323 500 -323{\\p0}",
- "{\\c&HE0E0E0&\\p6}m 315 -260 b 286 -258 259 -240 246 -215 235 -210 222 -215 211 -211 204 -188 177 -176 172 -151 170 -139 163 -128 154 -121 143 -103 141 -81 143 -60 139 -46 125 -34 129 -17 132 -1 134 16 142 30 145 56 161 80 181 96 196 114 210 133 231 144 266 153 303 138 328 115 373 79 401 28 423 -24 446 -73 465 -123 483 -174 487 -199 467 -225 442 -227 421 -232 402 -242 384 -254 364 -259 342 -250 322 -260 320 -260 317 -261 315 -260{\\p0}",
- -- Main cap
- "{\\c&H0000F0&\\p6}m 1151 -523 b 1016 -516 891 -458 769 -406 693 -369 624 -319 561 -262 526 -252 465 -235 479 -187 502 -147 551 -135 588 -111 1115 165 1379 232 1909 761 1926 800 1952 834 1987 858 2020 883 2053 912 2065 952 2088 1000 2146 962 2139 919 2162 836 2156 747 2143 662 2131 615 2116 567 2122 517 2120 410 2090 306 2089 199 2092 147 2071 99 2034 64 1987 5 1928 -41 1869 -86 1777 -157 1712 -256 1629 -337 1578 -389 1521 -436 1461 -476 1407 -509 1343 -507 1284 -515 1240 -519 1195 -521 1151 -523{\\p0}",
- -- Cap shadow
- "{\\c&H0000AA&\\p6}m 1657 248 b 1658 254 1659 261 1660 267 1669 276 1680 284 1689 293 1695 302 1700 311 1707 320 1716 325 1726 330 1735 335 1744 347 1752 360 1761 371 1753 352 1754 331 1753 311 1751 237 1751 163 1751 90 1752 64 1752 37 1767 14 1778 -3 1785 -24 1786 -45 1786 -60 1786 -77 1774 -87 1760 -96 1750 -78 1751 -65 1748 -37 1750 -8 1750 20 1734 78 1715 134 1699 192 1694 211 1689 231 1676 246 1671 251 1661 255 1657 248 m 1909 541 b 1914 542 1922 549 1917 539 1919 520 1921 502 1919 483 1918 458 1917 433 1915 407 1930 373 1942 338 1947 301 1952 270 1954 238 1951 207 1946 214 1947 229 1945 239 1939 278 1936 318 1924 356 1923 362 1913 382 1912 364 1906 301 1904 237 1891 175 1887 150 1892 126 1892 101 1892 68 1893 35 1888 2 1884 -9 1871 -20 1859 -14 1851 -6 1854 9 1854 20 1855 58 1864 95 1873 132 1883 179 1894 225 1899 273 1908 362 1910 451 1909 541{\\p0}",
- -- Brim and tip pompom
- "{\\c&HF8F8F8&\\p6}m 626 -191 b 565 -155 486 -196 428 -151 387 -115 327 -101 304 -47 273 2 267 59 249 113 219 157 217 213 215 265 217 309 260 302 285 283 373 264 465 264 555 257 608 252 655 292 709 287 759 294 816 276 863 298 903 340 972 324 1012 367 1061 394 1125 382 1167 424 1213 462 1268 482 1322 506 1385 546 1427 610 1479 662 1510 690 1534 725 1566 752 1611 796 1664 830 1703 880 1740 918 1747 986 1805 1005 1863 991 1897 932 1916 880 1914 823 1945 777 1961 725 1979 673 1957 622 1938 575 1912 534 1862 515 1836 473 1790 417 1755 351 1697 305 1658 266 1633 216 1593 176 1574 138 1539 116 1497 110 1448 101 1402 77 1371 37 1346 -16 1295 15 1254 6 1211 -27 1170 -62 1121 -86 1072 -104 1027 -128 976 -133 914 -130 851 -137 794 -162 740 -181 679 -168 626 -191 m 2051 917 b 1971 932 1929 1017 1919 1091 1912 1149 1923 1214 1970 1254 2000 1279 2027 1314 2066 1325 2139 1338 2212 1295 2254 1238 2281 1203 2287 1158 2282 1116 2292 1061 2273 1006 2229 970 2206 941 2167 938 2138 918{\\p0}",
-}
-
--- called by mpv on every frame
-function tick()
- if state.marginsREQ == true then
- update_margins()
- state.marginsREQ = false
- end
-
- if (not state.enabled) then return end
-
- if (state.idle) then
-
- -- render idle message
- msg.trace("idle message")
- local icon_x, icon_y = 320 - 26, 140
- local line_prefix = ("{\\rDefault\\an7\\1a&H00&\\bord0\\shad0\\pos(%f,%f)}"):format(icon_x, icon_y)
-
- local ass = assdraw.ass_new()
- -- mpv logo
- for i, line in ipairs(logo_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
-
- -- Santa hat
- if is_december and not user_opts.greenandgrumpy then
- for i, line in ipairs(santa_hat_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
- end
-
- ass:new_event()
- ass:pos(320, icon_y+65)
- ass:an(8)
- ass:append("Drop files or URLs to play here.")
- set_osd(640, 360, ass.text)
-
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- state.showhide_enabled = false
- end
-
-
- elseif (state.fullscreen and user_opts.showfullscreen)
- or (not state.fullscreen and user_opts.showwindowed) then
-
- -- render the OSC
- render()
- else
- -- Flush OSD
- render_wipe()
- end
-
- state.tick_last_time = mp.get_time()
-
- if state.anitype ~= nil then
- -- state.anistart can be nil - animation should now start, or it can
- -- be a timestamp when it started. state.idle has no animation.
- if not state.idle and
- (not state.anistart or
- mp.get_time() < 1 + state.anistart + user_opts.fadeduration/1000)
- then
- -- animating or starting, or still within 1s past the deadline
- request_tick()
- else
- kill_animation()
- end
- end
-end
-
-function do_enable_keybindings()
- if state.enabled then
- if not state.showhide_enabled then
- mp.enable_key_bindings("showhide", "allow-vo-dragging+allow-hide-cursor")
- mp.enable_key_bindings("showhide_wc", "allow-vo-dragging+allow-hide-cursor")
- end
- state.showhide_enabled = true
- end
-end
-
-function enable_osc(enable)
- state.enabled = enable
- if enable then
- do_enable_keybindings()
- else
- hide_osc() -- acts immediately when state.enabled == false
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- end
- state.showhide_enabled = false
- end
-end
-
--- duration is observed for the sole purpose of updating chapter markers
--- positions. live streams with chapters are very rare, and the update is also
--- expensive (with request_init), so it's only observed when we have chapters
--- and the user didn't disable the livemarkers option (update_duration_watch).
-function on_duration() request_init() end
-
-local duration_watched = false
-function update_duration_watch()
- local want_watch = user_opts.livemarkers and
- (mp.get_property_number("chapters", 0) or 0) > 0 and
- true or false -- ensure it's a boolean
-
- if (want_watch ~= duration_watched) then
- if want_watch then
- mp.observe_property("duration", nil, on_duration)
- else
- mp.unobserve_property(on_duration)
- end
- duration_watched = want_watch
- end
-end
-
-validate_user_opts()
-update_duration_watch()
-
-mp.register_event("shutdown", shutdown)
-mp.register_event("start-file", request_init)
-mp.observe_property("track-list", nil, request_init)
-mp.observe_property("playlist", nil, request_init)
-mp.observe_property("chapter-list", nil, function()
- update_duration_watch()
- request_init()
-end)
-
-mp.register_script_message("osc-message", show_message)
-mp.register_script_message("osc-chapterlist", function(dur)
- show_message(get_chapterlist(), dur)
-end)
-mp.register_script_message("osc-playlist", function(dur)
- show_message(get_playlist(), dur)
-end)
-mp.register_script_message("osc-tracklist", function(dur)
- local msg = {}
- for k,v in pairs(nicetypes) do
- table.insert(msg, get_tracklist(k))
- end
- show_message(table.concat(msg, '\n\n'), dur)
-end)
-
-mp.observe_property("fullscreen", "bool",
- function(name, val)
- state.fullscreen = val
- state.marginsREQ = true
- request_init_resize()
- end
-)
-mp.observe_property("border", "bool",
- function(name, val)
- state.border = val
- request_init_resize()
- end
-)
-mp.observe_property("window-maximized", "bool",
- function(name, val)
- state.maximized = val
- request_init_resize()
- end
-)
-mp.observe_property("idle-active", "bool",
- function(name, val)
- state.idle = val
- request_tick()
- end
-)
-mp.observe_property("pause", "bool", pause_state)
-mp.observe_property("demuxer-cache-state", "native", cache_state)
-mp.observe_property("vo-configured", "bool", function(name, val)
- request_tick()
-end)
-mp.observe_property("playback-time", "number", function(name, val)
- request_tick()
-end)
-mp.observe_property("osd-dimensions", "native", function(name, val)
- -- (we could use the value instead of re-querying it all the time, but then
- -- we might have to worry about property update ordering)
- request_init_resize()
-end)
-
--- mouse show/hide bindings
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide", "force")
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide_wc", "force")
-do_enable_keybindings()
-
---mouse input bindings
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
- {"shift+mbtn_left", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"mbtn_right", function(e) process_event("mbtn_right", "up") end,
- function(e) process_event("mbtn_right", "down") end},
- -- alias to shift_mbtn_left for single-handed mouse use
- {"mbtn_mid", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"wheel_up", function(e) process_event("wheel_up", "press") end},
- {"wheel_down", function(e) process_event("wheel_down", "press") end},
- {"mbtn_left_dbl", "ignore"},
- {"shift+mbtn_left_dbl", "ignore"},
- {"mbtn_right_dbl", "ignore"},
-}, "input", "force")
-mp.enable_key_bindings("input")
-
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
-}, "window-controls", "force")
-mp.enable_key_bindings("window-controls")
-
-function get_hidetimeout()
- if user_opts.visibility == "always" then
- return -1 -- disable autohide
- end
- return user_opts.hidetimeout
-end
-
-function always_on(val)
- if state.enabled then
- if val then
- show_osc()
- else
- hide_osc()
- end
- end
-end
-
--- mode can be auto/always/never/cycle
--- the modes only affect internal variables and not stored on its own.
-function visibility_mode(mode, no_osd)
- if mode == "cycle" then
- if not state.enabled then
- mode = "auto"
- elseif user_opts.visibility ~= "always" then
- mode = "always"
- else
- mode = "never"
- end
- end
-
- if mode == "auto" then
- always_on(false)
- enable_osc(true)
- elseif mode == "always" then
- enable_osc(true)
- always_on(true)
- elseif mode == "never" then
- enable_osc(false)
- else
- msg.warn("Ignoring unknown visibility mode '" .. mode .. "'")
- return
- end
-
- user_opts.visibility = mode
- utils.shared_script_property_set("osc-visibility", mode)
-
- if not no_osd and tonumber(mp.get_property("osd-level")) >= 1 then
- mp.osd_message("OSC visibility: " .. mode)
- end
-
- -- Reset the input state on a mode change. The input state will be
- -- recalcuated on the next render cycle, except in 'never' mode where it
- -- will just stay disabled.
- mp.disable_key_bindings("input")
- mp.disable_key_bindings("window-controls")
- state.input_enabled = false
-
- update_margins()
- request_tick()
-end
-
-visibility_mode(user_opts.visibility, true)
-mp.register_script_message("osc-visibility", visibility_mode)
-mp.add_key_binding(nil, "visibility", function() visibility_mode("cycle") end)
-
-set_virt_mouse_area(0, 0, 0, 0, "input")
-set_virt_mouse_area(0, 0, 0, 0, "window-controls")
\ No newline at end of file
diff --git a/osc-style/osc-iina-box-knob-or-bar-15.lua b/osc-style/osc-iina-box-knob-or-bar-15.lua
deleted file mode 100644
index 05af288..0000000
--- a/osc-style/osc-iina-box-knob-or-bar-15.lua
+++ /dev/null
@@ -1,2893 +0,0 @@
---此lua脚本由软件No1修改并提供支持
---This lua script is modified by www.rjno1.com
---此lua脚本原始版本: github.com/mpv-player/mpv/blob/master/player/lua/osc.lua
---The original version of this lua script:github.com/mpv-player/mpv/blob/master/player/lua/osc.lua
-local assdraw = require 'mp.assdraw'
-local msg = require 'mp.msg'
-local opt = require 'mp.options'
-local utils = require 'mp.utils'
-
---
--- Parameters
---
--- default user option values
--- do not touch, change them in osc.conf
-local user_opts = {
- showwindowed = true, -- show OSC when windowed?
- showfullscreen = true, -- show OSC when fullscreen?
- scalewindowed = 1, -- scaling of the controller when windowed
- scalefullscreen = 1, -- scaling of the controller when fullscreen
- scaleforcedwindow = 2, -- scaling when rendered on a forced window
- vidscale = true, -- scale the controller with the video?
- valign = 0.8, -- vertical alignment, -1 (top) to 1 (bottom)
- halign = 0, -- horizontal alignment, -1 (left) to 1 (right)
- barmargin = 0, -- vertical margin of top/bottombar
- boxalpha = 15, -- alpha of the background box,
- -- 0 (opaque) to 255 (fully transparent)
- hidetimeout = 500, -- duration in ms until the OSC hides if no
- -- mouse movement. enforced non-negative for the
- -- user, but internally negative is "always-on".
- fadeduration = 200, -- duration of fade out in ms, 0 = no fade
- deadzonesize = 0.5, -- size of deadzone
- minmousemove = 0, -- minimum amount of pixels the mouse has to
- -- move between ticks to make the OSC show up
- iamaprogrammer = false, -- use native mpv values and disable OSC
- -- internal track list management (and some
- -- functions that depend on it)
- layout = "box",
- seekbarstyle = "bar", -- bar, diamond or knob
- seekbarhandlesize = 0.6, -- size ratio of the diamond and knob handle
- seekrangestyle = "inverted",-- bar, line, slider, inverted or none
- seekrangeseparate = true, -- wether the seekranges overlay on the bar-style seekbar
- seekrangealpha = 200, -- transparency of seekranges
- seekbarkeyframes = true, -- use keyframes when dragging the seekbar
- title = "${media-title}", -- string compatible with property-expansion
- -- to be shown as OSC title
- rjno1title = "MPV-EASY Player - ${filename}", --用来修改显示-口x时的标题
- tooltipborder = 1, -- border of tooltip in bottom/topbar
- timetotal = false, -- display total time instead of remaining time?
- timems = false, -- display timecodes with milliseconds?
- visibility = "auto", -- only used at init to set visibility_mode(...)
- boxmaxchars = 145, -- title crop threshold for box layout
- boxvideo = false, -- apply osc_param.video_margins to video
- windowcontrols = "auto", -- whether to show window controls
- windowcontrols_alignment = "right", -- which side to show window controls on
- greenandgrumpy = false, -- disable santa hat
- livemarkers = true, -- update seekbar chapter markers on duration change
-}
-
--- read options from config and command-line
-opt.read_options(user_opts, "osc", function(list) update_options(list) end)
-
-local osc_param = { -- calculated by osc_init()
- playresy = 0, -- canvas size Y
- playresx = 0, -- canvas size X
- display_aspect = 1,
- unscaled_y = 0,
- areas = {},
- video_margins = {
- l = 0, r = 0, t = 0, b = 0, -- left/right/top/bottom
- },
-}
-
-local osc_styles = {
-
- rjno150Buttons = "{\\blur0\\bord0\\1c&H4F4F4F\\3c&HFFFFFF\\fs42\\fnmpv-osd-symbols}",
- rjno140Buttons = "{\\blur0\\bord0\\1c&H4F4F4F\\3c&HFFFFFF\\fs28\\fnmpv-osd-symbols}",
- rjno130Buttons = "{\\blur0\\bord0\\1c&H4F4F4F\\3c&HFFFFFF\\fs26\\fnmpv-osd-symbols}",
- rjno125Buttons = "{\\blur0\\bord0\\1c&H4F4F4F\\3c&HFFFFFF\\fs25\\fnmpv-osd-symbols}",
- rjno120Buttons = "{\\blur0\\bord0\\1c&H4F4F4F\\3c&HFFFFFF\\fs20\\fnmpv-osd-symbols}",
- rjno116Buttons = "{\\blur0\\bord0\\1c&H4D4C4D\\3c&HFFFFFF\\fs16\\fnmpv-osd-symbols}",
- rjno1box = "{\\rDefault\\blur0\\bord0\\1c&HF0F0F0\\3c&HF0F0F0}",
- rjno1timecodes = "{\\blur0\\bord0\\1c&HF89922\\3c&HFFFFFF\\fs13}",
- rjno1timePosBar = "{\\blur0\\bord".. user_opts.tooltipborder .."\\1c&HFFFFFF\\3c&H000000\\fs18}",
- rjno1vidtitleBar = "{\\blur0\\bord0\\1c&HB8B8B8\\3c&HFFFFFF\\fs13\\q2}",
-
- rjno1wcButtons = "{\\1c&H4F4F4F\\fs24\\fnmpv-osd-symbols}",
- rjno1wcTitle = "{\\1c&H4F4F4F\\fs18\\q2}",
- rjno1wcBar = "{\\1c&HFFFFFF}",
-
- bigButtons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs50\\fnmpv-osd-symbols}",
- smallButtonsL = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs19\\fnmpv-osd-symbols}",
- smallButtonsLlabel = "{\\fscx105\\fscy105\\fn" .. mp.get_property("options/osd-font") .. "}",
- smallButtonsR = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs30\\fnmpv-osd-symbols}",
- topButtons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs12\\fnmpv-osd-symbols}",
-
- elementDown = "{\\1c&H999999}",
- timecodes = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs20}",
- vidtitle = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs12\\q2}",
- box = "{\\rDefault\\blur0\\bord1\\1c&H000000\\3c&HFFFFFF}",
-
- topButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\fnmpv-osd-symbols}",
- smallButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs28\\fnmpv-osd-symbols}",
- timecodesBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs27}",
- timePosBar = "{\\blur0\\bord".. user_opts.tooltipborder .."\\1c&HFFFFFF\\3c&H000000\\fs30}",
- vidtitleBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\q2}",
-
- wcButtons = "{\\1c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- wcTitle = "{\\1c&HFFFFFF\\fs24\\q2}",
- wcBar = "{\\1c&H000000}",
-}
-
--- internal states, do not touch
-local state = {
- showtime, -- time of last invocation (last mouse move)
- osc_visible = false,
- anistart, -- time when the animation started
- anitype, -- current type of animation
- animation, -- current animation alpha
- mouse_down_counter = 0, -- used for softrepeat
- active_element = nil, -- nil = none, 0 = background, 1+ = see elements[]
- active_event_source = nil, -- the "button" that issued the current event
- rightTC_trem = not user_opts.timetotal, -- if the right timecode should display total or remaining time
- tc_ms = user_opts.timems, -- Should the timecodes display their time with milliseconds
- mp_screen_sizeX, mp_screen_sizeY, -- last screen-resolution, to detect resolution changes to issue reINITs
- initREQ = false, -- is a re-init request pending?
- marginsREQ = false, -- is a margins update pending?
- last_mouseX, last_mouseY, -- last mouse position, to detect significant mouse movement
- mouse_in_window = false,
- message_text,
- message_hide_timer,
- fullscreen = false,
- tick_timer = nil,
- tick_last_time = 0, -- when the last tick() was run
- hide_timer = nil,
- cache_state = nil,
- idle = false,
- enabled = true,
- input_enabled = true,
- showhide_enabled = false,
- dmx_cache = 0,
- using_video_margins = false,
- border = true,
- maximized = false,
- osd = mp.create_osd_overlay("ass-events"),
-}
-
-local window_control_box_width = 80
-local tick_delay = 0.03
-
-local is_december = os.date("*t").month == 12
-
---
--- Helperfunctions
---
-
-function kill_animation()
- state.anistart = nil
- state.animation = nil
- state.anitype = nil
-end
-
-function set_osd(res_x, res_y, text)
- if state.osd.res_x == res_x and
- state.osd.res_y == res_y and
- state.osd.data == text then
- return
- end
- state.osd.res_x = res_x
- state.osd.res_y = res_y
- state.osd.data = text
- state.osd.z = 1000
- state.osd:update()
-end
-
-local margins_opts = {
- {"l", "video-margin-ratio-left"},
- {"r", "video-margin-ratio-right"},
- {"t", "video-margin-ratio-top"},
- {"b", "video-margin-ratio-bottom"},
-}
-
--- scale factor for translating between real and virtual ASS coordinates
-function get_virt_scale_factor()
- local w, h = mp.get_osd_size()
- if w <= 0 or h <= 0 then
- return 0, 0
- end
- return osc_param.playresx / w, osc_param.playresy / h
-end
-
--- return mouse position in virtual ASS coordinates (playresx/y)
-function get_virt_mouse_pos()
- if state.mouse_in_window then
- local sx, sy = get_virt_scale_factor()
- local x, y = mp.get_mouse_pos()
- return x * sx, y * sy
- else
- return -1, -1
- end
-end
-
-function set_virt_mouse_area(x0, y0, x1, y1, name)
- local sx, sy = get_virt_scale_factor()
- mp.set_mouse_area(x0 / sx, y0 / sy, x1 / sx, y1 / sy, name)
-end
-
-function scale_value(x0, x1, y0, y1, val)
- local m = (y1 - y0) / (x1 - x0)
- local b = y0 - (m * x0)
- return (m * val) + b
-end
-
--- returns hitbox spanning coordinates (top left, bottom right corner)
--- according to alignment
-function get_hitbox_coords(x, y, an, w, h)
-
- local alignments = {
- [1] = function () return x, y-h, x+w, y end,
- [2] = function () return x-(w/2), y-h, x+(w/2), y end,
- [3] = function () return x-w, y-h, x, y end,
-
- [4] = function () return x, y-(h/2), x+w, y+(h/2) end,
- [5] = function () return x-(w/2), y-(h/2), x+(w/2), y+(h/2) end,
- [6] = function () return x-w, y-(h/2), x, y+(h/2) end,
-
- [7] = function () return x, y, x+w, y+h end,
- [8] = function () return x-(w/2), y, x+(w/2), y+h end,
- [9] = function () return x-w, y, x, y+h end,
- }
-
- return alignments[an]()
-end
-
-function get_hitbox_coords_geo(geometry)
- return get_hitbox_coords(geometry.x, geometry.y, geometry.an,
- geometry.w, geometry.h)
-end
-
-function get_element_hitbox(element)
- return element.hitbox.x1, element.hitbox.y1,
- element.hitbox.x2, element.hitbox.y2
-end
-
-function mouse_hit(element)
- return mouse_hit_coords(get_element_hitbox(element))
-end
-
-function mouse_hit_coords(bX1, bY1, bX2, bY2)
- local mX, mY = get_virt_mouse_pos()
- return (mX >= bX1 and mX <= bX2 and mY >= bY1 and mY <= bY2)
-end
-
-function limit_range(min, max, val)
- if val > max then
- val = max
- elseif val < min then
- val = min
- end
- return val
-end
-
--- translate value into element coordinates
-function get_slider_ele_pos_for(element, val)
-
- local ele_pos = scale_value(
- element.slider.min.value, element.slider.max.value,
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- val)
-
- return limit_range(
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- ele_pos)
-end
-
--- translates global (mouse) coordinates to value
-function get_slider_value_at(element, glob_pos)
-
- local val = scale_value(
- element.slider.min.glob_pos, element.slider.max.glob_pos,
- element.slider.min.value, element.slider.max.value,
- glob_pos)
-
- return limit_range(
- element.slider.min.value, element.slider.max.value,
- val)
-end
-
--- get value at current mouse position
-function get_slider_value(element)
- return get_slider_value_at(element, get_virt_mouse_pos())
-end
-
-function countone(val)
- if not (user_opts.iamaprogrammer) then
- val = val + 1
- end
- return val
-end
-
--- align: -1 .. +1
--- frame: size of the containing area
--- obj: size of the object that should be positioned inside the area
--- margin: min. distance from object to frame (as long as -1 <= align <= +1)
-function get_align(align, frame, obj, margin)
- return (frame / 2) + (((frame / 2) - margin - (obj / 2)) * align)
-end
-
--- multiplies two alpha values, formular can probably be improved
-function mult_alpha(alphaA, alphaB)
- return 255 - (((1-(alphaA/255)) * (1-(alphaB/255))) * 255)
-end
-
-function add_area(name, x1, y1, x2, y2)
- -- create area if needed
- if (osc_param.areas[name] == nil) then
- osc_param.areas[name] = {}
- end
- table.insert(osc_param.areas[name], {x1=x1, y1=y1, x2=x2, y2=y2})
-end
-
-function ass_append_alpha(ass, alpha, modifier)
- local ar = {}
-
- for ai, av in pairs(alpha) do
- av = mult_alpha(av, modifier)
- if state.animation then
- av = mult_alpha(av, state.animation)
- end
- ar[ai] = av
- end
-
- ass:append(string.format("{\\1a&H%X&\\2a&H%X&\\3a&H%X&\\4a&H%X&}",
- ar[1], ar[2], ar[3], ar[4]))
-end
-
-function ass_draw_rr_h_cw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_cw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_cw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-function ass_draw_rr_h_ccw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_ccw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_ccw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-
---
--- Tracklist Management
---
-
-local nicetypes = {video = "Video", audio = "Audio", sub = "Subtitle"}
-
--- updates the OSC internal playlists, should be run each time the track-layout changes
-function update_tracklist()
- local tracktable = mp.get_property_native("track-list", {})
-
- -- by osc_id
- tracks_osc = {}
- tracks_osc.video, tracks_osc.audio, tracks_osc.sub = {}, {}, {}
- -- by mpv_id
- tracks_mpv = {}
- tracks_mpv.video, tracks_mpv.audio, tracks_mpv.sub = {}, {}, {}
- for n = 1, #tracktable do
- if not (tracktable[n].type == "unknown") then
- local type = tracktable[n].type
- local mpv_id = tonumber(tracktable[n].id)
-
- -- by osc_id
- table.insert(tracks_osc[type], tracktable[n])
-
- -- by mpv_id
- tracks_mpv[type][mpv_id] = tracktable[n]
- tracks_mpv[type][mpv_id].osc_id = #tracks_osc[type]
- end
- end
-end
-
--- return a nice list of tracks of the given type (video, audio, sub)
-function get_tracklist(type)
- local msg = "Available " .. nicetypes[type] .. " Tracks: "
- if #tracks_osc[type] == 0 then
- msg = msg .. "none"
- else
- for n = 1, #tracks_osc[type] do
- local track = tracks_osc[type][n]
- local lang, title, selected = "unknown", "", "○"
- if not(track.lang == nil) then lang = track.lang end
- if not(track.title == nil) then title = track.title end
- if (track.id == tonumber(mp.get_property(type))) then
- selected = "●"
- end
- msg = msg.."\n"..selected.." "..n..": ["..lang.."] "..title
- end
- end
- return msg
-end
-
--- relatively change the track of given by tracks
- --(+1 -> next, -1 -> previous)
-function set_track(type, next)
- local current_track_mpv, current_track_osc
- if (mp.get_property(type) == "no") then
- current_track_osc = 0
- else
- current_track_mpv = tonumber(mp.get_property(type))
- current_track_osc = tracks_mpv[type][current_track_mpv].osc_id
- end
- local new_track_osc = (current_track_osc + next) % (#tracks_osc[type] + 1)
- local new_track_mpv
- if new_track_osc == 0 then
- new_track_mpv = "no"
- else
- new_track_mpv = tracks_osc[type][new_track_osc].id
- end
-
- mp.commandv("set", type, new_track_mpv)
-
- if (new_track_osc == 0) then
- show_message(nicetypes[type] .. " Track: none")
- else
- show_message(nicetypes[type] .. " Track: "
- .. new_track_osc .. "/" .. #tracks_osc[type]
- .. " [".. (tracks_osc[type][new_track_osc].lang or "unknown") .."] "
- .. (tracks_osc[type][new_track_osc].title or ""))
- end
-end
-
--- get the currently selected track of , OSC-style counted
-function get_track(type)
- local track = mp.get_property(type)
- if track ~= "no" and track ~= nil then
- local tr = tracks_mpv[type][tonumber(track)]
- if tr then
- return tr.osc_id
- end
- end
- return 0
-end
-
--- WindowControl helpers
-function window_controls_enabled()
- val = user_opts.windowcontrols
- if val == "auto" then
- return not state.border
- else
- return val ~= "no"
- end
-end
-
-function window_controls_alignment()
- return user_opts.windowcontrols_alignment
-end
-
---
--- Element Management
---
-
-local elements = {}
-
-function prepare_elements()
-
- -- remove elements without layout or invisble
- local elements2 = {}
- for n, element in pairs(elements) do
- if not (element.layout == nil) and (element.visible) then
- table.insert(elements2, element)
- end
- end
- elements = elements2
-
- function elem_compare (a, b)
- return a.layout.layer < b.layout.layer
- end
-
- table.sort(elements, elem_compare)
-
-
- for _,element in pairs(elements) do
-
- local elem_geo = element.layout.geometry
-
- -- Calculate the hitbox
- local bX1, bY1, bX2, bY2 = get_hitbox_coords_geo(elem_geo)
- element.hitbox = {x1 = bX1, y1 = bY1, x2 = bX2, y2 = bY2}
-
- local style_ass = assdraw.ass_new()
-
- -- prepare static elements
- style_ass:append("{}") -- hack to troll new_event into inserting a \n
- style_ass:new_event()
- style_ass:pos(elem_geo.x, elem_geo.y)
- style_ass:an(elem_geo.an)
- style_ass:append(element.layout.style)
-
- element.style_ass = style_ass
-
- local static_ass = assdraw.ass_new()
-
-
- if (element.type == "box") then
- --draw box
- static_ass:draw_start()
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h,
- element.layout.box.radius, element.layout.box.hexagon)
- static_ass:draw_stop()
-
- elseif (element.type == "slider") then
- --draw static slider parts
-
- local r1 = 0
- local r2 = 0
- local slider_lo = element.layout.slider
- -- offset between element outline and drag-area
- local foV = slider_lo.border + slider_lo.gap
-
- -- calculate positions of min and max points
- if (slider_lo.stype ~= "bar") then
- r1 = elem_geo.h / 2
- element.slider.min.ele_pos = elem_geo.h / 2
- element.slider.max.ele_pos = elem_geo.w - (elem_geo.h / 2)
- if (slider_lo.stype == "diamond") then
- r2 = (elem_geo.h - 2 * slider_lo.border) / 2
- elseif (slider_lo.stype == "knob") then
- r2 = r1
- end
- else
- element.slider.min.ele_pos =
- slider_lo.border + slider_lo.gap
- element.slider.max.ele_pos =
- elem_geo.w - (slider_lo.border + slider_lo.gap)
- end
-
- element.slider.min.glob_pos =
- element.hitbox.x1 + element.slider.min.ele_pos
- element.slider.max.glob_pos =
- element.hitbox.x1 + element.slider.max.ele_pos
-
- -- -- --
-
- static_ass:draw_start()
-
- -- the box
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h, r1, slider_lo.stype == "diamond")
-
- -- the "hole"
- ass_draw_rr_h_ccw(static_ass, slider_lo.border, slider_lo.border,
- elem_geo.w - slider_lo.border, elem_geo.h - slider_lo.border,
- r2, slider_lo.stype == "diamond")
-
- -- marker nibbles
- if not (element.slider.markerF == nil) and (slider_lo.gap > 0) then
- local markers = element.slider.markerF()
- for _,marker in pairs(markers) do
- if (marker > element.slider.min.value) and
- (marker < element.slider.max.value) then
-
- local s = get_slider_ele_pos_for(element, marker)
-
- if (slider_lo.gap > 1) then -- draw triangles
-
- local a = slider_lo.gap / 0.5 --0.866
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:move_to(s - (a/2), slider_lo.border)
- static_ass:line_to(s + (a/2), slider_lo.border)
- static_ass:line_to(s, foV)
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:move_to(s - (a/2),
- elem_geo.h - slider_lo.border)
- static_ass:line_to(s,
- elem_geo.h - foV)
- static_ass:line_to(s + (a/2),
- elem_geo.h - slider_lo.border)
- end
-
- else -- draw 2x1px nibbles
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:rect_cw(s - 1, slider_lo.border,
- s + 1, slider_lo.border + slider_lo.gap);
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:rect_cw(s - 1,
- elem_geo.h -slider_lo.border -slider_lo.gap,
- s + 1, elem_geo.h - slider_lo.border);
- end
- end
- end
- end
- end
- end
-
- element.static_ass = static_ass
-
-
- -- if the element is supposed to be disabled,
- -- style it accordingly and kill the eventresponders
- if not (element.enabled) then
- element.layout.alpha[1] = 136
- element.eventresponder = nil
- end
- end
-end
-
-
---
--- Element Rendering
---
-
--- returns nil or a chapter element from the native property chapter-list
-function get_chapter(possec)
- local cl = mp.get_property_native("chapter-list", {})
- local ch = nil
-
- -- chapters might not be sorted by time. find nearest-before/at possec
- for n=1, #cl do
- if possec >= cl[n].time and (not ch or cl[n].time > ch.time) then
- ch = cl[n]
- end
- end
- return ch
-end
-
-function render_elements(master_ass)
-
- -- when the slider is dragged or hovered and we have a target chapter name
- -- then we use it instead of the normal title. we calculate it before the
- -- render iterations because the title may be rendered before the slider.
- state.forced_title = nil
- local se, ae = state.slider_element, elements[state.active_element]
- if se and (ae == se or (not ae and mouse_hit(se))) then
- local dur = mp.get_property_number("duration", 0)
- if dur > 0 then
- local possec = get_slider_value(se) * dur / 100 -- of mouse pos
- local ch = get_chapter(possec)
- if ch and ch.title and ch.title ~= "" then
- state.forced_title = "Chapter: " .. ch.title
- end
- end
- end
-
- for n=1, #elements do
- local element = elements[n]
-
- local style_ass = assdraw.ass_new()
- style_ass:merge(element.style_ass)
- ass_append_alpha(style_ass, element.layout.alpha, 0)
-
- if element.eventresponder and (state.active_element == n) then
-
- -- run render event functions
- if not (element.eventresponder.render == nil) then
- element.eventresponder.render(element)
- end
-
- if mouse_hit(element) then
- -- mouse down styling
- if (element.styledown) then
- style_ass:append(osc_styles.elementDown)
- end
-
- if (element.softrepeat) and (state.mouse_down_counter >= 15
- and state.mouse_down_counter % 5 == 0) then
-
- element.eventresponder[state.active_event_source.."_down"](element)
- end
- state.mouse_down_counter = state.mouse_down_counter + 1
- end
-
- end
-
- local elem_ass = assdraw.ass_new()
-
- elem_ass:merge(style_ass)
-
- if not (element.type == "button") then
- elem_ass:merge(element.static_ass)
- end
-
- if (element.type == "slider") then
-
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- local s_min = element.slider.min.value
- local s_max = element.slider.max.value
-
- -- draw pos marker
- local foH, xp
- local pos = element.slider.posF()
- local foV = slider_lo.border + slider_lo.gap
- local innerH = elem_geo.h - (2 * foV)
- local seekRanges = element.slider.seekRangesF()
- local seekRangeLineHeight = innerH / 5
-
- if slider_lo.stype ~= "bar" then
- foH = elem_geo.h / 2
- else
- foH = slider_lo.border + slider_lo.gap
- end
-
- if pos then
- xp = get_slider_ele_pos_for(element, pos)
-
- if slider_lo.stype ~= "bar" then
- local r = (user_opts.seekbarhandlesize * innerH) / 2
- ass_draw_rr_h_cw(elem_ass, xp - r, foH - r,
- xp + r, foH + r,
- r, slider_lo.stype == "diamond")
- else
- local h = 0
- if seekRanges and user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- h = seekRangeLineHeight
- end
- elem_ass:rect_cw(foH, foV, xp, elem_geo.h - foV - h)
-
- if seekRanges and not user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- -- Punch holes for the seekRanges to be drawn later
- for _,range in pairs(seekRanges) do
- if range["start"] < pos then
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = xp
-
- if pos > range["end"] then
- pend = get_slider_ele_pos_for(element, range["end"])
- end
- elem_ass:rect_ccw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- end
- end
- end
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, foH - innerH / 6, foH - innerH / 6,
- xp, foH + innerH / 6,
- innerH / 6, slider_lo.stype == "diamond", 0)
- ass_draw_rr_h_cw(elem_ass, xp, foH - innerH / 15,
- elem_geo.w - foH + innerH / 15, foH + innerH / 15,
- 0, slider_lo.stype == "diamond", innerH / 15)
- for _,range in pairs(seekRanges or {}) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
- ass_draw_rr_h_ccw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- end
- end
- end
-
- if seekRanges then
- if slider_lo.rtype ~= "inverted" then
- elem_ass:draw_stop()
- elem_ass:merge(element.style_ass)
- ass_append_alpha(elem_ass, element.layout.alpha, user_opts.seekrangealpha)
- elem_ass:merge(element.static_ass)
- end
-
- for _,range in pairs(seekRanges) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- elseif slider_lo.rtype == "line" then
- if slider_lo.stype == "bar" then
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- else
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 8, foH - innerH / 8,
- pend + innerH / 8, foH + innerH / 8,
- innerH / 8, slider_lo.stype == "diamond")
- end
- elseif slider_lo.rtype == "bar" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 2, foV,
- pend + innerH / 2, foV + innerH,
- innerH / 2, slider_lo.stype == "diamond")
- elseif range["end"] >= (pos or 0) then
- elem_ass:rect_cw(pstart, foV, pend, elem_geo.h - foV)
- else
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- elseif slider_lo.rtype == "inverted" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_ccw(elem_ass, pstart, (elem_geo.h / 2) - 1, pend,
- (elem_geo.h / 2) + 1,
- 1, slider_lo.stype == "diamond")
- else
- elem_ass:rect_ccw(pstart, (elem_geo.h / 2) - 1, pend, (elem_geo.h / 2) + 1)
- end
- end
- end
- end
-
- elem_ass:draw_stop()
-
- -- add tooltip
- if not (element.slider.tooltipF == nil) then
-
- if mouse_hit(element) then
- local sliderpos = get_slider_value(element)
- local tooltiplabel = element.slider.tooltipF(sliderpos)
-
- local an = slider_lo.tooltip_an
-
- local ty
-
- if (an == 2) then
- ty = element.hitbox.y1 - slider_lo.border
- else
- ty = element.hitbox.y1 + elem_geo.h/2
- end
-
- local tx = get_virt_mouse_pos()
- if (slider_lo.adjust_tooltip) then
- if (an == 2) then
- if (sliderpos < (s_min + 3)) then
- an = an - 1
- elseif (sliderpos > (s_max - 3)) then
- an = an + 1
- end
- elseif (sliderpos > (s_max-s_min)/2) then
- an = an + 1
- tx = tx - 5
- else
- an = an - 1
- tx = tx + 10
- end
- end
-
- -- tooltip label
- elem_ass:new_event()
- elem_ass:pos(tx, ty)
- elem_ass:an(an)
- elem_ass:append(slider_lo.tooltip_style)
- ass_append_alpha(elem_ass, slider_lo.alpha, 0)
- elem_ass:append(tooltiplabel)
-
- end
- end
-
- elseif (element.type == "button") then
-
- local buttontext
- if type(element.content) == "function" then
- buttontext = element.content() -- function objects
- elseif not (element.content == nil) then
- buttontext = element.content -- text objects
- end
-
- --匹配:(XXX) unknows 替换成:(XXX),注意XXX只能为0-3个字符
- buttontext = buttontext:gsub(":%((.?.?.?)%) unknown ", ":%(%1%)") --gsub("%) unknown %(\"", "")
-
- local maxchars = element.layout.button.maxchars
- if not (maxchars == nil) and (#buttontext > maxchars) then
- local max_ratio = 1.25 -- up to 25% more chars while shrinking
- local limit = math.max(0, math.floor(maxchars * max_ratio) - 3)
- if (#buttontext > limit) then
- while (#buttontext > limit) do
- buttontext = buttontext:gsub(".[\128-\191]*$", "")
- end
- buttontext = buttontext .. "..."
- end
- local _, nchars2 = buttontext:gsub(".[\128-\191]*", "")
- local stretch = (maxchars/#buttontext)*100
- buttontext = string.format("{\\fscx%f}",
- (maxchars/#buttontext)*100) .. buttontext
- end
-
- elem_ass:append(buttontext)
- end
-
- master_ass:merge(elem_ass)
- end
-end
-
---
--- Message display
---
-
--- pos is 1 based
-function limited_list(prop, pos)
- local proplist = mp.get_property_native(prop, {})
- local count = #proplist
- if count == 0 then
- return count, proplist
- end
-
- local fs = tonumber(mp.get_property('options/osd-font-size'))
- local max = math.ceil(osc_param.unscaled_y*0.75 / fs)
- if max % 2 == 0 then
- max = max - 1
- end
- local delta = math.ceil(max / 2) - 1
- local begi = math.max(math.min(pos - delta, count - max + 1), 1)
- local endi = math.min(begi + max - 1, count)
-
- local reslist = {}
- for i=begi, endi do
- local item = proplist[i]
- item.current = (i == pos) and true or nil
- table.insert(reslist, item)
- end
- return count, reslist
-end
-
-function get_playlist()
- local pos = mp.get_property_number('playlist-pos', 0) + 1
- local count, limlist = limited_list('playlist', pos)
- if count == 0 then
- return 'Empty playlist.'
- end
-
- local message = string.format('Playlist [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local title = v.title
- local _, filename = utils.split_path(v.filename)
- if title == nil then
- title = filename
- end
- message = string.format('%s %s %s\n', message,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function get_chapterlist()
- local pos = mp.get_property_number('chapter', 0) + 1
- local count, limlist = limited_list('chapter-list', pos)
- if count == 0 then
- return 'No chapters.'
- end
-
- local message = string.format('Chapters [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local time = mp.format_time(v.time)
- local title = v.title
- if title == nil then
- title = string.format('Chapter %02d', i)
- end
- message = string.format('%s[%s] %s %s\n', message, time,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function show_message(text, duration)
-
- --print("text: "..text.." duration: " .. duration)
- if duration == nil then
- duration = tonumber(mp.get_property("options/osd-duration")) / 1000
- elseif not type(duration) == "number" then
- print("duration: " .. duration)
- end
-
- -- cut the text short, otherwise the following functions
- -- may slow down massively on huge input
- text = string.sub(text, 0, 4000)
-
- -- replace actual linebreaks with ASS linebreaks
- text = string.gsub(text, "\n", "\\N")
-
- state.message_text = text
-
- if not state.message_hide_timer then
- state.message_hide_timer = mp.add_timeout(0, request_tick)
- end
- state.message_hide_timer:kill()
- state.message_hide_timer.timeout = duration
- state.message_hide_timer:resume()
- request_tick()
-end
-
-function render_message(ass)
- if state.message_hide_timer and state.message_hide_timer:is_enabled() and
- state.message_text
- then
- local _, lines = string.gsub(state.message_text, "\\N", "")
-
- local fontsize = tonumber(mp.get_property("options/osd-font-size"))
- local outline = tonumber(mp.get_property("options/osd-border-size"))
- local maxlines = math.ceil(osc_param.unscaled_y*0.75 / fontsize)
- local counterscale = osc_param.playresy / osc_param.unscaled_y
-
- fontsize = fontsize * counterscale / math.max(0.65 + math.min(lines/maxlines, 1), 1)
- outline = outline * counterscale / math.max(0.75 + math.min(lines/maxlines, 1)/2, 1)
-
- local style = "{\\bord" .. outline .. "\\fs" .. fontsize .. "}"
-
-
- ass:new_event()
- ass:append(style .. state.message_text)
- else
- state.message_text = nil
- end
-end
-
---
--- Initialisation and Layout
---
-
-function new_element(name, type)
- elements[name] = {}
- elements[name].type = type
-
- -- add default stuff
- elements[name].eventresponder = {}
- elements[name].visible = true
- elements[name].enabled = true
- elements[name].softrepeat = false
- elements[name].styledown = (type == "button")
- elements[name].state = {}
-
- if (type == "slider") then
- elements[name].slider = {min = {value = 0}, max = {value = 100}}
- end
-
-
- return elements[name]
-end
-
-function add_layout(name)
- if not (elements[name] == nil) then
- -- new layout
- elements[name].layout = {}
-
- -- set layout defaults
- elements[name].layout.layer = 50
- elements[name].layout.alpha = {[1] = 0, [2] = 255, [3] = 255, [4] = 255}
-
- if (elements[name].type == "button") then
- elements[name].layout.button = {
- maxchars = nil,
- }
- elseif (elements[name].type == "slider") then
- -- slider defaults
- elements[name].layout.slider = {
- border = 1,
- gap = 1,
- nibbles_top = true,
- nibbles_bottom = true,
- stype = "slider",
- adjust_tooltip = true,
- tooltip_style = "",
- tooltip_an = 2,
- alpha = {[1] = 0, [2] = 255, [3] = 88, [4] = 255},
- }
- elseif (elements[name].type == "box") then
- elements[name].layout.box = {radius = 0, hexagon = false}
- end
-
- return elements[name].layout
- else
- msg.error("Can't add_layout to element \""..name.."\", doesn't exist.")
- end
-end
-
--- Window Controls
-function window_controls(topbar)
- local wc_geo = {
- x = 0,
- -- -2去除默认情况下上方和边框之间的4px间隔
- y = 30 + user_opts.barmargin -2,
- an = 1,
- w = osc_param.playresx,
- h = 30,
- }
-
- local alignment = window_controls_alignment()
- local controlbox_w = window_control_box_width
- local titlebox_w = wc_geo.w - controlbox_w
-
- -- Default alignment is "right"
- local controlbox_left = wc_geo.w - controlbox_w
- local titlebox_left = wc_geo.x
- local titlebox_right = wc_geo.w - controlbox_w
-
- if alignment == "left" then
- controlbox_left = wc_geo.x
- titlebox_left = wc_geo.x + controlbox_w
- titlebox_right = wc_geo.w
- end
-
- add_area("window-controls",
- get_hitbox_coords(controlbox_left, wc_geo.y, wc_geo.an,
- controlbox_w, wc_geo.h))
-
- local lo
-
- -- Background Bar
- new_element("wcbar", "box")
- lo = add_layout("wcbar")
- lo.geometry = wc_geo
- lo.layer = 10
- lo.style = osc_styles.rjno1wcBar
- lo.alpha[1] = user_opts.boxalpha
-
- local button_y = wc_geo.y - (wc_geo.h / 2)
- local first_geo =
- {x = controlbox_left + 5, y = button_y, an = 4, w = 25, h = 25}
- local second_geo =
- {x = controlbox_left + 30, y = button_y, an = 4, w = 25, h = 25}
- local third_geo =
- {x = controlbox_left + 55, y = button_y, an = 4, w = 25, h = 25}
-
- -- Window control buttons use symbols in the custom mpv osd font
- -- because the official unicode codepoints are sufficiently
- -- exotic that a system might lack an installed font with them,
- -- and libass will complain that they are not present in the
- -- default font, even if another font with them is available.
-
- -- Close: 🗙
- ne = new_element("close", "button")
- ne.content = "\238\132\149"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("quit") end
- lo = add_layout("close")
- lo.geometry = alignment == "left" and first_geo or third_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- Minimize: 🗕
- ne = new_element("minimize", "button")
- ne.content = "\238\132\146"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "window-minimized") end
- lo = add_layout("minimize")
- lo.geometry = alignment == "left" and second_geo or first_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- Maximize: 🗖 /🗗
- ne = new_element("maximize", "button")
- if state.maximized or state.fullscreen then
- ne.content = "\238\132\148"
- else
- ne.content = "\238\132\147"
- end
- ne.eventresponder["mbtn_left_up"] =
- function ()
- if state.fullscreen then
- mp.commandv("cycle", "fullscreen")
- else
- mp.commandv("cycle", "window-maximized")
- end
- end
- lo = add_layout("maximize")
- lo.geometry = alignment == "left" and third_geo or second_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- deadzone below window controls
- local sh_area_y0, sh_area_y1
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (wc_geo.y + (wc_geo.h / 2)) +
- get_align(1 - (2 * user_opts.deadzonesize),
- osc_param.playresy - (wc_geo.y + (wc_geo.h / 2)), 0, 0)
- add_area("showhide_wc", wc_geo.x, sh_area_y0, wc_geo.w, sh_area_y1)
-
- if topbar then
- -- The title is already there as part of the top bar
- return
- else
- -- Apply boxvideo margins to the control bar
- osc_param.video_margins.t = wc_geo.h / osc_param.playresy
- end
-
- -- Window Title
- ne = new_element("wctitle", "button")
- ne.content = function ()
- --local title = mp.command_native({"expand-text", user_opts.title})
- --使用这个lua脚本顶部设置中的rjno1title参数替代title参数显示标题
- local title = mp.command_native({"expand-text", user_opts.rjno1title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
- local left_pad = 5
- local right_pad = 10
- lo = add_layout("wctitle")
- -- -3用来解决由于字体从24变为18后字体太靠下的问题
- lo.geometry =
- { x = titlebox_left + left_pad, y = wc_geo.y - 3 -3, an = 1,
- w = titlebox_w, h = wc_geo.h }
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.rjno1wcTitle,
- titlebox_left + left_pad, wc_geo.y - wc_geo.h,
- titlebox_right - right_pad , wc_geo.y + wc_geo.h)
-
- add_area("window-controls-title",
- titlebox_left, 0, titlebox_right, wc_geo.h)
-end
-
---
--- Layouts
---
-
-local layouts = {}
-
--- Classic box layout
-layouts["box"] = function ()
-
- local osc_geo = {
- w = 1100, -- width
- h = 43, -- height
- r = 0, -- corner-radius
- p = 0, -- padding
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w + (2 * osc_geo.p))) then
- osc_param.playresy = (osc_geo.w+(2*osc_geo.p))/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- -- position offset for contents aligned at the borders of the box
- local pos_offsetX = (osc_geo.w - (2*osc_geo.p)) / 2
- local pos_offsetY = (osc_geo.h - (2*osc_geo.p)) / 2
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- -- fetch values
- local osc_w, osc_h, osc_r, osc_p =
- osc_geo.w, osc_geo.h, osc_geo.r, osc_geo.p
-
- local lo
-
- --
- -- Background box
- --
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY, an = 5, w = osc_w, h = osc_h}
- lo.layer = 10
- lo.style = osc_styles.rjno1box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = user_opts.boxalpha
- lo.box.radius = 3
-
- --
- -- Title row
- --
---an是元素根据自己的中心线上下浮动,an=1时 元素中心全部在中心点上,an=9 元素全部在中心点右侧和之下
---box左上角x坐标 posX - pos_offsetX 但an=5 元素中心点坐标和这个坐标一致,所以还要根据an=?加减元素的宽度
---box左上角y坐标 posY - pos_offsetY 但an=5 元素中心点坐标和这个坐标一致,所以还要根据an=?加减元素的高度
- local rjno1X = posX - pos_offsetX
- local rjno1Y = posY - pos_offsetY
-
-
- --
- -- Seekbar
- --
- geo ={x = rjno1X + 490 / 2 + 260 , y = rjno1Y + 10*2.0 + 2 , an = 5, w = 490, h = 8}
--- lo = add_layout("seekbar")
-
---if user_opts["seekbarstyle"] ~= "knob" then
-
- new_element("bgbar1", "box")
- lo = add_layout("bgbar1")
-
- lo.geometry = geo
- lo.layer = 13
- lo.style = osc_styles.rjno1vidtitleBar
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.05)
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = geo.h / 2
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
---end
-
- lo = add_layout("seekbar")
- lo.geometry = geo
- lo.style = osc_styles.rjno1timecodes
- lo.slider.border = 0
- lo.slider.gap = 0
- lo.slider.tooltip_style = osc_styles.rjno1timePosBar
- lo.slider.tooltip_an = 5
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
---if user_opts["seekbarstyle"] == "knob" then
--- lo.geometry.y = rjno1Y + 10*2.0 + 1
--- lo.geometry.h = 16
---end
-
-
-
- -- lo = add_layout("pl_prev")
- -- lo.geometry = {x = rjno1X + 10 * 3.5 * 0 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- -- lo.style = osc_styles.rjno130Buttons
-
- -- lo = add_layout("ch_prev")
- -- lo.geometry = {x = rjno1X + 10 * 3.5 * 1 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- -- lo.style = osc_styles.rjno140Buttons
-
- lo = add_layout("skipback")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 2 + 10 * 3 -8-60-1+3, y = rjno1Y + 10 * 1.6 * 0 + 50 / 2-3 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno140Buttons
-
-
- lo = add_layout("playpause")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 3 + 10 * 3 -8-60+11+3, y = rjno1Y + 10 * 1.6 * 0 + 50 / 2-3, an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno150Buttons
-
-
- lo = add_layout("skipfrwd")
- lo.geometry = {x = rjno1X + 10 * 3.5 * 4 + 10 * 3 -8-60+31+3, y = rjno1Y + 10 * 1.6 * 0 + 50 / 2-3 , an = 5, w = 30, h = 50}
- lo.style = osc_styles.rjno140Buttons
-
-
- -- lo = add_layout("ch_next")
- -- lo.geometry = {x = rjno1X + 10 * 3.5 * 5 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- -- lo.style = osc_styles.rjno140Buttons
-
-
-
- -- lo = add_layout("pl_next")
- -- lo.geometry = {x = rjno1X + 10 * 3.5 * 6 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- -- lo.style = osc_styles.rjno130Buttons
-
-
---an = 5 时文字居中显示 往2边增加,所以一定要用1,这样多出的文字只会往右侧增长
- -- lo = add_layout("title")
- -- lo.geometry = {x = rjno1X + 10 * 26 , y = rjno1Y + 10 * 2.6 + 20 / 2 , an = 1, w = 1100 - 10 * 3.5 * 7, h = 20}
- -- lo.style = osc_styles.rjno116Buttons
- --lo.button.maxchars = user_opts.boxmaxchars
-
-
-
-
-
-
---an = 1 这样左侧的时间变长才会往右,但y轴要调整
- lo = add_layout("tc_left")
- lo.geometry = {x = rjno1X + 10 * 26 - 84, y = rjno1Y + 10 * 2.0+ 20 / 2 -1, an = 1, w = 110, h = 20}
- lo.style = osc_styles.rjno116Buttons
-
---an = 5
- -- lo = add_layout("cache")
- -- lo.geometry = {x = rjno1X + 10 * 50 + 10 * 11 / 2 -84, y = rjno1Y + 10 * 2.0, an = 5, w = 110, h = 20}
- -- lo.style = osc_styles.rjno116Buttons
---an = 9 这样右侧的时间变长才会往左,但y轴要调整
- lo = add_layout("tc_right")
- lo.geometry = {x = rjno1X + 10 * 90 + 10 * 11 / 2 -125, y = rjno1Y + 10 * 2.0 + 20 / 2 - 17, an = 9, w = 110, h = 20}
- lo.style = osc_styles.rjno116Buttons
-
-
-
-
-
-
-
- lo = add_layout("cy_audio")
- lo.geometry = {x = rjno1X + 10 * 85 + 10 * 7/2, y = rjno1Y + 10 * 2.0 + 1, an = 5, w = 70, h = 20}
- lo.style = osc_styles.rjno120Buttons
-
- lo = add_layout("cy_sub")
- lo.geometry = {x = rjno1X + 10 * 93 + 10 * 7/2, y = rjno1Y + 10 * 2.0 + 1, an = 5, w = 70, h = 20}
- lo.style = osc_styles.rjno120Buttons
-
---an = 1 图标最左侧才能点击
- lo = add_layout("volume")
- lo.geometry = {x = rjno1X + 10 * 102 , y = rjno1Y + 10 * 2.0 + 13, an = 1, w = 30, h = 26}
- lo.style = osc_styles.rjno125Buttons
---an = 1 图标最左侧才能点击
- lo = add_layout("tog_fs")
- lo.geometry = {x = rjno1X + 10 * 106, y = rjno1Y + 10 * 2.0 + 13 +1 , an = 1, w = 30, h =26 }
- lo.style = osc_styles.rjno125Buttons
-
-end
-
--- slim box layout
-layouts["slimbox"] = function ()
-
- local osc_geo = {
- w = 660, -- width
- h = 70, -- height
- r = 10, -- corner-radius
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w)) then
- osc_param.playresy = (osc_geo.w)/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo
-
- local tc_w, ele_h, inner_w = 100, 20, osc_geo.w - 100
-
- -- styles
- local styles = {
- box = "{\\rDefault\\blur0\\bord1\\1c&H000000\\3c&HFFFFFF}",
- timecodes = "{\\1c&HFFFFFF\\3c&H000000\\fs20\\bord2\\blur1}",
- tooltip = "{\\1c&HFFFFFF\\3c&H000000\\fs12\\bord1\\blur0.5}",
- }
-
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = 0
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = osc_geo.r
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
-
- lo = add_layout("seekbar")
- lo.geometry =
- {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.style = osc_styles.timecodes
- lo.slider.border = 0
- lo.slider.gap = 1.5
- lo.slider.tooltip_style = styles.tooltip
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
- lo.slider.adjust_tooltip = false
-
- --
- -- Timecodes
- --
-
- lo = add_layout("tc_left")
- lo.geometry =
- {x = posX - (inner_w/2) + osc_geo.r, y = posY + 1,
- an = 7, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- lo = add_layout("tc_right")
- lo.geometry =
- {x = posX + (inner_w/2) - osc_geo.r, y = posY + 1,
- an = 9, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- -- Cache
-
- lo = add_layout("cache")
- lo.geometry =
- {x = posX, y = posY + 1,
- an = 8, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
-
-end
-
-function bar_layout(direction)
- local osc_geo = {
- x = -2,
- y,
- an = (direction < 0) and 7 or 1,
- w,
- h = 56,
- }
-
- local padX = 9
- local padY = 3
- local buttonW = 27
- local tcW = (state.tc_ms) and 170 or 110
- local tsW = 90
- local minW = (buttonW + padX)*5 + (tcW + padX)*4 + (tsW + padX)*2
-
- -- Special topbar handling when window controls are present
- local padwc_l
- local padwc_r
- if direction < 0 or not window_controls_enabled() then
- padwc_l = 0
- padwc_r = 0
- elseif window_controls_alignment() == "left" then
- padwc_l = window_control_box_width
- padwc_r = 0
- else
- padwc_l = 0
- padwc_r = window_control_box_width
- end
-
- if ((osc_param.display_aspect > 0) and (osc_param.playresx < minW)) then
- osc_param.playresy = minW / osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- osc_geo.y = direction * (54 + user_opts.barmargin)
- osc_geo.w = osc_param.playresx + 4
- if direction < 0 then
- osc_geo.y = osc_geo.y + osc_param.playresy
- end
-
- local line1 = osc_geo.y - direction * (9 + padY)
- local line2 = osc_geo.y - direction * (36 + padY)
-
- osc_param.areas = {}
-
- add_area("input", get_hitbox_coords(osc_geo.x, osc_geo.y, osc_geo.an,
- osc_geo.w, osc_geo.h))
-
- local sh_area_y0, sh_area_y1
- if direction > 0 then
- -- deadzone below OSC
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (osc_geo.y + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (osc_geo.y + (osc_geo.h / 2)), 0, 0)
- else
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- osc_geo.y - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy - user_opts.barmargin
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo, geo
-
- -- Background bar
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = osc_geo
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
-
-
- -- Playlist prev/next
- geo = { x = osc_geo.x + padX, y = line1,
- an = 4, w = 18, h = 18 - padY }
- lo = add_layout("pl_prev")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("pl_next")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- local t_l = geo.x + geo.w + padX
-
- -- Cache
- geo = { x = osc_geo.x + osc_geo.w - padX, y = geo.y,
- an = 6, w = 150, h = geo.h }
- lo = add_layout("cache")
- lo.geometry = geo
- lo.style = osc_styles.vidtitleBar
-
- local t_r = geo.x - geo.w - padX*2
-
- -- Title
- geo = { x = t_l, y = geo.y, an = 4,
- w = t_r - t_l, h = geo.h }
- lo = add_layout("title")
- lo.geometry = geo
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.vidtitleBar,
- geo.x, geo.y-geo.h, geo.w, geo.y+geo.h)
-
-
- -- Playback control buttons
- geo = { x = osc_geo.x + padX + padwc_l, y = line2, an = 4,
- w = buttonW, h = 36 - padY*2}
- lo = add_layout("playpause")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_prev")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_next")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Left timecode
- geo = { x = geo.x + geo.w + padX + tcW, y = geo.y, an = 6,
- w = tcW, h = geo.h }
- lo = add_layout("tc_left")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_l = geo.x + padX
-
- -- Fullscreen button
- geo = { x = osc_geo.x + osc_geo.w - buttonW - padX - padwc_r, y = geo.y, an = 4,
- w = buttonW, h = geo.h }
- lo = add_layout("tog_fs")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Volume
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("volume")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Track selection buttons
- geo = { x = geo.x - tsW - padX, y = geo.y, an = geo.an, w = tsW, h = geo.h }
- lo = add_layout("cy_sub")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("cy_audio")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
-
- -- Right timecode
- geo = { x = geo.x - padX - tcW - 10, y = geo.y, an = geo.an,
- w = tcW, h = geo.h }
- lo = add_layout("tc_right")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_r = geo.x - padX
-
-
- -- Seekbar
- geo = { x = sb_l, y = geo.y, an = geo.an,
- w = math.max(0, sb_r - sb_l), h = geo.h }
- new_element("bgbar1", "box")
- lo = add_layout("bgbar1")
-
- lo.geometry = geo
- lo.layer = 15
- lo.style = osc_styles.timecodesBar
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.8)
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = geo.h / 2
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
- lo = add_layout("seekbar")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
- lo.slider.border = 0
- lo.slider.gap = 2
- lo.slider.tooltip_style = osc_styles.timePosBar
- lo.slider.tooltip_an = 5
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
- if direction < 0 then
- osc_param.video_margins.b = osc_geo.h / osc_param.playresy
- else
- osc_param.video_margins.t = osc_geo.h / osc_param.playresy
- end
-end
-
-layouts["bottombar"] = function()
- bar_layout(-1)
-end
-
-layouts["topbar"] = function()
- bar_layout(1)
-end
-
--- Validate string type user options
-function validate_user_opts()
- if layouts[user_opts.layout] == nil then
- msg.warn("Invalid setting \""..user_opts.layout.."\" for layout")
- user_opts.layout = "bottombar"
- end
-
- if user_opts.seekbarstyle ~= "bar" and
- user_opts.seekbarstyle ~= "diamond" and
- user_opts.seekbarstyle ~= "knob" then
- msg.warn("Invalid setting \"" .. user_opts.seekbarstyle
- .. "\" for seekbarstyle")
- user_opts.seekbarstyle = "bar"
- end
-
- if user_opts.seekrangestyle ~= "bar" and
- user_opts.seekrangestyle ~= "line" and
- user_opts.seekrangestyle ~= "slider" and
- user_opts.seekrangestyle ~= "inverted" and
- user_opts.seekrangestyle ~= "none" then
- msg.warn("Invalid setting \"" .. user_opts.seekrangestyle
- .. "\" for seekrangestyle")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.seekrangestyle == "slider" and
- user_opts.seekbarstyle == "bar" then
- msg.warn("Using \"slider\" seekrangestyle together with \"bar\" seekbarstyle is not supported")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.windowcontrols ~= "auto" and
- user_opts.windowcontrols ~= "yes" and
- user_opts.windowcontrols ~= "no" then
- msg.warn("windowcontrols cannot be \"" ..
- user_opts.windowcontrols .. "\". Ignoring.")
- user_opts.windowcontrols = "auto"
- end
- if user_opts.windowcontrols_alignment ~= "right" and
- user_opts.windowcontrols_alignment ~= "left" then
- msg.warn("windowcontrols_alignment cannot be \"" ..
- user_opts.windowcontrols_alignment .. "\". Ignoring.")
- user_opts.windowcontrols_alignment = "right"
- end
-end
-
-function update_options(list)
- validate_user_opts()
- request_tick()
- visibility_mode(user_opts.visibility, true)
- update_duration_watch()
- request_init()
-end
-
--- OSC INIT
-function osc_init()
- msg.debug("osc_init")
-
- -- set canvas resolution according to display aspect and scaling setting
- local baseResY = 720
- local display_w, display_h, display_aspect = mp.get_osd_size()
- local scale = 1
-
- if (mp.get_property("video") == "no") then -- dummy/forced window
- scale = user_opts.scaleforcedwindow
- elseif state.fullscreen then
- scale = user_opts.scalefullscreen
- else
- scale = user_opts.scalewindowed
- end
-
- if user_opts.vidscale then
- osc_param.unscaled_y = baseResY
- else
- osc_param.unscaled_y = display_h
- end
- osc_param.playresy = osc_param.unscaled_y / scale
- if (display_aspect > 0) then
- osc_param.display_aspect = display_aspect
- end
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
-
- -- stop seeking with the slider to prevent skipping files
- state.active_element = nil
-
- osc_param.video_margins = {l = 0, r = 0, t = 0, b = 0}
-
- elements = {}
-
- -- some often needed stuff
- local pl_count = mp.get_property_number("playlist-count", 0)
- local have_pl = (pl_count > 1)
- local pl_pos = mp.get_property_number("playlist-pos", 0) + 1
- local have_ch = (mp.get_property_number("chapters", 0) > 0)
- local loop = mp.get_property("loop-playlist", "no")
-
- local ne
-
- -- title
- ne = new_element("title", "button")
-
- ne.content = function ()
- local title = state.forced_title or
- mp.command_native({"expand-text", user_opts.title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
-
- ne.eventresponder["mbtn_left_up"] = function ()
- local title = mp.get_property_osd("media-title")
- if (have_pl) then
- title = string.format("[%d/%d] %s", countone(pl_pos - 1),
- pl_count, title)
- end
- show_message(title)
- end
-
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(mp.get_property_osd("filename")) end
-
- -- playlist buttons
-
- -- prev
- ne = new_element("pl_prev", "button")
-
- ne.content = "\238\132\144"
- ne.enabled = (pl_pos > 1) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-prev", "weak")
- show_message(get_playlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
- --next
- ne = new_element("pl_next", "button")
-
- ne.content = "\238\132\129"
- ne.enabled = (have_pl and (pl_pos < pl_count)) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-next", "weak")
- show_message(get_playlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
-
- -- big buttons
-
- --playpause
- ne = new_element("playpause", "button")
-
- ne.content = function ()
- if mp.get_property("pause") == "yes" then
- return ("\238\132\129")
- else
- return ("\238\128\130")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "pause") end
-
- --skipback
- ne = new_element("skipback", "button")
-
- ne.softrepeat = true
- ne.content = "\238\128\132"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", -5, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-back-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", -30, "relative", "keyframes") end
-
- --skipfrwd
- ne = new_element("skipfrwd", "button")
-
- ne.softrepeat = true
- ne.content = "\238\128\133"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", 10, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", 60, "relative", "keyframes") end
-
- --ch_prev
- ne = new_element("ch_prev", "button")
-
- ne.enabled = have_ch
- ne.content = "\238\132\132"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", -1)
- show_message(get_chapterlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --ch_next
- ne = new_element("ch_next", "button")
-
- ne.enabled = have_ch
- ne.content = "\238\132\133"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", 1)
- show_message(get_chapterlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --
- update_tracklist()
-
- --cy_audio
- ne = new_element("cy_audio", "button")
-
- ne.enabled = (#tracks_osc.audio > 0)
- ne.content = function ()
- local aid = "–"
- if not (get_track("audio") == 0) then
- aid = get_track("audio")
- end
- return ("\238\132\134" .. osc_styles.smallButtonsLlabel
- .. " " .. aid .. "/" .. #tracks_osc.audio)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("audio", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("audio", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("audio"), 2) end
-
- --cy_sub
- ne = new_element("cy_sub", "button")
-
- ne.enabled = (#tracks_osc.sub > 0)
- ne.content = function ()
- local sid = "–"
- if not (get_track("sub") == 0) then
- sid = get_track("sub")
- end
- return ("\238\132\135" .. osc_styles.smallButtonsLlabel
- .. " " .. sid .. "/" .. #tracks_osc.sub)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("sub", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("sub", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("sub"), 2) end
-
- --tog_fs
- ne = new_element("tog_fs", "button")
- ne.content = function ()
- if (state.fullscreen) then
- return ("\238\132\137")
- else
- return ("\238\132\136")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "fullscreen") end
-
- --seekbar
- ne = new_element("seekbar", "slider")
-
- ne.enabled = not (mp.get_property("percent-pos") == nil)
- state.slider_element = ne.enabled and ne or nil -- used for forced_title
- ne.slider.markerF = function ()
- local duration = mp.get_property_number("duration", nil)
- if not (duration == nil) then
- local chapters = mp.get_property_native("chapter-list", {})
- local markers = {}
- for n = 1, #chapters do
- markers[n] = (chapters[n].time / duration * 100)
- end
- return markers
- else
- return {}
- end
- end
- ne.slider.posF =
- function () return mp.get_property_number("percent-pos", nil) end
- ne.slider.tooltipF = function (pos)
- local duration = mp.get_property_number("duration", nil)
- if not ((duration == nil) or (pos == nil)) then
- possec = duration * (pos / 100)
- return mp.format_time(possec)
- else
- return ""
- end
- end
- ne.slider.seekRangesF = function()
- if user_opts.seekrangestyle == "none" then
- return nil
- end
- local cache_state = state.cache_state
- if not cache_state then
- return nil
- end
- local duration = mp.get_property_number("duration", nil)
- if (duration == nil) or duration <= 0 then
- return nil
- end
- local ranges = cache_state["seekable-ranges"]
- if #ranges == 0 then
- return nil
- end
- local nranges = {}
- for _, range in pairs(ranges) do
- nranges[#nranges + 1] = {
- ["start"] = 100 * range["start"] / duration,
- ["end"] = 100 * range["end"] / duration,
- }
- end
- return nranges
- end
- ne.eventresponder["mouse_move"] = --keyframe seeking when mouse is dragged
- function (element)
- -- mouse move events may pile up during seeking and may still get
- -- sent when the user is done seeking, so we need to throw away
- -- identical seeks
- local seekto = get_slider_value(element)
- if (element.state.lastseek == nil) or
- (not (element.state.lastseek == seekto)) then
- local flags = "absolute-percent"
- if not user_opts.seekbarkeyframes then
- flags = flags .. "+exact"
- end
- mp.commandv("seek", seekto, flags)
- element.state.lastseek = seekto
- end
-
- end
- ne.eventresponder["mbtn_left_down"] = --exact seeks on single clicks
- function (element) mp.commandv("seek", get_slider_value(element),
- "absolute-percent", "exact") end
- ne.eventresponder["reset"] =
- function (element) element.state.lastseek = nil end
-
-
- -- tc_left (current pos)
- ne = new_element("tc_left", "button")
-
- ne.content = function ()
- if (state.tc_ms) then
- return (mp.get_property_osd("playback-time/full"))
- else
- return (mp.get_property_osd("playback-time"))
- end
- end
- ne.eventresponder["mbtn_left_up"] = function ()
- state.tc_ms = not state.tc_ms
- request_init()
- end
-
- -- tc_right (total/remaining time)
- ne = new_element("tc_right", "button")
-
- ne.visible = (mp.get_property_number("duration", 0) > 0)
- ne.content = function ()
- if (state.rightTC_trem) then
- if state.tc_ms then
- return ("-"..mp.get_property_osd("playtime-remaining/full"))
- else
- return ("-"..mp.get_property_osd("playtime-remaining"))
- end
- else
- if state.tc_ms then
- return (mp.get_property_osd("duration/full"))
- else
- return (mp.get_property_osd("duration"))
- end
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () state.rightTC_trem = not state.rightTC_trem end
-
- -- cache
- ne = new_element("cache", "button")
-
- ne.content = function ()
- local cache_state = state.cache_state
- if not (cache_state and cache_state["seekable-ranges"] and
- #cache_state["seekable-ranges"] > 0) then
- -- probably not a network stream
- return ""
- end
- local dmx_cache = cache_state and cache_state["cache-duration"]
- local thresh = math.min(state.dmx_cache * 0.05, 5) -- 5% or 5s
- if dmx_cache and math.abs(dmx_cache - state.dmx_cache) >= thresh then
- state.dmx_cache = dmx_cache
- else
- dmx_cache = state.dmx_cache
- end
- local min = math.floor(dmx_cache / 60)
- local sec = dmx_cache % 60
- return "Cache: " .. (min > 0 and
- string.format("%sm%02.0fs", min, sec) or
- string.format("%3.0fs", dmx_cache))
- end
-
- -- volume
- ne = new_element("volume", "button")
-
- ne.content = function()
- local volume = mp.get_property_number("volume", 0)
- local mute = mp.get_property_native("mute")
- local volicon = {"\238\132\139", "\238\132\140",
- "\238\132\141", "\238\132\142"}
- if volume == 0 or mute then
- return "\238\132\138"
- else
- return volicon[math.min(4,math.ceil(volume / (100/3)))]
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "mute") end
-
- ne.eventresponder["wheel_up_press"] =
- function () mp.commandv("osd-auto", "add", "volume", 5) end
- ne.eventresponder["wheel_down_press"] =
- function () mp.commandv("osd-auto", "add", "volume", -5) end
-
-
- -- load layout
- layouts[user_opts.layout]()
-
- -- load window controls
- if window_controls_enabled() then
- window_controls(user_opts.layout == "topbar")
- end
-
- --do something with the elements
- prepare_elements()
-
- update_margins()
-end
-
-function reset_margins()
- if state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- mp.set_property_number(opt[2], 0.0)
- end
- state.using_video_margins = false
- end
-end
-
-function update_margins()
- local margins = osc_param.video_margins
-
- -- Don't use margins if it's visible only temporarily.
- if (not state.osc_visible) or (get_hidetimeout() >= 0) or
- (state.fullscreen and not user_opts.showfullscreen) or
- (not state.fullscreen and not user_opts.showwindowed)
- then
- margins = {l = 0, r = 0, t = 0, b = 0}
- end
-
- if user_opts.boxvideo then
- -- check whether any margin option has a non-default value
- local margins_used = false
-
- if not state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- if mp.get_property_number(opt[2], 0.0) ~= 0.0 then
- margins_used = true
- end
- end
- end
-
- if not margins_used then
- for _, opt in ipairs(margins_opts) do
- local v = margins[opt[1]]
- if (v ~= 0) or state.using_video_margins then
- mp.set_property_number(opt[2], v)
- state.using_video_margins = true
- end
- end
- end
- else
- reset_margins()
- end
-
- utils.shared_script_property_set("osc-margins",
- string.format("%f,%f,%f,%f", margins.l, margins.r, margins.t, margins.b))
-end
-
-function shutdown()
- reset_margins()
- utils.shared_script_property_set("osc-margins", nil)
-end
-
---
--- Other important stuff
---
-
-
-function show_osc()
- -- show when disabled can happen (e.g. mouse_move) due to async/delayed unbinding
- if not state.enabled then return end
-
- msg.trace("show_osc")
- --remember last time of invocation (mouse move)
- state.showtime = mp.get_time()
-
- osc_visible(true)
-
- if (user_opts.fadeduration > 0) then
- state.anitype = nil
- end
-end
-
-function hide_osc()
- msg.trace("hide_osc")
- if not state.enabled then
- -- typically hide happens at render() from tick(), but now tick() is
- -- no-op and won't render again to remove the osc, so do that manually.
- state.osc_visible = false
- render_wipe()
- elseif (user_opts.fadeduration > 0) then
- if not(state.osc_visible == false) then
- state.anitype = "out"
- request_tick()
- end
- else
- osc_visible(false)
- end
-end
-
-function osc_visible(visible)
- if state.osc_visible ~= visible then
- state.osc_visible = visible
- update_margins()
- end
- request_tick()
-end
-
-function pause_state(name, enabled)
- state.paused = enabled
- request_tick()
-end
-
-function cache_state(name, st)
- state.cache_state = st
- request_tick()
-end
-
--- Request that tick() is called (which typically re-renders the OSC).
--- The tick is then either executed immediately, or rate-limited if it was
--- called a small time ago.
-function request_tick()
- if state.tick_timer == nil then
- state.tick_timer = mp.add_timeout(0, tick)
- end
-
- if not state.tick_timer:is_enabled() then
- local now = mp.get_time()
- local timeout = tick_delay - (now - state.tick_last_time)
- if timeout < 0 then
- timeout = 0
- end
- state.tick_timer.timeout = timeout
- state.tick_timer:resume()
- end
-end
-
-function mouse_leave()
- if get_hidetimeout() >= 0 then
- hide_osc()
- end
- -- reset mouse position
- state.last_mouseX, state.last_mouseY = nil, nil
- state.mouse_in_window = false
-end
-
-function request_init()
- state.initREQ = true
- request_tick()
-end
-
--- Like request_init(), but also request an immediate update
-function request_init_resize()
- request_init()
- -- ensure immediate update
- state.tick_timer:kill()
- state.tick_timer.timeout = 0
- state.tick_timer:resume()
-end
-
-function render_wipe()
- msg.trace("render_wipe()")
- state.osd.data = "" -- allows set_osd to immediately update on enable
- state.osd:remove()
-end
-
-function render()
- msg.trace("rendering")
- local current_screen_sizeX, current_screen_sizeY, aspect = mp.get_osd_size()
- local mouseX, mouseY = get_virt_mouse_pos()
- local now = mp.get_time()
-
- -- check if display changed, if so request reinit
- if not (state.mp_screen_sizeX == current_screen_sizeX
- and state.mp_screen_sizeY == current_screen_sizeY) then
-
- request_init_resize()
-
- state.mp_screen_sizeX = current_screen_sizeX
- state.mp_screen_sizeY = current_screen_sizeY
- end
-
- -- init management
- if state.active_element then
- -- mouse is held down on some element - keep ticking and igore initReq
- -- till it's released, or else the mouse-up (click) will misbehave or
- -- get ignored. that's because osc_init() recreates the osc elements,
- -- but mouse handling depends on the elements staying unmodified
- -- between mouse-down and mouse-up (using the index active_element).
- request_tick()
- elseif state.initREQ then
- osc_init()
- state.initREQ = false
-
- -- store initial mouse position
- if (state.last_mouseX == nil or state.last_mouseY == nil)
- and not (mouseX == nil or mouseY == nil) then
-
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
- end
- end
-
-
- -- fade animation
- if not(state.anitype == nil) then
-
- if (state.anistart == nil) then
- state.anistart = now
- end
-
- if (now < state.anistart + (user_opts.fadeduration/1000)) then
-
- if (state.anitype == "in") then --fade in
- osc_visible(true)
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 255, 0, now)
- elseif (state.anitype == "out") then --fade out
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 0, 255, now)
- end
-
- else
- if (state.anitype == "out") then
- osc_visible(false)
- end
- kill_animation()
- end
- else
- kill_animation()
- end
-
- --mouse show/hide area
- for k,cords in pairs(osc_param.areas["showhide"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide")
- end
- if osc_param.areas["showhide_wc"] then
- for k,cords in pairs(osc_param.areas["showhide_wc"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide_wc")
- end
- else
- set_virt_mouse_area(0, 0, 0, 0, "showhide_wc")
- end
- do_enable_keybindings()
-
- --mouse input area
- local mouse_over_osc = false
-
- for _,cords in ipairs(osc_param.areas["input"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "input")
- end
- if state.osc_visible ~= state.input_enabled then
- if state.osc_visible then
- mp.enable_key_bindings("input")
- else
- mp.disable_key_bindings("input")
- end
- state.input_enabled = state.osc_visible
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
-
- if osc_param.areas["window-controls"] then
- for _,cords in ipairs(osc_param.areas["window-controls"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "window-controls")
- mp.enable_key_bindings("window-controls")
- else
- mp.disable_key_bindings("window-controls")
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- if osc_param.areas["window-controls-title"] then
- for _,cords in ipairs(osc_param.areas["window-controls-title"]) do
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- -- autohide
- if not (state.showtime == nil) and (get_hidetimeout() >= 0) then
- local timeout = state.showtime + (get_hidetimeout()/1000) - now
- if timeout <= 0 then
- if (state.active_element == nil) and not (mouse_over_osc) then
- hide_osc()
- end
- else
- -- the timer is only used to recheck the state and to possibly run
- -- the code above again
- if not state.hide_timer then
- state.hide_timer = mp.add_timeout(0, tick)
- end
- state.hide_timer.timeout = timeout
- -- re-arm
- state.hide_timer:kill()
- state.hide_timer:resume()
- end
- end
-
-
- -- actual rendering
- local ass = assdraw.ass_new()
-
- -- Messages
- render_message(ass)
-
- -- actual OSC
- if state.osc_visible then
- render_elements(ass)
- end
-
- -- submit
- set_osd(osc_param.playresy * osc_param.display_aspect,
- osc_param.playresy, ass.text)
-end
-
---
--- Eventhandling
---
-
-local function element_has_action(element, action)
- return element and element.eventresponder and
- element.eventresponder[action]
-end
-
-function process_event(source, what)
- local action = string.format("%s%s", source,
- what and ("_" .. what) or "")
-
- if what == "down" or what == "press" then
-
- for n = 1, #elements do
-
- if mouse_hit(elements[n]) and
- elements[n].eventresponder and
- (elements[n].eventresponder[source .. "_up"] or
- elements[n].eventresponder[action]) then
-
- if what == "down" then
- state.active_element = n
- state.active_event_source = source
- end
- -- fire the down or press event if the element has one
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
-
- end
- end
-
- elseif what == "up" then
-
- if elements[state.active_element] then
- local n = state.active_element
-
- if n == 0 then
- --click on background (does not work)
- elseif element_has_action(elements[n], action) and
- mouse_hit(elements[n]) then
-
- elements[n].eventresponder[action](elements[n])
- end
-
- --reset active element
- if element_has_action(elements[n], "reset") then
- elements[n].eventresponder["reset"](elements[n])
- end
-
- end
- state.active_element = nil
- state.mouse_down_counter = 0
-
- elseif source == "mouse_move" then
-
- state.mouse_in_window = true
-
- local mouseX, mouseY = get_virt_mouse_pos()
- if (user_opts.minmousemove == 0) or
- (not ((state.last_mouseX == nil) or (state.last_mouseY == nil)) and
- ((math.abs(mouseX - state.last_mouseX) >= user_opts.minmousemove)
- or (math.abs(mouseY - state.last_mouseY) >= user_opts.minmousemove)
- )
- ) then
- show_osc()
- end
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
-
- local n = state.active_element
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
- end
-
- -- ensure rendering after any (mouse) event - icons could change etc
- request_tick()
-end
-
-
-local logo_lines = {
- -- White border
- "{\\c&HE5E5E5&\\p6}m 895 10 b 401 10 0 410 0 905 0 1399 401 1800 895 1800 1390 1800 1790 1399 1790 905 1790 410 1390 10 895 10 {\\p0}",
- -- Purple fill
- "{\\c&H682167&\\p6}m 925 42 b 463 42 87 418 87 880 87 1343 463 1718 925 1718 1388 1718 1763 1343 1763 880 1763 418 1388 42 925 42{\\p0}",
- -- Darker fill
- "{\\c&H430142&\\p6}m 1605 828 b 1605 1175 1324 1456 977 1456 631 1456 349 1175 349 828 349 482 631 200 977 200 1324 200 1605 482 1605 828{\\p0}",
- -- White fill
- "{\\c&HDDDBDD&\\p6}m 1296 910 b 1296 1131 1117 1310 897 1310 676 1310 497 1131 497 910 497 689 676 511 897 511 1117 511 1296 689 1296 910{\\p0}",
- -- Triangle
- "{\\c&H691F69&\\p6}m 762 1113 l 762 708 b 881 776 1000 843 1119 911 1000 978 881 1046 762 1113{\\p0}",
-}
-
-local santa_hat_lines = {
- -- Pompoms
- "{\\c&HC0C0C0&\\p6}m 500 -323 b 491 -322 481 -318 475 -311 465 -312 456 -319 446 -318 434 -314 427 -304 417 -297 410 -290 404 -282 395 -278 390 -274 387 -267 381 -265 377 -261 379 -254 384 -253 397 -244 409 -232 425 -228 437 -228 446 -218 457 -217 462 -216 466 -213 468 -209 471 -205 477 -203 482 -206 491 -211 499 -217 508 -222 532 -235 556 -249 576 -267 584 -272 584 -284 578 -290 569 -305 550 -312 533 -309 523 -310 515 -316 507 -321 505 -323 503 -323 500 -323{\\p0}",
- "{\\c&HE0E0E0&\\p6}m 315 -260 b 286 -258 259 -240 246 -215 235 -210 222 -215 211 -211 204 -188 177 -176 172 -151 170 -139 163 -128 154 -121 143 -103 141 -81 143 -60 139 -46 125 -34 129 -17 132 -1 134 16 142 30 145 56 161 80 181 96 196 114 210 133 231 144 266 153 303 138 328 115 373 79 401 28 423 -24 446 -73 465 -123 483 -174 487 -199 467 -225 442 -227 421 -232 402 -242 384 -254 364 -259 342 -250 322 -260 320 -260 317 -261 315 -260{\\p0}",
- -- Main cap
- "{\\c&H0000F0&\\p6}m 1151 -523 b 1016 -516 891 -458 769 -406 693 -369 624 -319 561 -262 526 -252 465 -235 479 -187 502 -147 551 -135 588 -111 1115 165 1379 232 1909 761 1926 800 1952 834 1987 858 2020 883 2053 912 2065 952 2088 1000 2146 962 2139 919 2162 836 2156 747 2143 662 2131 615 2116 567 2122 517 2120 410 2090 306 2089 199 2092 147 2071 99 2034 64 1987 5 1928 -41 1869 -86 1777 -157 1712 -256 1629 -337 1578 -389 1521 -436 1461 -476 1407 -509 1343 -507 1284 -515 1240 -519 1195 -521 1151 -523{\\p0}",
- -- Cap shadow
- "{\\c&H0000AA&\\p6}m 1657 248 b 1658 254 1659 261 1660 267 1669 276 1680 284 1689 293 1695 302 1700 311 1707 320 1716 325 1726 330 1735 335 1744 347 1752 360 1761 371 1753 352 1754 331 1753 311 1751 237 1751 163 1751 90 1752 64 1752 37 1767 14 1778 -3 1785 -24 1786 -45 1786 -60 1786 -77 1774 -87 1760 -96 1750 -78 1751 -65 1748 -37 1750 -8 1750 20 1734 78 1715 134 1699 192 1694 211 1689 231 1676 246 1671 251 1661 255 1657 248 m 1909 541 b 1914 542 1922 549 1917 539 1919 520 1921 502 1919 483 1918 458 1917 433 1915 407 1930 373 1942 338 1947 301 1952 270 1954 238 1951 207 1946 214 1947 229 1945 239 1939 278 1936 318 1924 356 1923 362 1913 382 1912 364 1906 301 1904 237 1891 175 1887 150 1892 126 1892 101 1892 68 1893 35 1888 2 1884 -9 1871 -20 1859 -14 1851 -6 1854 9 1854 20 1855 58 1864 95 1873 132 1883 179 1894 225 1899 273 1908 362 1910 451 1909 541{\\p0}",
- -- Brim and tip pompom
- "{\\c&HF8F8F8&\\p6}m 626 -191 b 565 -155 486 -196 428 -151 387 -115 327 -101 304 -47 273 2 267 59 249 113 219 157 217 213 215 265 217 309 260 302 285 283 373 264 465 264 555 257 608 252 655 292 709 287 759 294 816 276 863 298 903 340 972 324 1012 367 1061 394 1125 382 1167 424 1213 462 1268 482 1322 506 1385 546 1427 610 1479 662 1510 690 1534 725 1566 752 1611 796 1664 830 1703 880 1740 918 1747 986 1805 1005 1863 991 1897 932 1916 880 1914 823 1945 777 1961 725 1979 673 1957 622 1938 575 1912 534 1862 515 1836 473 1790 417 1755 351 1697 305 1658 266 1633 216 1593 176 1574 138 1539 116 1497 110 1448 101 1402 77 1371 37 1346 -16 1295 15 1254 6 1211 -27 1170 -62 1121 -86 1072 -104 1027 -128 976 -133 914 -130 851 -137 794 -162 740 -181 679 -168 626 -191 m 2051 917 b 1971 932 1929 1017 1919 1091 1912 1149 1923 1214 1970 1254 2000 1279 2027 1314 2066 1325 2139 1338 2212 1295 2254 1238 2281 1203 2287 1158 2282 1116 2292 1061 2273 1006 2229 970 2206 941 2167 938 2138 918{\\p0}",
-}
-
--- called by mpv on every frame
-function tick()
- if state.marginsREQ == true then
- update_margins()
- state.marginsREQ = false
- end
-
- if (not state.enabled) then return end
-
- if (state.idle) then
-
- -- render idle message
- msg.trace("idle message")
- local icon_x, icon_y = 320 - 26, 140
- local line_prefix = ("{\\rDefault\\an7\\1a&H00&\\bord0\\shad0\\pos(%f,%f)}"):format(icon_x, icon_y)
-
- local ass = assdraw.ass_new()
- -- mpv logo
- for i, line in ipairs(logo_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
-
- -- Santa hat
- if is_december and not user_opts.greenandgrumpy then
- for i, line in ipairs(santa_hat_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
- end
-
- ass:new_event()
- ass:pos(320, icon_y+65)
- ass:an(8)
- ass:append("Drop files or URLs to play here.")
- set_osd(640, 360, ass.text)
-
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- state.showhide_enabled = false
- end
-
-
- elseif (state.fullscreen and user_opts.showfullscreen)
- or (not state.fullscreen and user_opts.showwindowed) then
-
- -- render the OSC
- render()
- else
- -- Flush OSD
- render_wipe()
- end
-
- state.tick_last_time = mp.get_time()
-
- if state.anitype ~= nil then
- -- state.anistart can be nil - animation should now start, or it can
- -- be a timestamp when it started. state.idle has no animation.
- if not state.idle and
- (not state.anistart or
- mp.get_time() < 1 + state.anistart + user_opts.fadeduration/1000)
- then
- -- animating or starting, or still within 1s past the deadline
- request_tick()
- else
- kill_animation()
- end
- end
-end
-
-function do_enable_keybindings()
- if state.enabled then
- if not state.showhide_enabled then
- mp.enable_key_bindings("showhide", "allow-vo-dragging+allow-hide-cursor")
- mp.enable_key_bindings("showhide_wc", "allow-vo-dragging+allow-hide-cursor")
- end
- state.showhide_enabled = true
- end
-end
-
-function enable_osc(enable)
- state.enabled = enable
- if enable then
- do_enable_keybindings()
- else
- hide_osc() -- acts immediately when state.enabled == false
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- end
- state.showhide_enabled = false
- end
-end
-
--- duration is observed for the sole purpose of updating chapter markers
--- positions. live streams with chapters are very rare, and the update is also
--- expensive (with request_init), so it's only observed when we have chapters
--- and the user didn't disable the livemarkers option (update_duration_watch).
-function on_duration() request_init() end
-
-local duration_watched = false
-function update_duration_watch()
- local want_watch = user_opts.livemarkers and
- (mp.get_property_number("chapters", 0) or 0) > 0 and
- true or false -- ensure it's a boolean
-
- if (want_watch ~= duration_watched) then
- if want_watch then
- mp.observe_property("duration", nil, on_duration)
- else
- mp.unobserve_property(on_duration)
- end
- duration_watched = want_watch
- end
-end
-
-validate_user_opts()
-update_duration_watch()
-
-mp.register_event("shutdown", shutdown)
-mp.register_event("start-file", request_init)
-mp.observe_property("track-list", nil, request_init)
-mp.observe_property("playlist", nil, request_init)
-mp.observe_property("chapter-list", nil, function()
- update_duration_watch()
- request_init()
-end)
-
-mp.register_script_message("osc-message", show_message)
-mp.register_script_message("osc-chapterlist", function(dur)
- show_message(get_chapterlist(), dur)
-end)
-mp.register_script_message("osc-playlist", function(dur)
- show_message(get_playlist(), dur)
-end)
-mp.register_script_message("osc-tracklist", function(dur)
- local msg = {}
- for k,v in pairs(nicetypes) do
- table.insert(msg, get_tracklist(k))
- end
- show_message(table.concat(msg, '\n\n'), dur)
-end)
-
-mp.observe_property("fullscreen", "bool",
- function(name, val)
- state.fullscreen = val
- state.marginsREQ = true
- request_init_resize()
- end
-)
-mp.observe_property("border", "bool",
- function(name, val)
- state.border = val
- request_init_resize()
- end
-)
-mp.observe_property("window-maximized", "bool",
- function(name, val)
- state.maximized = val
- request_init_resize()
- end
-)
-mp.observe_property("idle-active", "bool",
- function(name, val)
- state.idle = val
- request_tick()
- end
-)
-mp.observe_property("pause", "bool", pause_state)
-mp.observe_property("demuxer-cache-state", "native", cache_state)
-mp.observe_property("vo-configured", "bool", function(name, val)
- request_tick()
-end)
-mp.observe_property("playback-time", "number", function(name, val)
- request_tick()
-end)
-mp.observe_property("osd-dimensions", "native", function(name, val)
- -- (we could use the value instead of re-querying it all the time, but then
- -- we might have to worry about property update ordering)
- request_init_resize()
-end)
-
--- mouse show/hide bindings
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide", "force")
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide_wc", "force")
-do_enable_keybindings()
-
---mouse input bindings
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
- {"shift+mbtn_left", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"mbtn_right", function(e) process_event("mbtn_right", "up") end,
- function(e) process_event("mbtn_right", "down") end},
- -- alias to shift_mbtn_left for single-handed mouse use
- {"mbtn_mid", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"wheel_up", function(e) process_event("wheel_up", "press") end},
- {"wheel_down", function(e) process_event("wheel_down", "press") end},
- {"mbtn_left_dbl", "ignore"},
- {"shift+mbtn_left_dbl", "ignore"},
- {"mbtn_right_dbl", "ignore"},
-}, "input", "force")
-mp.enable_key_bindings("input")
-
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
-}, "window-controls", "force")
-mp.enable_key_bindings("window-controls")
-
-function get_hidetimeout()
- if user_opts.visibility == "always" then
- return -1 -- disable autohide
- end
- return user_opts.hidetimeout
-end
-
-function always_on(val)
- if state.enabled then
- if val then
- show_osc()
- else
- hide_osc()
- end
- end
-end
-
--- mode can be auto/always/never/cycle
--- the modes only affect internal variables and not stored on its own.
-function visibility_mode(mode, no_osd)
- if mode == "cycle" then
- if not state.enabled then
- mode = "auto"
- elseif user_opts.visibility ~= "always" then
- mode = "always"
- else
- mode = "never"
- end
- end
-
- if mode == "auto" then
- always_on(false)
- enable_osc(true)
- elseif mode == "always" then
- enable_osc(true)
- always_on(true)
- elseif mode == "never" then
- enable_osc(false)
- else
- msg.warn("Ignoring unknown visibility mode '" .. mode .. "'")
- return
- end
-
- user_opts.visibility = mode
- utils.shared_script_property_set("osc-visibility", mode)
-
- if not no_osd and tonumber(mp.get_property("osd-level")) >= 1 then
- mp.osd_message("OSC visibility: " .. mode)
- end
-
- -- Reset the input state on a mode change. The input state will be
- -- recalcuated on the next render cycle, except in 'never' mode where it
- -- will just stay disabled.
- mp.disable_key_bindings("input")
- mp.disable_key_bindings("window-controls")
- state.input_enabled = false
-
- update_margins()
- request_tick()
-end
-
-visibility_mode(user_opts.visibility, true)
-mp.register_script_message("osc-visibility", visibility_mode)
-mp.add_key_binding(nil, "visibility", function() visibility_mode("cycle") end)
-
-set_virt_mouse_area(0, 0, 0, 0, "input")
-set_virt_mouse_area(0, 0, 0, 0, "window-controls")
\ No newline at end of file
diff --git a/osc-style/osc-potplayer-box-knob-or-bar-0.lua b/osc-style/osc-potplayer-box-knob-or-bar-0.lua
deleted file mode 100644
index 741e777..0000000
--- a/osc-style/osc-potplayer-box-knob-or-bar-0.lua
+++ /dev/null
@@ -1,2938 +0,0 @@
---此lua脚本由软件No1修改并提供支持
---This lua script is modified by www.rjno1.com
---此lua脚本原始版本: github.com/mpv-player/mpv/blob/master/player/lua/osc.lua
---The original version of this lua script:github.com/mpv-player/mpv/blob/master/player/lua/osc.lua
-local assdraw = require 'mp.assdraw'
-local msg = require 'mp.msg'
-local opt = require 'mp.options'
-local utils = require 'mp.utils'
-
---
--- Parameters
---
--- default user option values
--- do not touch, change them in osc.conf
-local user_opts = {
- showwindowed = true, -- show OSC when windowed?
- showfullscreen = true, -- show OSC when fullscreen?
- scalewindowed = 1, -- scaling of the controller when windowed
- scalefullscreen = 1, -- scaling of the controller when fullscreen
- scaleforcedwindow = 2, -- scaling when rendered on a forced window
- vidscale = true, -- scale the controller with the video?
- valign = 0.8, -- vertical alignment, -1 (top) to 1 (bottom)
- halign = 0, -- horizontal alignment, -1 (left) to 1 (right)
- barmargin = 0, -- vertical margin of top/bottombar
- boxalpha = 0, -- alpha of the background box,
- -- 0 (opaque) to 255 (fully transparent)
- hidetimeout = 500, -- duration in ms until the OSC hides if no
- -- mouse movement. enforced non-negative for the
- -- user, but internally negative is "always-on".
- fadeduration = 200, -- duration of fade out in ms, 0 = no fade
- deadzonesize = 0.5, -- size of deadzone
- minmousemove = 0, -- minimum amount of pixels the mouse has to
- -- move between ticks to make the OSC show up
- iamaprogrammer = false, -- use native mpv values and disable OSC
- -- internal track list management (and some
- -- functions that depend on it)
- layout = "box",
- seekbarstyle = "bar", -- bar, diamond or knob
- seekbarhandlesize = 0.6, -- size ratio of the diamond and knob handle
- seekrangestyle = "inverted",-- bar, line, slider, inverted or none
- seekrangeseparate = true, -- wether the seekranges overlay on the bar-style seekbar
- seekrangealpha = 200, -- transparency of seekranges
- seekbarkeyframes = true, -- use keyframes when dragging the seekbar
- title = "${media-title}", -- string compatible with property-expansion
- -- to be shown as OSC title
- rjno1title = "MPV-EASY Player - ${filename}", --用来修改显示-口x时的标题
- tooltipborder = 1, -- border of tooltip in bottom/topbar
- timetotal = false, -- display total time instead of remaining time?
- timems = false, -- display timecodes with milliseconds?
- visibility = "auto", -- only used at init to set visibility_mode(...)
- boxmaxchars = 145, -- title crop threshold for box layout
- boxvideo = false, -- apply osc_param.video_margins to video
- windowcontrols = "auto", -- whether to show window controls
- windowcontrols_alignment = "right", -- which side to show window controls on
- greenandgrumpy = false, -- disable santa hat
- livemarkers = true, -- update seekbar chapter markers on duration change
-}
-
--- read options from config and command-line
-opt.read_options(user_opts, "osc", function(list) update_options(list) end)
-
-local osc_param = { -- calculated by osc_init()
- playresy = 0, -- canvas size Y
- playresx = 0, -- canvas size X
- display_aspect = 1,
- unscaled_y = 0,
- areas = {},
- video_margins = {
- l = 0, r = 0, t = 0, b = 0, -- left/right/top/bottom
- },
-}
-
-local osc_styles = {
-
-
- rjno150Buttons = "{\\blur0\\bord0\\1c&HF4EFED\\3c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- rjno140Buttons = "{\\blur0\\bord0\\1c&H8E807D\\3c&HFFFFFF\\fs16\\fnmpv-osd-symbols}",
- rjno130Buttons = "{\\blur0\\bord0\\1c&HF4EFED\\3c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- rjno125Buttons = "{\\blur0\\bord0\\1c&HF4EFED\\3c&HFFFFFF\\fs29\\fnmpv-osd-symbols}",
- rjno120Buttons = "{\\blur0\\bord0\\1c&HF4EFED\\3c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- rjno116Buttons = "{\\blur0\\bord0\\1c&H8E807D\\3c&HFFFFFF\\fs16\\fnmpv-osd-symbols}",
- rjno11line1 = "{\\blur0\\bord0\\1c&H161211\\3c&HFFFFFF\\fs16\\fnmpv-osd-symbols}",
- rjno11line2 = "{\\blur0\\bord0\\1c&H8E807D\\3c&HFFFFFF\\fs16\\fnmpv-osd-symbols}",
- rjno11line3 = "{\\blur0\\bord0\\1c&H352D2C\\3c&HFFFFFF\\fs16\\fnmpv-osd-symbols}",
- rjno1box = "{\\rDefault\\blur0\\bord0\\1c&H292120\\3c&HFFFFFF}",
- rjno1timecodes = "{\\blur0\\bord0\\1c&H00E1FA\\3c&HFFFFFF\\fs13}",
- rjno1timePosBar = "{\\blur0\\bord".. user_opts.tooltipborder .."\\1c&HAA908B\\3c&H000000\\fs24}",
- rjno1vidtitleBar = "{\\blur0\\bord0\\1c&H7B6864\\3c&HFFFFFF\\fs13\\q2}",
-
- rjno1wcButtons = "{\\1c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- rjno1wcTitle = "{\\1c&HFFFFFF\\fs18\\q2}",
- rjno1wcBar = "{\\1c&H292120}",
-
- bigButtons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs50\\fnmpv-osd-symbols}",
- smallButtonsL = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs19\\fnmpv-osd-symbols}",
- smallButtonsLlabel = "{\\fscx105\\fscy105\\fn" .. mp.get_property("options/osd-font") .. "}",
- smallButtonsR = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs30\\fnmpv-osd-symbols}",
- topButtons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs12\\fnmpv-osd-symbols}",
-
- elementDown = "{\\1c&H999999}",
- timecodes = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs20}",
- vidtitle = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs12\\q2}",
- box = "{\\rDefault\\blur0\\bord1\\1c&H000000\\3c&HFFFFFF}",
-
- topButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\fnmpv-osd-symbols}",
- smallButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs28\\fnmpv-osd-symbols}",
- timecodesBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs27}",
- timePosBar = "{\\blur0\\bord".. user_opts.tooltipborder .."\\1c&HFFFFFF\\3c&H000000\\fs30}",
- vidtitleBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\q2}",
-
- wcButtons = "{\\1c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- wcTitle = "{\\1c&HFFFFFF\\fs24\\q2}",
- wcBar = "{\\1c&H000000}",
-}
-
--- internal states, do not touch
-local state = {
- showtime, -- time of last invocation (last mouse move)
- osc_visible = false,
- anistart, -- time when the animation started
- anitype, -- current type of animation
- animation, -- current animation alpha
- mouse_down_counter = 0, -- used for softrepeat
- active_element = nil, -- nil = none, 0 = background, 1+ = see elements[]
- active_event_source = nil, -- the "button" that issued the current event
- rightTC_trem = not user_opts.timetotal, -- if the right timecode should display total or remaining time
- tc_ms = user_opts.timems, -- Should the timecodes display their time with milliseconds
- mp_screen_sizeX, mp_screen_sizeY, -- last screen-resolution, to detect resolution changes to issue reINITs
- initREQ = false, -- is a re-init request pending?
- marginsREQ = false, -- is a margins update pending?
- last_mouseX, last_mouseY, -- last mouse position, to detect significant mouse movement
- mouse_in_window = false,
- message_text,
- message_hide_timer,
- fullscreen = false,
- tick_timer = nil,
- tick_last_time = 0, -- when the last tick() was run
- hide_timer = nil,
- cache_state = nil,
- idle = false,
- enabled = true,
- input_enabled = true,
- showhide_enabled = false,
- dmx_cache = 0,
- using_video_margins = false,
- border = true,
- maximized = false,
- osd = mp.create_osd_overlay("ass-events"),
-}
-
-local window_control_box_width = 80
-local tick_delay = 0.03
-
-local is_december = os.date("*t").month == 12
-
---
--- Helperfunctions
---
-
-function kill_animation()
- state.anistart = nil
- state.animation = nil
- state.anitype = nil
-end
-
-function set_osd(res_x, res_y, text)
- if state.osd.res_x == res_x and
- state.osd.res_y == res_y and
- state.osd.data == text then
- return
- end
- state.osd.res_x = res_x
- state.osd.res_y = res_y
- state.osd.data = text
- state.osd.z = 1000
- state.osd:update()
-end
-
-local margins_opts = {
- {"l", "video-margin-ratio-left"},
- {"r", "video-margin-ratio-right"},
- {"t", "video-margin-ratio-top"},
- {"b", "video-margin-ratio-bottom"},
-}
-
--- scale factor for translating between real and virtual ASS coordinates
-function get_virt_scale_factor()
- local w, h = mp.get_osd_size()
- if w <= 0 or h <= 0 then
- return 0, 0
- end
- return osc_param.playresx / w, osc_param.playresy / h
-end
-
--- return mouse position in virtual ASS coordinates (playresx/y)
-function get_virt_mouse_pos()
- if state.mouse_in_window then
- local sx, sy = get_virt_scale_factor()
- local x, y = mp.get_mouse_pos()
- return x * sx, y * sy
- else
- return -1, -1
- end
-end
-
-function set_virt_mouse_area(x0, y0, x1, y1, name)
- local sx, sy = get_virt_scale_factor()
- mp.set_mouse_area(x0 / sx, y0 / sy, x1 / sx, y1 / sy, name)
-end
-
-function scale_value(x0, x1, y0, y1, val)
- local m = (y1 - y0) / (x1 - x0)
- local b = y0 - (m * x0)
- return (m * val) + b
-end
-
--- returns hitbox spanning coordinates (top left, bottom right corner)
--- according to alignment
-function get_hitbox_coords(x, y, an, w, h)
-
- local alignments = {
- [1] = function () return x, y-h, x+w, y end,
- [2] = function () return x-(w/2), y-h, x+(w/2), y end,
- [3] = function () return x-w, y-h, x, y end,
-
- [4] = function () return x, y-(h/2), x+w, y+(h/2) end,
- [5] = function () return x-(w/2), y-(h/2), x+(w/2), y+(h/2) end,
- [6] = function () return x-w, y-(h/2), x, y+(h/2) end,
-
- [7] = function () return x, y, x+w, y+h end,
- [8] = function () return x-(w/2), y, x+(w/2), y+h end,
- [9] = function () return x-w, y, x, y+h end,
- }
-
- return alignments[an]()
-end
-
-function get_hitbox_coords_geo(geometry)
- return get_hitbox_coords(geometry.x, geometry.y, geometry.an,
- geometry.w, geometry.h)
-end
-
-function get_element_hitbox(element)
- return element.hitbox.x1, element.hitbox.y1,
- element.hitbox.x2, element.hitbox.y2
-end
-
-function mouse_hit(element)
- return mouse_hit_coords(get_element_hitbox(element))
-end
-
-function mouse_hit_coords(bX1, bY1, bX2, bY2)
- local mX, mY = get_virt_mouse_pos()
- return (mX >= bX1 and mX <= bX2 and mY >= bY1 and mY <= bY2)
-end
-
-function limit_range(min, max, val)
- if val > max then
- val = max
- elseif val < min then
- val = min
- end
- return val
-end
-
--- translate value into element coordinates
-function get_slider_ele_pos_for(element, val)
-
- local ele_pos = scale_value(
- element.slider.min.value, element.slider.max.value,
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- val)
-
- return limit_range(
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- ele_pos)
-end
-
--- translates global (mouse) coordinates to value
-function get_slider_value_at(element, glob_pos)
-
- local val = scale_value(
- element.slider.min.glob_pos, element.slider.max.glob_pos,
- element.slider.min.value, element.slider.max.value,
- glob_pos)
-
- return limit_range(
- element.slider.min.value, element.slider.max.value,
- val)
-end
-
--- get value at current mouse position
-function get_slider_value(element)
- return get_slider_value_at(element, get_virt_mouse_pos())
-end
-
-function countone(val)
- if not (user_opts.iamaprogrammer) then
- val = val + 1
- end
- return val
-end
-
--- align: -1 .. +1
--- frame: size of the containing area
--- obj: size of the object that should be positioned inside the area
--- margin: min. distance from object to frame (as long as -1 <= align <= +1)
-function get_align(align, frame, obj, margin)
- return (frame / 2) + (((frame / 2) - margin - (obj / 2)) * align)
-end
-
--- multiplies two alpha values, formular can probably be improved
-function mult_alpha(alphaA, alphaB)
- return 255 - (((1-(alphaA/255)) * (1-(alphaB/255))) * 255)
-end
-
-function add_area(name, x1, y1, x2, y2)
- -- create area if needed
- if (osc_param.areas[name] == nil) then
- osc_param.areas[name] = {}
- end
- table.insert(osc_param.areas[name], {x1=x1, y1=y1, x2=x2, y2=y2})
-end
-
-function ass_append_alpha(ass, alpha, modifier)
- local ar = {}
-
- for ai, av in pairs(alpha) do
- av = mult_alpha(av, modifier)
- if state.animation then
- av = mult_alpha(av, state.animation)
- end
- ar[ai] = av
- end
-
- ass:append(string.format("{\\1a&H%X&\\2a&H%X&\\3a&H%X&\\4a&H%X&}",
- ar[1], ar[2], ar[3], ar[4]))
-end
-
-function ass_draw_rr_h_cw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_cw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_cw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-function ass_draw_rr_h_ccw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_ccw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_ccw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-
---
--- Tracklist Management
---
-
-local nicetypes = {video = "Video", audio = "Audio", sub = "Subtitle"}
-
--- updates the OSC internal playlists, should be run each time the track-layout changes
-function update_tracklist()
- local tracktable = mp.get_property_native("track-list", {})
-
- -- by osc_id
- tracks_osc = {}
- tracks_osc.video, tracks_osc.audio, tracks_osc.sub = {}, {}, {}
- -- by mpv_id
- tracks_mpv = {}
- tracks_mpv.video, tracks_mpv.audio, tracks_mpv.sub = {}, {}, {}
- for n = 1, #tracktable do
- if not (tracktable[n].type == "unknown") then
- local type = tracktable[n].type
- local mpv_id = tonumber(tracktable[n].id)
-
- -- by osc_id
- table.insert(tracks_osc[type], tracktable[n])
-
- -- by mpv_id
- tracks_mpv[type][mpv_id] = tracktable[n]
- tracks_mpv[type][mpv_id].osc_id = #tracks_osc[type]
- end
- end
-end
-
--- return a nice list of tracks of the given type (video, audio, sub)
-function get_tracklist(type)
- local msg = "Available " .. nicetypes[type] .. " Tracks: "
- if #tracks_osc[type] == 0 then
- msg = msg .. "none"
- else
- for n = 1, #tracks_osc[type] do
- local track = tracks_osc[type][n]
- local lang, title, selected = "unknown", "", "○"
- if not(track.lang == nil) then lang = track.lang end
- if not(track.title == nil) then title = track.title end
- if (track.id == tonumber(mp.get_property(type))) then
- selected = "●"
- end
- msg = msg.."\n"..selected.." "..n..": ["..lang.."] "..title
- end
- end
- return msg
-end
-
--- relatively change the track of given by tracks
- --(+1 -> next, -1 -> previous)
-function set_track(type, next)
- local current_track_mpv, current_track_osc
- if (mp.get_property(type) == "no") then
- current_track_osc = 0
- else
- current_track_mpv = tonumber(mp.get_property(type))
- current_track_osc = tracks_mpv[type][current_track_mpv].osc_id
- end
- local new_track_osc = (current_track_osc + next) % (#tracks_osc[type] + 1)
- local new_track_mpv
- if new_track_osc == 0 then
- new_track_mpv = "no"
- else
- new_track_mpv = tracks_osc[type][new_track_osc].id
- end
-
- mp.commandv("set", type, new_track_mpv)
-
- if (new_track_osc == 0) then
- show_message(nicetypes[type] .. " Track: none")
- else
- show_message(nicetypes[type] .. " Track: "
- .. new_track_osc .. "/" .. #tracks_osc[type]
- .. " [".. (tracks_osc[type][new_track_osc].lang or "unknown") .."] "
- .. (tracks_osc[type][new_track_osc].title or ""))
- end
-end
-
--- get the currently selected track of , OSC-style counted
-function get_track(type)
- local track = mp.get_property(type)
- if track ~= "no" and track ~= nil then
- local tr = tracks_mpv[type][tonumber(track)]
- if tr then
- return tr.osc_id
- end
- end
- return 0
-end
-
--- WindowControl helpers
-function window_controls_enabled()
- val = user_opts.windowcontrols
- if val == "auto" then
- return not state.border
- else
- return val ~= "no"
- end
-end
-
-function window_controls_alignment()
- return user_opts.windowcontrols_alignment
-end
-
---
--- Element Management
---
-
-local elements = {}
-
-function prepare_elements()
-
- -- remove elements without layout or invisble
- local elements2 = {}
- for n, element in pairs(elements) do
- if not (element.layout == nil) and (element.visible) then
- table.insert(elements2, element)
- end
- end
- elements = elements2
-
- function elem_compare (a, b)
- return a.layout.layer < b.layout.layer
- end
-
- table.sort(elements, elem_compare)
-
-
- for _,element in pairs(elements) do
-
- local elem_geo = element.layout.geometry
-
- -- Calculate the hitbox
- local bX1, bY1, bX2, bY2 = get_hitbox_coords_geo(elem_geo)
- element.hitbox = {x1 = bX1, y1 = bY1, x2 = bX2, y2 = bY2}
-
- local style_ass = assdraw.ass_new()
-
- -- prepare static elements
- style_ass:append("{}") -- hack to troll new_event into inserting a \n
- style_ass:new_event()
- style_ass:pos(elem_geo.x, elem_geo.y)
- style_ass:an(elem_geo.an)
- style_ass:append(element.layout.style)
-
- element.style_ass = style_ass
-
- local static_ass = assdraw.ass_new()
-
-
- if (element.type == "box") then
- --draw box
- static_ass:draw_start()
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h,
- element.layout.box.radius, element.layout.box.hexagon)
- static_ass:draw_stop()
-
- elseif (element.type == "slider") then
- --draw static slider parts
-
- local r1 = 0
- local r2 = 0
- local slider_lo = element.layout.slider
- -- offset between element outline and drag-area
- local foV = slider_lo.border + slider_lo.gap
-
- -- calculate positions of min and max points
- if (slider_lo.stype ~= "bar") then
- r1 = elem_geo.h / 2
- element.slider.min.ele_pos = elem_geo.h / 2
- element.slider.max.ele_pos = elem_geo.w - (elem_geo.h / 2)
- if (slider_lo.stype == "diamond") then
- r2 = (elem_geo.h - 2 * slider_lo.border) / 2
- elseif (slider_lo.stype == "knob") then
- r2 = r1
- end
- else
- element.slider.min.ele_pos =
- slider_lo.border + slider_lo.gap
- element.slider.max.ele_pos =
- elem_geo.w - (slider_lo.border + slider_lo.gap)
- end
-
- element.slider.min.glob_pos =
- element.hitbox.x1 + element.slider.min.ele_pos
- element.slider.max.glob_pos =
- element.hitbox.x1 + element.slider.max.ele_pos
-
- -- -- --
-
- static_ass:draw_start()
-
- -- the box
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h, r1, slider_lo.stype == "diamond")
-
- -- the "hole"
- ass_draw_rr_h_ccw(static_ass, slider_lo.border, slider_lo.border,
- elem_geo.w - slider_lo.border, elem_geo.h - slider_lo.border,
- r2, slider_lo.stype == "diamond")
-
- -- marker nibbles
- if not (element.slider.markerF == nil) and (slider_lo.gap > 0) then
- local markers = element.slider.markerF()
- for _,marker in pairs(markers) do
- if (marker > element.slider.min.value) and
- (marker < element.slider.max.value) then
-
- local s = get_slider_ele_pos_for(element, marker)
-
- if (slider_lo.gap > 1) then -- draw triangles
-
- local a = slider_lo.gap / 0.5 --0.866
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:move_to(s - (a/2), slider_lo.border)
- static_ass:line_to(s + (a/2), slider_lo.border)
- static_ass:line_to(s, foV)
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:move_to(s - (a/2),
- elem_geo.h - slider_lo.border)
- static_ass:line_to(s,
- elem_geo.h - foV)
- static_ass:line_to(s + (a/2),
- elem_geo.h - slider_lo.border)
- end
-
- else -- draw 2x1px nibbles
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:rect_cw(s - 1, slider_lo.border,
- s + 1, slider_lo.border + slider_lo.gap);
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:rect_cw(s - 1,
- elem_geo.h -slider_lo.border -slider_lo.gap,
- s + 1, elem_geo.h - slider_lo.border);
- end
- end
- end
- end
- end
- end
-
- element.static_ass = static_ass
-
-
- -- if the element is supposed to be disabled,
- -- style it accordingly and kill the eventresponders
- if not (element.enabled) then
- element.layout.alpha[1] = 136
- element.eventresponder = nil
- end
- end
-end
-
-
---
--- Element Rendering
---
-
--- returns nil or a chapter element from the native property chapter-list
-function get_chapter(possec)
- local cl = mp.get_property_native("chapter-list", {})
- local ch = nil
-
- -- chapters might not be sorted by time. find nearest-before/at possec
- for n=1, #cl do
- if possec >= cl[n].time and (not ch or cl[n].time > ch.time) then
- ch = cl[n]
- end
- end
- return ch
-end
-
-function render_elements(master_ass)
-
- -- when the slider is dragged or hovered and we have a target chapter name
- -- then we use it instead of the normal title. we calculate it before the
- -- render iterations because the title may be rendered before the slider.
- state.forced_title = nil
- local se, ae = state.slider_element, elements[state.active_element]
- if se and (ae == se or (not ae and mouse_hit(se))) then
- local dur = mp.get_property_number("duration", 0)
- if dur > 0 then
- local possec = get_slider_value(se) * dur / 100 -- of mouse pos
- local ch = get_chapter(possec)
- if ch and ch.title and ch.title ~= "" then
- state.forced_title = "Chapter: " .. ch.title
- end
- end
- end
-
- for n=1, #elements do
- local element = elements[n]
-
- local style_ass = assdraw.ass_new()
- style_ass:merge(element.style_ass)
- ass_append_alpha(style_ass, element.layout.alpha, 0)
-
- if element.eventresponder and (state.active_element == n) then
-
- -- run render event functions
- if not (element.eventresponder.render == nil) then
- element.eventresponder.render(element)
- end
-
- if mouse_hit(element) then
- -- mouse down styling
- if (element.styledown) then
- style_ass:append(osc_styles.elementDown)
- end
-
- if (element.softrepeat) and (state.mouse_down_counter >= 15
- and state.mouse_down_counter % 5 == 0) then
-
- element.eventresponder[state.active_event_source.."_down"](element)
- end
- state.mouse_down_counter = state.mouse_down_counter + 1
- end
-
- end
-
- local elem_ass = assdraw.ass_new()
-
- elem_ass:merge(style_ass)
-
- if not (element.type == "button") then
- elem_ass:merge(element.static_ass)
- end
-
- if (element.type == "slider") then
-
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- local s_min = element.slider.min.value
- local s_max = element.slider.max.value
-
- -- draw pos marker
- local foH, xp
- local pos = element.slider.posF()
- local foV = slider_lo.border + slider_lo.gap
- local innerH = elem_geo.h - (2 * foV)
- local seekRanges = element.slider.seekRangesF()
- local seekRangeLineHeight = innerH / 5
-
- if slider_lo.stype ~= "bar" then
- foH = elem_geo.h / 2
- else
- foH = slider_lo.border + slider_lo.gap
- end
-
- if pos then
- xp = get_slider_ele_pos_for(element, pos)
-
- if slider_lo.stype ~= "bar" then
- local r = (user_opts.seekbarhandlesize * innerH) / 2
- ass_draw_rr_h_cw(elem_ass, xp - r, foH - r,
- xp + r, foH + r,
- r, slider_lo.stype == "diamond")
- else
- local h = 0
- if seekRanges and user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- h = seekRangeLineHeight
- end
- elem_ass:rect_cw(foH, foV, xp, elem_geo.h - foV - h)
-
- if seekRanges and not user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- -- Punch holes for the seekRanges to be drawn later
- for _,range in pairs(seekRanges) do
- if range["start"] < pos then
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = xp
-
- if pos > range["end"] then
- pend = get_slider_ele_pos_for(element, range["end"])
- end
- elem_ass:rect_ccw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- end
- end
- end
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, foH - innerH / 6, foH - innerH / 6,
- xp, foH + innerH / 6,
- innerH / 6, slider_lo.stype == "diamond", 0)
- ass_draw_rr_h_cw(elem_ass, xp, foH - innerH / 15,
- elem_geo.w - foH + innerH / 15, foH + innerH / 15,
- 0, slider_lo.stype == "diamond", innerH / 15)
- for _,range in pairs(seekRanges or {}) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
- ass_draw_rr_h_ccw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- end
- end
- end
-
- if seekRanges then
- if slider_lo.rtype ~= "inverted" then
- elem_ass:draw_stop()
- elem_ass:merge(element.style_ass)
- ass_append_alpha(elem_ass, element.layout.alpha, user_opts.seekrangealpha)
- elem_ass:merge(element.static_ass)
- end
-
- for _,range in pairs(seekRanges) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- elseif slider_lo.rtype == "line" then
- if slider_lo.stype == "bar" then
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- else
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 8, foH - innerH / 8,
- pend + innerH / 8, foH + innerH / 8,
- innerH / 8, slider_lo.stype == "diamond")
- end
- elseif slider_lo.rtype == "bar" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 2, foV,
- pend + innerH / 2, foV + innerH,
- innerH / 2, slider_lo.stype == "diamond")
- elseif range["end"] >= (pos or 0) then
- elem_ass:rect_cw(pstart, foV, pend, elem_geo.h - foV)
- else
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- elseif slider_lo.rtype == "inverted" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_ccw(elem_ass, pstart, (elem_geo.h / 2) - 1, pend,
- (elem_geo.h / 2) + 1,
- 1, slider_lo.stype == "diamond")
- else
- elem_ass:rect_ccw(pstart, (elem_geo.h / 2) - 1, pend, (elem_geo.h / 2) + 1)
- end
- end
- end
- end
-
- elem_ass:draw_stop()
-
- -- add tooltip
- if not (element.slider.tooltipF == nil) then
-
- if mouse_hit(element) then
- local sliderpos = get_slider_value(element)
- local tooltiplabel = element.slider.tooltipF(sliderpos)
-
- local an = slider_lo.tooltip_an
-
- local ty
-
- if (an == 2) then
- ty = element.hitbox.y1 - slider_lo.border
- else
- ty = element.hitbox.y1 + elem_geo.h/2
- end
-
- local tx = get_virt_mouse_pos()
- if (slider_lo.adjust_tooltip) then
- if (an == 2) then
- if (sliderpos < (s_min + 3)) then
- an = an - 1
- elseif (sliderpos > (s_max - 3)) then
- an = an + 1
- end
- elseif (sliderpos > (s_max-s_min)/2) then
- an = an + 1
- tx = tx - 5
- else
- an = an - 1
- tx = tx + 10
- end
- end
-
- -- tooltip label
- elem_ass:new_event()
- elem_ass:pos(tx, ty)
- elem_ass:an(an)
- elem_ass:append(slider_lo.tooltip_style)
- ass_append_alpha(elem_ass, slider_lo.alpha, 0)
- elem_ass:append(tooltiplabel)
-
- end
- end
-
- elseif (element.type == "button") then
-
- local buttontext
- if type(element.content) == "function" then
- buttontext = element.content() -- function objects
- elseif not (element.content == nil) then
- buttontext = element.content -- text objects
- end
-
- --匹配:(XXX) unknows 替换成:(XXX),注意XXX只能为0-3个字符
- buttontext = buttontext:gsub(":%((.?.?.?)%) unknown ", ":%(%1%)") --gsub("%) unknown %(\"", "")
-
- local maxchars = element.layout.button.maxchars
- if not (maxchars == nil) and (#buttontext > maxchars) then
- local max_ratio = 1.25 -- up to 25% more chars while shrinking
- local limit = math.max(0, math.floor(maxchars * max_ratio) - 3)
- if (#buttontext > limit) then
- while (#buttontext > limit) do
- buttontext = buttontext:gsub(".[\128-\191]*$", "")
- end
- buttontext = buttontext .. "..."
- end
- local _, nchars2 = buttontext:gsub(".[\128-\191]*", "")
- local stretch = (maxchars/#buttontext)*100
- buttontext = string.format("{\\fscx%f}",
- (maxchars/#buttontext)*100) .. buttontext
- end
-
- elem_ass:append(buttontext)
- end
-
- master_ass:merge(elem_ass)
- end
-end
-
---
--- Message display
---
-
--- pos is 1 based
-function limited_list(prop, pos)
- local proplist = mp.get_property_native(prop, {})
- local count = #proplist
- if count == 0 then
- return count, proplist
- end
-
- local fs = tonumber(mp.get_property('options/osd-font-size'))
- local max = math.ceil(osc_param.unscaled_y*0.75 / fs)
- if max % 2 == 0 then
- max = max - 1
- end
- local delta = math.ceil(max / 2) - 1
- local begi = math.max(math.min(pos - delta, count - max + 1), 1)
- local endi = math.min(begi + max - 1, count)
-
- local reslist = {}
- for i=begi, endi do
- local item = proplist[i]
- item.current = (i == pos) and true or nil
- table.insert(reslist, item)
- end
- return count, reslist
-end
-
-function get_playlist()
- local pos = mp.get_property_number('playlist-pos', 0) + 1
- local count, limlist = limited_list('playlist', pos)
- if count == 0 then
- return 'Empty playlist.'
- end
-
- local message = string.format('Playlist [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local title = v.title
- local _, filename = utils.split_path(v.filename)
- if title == nil then
- title = filename
- end
- message = string.format('%s %s %s\n', message,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function get_chapterlist()
- local pos = mp.get_property_number('chapter', 0) + 1
- local count, limlist = limited_list('chapter-list', pos)
- if count == 0 then
- return 'No chapters.'
- end
-
- local message = string.format('Chapters [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local time = mp.format_time(v.time)
- local title = v.title
- if title == nil then
- title = string.format('Chapter %02d', i)
- end
- message = string.format('%s[%s] %s %s\n', message, time,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function show_message(text, duration)
-
- --print("text: "..text.." duration: " .. duration)
- if duration == nil then
- duration = tonumber(mp.get_property("options/osd-duration")) / 1000
- elseif not type(duration) == "number" then
- print("duration: " .. duration)
- end
-
- -- cut the text short, otherwise the following functions
- -- may slow down massively on huge input
- text = string.sub(text, 0, 4000)
-
- -- replace actual linebreaks with ASS linebreaks
- text = string.gsub(text, "\n", "\\N")
-
- state.message_text = text
-
- if not state.message_hide_timer then
- state.message_hide_timer = mp.add_timeout(0, request_tick)
- end
- state.message_hide_timer:kill()
- state.message_hide_timer.timeout = duration
- state.message_hide_timer:resume()
- request_tick()
-end
-
-function render_message(ass)
- if state.message_hide_timer and state.message_hide_timer:is_enabled() and
- state.message_text
- then
- local _, lines = string.gsub(state.message_text, "\\N", "")
-
- local fontsize = tonumber(mp.get_property("options/osd-font-size"))
- local outline = tonumber(mp.get_property("options/osd-border-size"))
- local maxlines = math.ceil(osc_param.unscaled_y*0.75 / fontsize)
- local counterscale = osc_param.playresy / osc_param.unscaled_y
-
- fontsize = fontsize * counterscale / math.max(0.65 + math.min(lines/maxlines, 1), 1)
- outline = outline * counterscale / math.max(0.75 + math.min(lines/maxlines, 1)/2, 1)
-
- local style = "{\\bord" .. outline .. "\\fs" .. fontsize .. "}"
-
-
- ass:new_event()
- ass:append(style .. state.message_text)
- else
- state.message_text = nil
- end
-end
-
---
--- Initialisation and Layout
---
-
-function new_element(name, type)
- elements[name] = {}
- elements[name].type = type
-
- -- add default stuff
- elements[name].eventresponder = {}
- elements[name].visible = true
- elements[name].enabled = true
- elements[name].softrepeat = false
- elements[name].styledown = (type == "button")
- elements[name].state = {}
-
- if (type == "slider") then
- elements[name].slider = {min = {value = 0}, max = {value = 100}}
- end
-
-
- return elements[name]
-end
-
-function add_layout(name)
- if not (elements[name] == nil) then
- -- new layout
- elements[name].layout = {}
-
- -- set layout defaults
- elements[name].layout.layer = 50
- elements[name].layout.alpha = {[1] = 0, [2] = 255, [3] = 255, [4] = 255}
-
- if (elements[name].type == "button") then
- elements[name].layout.button = {
- maxchars = nil,
- }
- elseif (elements[name].type == "slider") then
- -- slider defaults
- elements[name].layout.slider = {
- border = 1,
- gap = 1,
- nibbles_top = true,
- nibbles_bottom = true,
- stype = "slider",
- adjust_tooltip = true,
- tooltip_style = "",
- tooltip_an = 2,
- alpha = {[1] = 0, [2] = 255, [3] = 88, [4] = 255},
- }
- elseif (elements[name].type == "box") then
- elements[name].layout.box = {radius = 0, hexagon = false}
- end
-
- return elements[name].layout
- else
- msg.error("Can't add_layout to element \""..name.."\", doesn't exist.")
- end
-end
-
--- Window Controls
-function window_controls(topbar)
- local wc_geo = {
- x = 0,
- -- -2去除默认情况下上方和边框之间的4px间隔
- y = 30 + user_opts.barmargin -2,
- an = 1,
- w = osc_param.playresx,
- h = 30,
- }
-
- local alignment = window_controls_alignment()
- local controlbox_w = window_control_box_width
- local titlebox_w = wc_geo.w - controlbox_w
-
- -- Default alignment is "right"
- local controlbox_left = wc_geo.w - controlbox_w
- local titlebox_left = wc_geo.x
- local titlebox_right = wc_geo.w - controlbox_w
-
- if alignment == "left" then
- controlbox_left = wc_geo.x
- titlebox_left = wc_geo.x + controlbox_w
- titlebox_right = wc_geo.w
- end
-
- add_area("window-controls",
- get_hitbox_coords(controlbox_left, wc_geo.y, wc_geo.an,
- controlbox_w, wc_geo.h))
-
- local lo
-
- -- Background Bar
- new_element("wcbar", "box")
- lo = add_layout("wcbar")
- lo.geometry = wc_geo
- lo.layer = 10
- lo.style = osc_styles.rjno1wcBar
- lo.alpha[1] = user_opts.boxalpha
-
- local button_y = wc_geo.y - (wc_geo.h / 2)
- local first_geo =
- {x = controlbox_left + 5, y = button_y, an = 4, w = 25, h = 25}
- local second_geo =
- {x = controlbox_left + 30, y = button_y, an = 4, w = 25, h = 25}
- local third_geo =
- {x = controlbox_left + 55, y = button_y, an = 4, w = 25, h = 25}
-
- -- Window control buttons use symbols in the custom mpv osd font
- -- because the official unicode codepoints are sufficiently
- -- exotic that a system might lack an installed font with them,
- -- and libass will complain that they are not present in the
- -- default font, even if another font with them is available.
-
- -- Close: 🗙
- ne = new_element("close", "button")
- ne.content = "\238\132\149"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("quit") end
- lo = add_layout("close")
- lo.geometry = alignment == "left" and first_geo or third_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- Minimize: 🗕
- ne = new_element("minimize", "button")
- ne.content = "\238\132\146"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "window-minimized") end
- lo = add_layout("minimize")
- lo.geometry = alignment == "left" and second_geo or first_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- Maximize: 🗖 /🗗
- ne = new_element("maximize", "button")
- if state.maximized or state.fullscreen then
- ne.content = "\238\132\148"
- else
- ne.content = "\238\132\147"
- end
- ne.eventresponder["mbtn_left_up"] =
- function ()
- if state.fullscreen then
- mp.commandv("cycle", "fullscreen")
- else
- mp.commandv("cycle", "window-maximized")
- end
- end
- lo = add_layout("maximize")
- lo.geometry = alignment == "left" and third_geo or second_geo
- lo.style = osc_styles.rjno1wcButtons
-
- -- deadzone below window controls
- local sh_area_y0, sh_area_y1
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (wc_geo.y + (wc_geo.h / 2)) +
- get_align(1 - (2 * user_opts.deadzonesize),
- osc_param.playresy - (wc_geo.y + (wc_geo.h / 2)), 0, 0)
- add_area("showhide_wc", wc_geo.x, sh_area_y0, wc_geo.w, sh_area_y1)
-
- if topbar then
- -- The title is already there as part of the top bar
- return
- else
- -- Apply boxvideo margins to the control bar
- osc_param.video_margins.t = wc_geo.h / osc_param.playresy
- end
-
- -- Window Title
- ne = new_element("wctitle", "button")
- ne.content = function ()
- --local title = mp.command_native({"expand-text", user_opts.title})
- --使用这个lua脚本顶部设置中的rjno1title参数替代title参数显示标题
- local title = mp.command_native({"expand-text", user_opts.rjno1title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
- local left_pad = 5
- local right_pad = 10
- lo = add_layout("wctitle")
- -- -3用来解决由于字体从24变为18后字体太靠下的问题
- lo.geometry =
- { x = titlebox_left + left_pad, y = wc_geo.y - 3 -3, an = 1,
- w = titlebox_w, h = wc_geo.h }
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.rjno1wcTitle,
- titlebox_left + left_pad, wc_geo.y - wc_geo.h,
- titlebox_right - right_pad , wc_geo.y + wc_geo.h)
-
- add_area("window-controls-title",
- titlebox_left, 0, titlebox_right, wc_geo.h)
-end
-
---
--- Layouts
---
-
-local layouts = {}
-
--- Classic box layout
-layouts["box"] = function ()
-
- local osc_geo = {
- w = 1100, -- width
- h = 65, -- height
- r = 0, -- corner-radius
- p = 0, -- padding
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w + (2 * osc_geo.p))) then
- osc_param.playresy = (osc_geo.w+(2*osc_geo.p))/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- -- position offset for contents aligned at the borders of the box
- local pos_offsetX = (osc_geo.w - (2*osc_geo.p)) / 2
- local pos_offsetY = (osc_geo.h - (2*osc_geo.p)) / 2
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- -- fetch values
- local osc_w, osc_h, osc_r, osc_p =
- osc_geo.w, osc_geo.h, osc_geo.r, osc_geo.p
-
- local lo
-
- --
- -- Background box
- --
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY, an = 5, w = osc_w, h = osc_h}
- lo.layer = 10
- lo.style = osc_styles.rjno1box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = user_opts.boxalpha
- lo.box.radius = osc_r
-
- --
- -- Title row
- --
---an是元素根据自己的中心线上下浮动,an=1时 元素中心全部在中心点上,an=9 元素全部在中心点右侧和之下
---box左上角x坐标 posX - pos_offsetX 但an=5 元素中心点坐标和这个坐标一致,所以还要根据an=?加减元素的宽度
---box左上角y坐标 posY - pos_offsetY 但an=5 元素中心点坐标和这个坐标一致,所以还要根据an=?加减元素的高度
- local rjno1X = posX - pos_offsetX
- local rjno1Y = posY - pos_offsetY
-
-
- --
- -- Seekbar
- --
- geo ={x = rjno1X + 1100 / 2 , y = rjno1Y + 6+8 , an = 5, w = 1080, h = 9}
--- lo = add_layout("seekbar")
-
---if user_opts["seekbarstyle"] ~= "knob" then
-
- new_element("bgbar1", "box")
- lo = add_layout("bgbar1")
-
- lo.geometry = geo
- lo.layer = 13
- lo.style = osc_styles.rjno1vidtitleBar
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.05)
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = geo.h / 2
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
---end
-
- lo = add_layout("seekbar")
- lo.geometry = geo
- lo.style = osc_styles.rjno1timecodes
- lo.slider.border = 0
- lo.slider.gap = 0
- lo.slider.tooltip_style = osc_styles.rjno1timePosBar
- lo.slider.tooltip_an = 5
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
---if user_opts["seekbarstyle"] == "knob" then
--- lo.geometry.y = rjno1Y + 6 + 9
--- lo.geometry.h = 16
--- lo.geometry.w = 1100
---end
-
-
-
-
-
- geo ={x = rjno1X + 1100 / 2 , y = rjno1Y + 6+8 + 14 , an = 5, w = 1080, h = 1}
-
- new_element("bgbar2", "box")
- lo = add_layout("bgbar2")
-
- lo.geometry = geo
- lo.layer = 13
- lo.style = osc_styles.rjno11line1
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.05)
-
-
-
-
-
- lo = add_layout("playpause")
- lo.geometry = {x = rjno1X + 10 * 2.4 * 0 + 10 * 2.4, y = rjno1Y + 10 * 3 + 30 / 2 + 2 , an = 5, w = 26, h = 30}
- lo.style = osc_styles.rjno150Buttons
-
-
- -- lo = add_layout("ch_prev")
- -- lo.geometry = {x = rjno1X + 10 * 3.5 * 1 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- -- lo.style = osc_styles.rjno140Buttons
-
- lo = add_layout("skipback")
- lo.geometry = {x = rjno1X + 10 * 2.4 * 1 + 10 * 2.4, y = rjno1Y + 10 * 3 + 30 / 2 + 2 , an = 5, w = 26, h = 30}
- lo.style = osc_styles.rjno150Buttons
-
-
- lo = add_layout("skipfrwd")
- lo.geometry = {x = rjno1X + 10 * 2.4 * 2 + 10 * 2.4, y = rjno1Y + 10 * 3 + 30 / 2 + 2 , an = 5, w = 26, h = 30}
- lo.style = osc_styles.rjno150Buttons
-
-
- -- lo = add_layout("ch_next")
- -- lo.geometry = {x = rjno1X + 10 * 3.5 * 5 + 10 * 3 -8, y = rjno1Y + 10 * 1.6 + 50 / 2 , an = 5, w = 30, h = 50}
- -- lo.style = osc_styles.rjno140Buttons
-
- lo = add_layout("pl_prev")
- lo.geometry = {x = rjno1X + 10 * 2.4 * 3 + 10 * 2.4, y = rjno1Y + 10 * 3 + 30 / 2 + 2 , an = 5, w = 26, h = 30}
- lo.style = osc_styles.rjno150Buttons
-
- lo = add_layout("pl_next")
- lo.geometry = {x = rjno1X + 10 * 2.4 * 4 + 10 * 2.4, y = rjno1Y + 10 * 3 + 30 / 2 + 2 , an = 5, w = 26, h = 30}
- lo.style = osc_styles.rjno150Buttons
-
-
-
-
-
-
---an = 1 这样左侧的时间变长才会往右,但y轴要调整
- lo = add_layout("tc_left")
- lo.geometry = {x = rjno1X + 10 * 2.4 * 5 + 10 * 2.4 + 110/2 - 17, y = rjno1Y + 10 * 3 + 30 / 2 + 2 +0, an = 5, w = 110, h = 20}
- lo.style = osc_styles.rjno140Buttons
-
-
-
- geo ={x = rjno1X + 10 * 2.4 * 5 + 10 * 2.4 + 80 , y = rjno1Y + 10 * 3 + 30 / 2 + 2 +0 , an = 5, w = 2, h = 11}
-
- new_element("bgbar3", "box")
- lo = add_layout("bgbar3")
-
- lo.geometry = geo
- lo.layer = 13
- lo.style = osc_styles.rjno11line2
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.05)
-
-
-
---an = 9 这样右侧的时间变长才会往左,但y轴要调整
- lo = add_layout("tc_right")
- lo.geometry = {x = rjno1X + 10 * 2.4 * 11 + 10 * 2.4 + 10 + 6 - 110/2 +17 , y = rjno1Y + 10 * 3 + 30 / 2 + 2 +0, an = 5, w = 110, h = 20}
- lo.style = osc_styles.rjno140Buttons
-
-
---an = 5 时文字居中显示 往2边增加,所以一定要用1,这样多出的文字只会往右侧增长
- lo = add_layout("title")
- lo.geometry = {x = rjno1X + 10 * 2.4 * 12 +25 , y = rjno1Y + 10 * 3 + 30 / 2 + 2 +8 , an = 1, w = 450, h = 20}
- lo.style = osc_styles.rjno116Buttons
- lo.button.maxchars = 102
-
- geo ={x = rjno1X + 10 * 2.4 * 12 +21 + 507/2 , y = rjno1Y + 10 * 3 + 30 / 2 + 2 +0 , an = 5, w = 507, h = 20}
-
- new_element("titlebg", "box")
- lo = add_layout("titlebg")
-
- lo.geometry = geo
- lo.layer = 13
- lo.style = osc_styles.rjno11line3
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.05)
-
-
---an = 5
- lo = add_layout("cache")
- lo.geometry = {x = rjno1X + 10 * 2.4 * 36 -3, y = rjno1Y + 10 * 3 + 30 / 2 + 2+0, an = 5, w = 110, h = 20}
- lo.style = osc_styles.rjno140Buttons
-
-
-
-
- lo = add_layout("cy_audio")
- lo.geometry = {x = rjno1X + 10 * 110 -30*2-5-35-65, y = rjno1Y + 10 * 5.1 -4, an = 5, w = 64, h = 30}
- lo.style = osc_styles.rjno120Buttons
-
- lo = add_layout("cy_sub")
- lo.geometry = {x = rjno1X + 10 * 110 -30*2 -5 -35, y = rjno1Y + 10 * 5.1-4, an = 5, w = 64, h = 30}
- lo.style = osc_styles.rjno120Buttons
-
---an = 1 图标最左侧才能点击
- lo = add_layout("volume")
- lo.geometry = {x = rjno1X + 10 * 110 -30*2 -2, y = rjno1Y + 10 * 5 + 11, an = 1, w = 26, h = 30}
- lo.style = osc_styles.rjno125Buttons
---an = 1 图标最左侧才能点击
- lo = add_layout("tog_fs")
- lo.geometry = {x = rjno1X + 10 * 110 -30, y = rjno1Y + 10 * 5 + 13 -1 , an = 1, w = 26, h =30 }
- lo.style = osc_styles.rjno125Buttons
-
-end
-
--- slim box layout
-layouts["slimbox"] = function ()
-
- local osc_geo = {
- w = 660, -- width
- h = 70, -- height
- r = 10, -- corner-radius
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w)) then
- osc_param.playresy = (osc_geo.w)/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo
-
- local tc_w, ele_h, inner_w = 100, 20, osc_geo.w - 100
-
- -- styles
- local styles = {
- box = "{\\rDefault\\blur0\\bord1\\1c&H000000\\3c&HFFFFFF}",
- timecodes = "{\\1c&HFFFFFF\\3c&H000000\\fs20\\bord2\\blur1}",
- tooltip = "{\\1c&HFFFFFF\\3c&H000000\\fs12\\bord1\\blur0.5}",
- }
-
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = 0
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = osc_geo.r
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
-
- lo = add_layout("seekbar")
- lo.geometry =
- {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.style = osc_styles.timecodes
- lo.slider.border = 0
- lo.slider.gap = 1.5
- lo.slider.tooltip_style = styles.tooltip
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
- lo.slider.adjust_tooltip = false
-
- --
- -- Timecodes
- --
-
- lo = add_layout("tc_left")
- lo.geometry =
- {x = posX - (inner_w/2) + osc_geo.r, y = posY + 1,
- an = 7, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- lo = add_layout("tc_right")
- lo.geometry =
- {x = posX + (inner_w/2) - osc_geo.r, y = posY + 1,
- an = 9, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- -- Cache
-
- lo = add_layout("cache")
- lo.geometry =
- {x = posX, y = posY + 1,
- an = 8, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
-
-end
-
-function bar_layout(direction)
- local osc_geo = {
- x = -2,
- y,
- an = (direction < 0) and 7 or 1,
- w,
- h = 56,
- }
-
- local padX = 9
- local padY = 3
- local buttonW = 27
- local tcW = (state.tc_ms) and 170 or 110
- local tsW = 90
- local minW = (buttonW + padX)*5 + (tcW + padX)*4 + (tsW + padX)*2
-
- -- Special topbar handling when window controls are present
- local padwc_l
- local padwc_r
- if direction < 0 or not window_controls_enabled() then
- padwc_l = 0
- padwc_r = 0
- elseif window_controls_alignment() == "left" then
- padwc_l = window_control_box_width
- padwc_r = 0
- else
- padwc_l = 0
- padwc_r = window_control_box_width
- end
-
- if ((osc_param.display_aspect > 0) and (osc_param.playresx < minW)) then
- osc_param.playresy = minW / osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- osc_geo.y = direction * (54 + user_opts.barmargin)
- osc_geo.w = osc_param.playresx + 4
- if direction < 0 then
- osc_geo.y = osc_geo.y + osc_param.playresy
- end
-
- local line1 = osc_geo.y - direction * (9 + padY)
- local line2 = osc_geo.y - direction * (36 + padY)
-
- osc_param.areas = {}
-
- add_area("input", get_hitbox_coords(osc_geo.x, osc_geo.y, osc_geo.an,
- osc_geo.w, osc_geo.h))
-
- local sh_area_y0, sh_area_y1
- if direction > 0 then
- -- deadzone below OSC
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (osc_geo.y + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (osc_geo.y + (osc_geo.h / 2)), 0, 0)
- else
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- osc_geo.y - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy - user_opts.barmargin
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo, geo
-
- -- Background bar
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = osc_geo
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
-
-
- -- Playlist prev/next
- geo = { x = osc_geo.x + padX, y = line1,
- an = 4, w = 18, h = 18 - padY }
- lo = add_layout("pl_prev")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("pl_next")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- local t_l = geo.x + geo.w + padX
-
- -- Cache
- geo = { x = osc_geo.x + osc_geo.w - padX, y = geo.y,
- an = 6, w = 150, h = geo.h }
- lo = add_layout("cache")
- lo.geometry = geo
- lo.style = osc_styles.vidtitleBar
-
- local t_r = geo.x - geo.w - padX*2
-
- -- Title
- geo = { x = t_l, y = geo.y, an = 4,
- w = t_r - t_l, h = geo.h }
- lo = add_layout("title")
- lo.geometry = geo
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.vidtitleBar,
- geo.x, geo.y-geo.h, geo.w, geo.y+geo.h)
-
-
- -- Playback control buttons
- geo = { x = osc_geo.x + padX + padwc_l, y = line2, an = 4,
- w = buttonW, h = 36 - padY*2}
- lo = add_layout("playpause")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_prev")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_next")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Left timecode
- geo = { x = geo.x + geo.w + padX + tcW, y = geo.y, an = 6,
- w = tcW, h = geo.h }
- lo = add_layout("tc_left")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_l = geo.x + padX
-
- -- Fullscreen button
- geo = { x = osc_geo.x + osc_geo.w - buttonW - padX - padwc_r, y = geo.y, an = 4,
- w = buttonW, h = geo.h }
- lo = add_layout("tog_fs")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Volume
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("volume")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Track selection buttons
- geo = { x = geo.x - tsW - padX, y = geo.y, an = geo.an, w = tsW, h = geo.h }
- lo = add_layout("cy_sub")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("cy_audio")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
-
- -- Right timecode
- geo = { x = geo.x - padX - tcW - 10, y = geo.y, an = geo.an,
- w = tcW, h = geo.h }
- lo = add_layout("tc_right")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_r = geo.x - padX
-
-
- -- Seekbar
- geo = { x = sb_l, y = geo.y, an = geo.an,
- w = math.max(0, sb_r - sb_l), h = geo.h }
- new_element("bgbar1", "box")
- lo = add_layout("bgbar1")
-
- lo.geometry = geo
- lo.layer = 15
- lo.style = osc_styles.timecodesBar
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.8)
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = geo.h / 2
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
- lo = add_layout("seekbar")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
- lo.slider.border = 0
- lo.slider.gap = 2
- lo.slider.tooltip_style = osc_styles.timePosBar
- lo.slider.tooltip_an = 5
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
- if direction < 0 then
- osc_param.video_margins.b = osc_geo.h / osc_param.playresy
- else
- osc_param.video_margins.t = osc_geo.h / osc_param.playresy
- end
-end
-
-layouts["bottombar"] = function()
- bar_layout(-1)
-end
-
-layouts["topbar"] = function()
- bar_layout(1)
-end
-
--- Validate string type user options
-function validate_user_opts()
- if layouts[user_opts.layout] == nil then
- msg.warn("Invalid setting \""..user_opts.layout.."\" for layout")
- user_opts.layout = "bottombar"
- end
-
- if user_opts.seekbarstyle ~= "bar" and
- user_opts.seekbarstyle ~= "diamond" and
- user_opts.seekbarstyle ~= "knob" then
- msg.warn("Invalid setting \"" .. user_opts.seekbarstyle
- .. "\" for seekbarstyle")
- user_opts.seekbarstyle = "bar"
- end
-
- if user_opts.seekrangestyle ~= "bar" and
- user_opts.seekrangestyle ~= "line" and
- user_opts.seekrangestyle ~= "slider" and
- user_opts.seekrangestyle ~= "inverted" and
- user_opts.seekrangestyle ~= "none" then
- msg.warn("Invalid setting \"" .. user_opts.seekrangestyle
- .. "\" for seekrangestyle")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.seekrangestyle == "slider" and
- user_opts.seekbarstyle == "bar" then
- msg.warn("Using \"slider\" seekrangestyle together with \"bar\" seekbarstyle is not supported")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.windowcontrols ~= "auto" and
- user_opts.windowcontrols ~= "yes" and
- user_opts.windowcontrols ~= "no" then
- msg.warn("windowcontrols cannot be \"" ..
- user_opts.windowcontrols .. "\". Ignoring.")
- user_opts.windowcontrols = "auto"
- end
- if user_opts.windowcontrols_alignment ~= "right" and
- user_opts.windowcontrols_alignment ~= "left" then
- msg.warn("windowcontrols_alignment cannot be \"" ..
- user_opts.windowcontrols_alignment .. "\". Ignoring.")
- user_opts.windowcontrols_alignment = "right"
- end
-end
-
-function update_options(list)
- validate_user_opts()
- request_tick()
- visibility_mode(user_opts.visibility, true)
- update_duration_watch()
- request_init()
-end
-
--- OSC INIT
-function osc_init()
- msg.debug("osc_init")
-
- -- set canvas resolution according to display aspect and scaling setting
- local baseResY = 720
- local display_w, display_h, display_aspect = mp.get_osd_size()
- local scale = 1
-
- if (mp.get_property("video") == "no") then -- dummy/forced window
- scale = user_opts.scaleforcedwindow
- elseif state.fullscreen then
- scale = user_opts.scalefullscreen
- else
- scale = user_opts.scalewindowed
- end
-
- if user_opts.vidscale then
- osc_param.unscaled_y = baseResY
- else
- osc_param.unscaled_y = display_h
- end
- osc_param.playresy = osc_param.unscaled_y / scale
- if (display_aspect > 0) then
- osc_param.display_aspect = display_aspect
- end
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
-
- -- stop seeking with the slider to prevent skipping files
- state.active_element = nil
-
- osc_param.video_margins = {l = 0, r = 0, t = 0, b = 0}
-
- elements = {}
-
- -- some often needed stuff
- local pl_count = mp.get_property_number("playlist-count", 0)
- local have_pl = (pl_count > 1)
- local pl_pos = mp.get_property_number("playlist-pos", 0) + 1
- local have_ch = (mp.get_property_number("chapters", 0) > 0)
- local loop = mp.get_property("loop-playlist", "no")
-
- local ne
-
- -- title
- ne = new_element("title", "button")
-
- ne.content = function ()
- local title = state.forced_title or
- mp.command_native({"expand-text", user_opts.title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
-
- ne.eventresponder["mbtn_left_up"] = function ()
- local title = mp.get_property_osd("media-title")
- if (have_pl) then
- title = string.format("[%d/%d] %s", countone(pl_pos - 1),
- pl_count, title)
- end
- show_message(title)
- end
-
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(mp.get_property_osd("filename")) end
-
- -- playlist buttons
-
- -- prev
- ne = new_element("pl_prev", "button")
-
- ne.content = "\238\132\144"
- ne.enabled = (pl_pos > 1) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-prev", "weak")
- show_message(get_playlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
- --next
- ne = new_element("pl_next", "button")
-
- ne.content = "\238\132\129"
- ne.enabled = (have_pl and (pl_pos < pl_count)) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-next", "weak")
- show_message(get_playlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
-
- -- big buttons
-
- --playpause
- ne = new_element("playpause", "button")
-
- ne.content = function ()
- if mp.get_property("pause") == "yes" then
- return ("\238\132\129")
- else
- return ("\238\128\130")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "pause") end
-
- --skipback
- ne = new_element("skipback", "button")
-
- ne.softrepeat = true
- ne.content = "\238\128\132"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", -5, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-back-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", -30, "relative", "keyframes") end
-
- --skipfrwd
- ne = new_element("skipfrwd", "button")
-
- ne.softrepeat = true
- ne.content = "\238\128\133"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", 10, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", 60, "relative", "keyframes") end
-
- --ch_prev
- ne = new_element("ch_prev", "button")
-
- ne.enabled = have_ch
- ne.content = "\238\132\132"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", -1)
- show_message(get_chapterlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --ch_next
- ne = new_element("ch_next", "button")
-
- ne.enabled = have_ch
- ne.content = "\238\132\133"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", 1)
- show_message(get_chapterlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --
- update_tracklist()
-
- --cy_audio
- ne = new_element("cy_audio", "button")
-
- ne.enabled = (#tracks_osc.audio > 0)
- ne.content = function ()
- local aid = "–"
- if not (get_track("audio") == 0) then
- aid = get_track("audio")
- end
- return ("\238\132\134" .. osc_styles.smallButtonsLlabel
- .. " " .. aid .. "/" .. #tracks_osc.audio)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("audio", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("audio", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("audio"), 2) end
-
- --cy_sub
- ne = new_element("cy_sub", "button")
-
- ne.enabled = (#tracks_osc.sub > 0)
- ne.content = function ()
- local sid = "–"
- if not (get_track("sub") == 0) then
- sid = get_track("sub")
- end
- return ("\238\132\135" .. osc_styles.smallButtonsLlabel
- .. " " .. sid .. "/" .. #tracks_osc.sub)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("sub", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("sub", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("sub"), 2) end
-
- --tog_fs
- ne = new_element("tog_fs", "button")
- ne.content = function ()
- if (state.fullscreen) then
- return ("\238\132\137")
- else
- return ("\238\132\136")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "fullscreen") end
-
- --seekbar
- ne = new_element("seekbar", "slider")
-
- ne.enabled = not (mp.get_property("percent-pos") == nil)
- state.slider_element = ne.enabled and ne or nil -- used for forced_title
- ne.slider.markerF = function ()
- local duration = mp.get_property_number("duration", nil)
- if not (duration == nil) then
- local chapters = mp.get_property_native("chapter-list", {})
- local markers = {}
- for n = 1, #chapters do
- markers[n] = (chapters[n].time / duration * 100)
- end
- return markers
- else
- return {}
- end
- end
- ne.slider.posF =
- function () return mp.get_property_number("percent-pos", nil) end
- ne.slider.tooltipF = function (pos)
- local duration = mp.get_property_number("duration", nil)
- if not ((duration == nil) or (pos == nil)) then
- possec = duration * (pos / 100)
- return mp.format_time(possec)
- else
- return ""
- end
- end
- ne.slider.seekRangesF = function()
- if user_opts.seekrangestyle == "none" then
- return nil
- end
- local cache_state = state.cache_state
- if not cache_state then
- return nil
- end
- local duration = mp.get_property_number("duration", nil)
- if (duration == nil) or duration <= 0 then
- return nil
- end
- local ranges = cache_state["seekable-ranges"]
- if #ranges == 0 then
- return nil
- end
- local nranges = {}
- for _, range in pairs(ranges) do
- nranges[#nranges + 1] = {
- ["start"] = 100 * range["start"] / duration,
- ["end"] = 100 * range["end"] / duration,
- }
- end
- return nranges
- end
- ne.eventresponder["mouse_move"] = --keyframe seeking when mouse is dragged
- function (element)
- -- mouse move events may pile up during seeking and may still get
- -- sent when the user is done seeking, so we need to throw away
- -- identical seeks
- local seekto = get_slider_value(element)
- if (element.state.lastseek == nil) or
- (not (element.state.lastseek == seekto)) then
- local flags = "absolute-percent"
- if not user_opts.seekbarkeyframes then
- flags = flags .. "+exact"
- end
- mp.commandv("seek", seekto, flags)
- element.state.lastseek = seekto
- end
-
- end
- ne.eventresponder["mbtn_left_down"] = --exact seeks on single clicks
- function (element) mp.commandv("seek", get_slider_value(element),
- "absolute-percent", "exact") end
- ne.eventresponder["reset"] =
- function (element) element.state.lastseek = nil end
-
-
- -- tc_left (current pos)
- ne = new_element("tc_left", "button")
-
- ne.content = function ()
- if (state.tc_ms) then
- return (mp.get_property_osd("playback-time/full"))
- else
- return (mp.get_property_osd("playback-time"))
- end
- end
- ne.eventresponder["mbtn_left_up"] = function ()
- state.tc_ms = not state.tc_ms
- request_init()
- end
-
- -- tc_right (total/remaining time)
- ne = new_element("tc_right", "button")
-
- ne.visible = (mp.get_property_number("duration", 0) > 0)
- ne.content = function ()
- if (state.rightTC_trem) then
- if state.tc_ms then
- return ("-"..mp.get_property_osd("playtime-remaining/full"))
- else
- return ("-"..mp.get_property_osd("playtime-remaining"))
- end
- else
- if state.tc_ms then
- return (mp.get_property_osd("duration/full"))
- else
- return (mp.get_property_osd("duration"))
- end
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () state.rightTC_trem = not state.rightTC_trem end
-
- -- cache
- ne = new_element("cache", "button")
-
- ne.content = function ()
- local cache_state = state.cache_state
- if not (cache_state and cache_state["seekable-ranges"] and
- #cache_state["seekable-ranges"] > 0) then
- -- probably not a network stream
- return ""
- end
- local dmx_cache = cache_state and cache_state["cache-duration"]
- local thresh = math.min(state.dmx_cache * 0.05, 5) -- 5% or 5s
- if dmx_cache and math.abs(dmx_cache - state.dmx_cache) >= thresh then
- state.dmx_cache = dmx_cache
- else
- dmx_cache = state.dmx_cache
- end
- local min = math.floor(dmx_cache / 60)
- local sec = dmx_cache % 60
- return "Cache: " .. (min > 0 and
- string.format("%sm%02.0fs", min, sec) or
- string.format("%3.0fs", dmx_cache))
- end
-
- -- volume
- ne = new_element("volume", "button")
-
- ne.content = function()
- local volume = mp.get_property_number("volume", 0)
- local mute = mp.get_property_native("mute")
- local volicon = {"\238\132\139", "\238\132\140",
- "\238\132\141", "\238\132\142"}
- if volume == 0 or mute then
- return "\238\132\138"
- else
- return volicon[math.min(4,math.ceil(volume / (100/3)))]
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "mute") end
-
- ne.eventresponder["wheel_up_press"] =
- function () mp.commandv("osd-auto", "add", "volume", 5) end
- ne.eventresponder["wheel_down_press"] =
- function () mp.commandv("osd-auto", "add", "volume", -5) end
-
-
- -- load layout
- layouts[user_opts.layout]()
-
- -- load window controls
- if window_controls_enabled() then
- window_controls(user_opts.layout == "topbar")
- end
-
- --do something with the elements
- prepare_elements()
-
- update_margins()
-end
-
-function reset_margins()
- if state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- mp.set_property_number(opt[2], 0.0)
- end
- state.using_video_margins = false
- end
-end
-
-function update_margins()
- local margins = osc_param.video_margins
-
- -- Don't use margins if it's visible only temporarily.
- if (not state.osc_visible) or (get_hidetimeout() >= 0) or
- (state.fullscreen and not user_opts.showfullscreen) or
- (not state.fullscreen and not user_opts.showwindowed)
- then
- margins = {l = 0, r = 0, t = 0, b = 0}
- end
-
- if user_opts.boxvideo then
- -- check whether any margin option has a non-default value
- local margins_used = false
-
- if not state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- if mp.get_property_number(opt[2], 0.0) ~= 0.0 then
- margins_used = true
- end
- end
- end
-
- if not margins_used then
- for _, opt in ipairs(margins_opts) do
- local v = margins[opt[1]]
- if (v ~= 0) or state.using_video_margins then
- mp.set_property_number(opt[2], v)
- state.using_video_margins = true
- end
- end
- end
- else
- reset_margins()
- end
-
- utils.shared_script_property_set("osc-margins",
- string.format("%f,%f,%f,%f", margins.l, margins.r, margins.t, margins.b))
-end
-
-function shutdown()
- reset_margins()
- utils.shared_script_property_set("osc-margins", nil)
-end
-
---
--- Other important stuff
---
-
-
-function show_osc()
- -- show when disabled can happen (e.g. mouse_move) due to async/delayed unbinding
- if not state.enabled then return end
-
- msg.trace("show_osc")
- --remember last time of invocation (mouse move)
- state.showtime = mp.get_time()
-
- osc_visible(true)
-
- if (user_opts.fadeduration > 0) then
- state.anitype = nil
- end
-end
-
-function hide_osc()
- msg.trace("hide_osc")
- if not state.enabled then
- -- typically hide happens at render() from tick(), but now tick() is
- -- no-op and won't render again to remove the osc, so do that manually.
- state.osc_visible = false
- render_wipe()
- elseif (user_opts.fadeduration > 0) then
- if not(state.osc_visible == false) then
- state.anitype = "out"
- request_tick()
- end
- else
- osc_visible(false)
- end
-end
-
-function osc_visible(visible)
- if state.osc_visible ~= visible then
- state.osc_visible = visible
- update_margins()
- end
- request_tick()
-end
-
-function pause_state(name, enabled)
- state.paused = enabled
- request_tick()
-end
-
-function cache_state(name, st)
- state.cache_state = st
- request_tick()
-end
-
--- Request that tick() is called (which typically re-renders the OSC).
--- The tick is then either executed immediately, or rate-limited if it was
--- called a small time ago.
-function request_tick()
- if state.tick_timer == nil then
- state.tick_timer = mp.add_timeout(0, tick)
- end
-
- if not state.tick_timer:is_enabled() then
- local now = mp.get_time()
- local timeout = tick_delay - (now - state.tick_last_time)
- if timeout < 0 then
- timeout = 0
- end
- state.tick_timer.timeout = timeout
- state.tick_timer:resume()
- end
-end
-
-function mouse_leave()
- if get_hidetimeout() >= 0 then
- hide_osc()
- end
- -- reset mouse position
- state.last_mouseX, state.last_mouseY = nil, nil
- state.mouse_in_window = false
-end
-
-function request_init()
- state.initREQ = true
- request_tick()
-end
-
--- Like request_init(), but also request an immediate update
-function request_init_resize()
- request_init()
- -- ensure immediate update
- state.tick_timer:kill()
- state.tick_timer.timeout = 0
- state.tick_timer:resume()
-end
-
-function render_wipe()
- msg.trace("render_wipe()")
- state.osd.data = "" -- allows set_osd to immediately update on enable
- state.osd:remove()
-end
-
-function render()
- msg.trace("rendering")
- local current_screen_sizeX, current_screen_sizeY, aspect = mp.get_osd_size()
- local mouseX, mouseY = get_virt_mouse_pos()
- local now = mp.get_time()
-
- -- check if display changed, if so request reinit
- if not (state.mp_screen_sizeX == current_screen_sizeX
- and state.mp_screen_sizeY == current_screen_sizeY) then
-
- request_init_resize()
-
- state.mp_screen_sizeX = current_screen_sizeX
- state.mp_screen_sizeY = current_screen_sizeY
- end
-
- -- init management
- if state.active_element then
- -- mouse is held down on some element - keep ticking and igore initReq
- -- till it's released, or else the mouse-up (click) will misbehave or
- -- get ignored. that's because osc_init() recreates the osc elements,
- -- but mouse handling depends on the elements staying unmodified
- -- between mouse-down and mouse-up (using the index active_element).
- request_tick()
- elseif state.initREQ then
- osc_init()
- state.initREQ = false
-
- -- store initial mouse position
- if (state.last_mouseX == nil or state.last_mouseY == nil)
- and not (mouseX == nil or mouseY == nil) then
-
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
- end
- end
-
-
- -- fade animation
- if not(state.anitype == nil) then
-
- if (state.anistart == nil) then
- state.anistart = now
- end
-
- if (now < state.anistart + (user_opts.fadeduration/1000)) then
-
- if (state.anitype == "in") then --fade in
- osc_visible(true)
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 255, 0, now)
- elseif (state.anitype == "out") then --fade out
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 0, 255, now)
- end
-
- else
- if (state.anitype == "out") then
- osc_visible(false)
- end
- kill_animation()
- end
- else
- kill_animation()
- end
-
- --mouse show/hide area
- for k,cords in pairs(osc_param.areas["showhide"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide")
- end
- if osc_param.areas["showhide_wc"] then
- for k,cords in pairs(osc_param.areas["showhide_wc"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide_wc")
- end
- else
- set_virt_mouse_area(0, 0, 0, 0, "showhide_wc")
- end
- do_enable_keybindings()
-
- --mouse input area
- local mouse_over_osc = false
-
- for _,cords in ipairs(osc_param.areas["input"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "input")
- end
- if state.osc_visible ~= state.input_enabled then
- if state.osc_visible then
- mp.enable_key_bindings("input")
- else
- mp.disable_key_bindings("input")
- end
- state.input_enabled = state.osc_visible
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
-
- if osc_param.areas["window-controls"] then
- for _,cords in ipairs(osc_param.areas["window-controls"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "window-controls")
- mp.enable_key_bindings("window-controls")
- else
- mp.disable_key_bindings("window-controls")
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- if osc_param.areas["window-controls-title"] then
- for _,cords in ipairs(osc_param.areas["window-controls-title"]) do
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- -- autohide
- if not (state.showtime == nil) and (get_hidetimeout() >= 0) then
- local timeout = state.showtime + (get_hidetimeout()/1000) - now
- if timeout <= 0 then
- if (state.active_element == nil) and not (mouse_over_osc) then
- hide_osc()
- end
- else
- -- the timer is only used to recheck the state and to possibly run
- -- the code above again
- if not state.hide_timer then
- state.hide_timer = mp.add_timeout(0, tick)
- end
- state.hide_timer.timeout = timeout
- -- re-arm
- state.hide_timer:kill()
- state.hide_timer:resume()
- end
- end
-
-
- -- actual rendering
- local ass = assdraw.ass_new()
-
- -- Messages
- render_message(ass)
-
- -- actual OSC
- if state.osc_visible then
- render_elements(ass)
- end
-
- -- submit
- set_osd(osc_param.playresy * osc_param.display_aspect,
- osc_param.playresy, ass.text)
-end
-
---
--- Eventhandling
---
-
-local function element_has_action(element, action)
- return element and element.eventresponder and
- element.eventresponder[action]
-end
-
-function process_event(source, what)
- local action = string.format("%s%s", source,
- what and ("_" .. what) or "")
-
- if what == "down" or what == "press" then
-
- for n = 1, #elements do
-
- if mouse_hit(elements[n]) and
- elements[n].eventresponder and
- (elements[n].eventresponder[source .. "_up"] or
- elements[n].eventresponder[action]) then
-
- if what == "down" then
- state.active_element = n
- state.active_event_source = source
- end
- -- fire the down or press event if the element has one
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
-
- end
- end
-
- elseif what == "up" then
-
- if elements[state.active_element] then
- local n = state.active_element
-
- if n == 0 then
- --click on background (does not work)
- elseif element_has_action(elements[n], action) and
- mouse_hit(elements[n]) then
-
- elements[n].eventresponder[action](elements[n])
- end
-
- --reset active element
- if element_has_action(elements[n], "reset") then
- elements[n].eventresponder["reset"](elements[n])
- end
-
- end
- state.active_element = nil
- state.mouse_down_counter = 0
-
- elseif source == "mouse_move" then
-
- state.mouse_in_window = true
-
- local mouseX, mouseY = get_virt_mouse_pos()
- if (user_opts.minmousemove == 0) or
- (not ((state.last_mouseX == nil) or (state.last_mouseY == nil)) and
- ((math.abs(mouseX - state.last_mouseX) >= user_opts.minmousemove)
- or (math.abs(mouseY - state.last_mouseY) >= user_opts.minmousemove)
- )
- ) then
- show_osc()
- end
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
-
- local n = state.active_element
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
- end
-
- -- ensure rendering after any (mouse) event - icons could change etc
- request_tick()
-end
-
-
-local logo_lines = {
- -- White border
- "{\\c&HE5E5E5&\\p6}m 895 10 b 401 10 0 410 0 905 0 1399 401 1800 895 1800 1390 1800 1790 1399 1790 905 1790 410 1390 10 895 10 {\\p0}",
- -- Purple fill
- "{\\c&H682167&\\p6}m 925 42 b 463 42 87 418 87 880 87 1343 463 1718 925 1718 1388 1718 1763 1343 1763 880 1763 418 1388 42 925 42{\\p0}",
- -- Darker fill
- "{\\c&H430142&\\p6}m 1605 828 b 1605 1175 1324 1456 977 1456 631 1456 349 1175 349 828 349 482 631 200 977 200 1324 200 1605 482 1605 828{\\p0}",
- -- White fill
- "{\\c&HDDDBDD&\\p6}m 1296 910 b 1296 1131 1117 1310 897 1310 676 1310 497 1131 497 910 497 689 676 511 897 511 1117 511 1296 689 1296 910{\\p0}",
- -- Triangle
- "{\\c&H691F69&\\p6}m 762 1113 l 762 708 b 881 776 1000 843 1119 911 1000 978 881 1046 762 1113{\\p0}",
-}
-
-local santa_hat_lines = {
- -- Pompoms
- "{\\c&HC0C0C0&\\p6}m 500 -323 b 491 -322 481 -318 475 -311 465 -312 456 -319 446 -318 434 -314 427 -304 417 -297 410 -290 404 -282 395 -278 390 -274 387 -267 381 -265 377 -261 379 -254 384 -253 397 -244 409 -232 425 -228 437 -228 446 -218 457 -217 462 -216 466 -213 468 -209 471 -205 477 -203 482 -206 491 -211 499 -217 508 -222 532 -235 556 -249 576 -267 584 -272 584 -284 578 -290 569 -305 550 -312 533 -309 523 -310 515 -316 507 -321 505 -323 503 -323 500 -323{\\p0}",
- "{\\c&HE0E0E0&\\p6}m 315 -260 b 286 -258 259 -240 246 -215 235 -210 222 -215 211 -211 204 -188 177 -176 172 -151 170 -139 163 -128 154 -121 143 -103 141 -81 143 -60 139 -46 125 -34 129 -17 132 -1 134 16 142 30 145 56 161 80 181 96 196 114 210 133 231 144 266 153 303 138 328 115 373 79 401 28 423 -24 446 -73 465 -123 483 -174 487 -199 467 -225 442 -227 421 -232 402 -242 384 -254 364 -259 342 -250 322 -260 320 -260 317 -261 315 -260{\\p0}",
- -- Main cap
- "{\\c&H0000F0&\\p6}m 1151 -523 b 1016 -516 891 -458 769 -406 693 -369 624 -319 561 -262 526 -252 465 -235 479 -187 502 -147 551 -135 588 -111 1115 165 1379 232 1909 761 1926 800 1952 834 1987 858 2020 883 2053 912 2065 952 2088 1000 2146 962 2139 919 2162 836 2156 747 2143 662 2131 615 2116 567 2122 517 2120 410 2090 306 2089 199 2092 147 2071 99 2034 64 1987 5 1928 -41 1869 -86 1777 -157 1712 -256 1629 -337 1578 -389 1521 -436 1461 -476 1407 -509 1343 -507 1284 -515 1240 -519 1195 -521 1151 -523{\\p0}",
- -- Cap shadow
- "{\\c&H0000AA&\\p6}m 1657 248 b 1658 254 1659 261 1660 267 1669 276 1680 284 1689 293 1695 302 1700 311 1707 320 1716 325 1726 330 1735 335 1744 347 1752 360 1761 371 1753 352 1754 331 1753 311 1751 237 1751 163 1751 90 1752 64 1752 37 1767 14 1778 -3 1785 -24 1786 -45 1786 -60 1786 -77 1774 -87 1760 -96 1750 -78 1751 -65 1748 -37 1750 -8 1750 20 1734 78 1715 134 1699 192 1694 211 1689 231 1676 246 1671 251 1661 255 1657 248 m 1909 541 b 1914 542 1922 549 1917 539 1919 520 1921 502 1919 483 1918 458 1917 433 1915 407 1930 373 1942 338 1947 301 1952 270 1954 238 1951 207 1946 214 1947 229 1945 239 1939 278 1936 318 1924 356 1923 362 1913 382 1912 364 1906 301 1904 237 1891 175 1887 150 1892 126 1892 101 1892 68 1893 35 1888 2 1884 -9 1871 -20 1859 -14 1851 -6 1854 9 1854 20 1855 58 1864 95 1873 132 1883 179 1894 225 1899 273 1908 362 1910 451 1909 541{\\p0}",
- -- Brim and tip pompom
- "{\\c&HF8F8F8&\\p6}m 626 -191 b 565 -155 486 -196 428 -151 387 -115 327 -101 304 -47 273 2 267 59 249 113 219 157 217 213 215 265 217 309 260 302 285 283 373 264 465 264 555 257 608 252 655 292 709 287 759 294 816 276 863 298 903 340 972 324 1012 367 1061 394 1125 382 1167 424 1213 462 1268 482 1322 506 1385 546 1427 610 1479 662 1510 690 1534 725 1566 752 1611 796 1664 830 1703 880 1740 918 1747 986 1805 1005 1863 991 1897 932 1916 880 1914 823 1945 777 1961 725 1979 673 1957 622 1938 575 1912 534 1862 515 1836 473 1790 417 1755 351 1697 305 1658 266 1633 216 1593 176 1574 138 1539 116 1497 110 1448 101 1402 77 1371 37 1346 -16 1295 15 1254 6 1211 -27 1170 -62 1121 -86 1072 -104 1027 -128 976 -133 914 -130 851 -137 794 -162 740 -181 679 -168 626 -191 m 2051 917 b 1971 932 1929 1017 1919 1091 1912 1149 1923 1214 1970 1254 2000 1279 2027 1314 2066 1325 2139 1338 2212 1295 2254 1238 2281 1203 2287 1158 2282 1116 2292 1061 2273 1006 2229 970 2206 941 2167 938 2138 918{\\p0}",
-}
-
--- called by mpv on every frame
-function tick()
- if state.marginsREQ == true then
- update_margins()
- state.marginsREQ = false
- end
-
- if (not state.enabled) then return end
-
- if (state.idle) then
-
- -- render idle message
- msg.trace("idle message")
- local icon_x, icon_y = 320 - 26, 140
- local line_prefix = ("{\\rDefault\\an7\\1a&H00&\\bord0\\shad0\\pos(%f,%f)}"):format(icon_x, icon_y)
-
- local ass = assdraw.ass_new()
- -- mpv logo
- for i, line in ipairs(logo_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
-
- -- Santa hat
- if is_december and not user_opts.greenandgrumpy then
- for i, line in ipairs(santa_hat_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
- end
-
- ass:new_event()
- ass:pos(320, icon_y+65)
- ass:an(8)
- ass:append("Drop files or URLs to play here.")
- set_osd(640, 360, ass.text)
-
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- state.showhide_enabled = false
- end
-
-
- elseif (state.fullscreen and user_opts.showfullscreen)
- or (not state.fullscreen and user_opts.showwindowed) then
-
- -- render the OSC
- render()
- else
- -- Flush OSD
- render_wipe()
- end
-
- state.tick_last_time = mp.get_time()
-
- if state.anitype ~= nil then
- -- state.anistart can be nil - animation should now start, or it can
- -- be a timestamp when it started. state.idle has no animation.
- if not state.idle and
- (not state.anistart or
- mp.get_time() < 1 + state.anistart + user_opts.fadeduration/1000)
- then
- -- animating or starting, or still within 1s past the deadline
- request_tick()
- else
- kill_animation()
- end
- end
-end
-
-function do_enable_keybindings()
- if state.enabled then
- if not state.showhide_enabled then
- mp.enable_key_bindings("showhide", "allow-vo-dragging+allow-hide-cursor")
- mp.enable_key_bindings("showhide_wc", "allow-vo-dragging+allow-hide-cursor")
- end
- state.showhide_enabled = true
- end
-end
-
-function enable_osc(enable)
- state.enabled = enable
- if enable then
- do_enable_keybindings()
- else
- hide_osc() -- acts immediately when state.enabled == false
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- end
- state.showhide_enabled = false
- end
-end
-
--- duration is observed for the sole purpose of updating chapter markers
--- positions. live streams with chapters are very rare, and the update is also
--- expensive (with request_init), so it's only observed when we have chapters
--- and the user didn't disable the livemarkers option (update_duration_watch).
-function on_duration() request_init() end
-
-local duration_watched = false
-function update_duration_watch()
- local want_watch = user_opts.livemarkers and
- (mp.get_property_number("chapters", 0) or 0) > 0 and
- true or false -- ensure it's a boolean
-
- if (want_watch ~= duration_watched) then
- if want_watch then
- mp.observe_property("duration", nil, on_duration)
- else
- mp.unobserve_property(on_duration)
- end
- duration_watched = want_watch
- end
-end
-
-validate_user_opts()
-update_duration_watch()
-
-mp.register_event("shutdown", shutdown)
-mp.register_event("start-file", request_init)
-mp.observe_property("track-list", nil, request_init)
-mp.observe_property("playlist", nil, request_init)
-mp.observe_property("chapter-list", nil, function()
- update_duration_watch()
- request_init()
-end)
-
-mp.register_script_message("osc-message", show_message)
-mp.register_script_message("osc-chapterlist", function(dur)
- show_message(get_chapterlist(), dur)
-end)
-mp.register_script_message("osc-playlist", function(dur)
- show_message(get_playlist(), dur)
-end)
-mp.register_script_message("osc-tracklist", function(dur)
- local msg = {}
- for k,v in pairs(nicetypes) do
- table.insert(msg, get_tracklist(k))
- end
- show_message(table.concat(msg, '\n\n'), dur)
-end)
-
-mp.observe_property("fullscreen", "bool",
- function(name, val)
- state.fullscreen = val
- state.marginsREQ = true
- request_init_resize()
- end
-)
-mp.observe_property("border", "bool",
- function(name, val)
- state.border = val
- request_init_resize()
- end
-)
-mp.observe_property("window-maximized", "bool",
- function(name, val)
- state.maximized = val
- request_init_resize()
- end
-)
-mp.observe_property("idle-active", "bool",
- function(name, val)
- state.idle = val
- request_tick()
- end
-)
-mp.observe_property("pause", "bool", pause_state)
-mp.observe_property("demuxer-cache-state", "native", cache_state)
-mp.observe_property("vo-configured", "bool", function(name, val)
- request_tick()
-end)
-mp.observe_property("playback-time", "number", function(name, val)
- request_tick()
-end)
-mp.observe_property("osd-dimensions", "native", function(name, val)
- -- (we could use the value instead of re-querying it all the time, but then
- -- we might have to worry about property update ordering)
- request_init_resize()
-end)
-
--- mouse show/hide bindings
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide", "force")
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide_wc", "force")
-do_enable_keybindings()
-
---mouse input bindings
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
- {"shift+mbtn_left", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"mbtn_right", function(e) process_event("mbtn_right", "up") end,
- function(e) process_event("mbtn_right", "down") end},
- -- alias to shift_mbtn_left for single-handed mouse use
- {"mbtn_mid", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"wheel_up", function(e) process_event("wheel_up", "press") end},
- {"wheel_down", function(e) process_event("wheel_down", "press") end},
- {"mbtn_left_dbl", "ignore"},
- {"shift+mbtn_left_dbl", "ignore"},
- {"mbtn_right_dbl", "ignore"},
-}, "input", "force")
-mp.enable_key_bindings("input")
-
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
-}, "window-controls", "force")
-mp.enable_key_bindings("window-controls")
-
-function get_hidetimeout()
- if user_opts.visibility == "always" then
- return -1 -- disable autohide
- end
- return user_opts.hidetimeout
-end
-
-function always_on(val)
- if state.enabled then
- if val then
- show_osc()
- else
- hide_osc()
- end
- end
-end
-
--- mode can be auto/always/never/cycle
--- the modes only affect internal variables and not stored on its own.
-function visibility_mode(mode, no_osd)
- if mode == "cycle" then
- if not state.enabled then
- mode = "auto"
- elseif user_opts.visibility ~= "always" then
- mode = "always"
- else
- mode = "never"
- end
- end
-
- if mode == "auto" then
- always_on(false)
- enable_osc(true)
- elseif mode == "always" then
- enable_osc(true)
- always_on(true)
- elseif mode == "never" then
- enable_osc(false)
- else
- msg.warn("Ignoring unknown visibility mode '" .. mode .. "'")
- return
- end
-
- user_opts.visibility = mode
- utils.shared_script_property_set("osc-visibility", mode)
-
- if not no_osd and tonumber(mp.get_property("osd-level")) >= 1 then
- mp.osd_message("OSC visibility: " .. mode)
- end
-
- -- Reset the input state on a mode change. The input state will be
- -- recalcuated on the next render cycle, except in 'never' mode where it
- -- will just stay disabled.
- mp.disable_key_bindings("input")
- mp.disable_key_bindings("window-controls")
- state.input_enabled = false
-
- update_margins()
- request_tick()
-end
-
-visibility_mode(user_opts.visibility, true)
-mp.register_script_message("osc-visibility", visibility_mode)
-mp.add_key_binding(nil, "visibility", function() visibility_mode("cycle") end)
-
-set_virt_mouse_area(0, 0, 0, 0, "input")
-set_virt_mouse_area(0, 0, 0, 0, "window-controls")
\ No newline at end of file
diff --git a/osc-style/osc_lazy.lua b/osc-style/osc_lazy.lua
deleted file mode 100644
index 5b0ca1d..0000000
--- a/osc-style/osc_lazy.lua
+++ /dev/null
@@ -1,3323 +0,0 @@
---[[
-SOURCE_ https://github.com/mpv-player/mpv/blob/master/player/lua/osc.lua
-COMMIT_ 20221128 bca516b
-改进版本的OSC,须禁用原始mpv的内置OSC,且不兼容其它OSC类脚本
-集成缩略图脚本功能(thumbfast.lua),需自行下载搭配使用:https://github.com/po5/thumbfast
-示例在 input.conf 中写入:
-SHIFT+DEL script-binding osc_lazy/visibility # 切换osc_lazy的可见性
---]]
-
-function lock_osc(name, value)
- if value == true then
- mp.set_property("osc", "no")
- mp.msg.info("脚本已自动执行 osc=no 以兼容")
- end
-end
-mp.observe_property("osc", "bool", lock_osc)
-
-local ipairs,loadfile,pairs,pcall,tonumber,tostring = ipairs,loadfile,pairs,pcall,tonumber,tostring
-local debug,io,math,os,string,table,utf8 = debug,io,math,os,string,table,utf8
-local min,max,floor,ceil,huge = math.min,math.max,math.floor,math.ceil,math.huge
-local mp = require 'mp'
-local assdraw = require 'mp.assdraw'
-local msg = require 'mp.msg'
-local opt = require 'mp.options'
-local utils = require 'mp.utils'
-
---
--- Parameters
---
--- default user option values
--- do not touch, change them in osc.conf
-local user_opts = {
- showwindowed = true, -- show OSC when windowed?
- showfullscreen = true, -- show OSC when fullscreen?
- idlescreen = true, -- show mpv logo on idle
- scalewindowed = 1, -- scaling of the controller when windowed
- scalefullscreen = 1, -- scaling of the controller when fullscreen
- scaleforcedwindow = 2, -- scaling when rendered on a forced window
- vidscale = true, -- scale the controller with the video?
- valign = 0.8, -- vertical alignment, -1 (top) to 1 (bottom)
- halign = 0, -- horizontal alignment, -1 (left) to 1 (right)
- barmargin = 0, -- vertical margin of top/bottombar
- boxalpha = 80, -- alpha of the background box,
- -- 0 (opaque) to 255 (fully transparent)
- hidetimeout = 500, -- duration in ms until the OSC hides if no
- -- mouse movement. enforced non-negative for the
- -- user, but internally negative is "always-on".
- fadeduration = 200, -- duration of fade out in ms, 0 = no fade
- deadzonesize = 0.5, -- size of deadzone
- minmousemove = 0, -- minimum amount of pixels the mouse has to
- -- move between ticks to make the OSC show up
- iamaprogrammer = false, -- use native mpv values and disable OSC
- -- internal track list management (and some
- -- functions that depend on it)
- layout = "bottombar", -- 原版可选为 "bottombar" "topbar" "box" "slimbox" ;在osc_lazy中新增 "bottombox"
- seekbarstyle = "bar", -- bar, diamond or knob
- seekbarhandlesize = 0.6, -- size ratio of the diamond and knob handle
- seekrangestyle = "inverted", -- bar, line, slider, inverted or none
- seekrangeseparate = true, -- wether the seekranges overlay on the bar-style seekbar
- seekrangealpha = 200, -- transparency of seekranges
- seekbarkeyframes = true, -- use keyframes when dragging the seekbar -- 现不受全局hr-seek的控制
- title = "${media-title}", -- string compatible with property-expansion
- -- to be shown as OSC title
- tooltipborder = 1, -- border of tooltip in bottom/topbar
- timetotal = true, -- display total time instead of remaining time? -- 原版为false
- timems = false, -- display timecodes with milliseconds?
- visibility = "auto", -- only used at init to set visibility_mode(...)
- boxmaxchars = 150, -- title crop threshold for box layout -- 原版为80
- boxvideo = false, -- apply osc_param.video_margins to video
- windowcontrols = "auto", -- whether to show window controls
- windowcontrols_alignment = "right", -- which side to show window controls on
- greenandgrumpy = false, -- disable santa hat
- livemarkers = true, -- update seekbar chapter markers on duration change
- chapters_osd = true, -- whether to show chapters OSD on next/prev
- playlist_osd = true, -- whether to show playlist OSD on next/prev
- chapter_fmt = "章节:%s", -- chapter print format for seekbar-hover. "no" to disable
-
- -- 以下为osc_lazy的独占选项
-
- wctitle = "${media-title}", -- 无边框的上方标题
- sub_title = " ", -- bottombox布局的右侧子标题
- sub_title2 = "对比[${contrast}] 亮度[${brightness}] 伽马[${gamma}] 饱和[${saturation}] 色相[${hue}]", -- bottombox布局的临时右侧子标题
- seekbar_scrollseek = "fast", -- 进度条的滚轮跳转模式 "fast" "second" "frame" 。不受全局hr-seek的控制
- showonpause = false, -- 在暂停时常驻 OSC
- showonstart = false, -- 在播放开始或当播放下一个文件时显示 OSC
- showonseek = false, -- 在跳转时显示 OSC
- font = "sans", -- OSC的全局字体显示
- font_mono = "sans",
- font_bold = 500,
-}
-
--- read options from config and command-line
-opt.read_options(user_opts, "osc_lazy", function(list) update_options(list) end)
-
-
-
--------------
--- osc.lua --
--------------
-local osc_param = { -- calculated by osc_init()
- playresy = 0, -- canvas size Y
- playresx = 0, -- canvas size X
- display_aspect = 1,
- unscaled_y = 0,
- areas = {},
- video_margins = {
- l = 0, r = 0, t = 0, b = 0, -- left/right/top/bottom
- },
-}
-
-local osc_styles = {
- bigButtons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs50\\fnmpv-osd-symbols}",
- smallButtonsL = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs19\\fnmpv-osd-symbols}",
- smallButtonsLlabel = ("{\\fscx105\\fscy105\\b%d\\fn%s}"):format(user_opts.font_bold, user_opts.font_mono),
- smallButtonsR = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs30\\fnmpv-osd-symbols}",
- topButtons = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs12\\fnmpv-osd-symbols}",
-
- elementDown = "{\\1c&H999999}",
- timecodes = ("{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs20\\b%d\\fn%s}"):format(user_opts.font_bold, user_opts.font_mono),
- vidtitle = ("{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs12\\b%d\\q2\\fn%s}"):format(user_opts.font_bold, user_opts.font),
- box = "{\\rDefault\\blur0\\bord1\\1c&H000000\\3c&HFFFFFF}",
-
- topButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\fnmpv-osd-symbols}",
- smallButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs28\\fnmpv-osd-symbols}",
- timecodesBar = ("{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs27\\b%d\\fn%s}"):format(user_opts.font_bold, user_opts.font_mono),
- timePosBar = ("{\\blur0.54\\bord%s\\1c&HFFFFFF\\3c&H000000\\fs27\\b%d\\fn%s}"):format(user_opts.tooltipborder, user_opts.font_bold, user_opts.font_mono),
- vidtitleBar = ("{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\b%d\\q2\\fn%s}"):format(user_opts.font_bold, user_opts.font),
-
- wcButtons = "{\\1c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- wcTitle = "{\\1c&HFFFFFF\\fs20\\q2}",
- wcBar = "{\\1c&H000000}",
-
- -- bottombox样式
- bb_bigButton1 = "{\\blur0.25\\bord0\\1c&HF2A823\\3c&HFFFFFF\\fs40\\fnmpv-osd-symbols}",
- bb_bigButton2 = "{\\blur0.25\\bord0\\1c&HFACE87\\3c&HFFFFFF\\fs26\\fnmpv-osd-symbols}",
- bb_bigButton3 = "{\\blur0.25\\bord0\\1c&H9A530E\\3c&HFFFFFF\\fs34\\fnmpv-osd-symbols}",
- bb_backgroud = "{\\blur100\\bord120\\1c&H000000&\\3c&H000000&}",
- bb_Atracks = "{\\blur0\\bord0\\1c&H73CBEF\\3c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- bb_Stracks = "{\\blur0\\bord0\\1c&H70DC57\\3c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- bb_volume = "{\\blur0\\bord0\\1c&H00F0FF\\3c&HFFFFFF\\fs30\\fnmpv-osd-symbols}",
- bb_fs = "{\\blur0\\bord0\\1c&HAC328E\\3c&HFFFFFF\\fs30\\fnmpv-osd-symbols}",
- bb_lua_stats = "{\\blur0\\bord0\\1c&H9370DB\\3c&HFFFFFF\\fs30\\fr180\\fnmpv-osd-symbols}",
- bb_seekbar = ("{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs14\\b%d\\q2\\fn%s}"):format(user_opts.font_bold, user_opts.font),
- bb_seektime = ("{\\blur0.54\\bord%s\\1c&HFFFFFF\\3c&H000000\\fs18\\b%d\\fn%s}"):format(user_opts.tooltipborder, user_opts.font_bold, user_opts.font_mono),
- bb_timecodes = ("{\\blur0\\bord0\\1c&HDCDCDC\\3c&HFFFFFF\\fs20\\b%d\\fn%s}"):format(user_opts.font_bold, user_opts.font_mono),
- bb_cachetime = ("{\\blur0\\bord0\\1c&HDCDCDC\\3c&HFFFFFF\\fs14\\b%d\\fn%s}"):format(user_opts.font_bold, user_opts.font_mono),
- bb_downtitle = ("{\\blur0\\bord0\\1c&HC0C0C0\\3c&HFFFFFF\\fs16\\b%d\\q2\\fn%s}"):format(user_opts.font_bold, user_opts.font),
- bb_sub_title = ("{\\blur0\\bord0\\1c&HC0C0C0\\3c&HFFFFFF\\fs16\\b%d\\q2\\fn%s}"):format(user_opts.font_bold, user_opts.font),
-}
-
--- internal states, do not touch
-local state = {
- showtime, -- time of last invocation (last mouse move)
- osc_visible = false,
- anistart, -- time when the animation started
- anitype, -- current type of animation
- animation, -- current animation alpha
- mouse_down_counter = 0, -- used for softrepeat
- active_element = nil, -- nil = none, 0 = background, 1+ = see elements[]
- active_event_source = nil, -- the "button" that issued the current event
- rightTC_trem = not user_opts.timetotal, -- if the right timecode should display total or remaining time
- tc_ms = user_opts.timems, -- Should the timecodes display their time with milliseconds
- mp_screen_sizeX, mp_screen_sizeY, -- last screen-resolution, to detect resolution changes to issue reINITs
- initREQ = false, -- is a re-init request pending?
- marginsREQ = false, -- is a margins update pending?
- last_mouseX, last_mouseY, -- last mouse position, to detect significant mouse movement
- mouse_in_window = false,
- message_text,
- message_hide_timer,
- fullscreen = false,
- tick_timer = nil,
- tick_last_time = 0, -- when the last tick() was run
- hide_timer = nil,
- cache_state = nil,
- idle = false,
- enabled = true,
- input_enabled = true,
- showhide_enabled = false,
- dmx_cache = 0,
- using_video_margins = false,
- border = true,
- maximized = false,
- osd = mp.create_osd_overlay("ass-events"),
- chapter_list = {}, -- sorted by time
- lastvisibility = user_opts.visibility, -- 如果showonpause,则在暂停时保存最后一次的可见性
-}
-
-local thumbfast = {
- width = 0,
- height = 0,
- disabled = false,
- pause = false,
-}
-
-local window_control_box_width = 80
-local tick_delay = 0.03
-
-local is_december = os.date("*t").month == 12
-
---
--- Helperfunctions
---
-
-function kill_animation()
- state.anistart = nil
- state.animation = nil
- state.anitype = nil
-end
-
-function set_osd(res_x, res_y, text)
- if state.osd.res_x == res_x and
- state.osd.res_y == res_y and
- state.osd.data == text then
- return
- end
- state.osd.res_x = res_x
- state.osd.res_y = res_y
- state.osd.data = text
- state.osd.z = 1000
- state.osd:update()
-end
-
-local margins_opts = {
- {"l", "video-margin-ratio-left"},
- {"r", "video-margin-ratio-right"},
- {"t", "video-margin-ratio-top"},
- {"b", "video-margin-ratio-bottom"},
-}
-
--- scale factor for translating between real and virtual ASS coordinates
-function get_virt_scale_factor()
- local w, h = mp.get_osd_size()
- if w <= 0 or h <= 0 then
- return 0, 0
- end
- return osc_param.playresx / w, osc_param.playresy / h
-end
-
--- return mouse position in virtual ASS coordinates (playresx/y)
-function get_virt_mouse_pos()
- if state.mouse_in_window then
- local sx, sy = get_virt_scale_factor()
- local x, y = mp.get_mouse_pos()
- return x * sx, y * sy
- else
- return -1, -1
- end
-end
-
-function set_virt_mouse_area(x0, y0, x1, y1, name)
- local sx, sy = get_virt_scale_factor()
- mp.set_mouse_area(x0 / sx, y0 / sy, x1 / sx, y1 / sy, name)
-end
-
-function scale_value(x0, x1, y0, y1, val)
- local m = (y1 - y0) / (x1 - x0)
- local b = y0 - (m * x0)
- return (m * val) + b
-end
-
--- returns hitbox spanning coordinates (top left, bottom right corner)
--- according to alignment
-function get_hitbox_coords(x, y, an, w, h)
-
- local alignments = {
- [1] = function () return x, y-h, x+w, y end,
- [2] = function () return x-(w/2), y-h, x+(w/2), y end,
- [3] = function () return x-w, y-h, x, y end,
-
- [4] = function () return x, y-(h/2), x+w, y+(h/2) end,
- [5] = function () return x-(w/2), y-(h/2), x+(w/2), y+(h/2) end,
- [6] = function () return x-w, y-(h/2), x, y+(h/2) end,
-
- [7] = function () return x, y, x+w, y+h end,
- [8] = function () return x-(w/2), y, x+(w/2), y+h end,
- [9] = function () return x-w, y, x, y+h end,
- }
-
- return alignments[an]()
-end
-
-function get_hitbox_coords_geo(geometry)
- return get_hitbox_coords(geometry.x, geometry.y, geometry.an,
- geometry.w, geometry.h)
-end
-
-function get_element_hitbox(element)
- return element.hitbox.x1, element.hitbox.y1,
- element.hitbox.x2, element.hitbox.y2
-end
-
-function mouse_hit(element)
- return mouse_hit_coords(get_element_hitbox(element))
-end
-
-function mouse_hit_coords(bX1, bY1, bX2, bY2)
- local mX, mY = get_virt_mouse_pos()
- return (mX >= bX1 and mX <= bX2 and mY >= bY1 and mY <= bY2)
-end
-
-function limit_range(min, max, val)
- if val > max then
- val = max
- elseif val < min then
- val = min
- end
- return val
-end
-
--- translate value into element coordinates
-function get_slider_ele_pos_for(element, val)
-
- local ele_pos = scale_value(
- element.slider.min.value, element.slider.max.value,
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- val)
-
- return limit_range(
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- ele_pos)
-end
-
--- translates global (mouse) coordinates to value
-function get_slider_value_at(element, glob_pos)
-
- local val = scale_value(
- element.slider.min.glob_pos, element.slider.max.glob_pos,
- element.slider.min.value, element.slider.max.value,
- glob_pos)
-
- return limit_range(
- element.slider.min.value, element.slider.max.value,
- val)
-end
-
--- get value at current mouse position
-function get_slider_value(element)
- return get_slider_value_at(element, get_virt_mouse_pos())
-end
-
-function countone(val)
- if not (user_opts.iamaprogrammer) then
- val = val + 1
- end
- return val
-end
-
--- align: -1 .. +1
--- frame: size of the containing area
--- obj: size of the object that should be positioned inside the area
--- margin: min. distance from object to frame (as long as -1 <= align <= +1)
-function get_align(align, frame, obj, margin)
- return (frame / 2) + (((frame / 2) - margin - (obj / 2)) * align)
-end
-
--- multiplies two alpha values, formular can probably be improved
-function mult_alpha(alphaA, alphaB)
- return 255 - (((1-(alphaA/255)) * (1-(alphaB/255))) * 255)
-end
-
-function add_area(name, x1, y1, x2, y2)
- -- create area if needed
- if (osc_param.areas[name] == nil) then
- osc_param.areas[name] = {}
- end
- table.insert(osc_param.areas[name], {x1=x1, y1=y1, x2=x2, y2=y2})
-end
-
-function ass_append_alpha(ass, alpha, modifier)
- local ar = {}
-
- for ai, av in pairs(alpha) do
- av = mult_alpha(av, modifier)
- if state.animation then
- av = mult_alpha(av, state.animation)
- end
- ar[ai] = av
- end
-
- ass:append(string.format("{\\1a&H%X&\\2a&H%X&\\3a&H%X&\\4a&H%X&}",
- ar[1], ar[2], ar[3], ar[4]))
-end
-
-function ass_draw_rr_h_cw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_cw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_cw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-function ass_draw_rr_h_ccw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_ccw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_ccw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-
---
--- Tracklist Management
---
-
-local nicetypes = {video = "视频", audio = "音频", sub = "字幕"}
-
--- updates the OSC internal playlists, should be run each time the track-layout changes
-function update_tracklist()
- local tracktable = mp.get_property_native("track-list", {})
-
- -- by osc_id
- tracks_osc = {}
- tracks_osc.video, tracks_osc.audio, tracks_osc.sub = {}, {}, {}
- -- by mpv_id
- tracks_mpv = {}
- tracks_mpv.video, tracks_mpv.audio, tracks_mpv.sub = {}, {}, {}
- for n = 1, #tracktable do
- if not (tracktable[n].type == "unknown") then
- local type = tracktable[n].type
- local mpv_id = tonumber(tracktable[n].id)
-
- -- by osc_id
- table.insert(tracks_osc[type], tracktable[n])
-
- -- by mpv_id
- tracks_mpv[type][mpv_id] = tracktable[n]
- tracks_mpv[type][mpv_id].osc_id = #tracks_osc[type]
- end
- end
-end
-
--- return a nice list of tracks of the given type (video, audio, sub)
-function get_tracklist(type)
- local msg = "可用" .. nicetypes[type] .. "轨:"
- if not tracks_osc or #tracks_osc[type] == 0 then
- msg = msg .. "none"
- else
- for n = 1, #tracks_osc[type] do
- local track = tracks_osc[type][n]
- local lang, title, selected = "未知", "", "○"
- if not(track.lang == nil) then lang = track.lang end
- if not(track.title == nil) then title = track.title end
- if (track.id == tonumber(mp.get_property(type))) then
- selected = "●"
- end
- msg = msg.."\n"..selected.." "..n..": ["..lang.."] "..title
- end
- end
- return msg
-end
-
--- relatively change the track of given by tracks
- --(+1 -> next, -1 -> previous)
-function set_track(type, next)
- local current_track_mpv, current_track_osc
- if (mp.get_property(type) == "no") then
- current_track_osc = 0
- else
- current_track_mpv = tonumber(mp.get_property(type))
- current_track_osc = tracks_mpv[type][current_track_mpv].osc_id
- end
- local new_track_osc = (current_track_osc + next) % (#tracks_osc[type] + 1)
- local new_track_mpv
- if new_track_osc == 0 then
- new_track_mpv = "no"
- else
- new_track_mpv = tracks_osc[type][new_track_osc].id
- end
-
- mp.commandv("set", type, new_track_mpv)
-
- if (new_track_osc == 0) then
- show_message(nicetypes[type] .. "轨:<禁用>")
- else
- show_message(nicetypes[type] .. "轨:"
- .. new_track_osc .. "/" .. #tracks_osc[type]
- .. " [".. (tracks_osc[type][new_track_osc].lang or "未知") .."] "
- .. (tracks_osc[type][new_track_osc].title or ""))
- end
-end
-
--- get the currently selected track of , OSC-style counted
-function get_track(type)
- local track = mp.get_property(type)
- if track ~= "no" and track ~= nil then
- local tr = tracks_mpv[type][tonumber(track)]
- if tr then
- return tr.osc_id
- end
- end
- return 0
-end
-
--- WindowControl helpers
-function window_controls_enabled()
- val = user_opts.windowcontrols
- if val == "auto" then
- return not state.border
- else
- return val ~= "no"
- end
-end
-
-function window_controls_alignment()
- return user_opts.windowcontrols_alignment
-end
-
---
--- Element Management
---
-
-local elements = {}
-
-function prepare_elements()
-
- -- remove elements without layout or invisble
- local elements2 = {}
- for n, element in pairs(elements) do
- if not (element.layout == nil) and (element.visible) then
- table.insert(elements2, element)
- end
- end
- elements = elements2
-
- function elem_compare (a, b)
- return a.layout.layer < b.layout.layer
- end
-
- table.sort(elements, elem_compare)
-
-
- for _,element in pairs(elements) do
-
- local elem_geo = element.layout.geometry
-
- -- Calculate the hitbox
- local bX1, bY1, bX2, bY2 = get_hitbox_coords_geo(elem_geo)
- element.hitbox = {x1 = bX1, y1 = bY1, x2 = bX2, y2 = bY2}
-
- local style_ass = assdraw.ass_new()
-
- -- prepare static elements
- style_ass:append("{}") -- hack to troll new_event into inserting a \n
- style_ass:new_event()
- style_ass:pos(elem_geo.x, elem_geo.y)
- style_ass:an(elem_geo.an)
- style_ass:append(element.layout.style)
-
- element.style_ass = style_ass
-
- local static_ass = assdraw.ass_new()
-
-
- if (element.type == "box") then
- --draw box
- static_ass:draw_start()
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h,
- element.layout.box.radius, element.layout.box.hexagon)
- static_ass:draw_stop()
-
- elseif (element.type == "slider") then
- --draw static slider parts
-
- local r1 = 0
- local r2 = 0
- local slider_lo = element.layout.slider
- -- offset between element outline and drag-area
- local foV = slider_lo.border + slider_lo.gap
-
- -- calculate positions of min and max points
- if (slider_lo.stype ~= "bar") then
- r1 = elem_geo.h / 2
- element.slider.min.ele_pos = elem_geo.h / 2
- element.slider.max.ele_pos = elem_geo.w - (elem_geo.h / 2)
- if (slider_lo.stype == "diamond") then
- r2 = (elem_geo.h - 2 * slider_lo.border) / 2
- elseif (slider_lo.stype == "knob") then
- r2 = r1
- end
- else
- element.slider.min.ele_pos =
- slider_lo.border + slider_lo.gap
- element.slider.max.ele_pos =
- elem_geo.w - (slider_lo.border + slider_lo.gap)
- end
-
- element.slider.min.glob_pos =
- element.hitbox.x1 + element.slider.min.ele_pos
- element.slider.max.glob_pos =
- element.hitbox.x1 + element.slider.max.ele_pos
-
- -- -- --
-
- static_ass:draw_start()
-
- -- the box
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h, r1, slider_lo.stype == "diamond")
-
- -- the "hole"
- ass_draw_rr_h_ccw(static_ass, slider_lo.border, slider_lo.border,
- elem_geo.w - slider_lo.border, elem_geo.h - slider_lo.border,
- r2, slider_lo.stype == "diamond")
-
- -- marker nibbles
- if not (element.slider.markerF == nil) and (slider_lo.gap > 0) then
- local markers = element.slider.markerF()
- for _,marker in pairs(markers) do
- if (marker > element.slider.min.value) and
- (marker < element.slider.max.value) then
-
- local s = get_slider_ele_pos_for(element, marker)
-
- if (slider_lo.gap > 1) then -- draw triangles
-
- local a = slider_lo.gap / 0.5 --0.866
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:move_to(s - (a/2), slider_lo.border)
- static_ass:line_to(s + (a/2), slider_lo.border)
- static_ass:line_to(s, foV)
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:move_to(s - (a/2),
- elem_geo.h - slider_lo.border)
- static_ass:line_to(s,
- elem_geo.h - foV)
- static_ass:line_to(s + (a/2),
- elem_geo.h - slider_lo.border)
- end
-
- else -- draw 2x1px nibbles
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:rect_cw(s - 1, slider_lo.border,
- s + 1, slider_lo.border + slider_lo.gap);
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:rect_cw(s - 1,
- elem_geo.h -slider_lo.border -slider_lo.gap,
- s + 1, elem_geo.h - slider_lo.border);
- end
- end
- end
- end
- end
- end
-
- element.static_ass = static_ass
-
-
- -- if the element is supposed to be disabled,
- -- style it accordingly and kill the eventresponders
- if not (element.enabled) then
- element.layout.alpha[1] = 136
- element.eventresponder = nil
- end
-
- -- 禁用时灰化相关元素
- if (element.off) then
- element.layout.alpha[1] = 136
- end
- end
-end
-
-
---
--- Element Rendering
---
-
--- returns nil or a chapter element from the native property chapter-list
-function get_chapter(possec)
- local cl = state.chapter_list -- sorted, get latest before possec, if any
-
- for n=#cl,1,-1 do
- if possec >= cl[n].time then
- return cl[n]
- end
- end
-end
-
-function render_elements(master_ass)
-
- -- when the slider is dragged or hovered and we have a target chapter name
- -- then we use it instead of the normal title. we calculate it before the
- -- render iterations because the title may be rendered before the slider.
- state.forced_title = nil
- local se, ae = state.slider_element, elements[state.active_element]
- if user_opts.chapter_fmt ~= "no" and se and (ae == se or (not ae and mouse_hit(se))) then
- local dur = mp.get_property_number("duration", 0)
- if dur > 0 then
- local possec = get_slider_value(se) * dur / 100 -- of mouse pos
- local ch = get_chapter(possec)
- if ch and ch.title and ch.title ~= "" then
- state.forced_title = string.format(user_opts.chapter_fmt, ch.title)
- end
- end
- end
-
- -- bottombox右侧子标题的临时显示
-
- state.forced_sub_title = nil
- local se, ae = state.slider_element, elements[state.active_element]
- if se and (ae == se or (not ae and mouse_hit(se))) then
- state.forced_sub_title = mp.command_native({"expand-text", user_opts.sub_title2})
- end
-
- for n=1, #elements do
- local element = elements[n]
-
- local style_ass = assdraw.ass_new()
- style_ass:merge(element.style_ass)
- ass_append_alpha(style_ass, element.layout.alpha, 0)
-
- if element.eventresponder and (state.active_element == n) then
-
- -- run render event functions
- if not (element.eventresponder.render == nil) then
- element.eventresponder.render(element)
- end
-
- if mouse_hit(element) then
- -- mouse down styling
- if (element.styledown) then
- style_ass:append(osc_styles.elementDown)
- end
-
- if (element.softrepeat) and (state.mouse_down_counter >= 15
- and state.mouse_down_counter % 5 == 0) then
-
- element.eventresponder[state.active_event_source.."_down"](element)
- end
- state.mouse_down_counter = state.mouse_down_counter + 1
- end
-
- end
-
- local elem_ass = assdraw.ass_new()
-
- elem_ass:merge(style_ass)
-
- if not (element.type == "button") then
- elem_ass:merge(element.static_ass)
- end
-
- if (element.type == "slider") then
-
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- local s_min = element.slider.min.value
- local s_max = element.slider.max.value
-
- -- draw pos marker
- local foH, xp
- local pos = element.slider.posF()
- local foV = slider_lo.border + slider_lo.gap
- local innerH = elem_geo.h - (2 * foV)
- local seekRanges = element.slider.seekRangesF()
- local seekRangeLineHeight = innerH / 5
-
- if slider_lo.stype ~= "bar" then
- foH = elem_geo.h / 2
- else
- foH = slider_lo.border + slider_lo.gap
- end
-
- if pos then
- xp = get_slider_ele_pos_for(element, pos)
-
- if slider_lo.stype ~= "bar" then
- local r = (user_opts.seekbarhandlesize * innerH) / 2
- ass_draw_rr_h_cw(elem_ass, xp - r, foH - r,
- xp + r, foH + r,
- r, slider_lo.stype == "diamond")
- else
- local h = 0
- if seekRanges and user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- h = seekRangeLineHeight
- end
- elem_ass:rect_cw(foH, foV, xp, elem_geo.h - foV - h)
-
- if seekRanges and not user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- -- Punch holes for the seekRanges to be drawn later
- for _,range in pairs(seekRanges) do
- if range["start"] < pos then
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = xp
-
- if pos > range["end"] then
- pend = get_slider_ele_pos_for(element, range["end"])
- end
- elem_ass:rect_ccw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- end
- end
- end
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, foH - innerH / 6, foH - innerH / 6,
- xp, foH + innerH / 6,
- innerH / 6, slider_lo.stype == "diamond", 0)
- ass_draw_rr_h_cw(elem_ass, xp, foH - innerH / 15,
- elem_geo.w - foH + innerH / 15, foH + innerH / 15,
- 0, slider_lo.stype == "diamond", innerH / 15)
- for _,range in pairs(seekRanges or {}) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
- ass_draw_rr_h_ccw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- end
- end
- end
-
- if seekRanges then
- if slider_lo.rtype ~= "inverted" then
- elem_ass:draw_stop()
- elem_ass:merge(element.style_ass)
- ass_append_alpha(elem_ass, element.layout.alpha, user_opts.seekrangealpha)
- elem_ass:merge(element.static_ass)
- end
-
- for _,range in pairs(seekRanges) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- elseif slider_lo.rtype == "line" then
- if slider_lo.stype == "bar" then
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- else
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 8, foH - innerH / 8,
- pend + innerH / 8, foH + innerH / 8,
- innerH / 8, slider_lo.stype == "diamond")
- end
- elseif slider_lo.rtype == "bar" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 2, foV,
- pend + innerH / 2, foV + innerH,
- innerH / 2, slider_lo.stype == "diamond")
- elseif range["end"] >= (pos or 0) then
- elem_ass:rect_cw(pstart, foV, pend, elem_geo.h - foV)
- else
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- elseif slider_lo.rtype == "inverted" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_ccw(elem_ass, pstart, (elem_geo.h / 2) - 1, pend,
- (elem_geo.h / 2) + 1,
- 1, slider_lo.stype == "diamond")
- else
- elem_ass:rect_ccw(pstart, (elem_geo.h / 2) - 1, pend, (elem_geo.h / 2) + 1)
- end
- end
- end
- end
-
- elem_ass:draw_stop()
-
- -- add tooltip
- if not (element.slider.tooltipF == nil) then
-
- if mouse_hit(element) then
- local sliderpos = get_slider_value(element)
- local tooltiplabel = element.slider.tooltipF(sliderpos)
-
- local an = slider_lo.tooltip_an
-
- local ty
-
- if (an == 2) then
- ty = element.hitbox.y1 - slider_lo.border
- else
- ty = element.hitbox.y1 + elem_geo.h/2
- end
-
- local tx = get_virt_mouse_pos()
- local thumb_tx = tx
- if (slider_lo.adjust_tooltip) then
- if (an == 2) then
- if (sliderpos < (s_min + 3)) then
- an = an - 1
- elseif (sliderpos > (s_max - 3)) then
- an = an + 1
- end
- elseif (sliderpos > (s_max-s_min)/2) then
- an = an + 1
- tx = tx - 5
- else
- an = an - 1
- tx = tx + 10
- end
- end
-
- -- tooltip label
- elem_ass:new_event()
- elem_ass:pos(tx, ty)
- elem_ass:an(an)
- elem_ass:append(slider_lo.tooltip_style)
- ass_append_alpha(elem_ass, slider_lo.alpha, 0)
- elem_ass:append(tooltiplabel)
-
- -- thumbnail
- if not thumbfast.disabled and thumbfast.width ~= 0 and thumbfast.height ~= 0 and not thumbfast.pause then
- local osd_w = mp.get_property_number("osd-dimensions/w")
- if osd_w then
- local r_w, r_h = get_virt_scale_factor()
-
- local tooltip_font_size = (user_opts.layout == "box" or user_opts.layout == "slimbox") and 2 or 12
- local thumb_ty = user_opts.layout ~= "topbar" and element.hitbox.y1 - 8 or element.hitbox.y2 + tooltip_font_size + 8
-
- local thumb_pad = 2
- local thumb_margin_x = 20 / r_w
- local thumb_margin_y = (4 + user_opts.tooltipborder) / r_h + thumb_pad
- local thumb_x = math.min(osd_w - thumbfast.width - thumb_margin_x, math.max(thumb_margin_x, thumb_tx / r_w - thumbfast.width / 2))
- local thumb_y = user_opts.layout ~= "topbar" and thumb_ty / r_h - thumbfast.height - tooltip_font_size / r_h - thumb_margin_y or thumb_ty / r_h + thumb_margin_y
-
- thumb_x = math.floor(thumb_x + 0.5)
- thumb_y = math.floor(thumb_y + 0.5)
-
- elem_ass:new_event()
- elem_ass:pos(thumb_x * r_w, thumb_y * r_h)
- elem_ass:append(osc_styles.timePosBar)
- elem_ass:append("{\\1a&H20&}")
- elem_ass:draw_start()
- elem_ass:rect_cw(-thumb_pad * r_w, -thumb_pad * r_h, (thumbfast.width + thumb_pad) * r_w, (thumbfast.height + thumb_pad) * r_h)
- elem_ass:draw_stop()
-
- mp.commandv("script-message-to", "thumbfast", "thumb",
- mp.get_property_number("duration", 0) * (sliderpos / 100),
- thumb_x,
- thumb_y
- )
- end
- end
- else
- if thumbfast.width ~= 0 and thumbfast.height ~= 0 then
- mp.commandv("script-message-to", "thumbfast", "clear")
- end
- end
- end
-
- elseif (element.type == "button") then
-
- local buttontext
- if type(element.content) == "function" then
- buttontext = element.content() -- function objects
- elseif not (element.content == nil) then
- buttontext = element.content -- text objects
- end
-
- local maxchars = element.layout.button.maxchars
- if not (maxchars == nil) and (#buttontext > maxchars) then
- local max_ratio = 1.25 -- up to 25% more chars while shrinking
- local limit = math.max(0, math.floor(maxchars * max_ratio) - 3)
- if (#buttontext > limit) then
- while (#buttontext > limit) do
- buttontext = buttontext:gsub(".[\128-\191]*$", "")
- end
- buttontext = buttontext .. "..."
- end
- local _, nchars2 = buttontext:gsub(".[\128-\191]*", "")
- local stretch = (maxchars/#buttontext)*100
- buttontext = string.format("{\\fscx%f}",
- (maxchars/#buttontext)*100) .. buttontext
- end
-
- elem_ass:append(buttontext)
- end
-
- master_ass:merge(elem_ass)
- end
-end
-
---
--- Message display
---
-
--- pos is 1 based
-function limited_list(prop, pos)
- local proplist = mp.get_property_native(prop, {})
- local count = #proplist
- if count == 0 then
- return count, proplist
- end
-
- local fs = tonumber(mp.get_property('options/osd-font-size'))
- local max = math.ceil(osc_param.unscaled_y*0.75 / fs)
- if max % 2 == 0 then
- max = max - 1
- end
- local delta = math.ceil(max / 2) - 1
- local begi = math.max(math.min(pos - delta, count - max + 1), 1)
- local endi = math.min(begi + max - 1, count)
-
- local reslist = {}
- for i=begi, endi do
- local item = proplist[i]
- item.current = (i == pos) and true or nil
- table.insert(reslist, item)
- end
- return count, reslist
-end
-
-function get_playlist()
- local pos = mp.get_property_number('playlist-pos', 0) + 1
- local count, limlist = limited_list('playlist', pos)
- if count == 0 then
- return 'Empty playlist.'
- end
-
- local message = string.format('播放列表 [%d/%d]\n', pos, count)
- for i, v in ipairs(limlist) do
- local title = v.title
- local _, filename = utils.split_path(v.filename)
- if title == nil then
- title = filename
- end
- message = string.format('%s %s %s\n', message,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function get_chapterlist()
- local pos = mp.get_property_number('chapter', 0) + 1
- local count, limlist = limited_list('chapter-list', pos)
- if count == 0 then
- return 'No chapters.'
- end
-
- local message = string.format('章节列表 [%d/%d]\n', pos, count)
- for i, v in ipairs(limlist) do
- local time = mp.format_time(v.time)
- local title = v.title
- if title == nil then
- title = string.format('Chapter %02d', i)
- end
- message = string.format('%s[%s] %s %s\n', message, time,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function show_message(text, duration)
-
- --print("text: "..text.." duration: " .. duration)
- if duration == nil then
- duration = tonumber(mp.get_property("options/osd-duration")) / 1000
- elseif not type(duration) == "number" then
- print("duration: " .. duration)
- end
-
- -- cut the text short, otherwise the following functions
- -- may slow down massively on huge input
- text = string.sub(text, 0, 4000)
-
- -- replace actual linebreaks with ASS linebreaks
- text = string.gsub(text, "\n", "\\N")
-
- state.message_text = text
-
- if not state.message_hide_timer then
- state.message_hide_timer = mp.add_timeout(0, request_tick)
- end
- state.message_hide_timer:kill()
- state.message_hide_timer.timeout = duration
- state.message_hide_timer:resume()
- request_tick()
-end
-
-function render_message(ass)
- if state.message_hide_timer and state.message_hide_timer:is_enabled() and
- state.message_text
- then
- local _, lines = string.gsub(state.message_text, "\\N", "")
-
- local fontsize = tonumber(mp.get_property("options/osd-font-size"))
- local outline = tonumber(mp.get_property("options/osd-border-size"))
- local maxlines = math.ceil(osc_param.unscaled_y*0.75 / fontsize)
- local counterscale = osc_param.playresy / osc_param.unscaled_y
- local hidpi_scale = mp.get_property_native("display-hidpi-scale", 1.0)
-
- fontsize = fontsize * hidpi_scale * counterscale / math.max(0.65 + math.min(lines/maxlines, 1), 1)
- outline = outline * hidpi_scale * counterscale / math.max(0.75 + math.min(lines/maxlines, 1)/2, 1)
-
- local style = "{\\bord" .. outline .. "\\fs" .. fontsize .. "}"
-
-
- ass:new_event()
- ass:append(style .. state.message_text)
- else
- state.message_text = nil
- end
-end
-
---
--- Initialisation and Layout
---
-
-function new_element(name, type)
- elements[name] = {}
- elements[name].type = type
-
- -- add default stuff
- elements[name].eventresponder = {}
- elements[name].visible = true
- elements[name].enabled = true
- elements[name].softrepeat = false
- elements[name].styledown = (type == "button")
- elements[name].state = {}
-
- if (type == "slider") then
- elements[name].slider = {min = {value = 0}, max = {value = 100}}
- end
-
-
- return elements[name]
-end
-
-function add_layout(name)
- if not (elements[name] == nil) then
- -- new layout
- elements[name].layout = {}
-
- -- set layout defaults
- elements[name].layout.layer = 50
- elements[name].layout.alpha = {[1] = 0, [2] = 255, [3] = 255, [4] = 255}
-
- if (elements[name].type == "button") then
- elements[name].layout.button = {
- maxchars = nil,
- }
- elseif (elements[name].type == "slider") then
- -- slider defaults
- elements[name].layout.slider = {
- border = 1,
- gap = 1,
- nibbles_top = true,
- nibbles_bottom = true,
- stype = "slider",
- adjust_tooltip = true,
- tooltip_style = "",
- tooltip_an = 2,
- alpha = {[1] = 0, [2] = 255, [3] = 88, [4] = 255},
- }
- elseif (elements[name].type == "box") then
- elements[name].layout.box = {radius = 0, hexagon = false}
- end
-
- return elements[name].layout
- else
- msg.error("Can't add_layout to element \""..name.."\", doesn't exist.")
- end
-end
-
--- Window Controls
-function window_controls(topbar)
- local wc_geo = {
- x = 0,
- y = 30 + user_opts.barmargin,
- an = 1,
- w = osc_param.playresx,
- h = 30,
- }
-
- local alignment = window_controls_alignment()
- local controlbox_w = window_control_box_width
- local titlebox_w = wc_geo.w - controlbox_w
-
- -- Default alignment is "right"
- local controlbox_left = wc_geo.w - controlbox_w
- local titlebox_left = wc_geo.x
- local titlebox_right = wc_geo.w - controlbox_w
-
- if alignment == "left" then
- controlbox_left = wc_geo.x
- titlebox_left = wc_geo.x + controlbox_w
- titlebox_right = wc_geo.w
- end
-
- add_area("window-controls",
- get_hitbox_coords(controlbox_left, wc_geo.y, wc_geo.an,
- controlbox_w, wc_geo.h))
-
- local lo
-
- -- Background Bar
- new_element("wcbar", "box")
- lo = add_layout("wcbar")
- lo.geometry = wc_geo
- lo.layer = 10
- lo.style = osc_styles.wcBar
- lo.alpha[1] = user_opts.boxalpha
-
- local button_y = wc_geo.y - (wc_geo.h / 2)
- local first_geo =
- {x = controlbox_left + 5, y = button_y, an = 4, w = 25, h = 25}
- local second_geo =
- {x = controlbox_left + 30, y = button_y, an = 4, w = 25, h = 25}
- local third_geo =
- {x = controlbox_left + 55, y = button_y, an = 4, w = 25, h = 25}
-
- -- Window control buttons use symbols in the custom mpv osd font
- -- because the official unicode codepoints are sufficiently
- -- exotic that a system might lack an installed font with them,
- -- and libass will complain that they are not present in the
- -- default font, even if another font with them is available.
-
- -- Close: 🗙
- ne = new_element("close", "button")
- ne.content = "\238\132\149"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("quit") end
- lo = add_layout("close")
- lo.geometry = alignment == "left" and first_geo or third_geo
- lo.style = osc_styles.wcButtons
-
- -- Minimize: 🗕
- ne = new_element("minimize", "button")
- ne.content = "\238\132\146"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "window-minimized") end
- lo = add_layout("minimize")
- lo.geometry = alignment == "left" and second_geo or first_geo
- lo.style = osc_styles.wcButtons
-
- -- Maximize: 🗖 /🗗
- ne = new_element("maximize", "button")
- if state.maximized or state.fullscreen then
- ne.content = "\238\132\148"
- else
- ne.content = "\238\132\147"
- end
- ne.eventresponder["mbtn_left_up"] =
- function ()
- if state.fullscreen then
- mp.commandv("cycle", "fullscreen")
- else
- mp.commandv("cycle", "window-maximized")
- end
- end
- lo = add_layout("maximize")
- lo.geometry = alignment == "left" and third_geo or second_geo
- lo.style = osc_styles.wcButtons
-
- -- deadzone below window controls
- local sh_area_y0, sh_area_y1
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (wc_geo.y + (wc_geo.h / 2)) +
- get_align(1 - (2 * user_opts.deadzonesize),
- osc_param.playresy - (wc_geo.y + (wc_geo.h / 2)), 0, 0)
- add_area("showhide_wc", wc_geo.x, sh_area_y0, wc_geo.w, sh_area_y1)
-
- if topbar then
- -- The title is already there as part of the top bar
- return
- else
- -- Apply boxvideo margins to the control bar
- osc_param.video_margins.t = wc_geo.h / osc_param.playresy
- end
-
- -- Window Title
- ne = new_element("wctitle", "button")
- ne.content = function ()
- local title = mp.command_native({"expand-text", user_opts.wctitle})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
- local left_pad = 5
- local right_pad = 10
- lo = add_layout("wctitle")
- lo.geometry =
- { x = titlebox_left + left_pad, y = wc_geo.y - 3, an = 1,
- w = titlebox_w, h = wc_geo.h }
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.wcTitle,
- titlebox_left + left_pad, wc_geo.y - wc_geo.h,
- titlebox_right - right_pad , wc_geo.y + wc_geo.h)
-
- add_area("window-controls-title",
- titlebox_left, 0, titlebox_right, wc_geo.h)
-end
-
---
--- Layouts
---
-
-local layouts = {}
-
--- Classic box layout
-layouts["box"] = function ()
-
- local osc_geo = {
- w = 550, -- width
- h = 138, -- height
- r = 10, -- corner-radius
- p = 15, -- padding
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w + (2 * osc_geo.p))) then
- osc_param.playresy = (osc_geo.w+(2*osc_geo.p))/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- -- position offset for contents aligned at the borders of the box
- local pos_offsetX = (osc_geo.w - (2*osc_geo.p)) / 2
- local pos_offsetY = (osc_geo.h - (2*osc_geo.p)) / 2
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- -- fetch values
- local osc_w, osc_h, osc_r, osc_p =
- osc_geo.w, osc_geo.h, osc_geo.r, osc_geo.p
-
- local lo
-
- --
- -- Background box
- --
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY, an = 5, w = osc_w, h = osc_h}
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = user_opts.boxalpha
- lo.box.radius = osc_r
-
- --
- -- Title row
- --
-
- local titlerowY = posY - pos_offsetY - 10
-
- lo = add_layout("title")
- lo.geometry = {x = posX, y = titlerowY, an = 8, w = 496, h = 12}
- lo.style = osc_styles.vidtitle
- lo.button.maxchars = user_opts.boxmaxchars
-
- lo = add_layout("pl_prev")
- lo.geometry =
- {x = (posX - pos_offsetX), y = titlerowY, an = 7, w = 12, h = 12}
- lo.style = osc_styles.topButtons
-
- lo = add_layout("pl_next")
- lo.geometry =
- {x = (posX + pos_offsetX), y = titlerowY, an = 9, w = 12, h = 12}
- lo.style = osc_styles.topButtons
-
- --
- -- Big buttons
- --
-
- local bigbtnrowY = posY - pos_offsetY + 35
- local bigbtndist = 60
-
- lo = add_layout("playpause")
- lo.geometry =
- {x = posX, y = bigbtnrowY, an = 5, w = 40, h = 40}
- lo.style = osc_styles.bigButtons
-
- lo = add_layout("skipback")
- lo.geometry =
- {x = posX - bigbtndist, y = bigbtnrowY, an = 5, w = 40, h = 40}
- lo.style = osc_styles.bigButtons
-
- lo = add_layout("skipfrwd")
- lo.geometry =
- {x = posX + bigbtndist, y = bigbtnrowY, an = 5, w = 40, h = 40}
- lo.style = osc_styles.bigButtons
-
- lo = add_layout("ch_prev")
- lo.geometry =
- {x = posX - (bigbtndist * 2), y = bigbtnrowY, an = 5, w = 40, h = 40}
- lo.style = osc_styles.bigButtons
-
- lo = add_layout("ch_next")
- lo.geometry =
- {x = posX + (bigbtndist * 2), y = bigbtnrowY, an = 5, w = 40, h = 40}
- lo.style = osc_styles.bigButtons
-
- lo = add_layout("cy_audio")
- lo.geometry =
- {x = posX - pos_offsetX, y = bigbtnrowY, an = 1, w = 70, h = 18}
- lo.style = osc_styles.smallButtonsL
-
- lo = add_layout("cy_sub")
- lo.geometry =
- {x = posX - pos_offsetX, y = bigbtnrowY, an = 7, w = 70, h = 18}
- lo.style = osc_styles.smallButtonsL
-
- lo = add_layout("tog_fs")
- lo.geometry =
- {x = posX+pos_offsetX - 25, y = bigbtnrowY, an = 4, w = 25, h = 25}
- lo.style = osc_styles.smallButtonsR
-
- lo = add_layout("volume")
- lo.geometry =
- {x = posX+pos_offsetX - (25 * 2) - osc_geo.p,
- y = bigbtnrowY, an = 4, w = 25, h = 25}
- lo.style = osc_styles.smallButtonsR
-
- --
- -- Seekbar
- --
-
- lo = add_layout("seekbar")
- lo.geometry =
- {x = posX, y = posY+pos_offsetY-22, an = 2, w = pos_offsetX*2, h = 15}
- lo.style = osc_styles.timecodes
- lo.slider.tooltip_style = osc_styles.vidtitle
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
- --
- -- Timecodes + Cache
- --
-
- local bottomrowY = posY + pos_offsetY - 5
-
- lo = add_layout("tc_left")
- lo.geometry =
- {x = posX - pos_offsetX, y = bottomrowY, an = 4, w = 110, h = 18}
- lo.style = osc_styles.timecodes
-
- lo = add_layout("tc_right")
- lo.geometry =
- {x = posX + pos_offsetX, y = bottomrowY, an = 6, w = 110, h = 18}
- lo.style = osc_styles.timecodes
-
- lo = add_layout("cache")
- lo.geometry =
- {x = posX, y = bottomrowY, an = 5, w = 110, h = 18}
- lo.style = osc_styles.timecodes
-
-end
-
--- bottombox布局
-layouts["bottombox"] = function ()
-
- local osc_geo = {
- w = osc_param.playresx, -- 宽
- h = 180, -- 高
- r = 0, -- 圆角
- p = 15, -- 内边距
- }
-
- -- bottombox的整体位置
- local posX = osc_param.playresx / 2
- local posY = osc_param.playresy - osc_geo.h / 2
-
- -- position offset for contents aligned at the borders of the box
- local pos_offsetX = (osc_geo.w - (2*osc_geo.p)) / 2
- local pos_offsetY = (osc_geo.h - (2*osc_geo.p)) / 2
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- -- fetch values
- local osc_w, osc_h, osc_r, osc_p =
- osc_geo.w, osc_geo.h, osc_geo.r, osc_geo.p
-
- local lo
-
- --
- -- 背景板
- --
-
- new_element('bb_backgroud', 'box')
- lo = add_layout('bb_backgroud')
- lo.geometry = {x = posX, y = osc_param.playresy, an = 5, w = osc_w, h = 0}
- lo.layer = 10
- lo.style = osc_styles.bb_backgroud
- lo.alpha[1] = 255
- lo.alpha[3] = 0
-
- --
- -- 下方标题
- --
-
- local titlerowY = posY + pos_offsetY - 5
-
- lo = add_layout("title")
- lo.geometry = {x = posX, y = titlerowY, an = 5, w = 500, h = 18}
- lo.style = osc_styles.bb_downtitle
- lo.button.maxchars = user_opts.boxmaxchars
-
- if (user_opts.layout == "bottombox") then
- if (osc_param.display_aspect < 1) then lo.button.maxchars = 50
- if (osc_param.display_aspect < 0.8) then lo.button.maxchars = 35
- if (osc_param.display_aspect < 0.6) then lo.button.maxchars = 20 end
- end
- end
- end
-
- -- 右侧子标题
-
- lo = add_layout("sub_title")
- lo.geometry = {x = posX + pos_offsetX, y = titlerowY - 55, an = 6, w = 0, h = 0}
- lo.style = osc_styles.bb_sub_title
- lo.button.maxchars = user_opts.boxmaxchars
-
- --
- -- 播放按钮
- --
-
- local bigbtnrowY = posY - pos_offsetY + 65
- local bigbtndist = 50
-
- lo = add_layout("playpause")
- lo.geometry =
- {x = posX, y = bigbtnrowY, an = 5, w = 40, h = 40}
- lo.style = osc_styles.bb_bigButton1
-
- lo = add_layout("skipback")
- lo.geometry =
- {x = posX - bigbtndist, y = bigbtnrowY, an = 5, w = 15, h = 15}
- lo.style = osc_styles.bb_bigButton2
-
- lo = add_layout("skipfrwd")
- lo.geometry =
- {x = posX + bigbtndist, y = bigbtnrowY, an = 5, w = 15, h = 15}
- lo.style = osc_styles.bb_bigButton2
-
- lo = add_layout("ch_prev")
- lo.geometry =
- {x = posX - (bigbtndist * 2), y = bigbtnrowY, an = 5, w = 15, h = 15}
- lo.style = osc_styles.bb_bigButton2
-
- lo = add_layout("ch_next")
- lo.geometry =
- {x = posX + (bigbtndist * 2), y = bigbtnrowY, an = 5, w = 15, h = 15}
- lo.style = osc_styles.bb_bigButton2
-
- lo = add_layout("pl_prev")
- lo.geometry =
- {x = posX - (bigbtndist * 3), y = bigbtnrowY, an = 5, w = 25, h = 25}
- lo.style = osc_styles.bb_bigButton3
-
- if (osc_param.display_aspect < 1) then lo.geometry.x = 150 end
-
- lo = add_layout("pl_next")
- lo.geometry =
- {x = posX + (bigbtndist * 3), y = bigbtnrowY, an = 5, w = 25, h = 25}
- lo.style = osc_styles.bb_bigButton3
-
- if (osc_param.display_aspect < 1) then lo.geometry.x = osc_geo.w - 150 end
-
- -- 快捷按钮
-
- lo = add_layout("cy_audio")
- lo.geometry =
- {x = posX - pos_offsetX + 40, y = bigbtnrowY, an = 5, w = 70, h = 25}
- lo.style = osc_styles.bb_Atracks
-
- if (osc_param.display_aspect < 1) then lo.geometry.x = 40 end
-
- lo = add_layout("cy_sub")
- lo.geometry =
- {x = posX - pos_offsetX + (50 * 2) + osc_geo.p, y = bigbtnrowY, an = 5, w = 70, h = 25}
- lo.style = osc_styles.bb_Stracks
-
- lo = add_layout("tog_fs")
- lo.geometry =
- {x = posX + pos_offsetX - 25, y = bigbtnrowY, an = 5, w = 25, h = 25}
- lo.style = osc_styles.bb_fs
-
- lo = add_layout("volume")
- lo.geometry =
- {x = posX + pos_offsetX - (30 * 2) - osc_geo.p, y = bigbtnrowY, an = 4, w = 25, h = 25}
- lo.style = osc_styles.bb_volume
-
- if (osc_param.display_aspect < 1) then lo.geometry.x = osc_geo.w - 40 end
-
- -- 联动内置的stats.lua
-
- lo = add_layout("lua_stats")
- lo.geometry =
- {x = posX + pos_offsetX - (45 * 2) - osc_geo.p, y = bigbtnrowY + 2, an = 5, w = 25, h = 25}
- lo.style = osc_styles.bb_lua_stats
-
- if (osc_param.display_aspect < 1) then lo.geometry.x = osc_geo.w - 60 end
-
- --
- -- 进度条
- --
-
- lo = add_layout("seekbar")
- lo.geometry =
- {x = posX, y = posY + pos_offsetY - 22, an = 2, w = pos_offsetX * 2, h = 20}
- lo.style = osc_styles.bb_seekbar
- lo.slider.gap = 2
- lo.slider.tooltip_style = osc_styles.bb_seektime
- lo.slider.tooltip_an = 5
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
- --
- -- 时间码和缓存
- --
-
- local bottomrowY = posY + pos_offsetY - 5
-
- lo = add_layout("tc_left")
- lo.geometry =
- {x = posX - pos_offsetX, y = bottomrowY, an = 4, w = 80, h = 18}
- lo.style = osc_styles.bb_timecodes
-
- lo = add_layout("tc_right")
- lo.geometry =
- {x = posX + pos_offsetX, y = bottomrowY, an = 6, w = 80, h = 18}
- lo.style = osc_styles.bb_timecodes
-
- lo = add_layout("cache")
- lo.geometry =
- {x = posX - pos_offsetX, y = bottomrowY - pos_offsetY + 18, an = 4, w = 110, h = 14}
- lo.style = osc_styles.bb_cachetime
-
-end
-
--- slim box layout
-layouts["slimbox"] = function ()
-
- local osc_geo = {
- w = 660, -- width
- h = 70, -- height
- r = 10, -- corner-radius
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w)) then
- osc_param.playresy = (osc_geo.w)/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo
-
- local tc_w, ele_h, inner_w = 100, 20, osc_geo.w - 100
-
- -- styles
- local styles = {
- box = "{\\rDefault\\blur0\\bord1\\1c&H000000\\3c&HFFFFFF}",
- timecodes = "{\\1c&HFFFFFF\\3c&H000000\\fs20\\bord2\\blur1}",
- tooltip = "{\\1c&HFFFFFF\\3c&H000000\\fs12\\bord1\\blur0.5}",
- }
-
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = 0
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = osc_geo.r
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
-
- lo = add_layout("seekbar")
- lo.geometry =
- {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.style = osc_styles.timecodes
- lo.slider.border = 0
- lo.slider.gap = 1.5
- lo.slider.tooltip_style = styles.tooltip
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
- lo.slider.adjust_tooltip = false
-
- --
- -- Timecodes
- --
-
- lo = add_layout("tc_left")
- lo.geometry =
- {x = posX - (inner_w/2) + osc_geo.r, y = posY + 1,
- an = 7, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- lo = add_layout("tc_right")
- lo.geometry =
- {x = posX + (inner_w/2) - osc_geo.r, y = posY + 1,
- an = 9, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- -- Cache
-
- lo = add_layout("cache")
- lo.geometry =
- {x = posX, y = posY + 1,
- an = 8, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
-
-end
-
-function bar_layout(direction)
- local osc_geo = {
- x = -2,
- y,
- an = (direction < 0) and 7 or 1,
- w,
- h = 56,
- }
-
- local padX = 9
- local padY = 3
- local buttonW = 27
- local tcW = (state.tc_ms) and 170 or 110
- local tsW = 90
- local minW = (buttonW + padX)*5 + (tcW + padX)*4 + (tsW + padX)*2
-
- -- Special topbar handling when window controls are present
- local padwc_l
- local padwc_r
- if direction < 0 or not window_controls_enabled() then
- padwc_l = 0
- padwc_r = 0
- elseif window_controls_alignment() == "left" then
- padwc_l = window_control_box_width
- padwc_r = 0
- else
- padwc_l = 0
- padwc_r = window_control_box_width
- end
-
- if ((osc_param.display_aspect > 0) and (osc_param.playresx < minW)) then
- osc_param.playresy = minW / osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- osc_geo.y = direction * (54 + user_opts.barmargin)
- osc_geo.w = osc_param.playresx + 4
- if direction < 0 then
- osc_geo.y = osc_geo.y + osc_param.playresy
- end
-
- local line1 = osc_geo.y - direction * (9 + padY)
- local line2 = osc_geo.y - direction * (36 + padY)
-
- osc_param.areas = {}
-
- add_area("input", get_hitbox_coords(osc_geo.x, osc_geo.y, osc_geo.an,
- osc_geo.w, osc_geo.h))
-
- local sh_area_y0, sh_area_y1
- if direction > 0 then
- -- deadzone below OSC
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (osc_geo.y + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (osc_geo.y + (osc_geo.h / 2)), 0, 0)
- else
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- osc_geo.y - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy - user_opts.barmargin
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo, geo
-
- -- Background bar
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = osc_geo
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
-
-
- -- Playlist prev/next
- geo = { x = osc_geo.x + padX, y = line1,
- an = 4, w = 18, h = 18 - padY }
- lo = add_layout("pl_prev")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("pl_next")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- local t_l = geo.x + geo.w + padX
-
- -- Cache
- geo = { x = osc_geo.x + osc_geo.w - padX, y = geo.y,
- an = 6, w = 150, h = geo.h }
- lo = add_layout("cache")
- lo.geometry = geo
- lo.style = osc_styles.vidtitleBar
-
- local t_r = geo.x - geo.w - padX*2
-
- -- Title
- geo = { x = t_l, y = geo.y, an = 4,
- w = t_r - t_l, h = geo.h }
- lo = add_layout("title")
- lo.geometry = geo
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.vidtitleBar,
- geo.x, geo.y-geo.h, geo.w, geo.y+geo.h)
-
-
- -- Playback control buttons
- geo = { x = osc_geo.x + padX + padwc_l, y = line2, an = 4,
- w = buttonW, h = 36 - padY*2}
- lo = add_layout("playpause")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_prev")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_next")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Left timecode
- geo = { x = geo.x + geo.w + padX + tcW, y = geo.y, an = 6,
- w = tcW, h = geo.h }
- lo = add_layout("tc_left")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_l = geo.x + padX
-
- -- Fullscreen button
- geo = { x = osc_geo.x + osc_geo.w - buttonW - padX - padwc_r, y = geo.y, an = 4,
- w = buttonW, h = geo.h }
- lo = add_layout("tog_fs")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Volume
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("volume")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Track selection buttons
- geo = { x = geo.x - tsW - padX, y = geo.y, an = geo.an, w = tsW, h = geo.h }
- lo = add_layout("cy_sub")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("cy_audio")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
-
- -- Right timecode
- geo = { x = geo.x - padX - tcW - 10, y = geo.y, an = geo.an,
- w = tcW, h = geo.h }
- lo = add_layout("tc_right")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_r = geo.x - padX
-
-
- -- Seekbar
- geo = { x = sb_l, y = geo.y, an = geo.an,
- w = math.max(0, sb_r - sb_l), h = geo.h }
- new_element("bgbar1", "box")
- lo = add_layout("bgbar1")
-
- lo.geometry = geo
- lo.layer = 15
- lo.style = osc_styles.timecodesBar
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.8)
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = geo.h / 2
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
- lo = add_layout("seekbar")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
- lo.slider.border = 0
- lo.slider.gap = 2
- lo.slider.tooltip_style = osc_styles.timePosBar
- lo.slider.tooltip_an = 5
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
- if direction < 0 then
- osc_param.video_margins.b = osc_geo.h / osc_param.playresy
- else
- osc_param.video_margins.t = osc_geo.h / osc_param.playresy
- end
-end
-
-layouts["bottombar"] = function()
- bar_layout(-1)
-end
-
-layouts["topbar"] = function()
- bar_layout(1)
-end
-
--- Validate string type user options
-function validate_user_opts()
- if layouts[user_opts.layout] == nil then
- msg.warn("Invalid setting \""..user_opts.layout.."\" for layout")
- user_opts.layout = "bottombar"
- end
-
- if user_opts.seekbarstyle ~= "bar" and
- user_opts.seekbarstyle ~= "diamond" and
- user_opts.seekbarstyle ~= "knob" then
- msg.warn("Invalid setting \"" .. user_opts.seekbarstyle
- .. "\" for seekbarstyle")
- user_opts.seekbarstyle = "bar"
- end
-
- if user_opts.seekrangestyle ~= "bar" and
- user_opts.seekrangestyle ~= "line" and
- user_opts.seekrangestyle ~= "slider" and
- user_opts.seekrangestyle ~= "inverted" and
- user_opts.seekrangestyle ~= "none" then
- msg.warn("Invalid setting \"" .. user_opts.seekrangestyle
- .. "\" for seekrangestyle")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.seekrangestyle == "slider" and
- user_opts.seekbarstyle == "bar" then
- msg.warn("Using \"slider\" seekrangestyle together with \"bar\" seekbarstyle is not supported")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.windowcontrols ~= "auto" and
- user_opts.windowcontrols ~= "yes" and
- user_opts.windowcontrols ~= "no" then
- msg.warn("windowcontrols cannot be \"" ..
- user_opts.windowcontrols .. "\". Ignoring.")
- user_opts.windowcontrols = "auto"
- end
- if user_opts.windowcontrols_alignment ~= "right" and
- user_opts.windowcontrols_alignment ~= "left" then
- msg.warn("windowcontrols_alignment cannot be \"" ..
- user_opts.windowcontrols_alignment .. "\". Ignoring.")
- user_opts.windowcontrols_alignment = "right"
- end
-end
-
-function update_options(list)
- validate_user_opts()
- request_tick()
- visibility_mode(user_opts.visibility, true)
- update_duration_watch()
- request_init()
-end
-
--- OSC INIT
-function osc_init()
- msg.debug("osc_init")
-
- -- set canvas resolution according to display aspect and scaling setting
- local baseResY = 720
- local display_w, display_h, display_aspect = mp.get_osd_size()
- local scale = 1
-
- if (mp.get_property("video") == "no") then -- dummy/forced window
- scale = user_opts.scaleforcedwindow
- elseif state.fullscreen then
- scale = user_opts.scalefullscreen
- else
- scale = user_opts.scalewindowed
- end
-
- if user_opts.vidscale then
- osc_param.unscaled_y = baseResY
- else
- osc_param.unscaled_y = display_h
- end
- osc_param.playresy = osc_param.unscaled_y / scale
- if (display_aspect > 0) then
- osc_param.display_aspect = display_aspect
- end
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
-
- -- stop seeking with the slider to prevent skipping files
- state.active_element = nil
-
- osc_param.video_margins = {l = 0, r = 0, t = 0, b = 0}
-
- elements = {}
-
- -- some often needed stuff
- local pl_count = mp.get_property_number("playlist-count", 0)
- local have_pl = (pl_count > 1)
- local pl_pos = mp.get_property_number("playlist-pos", 0) + 1
- local have_ch = (mp.get_property_number("chapters", 0) > 0)
- local loop = mp.get_property("loop-playlist", "no")
-
- local ne
-
- -- title
- ne = new_element("title", "button")
-
- ne.content = function ()
- local title = state.forced_title or
- mp.command_native({"expand-text", user_opts.title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
-
- ne.eventresponder["mbtn_left_up"] = function ()
- local title = mp.get_property_osd("media-title")
- if (have_pl) then
- title = string.format("[%d/%d] %s", countone(pl_pos - 1),
- pl_count, title)
- end
- show_message(title)
- end
-
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(mp.get_property_osd("filename")) end
-
- -- sub_title -- bottombox的右侧子标题
- ne = new_element("sub_title", "button")
- ne.visible = (osc_param.display_aspect > 1)
-
- ne.content = function ()
- local title = state.forced_sub_title or
- mp.command_native({"expand-text", user_opts.sub_title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
-
- -- playlist buttons
-
- -- prev -- 上一个
- ne = new_element("pl_prev", "button")
-
- if (user_opts.layout == "bottombox") then
- ne.visible = (osc_param.display_aspect > 0.5)
- end
-
- ne.content = "\238\132\144"
- ne.enabled = (pl_pos > 1) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-prev", "weak")
- if user_opts.playlist_osd then
- show_message(get_playlist(), 3)
- end
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
- --next -- 下一个
- ne = new_element("pl_next", "button")
-
- if (user_opts.layout == "bottombox") then
- ne.visible = (osc_param.display_aspect > 0.5)
- end
-
- ne.content = "\238\132\129"
- ne.enabled = (have_pl and (pl_pos < pl_count)) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-next", "weak")
- if user_opts.playlist_osd then
- show_message(get_playlist(), 3)
- end
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
-
- -- big buttons
-
- --playpause
- ne = new_element("playpause", "button")
-
- ne.content = function ()
- if mp.get_property("pause") == "yes" then
- return ("\238\132\129")
- else
- return ("\238\128\130")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "pause") end
-
- --skipback -- 进度(前滚)
- ne = new_element("skipback", "button")
-
- if (user_opts.layout == "bottombox") then
- ne.visible = (osc_param.display_aspect > 1)
- end
-
- ne.softrepeat = true
- ne.content = "\238\128\132"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", -5, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-back-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", -30, "relative", "keyframes") end
-
- --skipfrwd -- 进度(后滚)
- ne = new_element("skipfrwd", "button")
-
- if (user_opts.layout == "bottombox") then
- ne.visible = (osc_param.display_aspect > 1)
- end
-
- ne.softrepeat = true
- ne.content = "\238\128\133"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", 10, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", 60, "relative", "keyframes") end
-
- --ch_prev --章节(上一个)
- ne = new_element("ch_prev", "button")
-
- if (user_opts.layout == "bottombox") then
- ne.visible = (osc_param.display_aspect > 1)
- end
-
- ne.enabled = have_ch
- ne.content = "\238\132\132"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", -1)
- if user_opts.chapters_osd then
- show_message(get_chapterlist(), 3)
- end
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --ch_next --章节(下一个)
- ne = new_element("ch_next", "button")
-
- if (user_opts.layout == "bottombox") then
- ne.visible = (osc_param.display_aspect > 1)
- end
-
- ne.enabled = have_ch
- ne.content = "\238\132\133"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", 1)
- if user_opts.chapters_osd then
- show_message(get_chapterlist(), 3)
- end
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --
- update_tracklist()
-
- --cy_audio --全局音轨按钮增强
- ne = new_element("cy_audio", "button")
-
- ne.enabled = (#tracks_osc.audio > 0)
- ne.off = (get_track('audio') == 0)
- ne.content = function ()
- local aid = "–"
- if not (get_track("audio") == 0) then
- aid = get_track("audio")
- end
- return ("\238\132\134" .. osc_styles.smallButtonsLlabel
- .. " " .. aid .. "/" .. #tracks_osc.audio)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("audio", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("audio", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("audio"), 2) end
-
- ne.eventresponder["wheel_up_press"] =
- function () set_track("audio", -1) end
- ne.eventresponder["wheel_down_press"] =
- function () set_track("audio", 1) end
-
- --cy_sub --全局字幕按钮增强
- ne = new_element("cy_sub", "button")
-
- if (user_opts.layout == "bottombox") then
- ne.visible = (osc_param.display_aspect > 1)
- end
-
- ne.enabled = (#tracks_osc.sub > 0)
- ne.off = (get_track('sub') == 0)
- ne.content = function ()
- local sid = "–"
- if not (get_track("sub") == 0) then
- sid = get_track("sub")
- end
- return ("\238\132\135" .. osc_styles.smallButtonsLlabel
- .. " " .. sid .. "/" .. #tracks_osc.sub)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("sub", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("sub", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("sub"), 2) end
-
- ne.eventresponder["wheel_up_press"] =
- function () set_track("sub", -1) end
- ne.eventresponder["wheel_down_press"] =
- function () set_track("sub", 1) end
-
- --tog_fs --切换全屏/窗口化
- ne = new_element("tog_fs", "button")
-
- if (user_opts.layout == "bottombox") then
- ne.visible = (osc_param.display_aspect > 1)
- end
-
- ne.content = function ()
- if (state.fullscreen) then
- return ("\238\132\137")
- else
- return ("\238\132\136")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "fullscreen") end
-
- --seekbar --全局进度条增强
- ne = new_element("seekbar", "slider")
-
- ne.enabled = not (mp.get_property("percent-pos") == nil)
- state.slider_element = ne.enabled and ne or nil -- used for forced_title
- ne.slider.markerF = function ()
- local duration = mp.get_property_number("duration", nil)
- if not (duration == nil) then
- local chapters = mp.get_property_native("chapter-list", {})
- local markers = {}
- for n = 1, #chapters do
- markers[n] = (chapters[n].time / duration * 100)
- end
- return markers
- else
- return {}
- end
- end
- ne.slider.posF =
- function () return mp.get_property_number("percent-pos", nil) end
- ne.slider.tooltipF = function (pos)
- local duration = mp.get_property_number("duration", nil)
- if not ((duration == nil) or (pos == nil)) then
- possec = duration * (pos / 100)
- return mp.format_time(possec)
- else
- return ""
- end
- end
- ne.slider.seekRangesF = function()
- if user_opts.seekrangestyle == "none" then
- return nil
- end
- local cache_state = state.cache_state
- if not cache_state then
- return nil
- end
- local duration = mp.get_property_number("duration", nil)
- if (duration == nil) or duration <= 0 then
- return nil
- end
- local ranges = cache_state["seekable-ranges"]
- if #ranges == 0 then
- return nil
- end
- local nranges = {}
- for _, range in pairs(ranges) do
- nranges[#nranges + 1] = {
- ["start"] = 100 * range["start"] / duration,
- ["end"] = 100 * range["end"] / duration,
- }
- end
- return nranges
- end
- ne.eventresponder["mouse_move"] = --keyframe seeking when mouse is dragged
- function (element)
- -- mouse move events may pile up during seeking and may still get
- -- sent when the user is done seeking, so we need to throw away
- -- identical seeks
- thumbfast.pause = false --暂停渲染缩略图
- mp.commandv("script-message-to", "thumbfast", "clear")
- local seekto = get_slider_value(element)
- if (element.state.lastseek == nil) or
- (not (element.state.lastseek == seekto)) then
- local flags = "absolute-percent+keyframes" -- 防止--hr-seek的影响
- if not user_opts.seekbarkeyframes then
- flags = "absolute-percent+exact" -- 防止--hr-seek的影响
- end
- mp.commandv("seek", seekto, flags)
- element.state.lastseek = seekto
- end
-
- end
- ne.eventresponder["mouse_leave"] =
- function (element) thumbfast.pause = true end --恢复渲染缩略图
- ne.eventresponder["mbtn_left_down"] = --exact seeks on single clicks
- function (element) mp.commandv("seek", get_slider_value(element),
- "absolute-percent", "exact") end
- ne.eventresponder["reset"] =
- function (element) element.state.lastseek = nil end
-
- ne.eventresponder["wheel_up_press"] = function ()
- if user_opts.seekbar_scrollseek == "fast" then mp.commandv('seek', -0.1, 'keyframes')
- elseif user_opts.seekbar_scrollseek == "second" then mp.commandv('seek', -0.1, 'exact')
- elseif user_opts.seekbar_scrollseek == "frame" then mp.commandv('frame-back-step')
- end
- end
-
- ne.eventresponder["wheel_down_press"] = function ()
- if user_opts.seekbar_scrollseek == "fast" then mp.commandv('seek', 0.1, 'keyframes')
- elseif user_opts.seekbar_scrollseek == "second" then mp.commandv('seek', 0.1, 'exact')
- elseif user_opts.seekbar_scrollseek == "frame" then mp.commandv('frame-step')
- end
- end
-
- -- tc_left (current pos) -- 当前时间
- ne = new_element("tc_left", "button")
-
- if (user_opts.layout == "bottombox") then
- ne.visible = (osc_param.display_aspect > 0.5)
- end
-
- ne.content = function ()
- if (state.tc_ms) then
- return (mp.get_property_osd("playback-time/full"))
- else
- return (mp.get_property_osd("playback-time"))
- end
- end
- ne.eventresponder["mbtn_left_up"] = function ()
- state.tc_ms = not state.tc_ms
- request_init()
- end
-
- -- tc_right (total/remaining time) -- 总/剩余时间
- ne = new_element("tc_right", "button")
-
- ne.visible = (mp.get_property_number("duration", 0) > 0)
- if (user_opts.layout == "bottombox") and (mp.get_property_number("duration", 0) > 0) then ne.visible = (osc_param.display_aspect > 0.5) end
-
- ne.content = function ()
- if (state.rightTC_trem) then
- if state.tc_ms then
- return ("-"..mp.get_property_osd("playtime-remaining/full"))
- else
- return ("-"..mp.get_property_osd("playtime-remaining"))
- end
- else
- if state.tc_ms then
- return (mp.get_property_osd("duration/full"))
- else
- return (mp.get_property_osd("duration"))
- end
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () state.rightTC_trem = not state.rightTC_trem end
-
- -- cache
- ne = new_element("cache", "button")
-
- ne.content = function ()
- local cache_state = state.cache_state
- if not (cache_state and cache_state["seekable-ranges"] and
- #cache_state["seekable-ranges"] > 0) then
- -- probably not a network stream
- return ""
- end
- local dmx_cache = cache_state and cache_state["cache-duration"]
- local thresh = math.min(state.dmx_cache * 0.05, 5) -- 5% or 5s
- if dmx_cache and math.abs(dmx_cache - state.dmx_cache) >= thresh then
- state.dmx_cache = dmx_cache
- else
- dmx_cache = state.dmx_cache
- end
- local min = math.floor(dmx_cache / 60)
- local sec = math.floor(dmx_cache % 60) -- don't round e.g. 59.9 to 60
- local cache_speed = string.format("%.2f",(mp.get_property_native("cache-speed") / 1048576))
- return "缓冲:" .. (min > 0 and
- string.format("%sm%02.0fs", min, sec) or
- string.format("%3.0fs", sec)) .. (cache_speed ~= nil and (" 速度: " .. cache_speed .. " MB/s") or "")
- end
-
- -- volume
- ne = new_element("volume", "button")
-
- ne.content = function()
- local volume = mp.get_property_number("volume", 0)
- local mute = mp.get_property_native("mute")
- local volicon = {"\238\132\139", "\238\132\140",
- "\238\132\141", "\238\132\142"}
- if volume == 0 or mute then
- return "\238\132\138"
- else
- return volicon[math.min(4,math.ceil(volume / (100/3)))]
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "mute") end
-
- ne.eventresponder["wheel_up_press"] =
- function () mp.commandv("osd-auto", "add", "volume", 1) end
- ne.eventresponder["wheel_down_press"] =
- function () mp.commandv("osd-auto", "add", "volume", -1) end
-
- -- bottombox的统计信息按钮 联动内置的stats.lua
- ne = new_element("lua_stats", "button")
-
- ne.content = "\238\132\135"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("script-binding", "stats/display-stats-toggle") end
- ne.eventresponder["mbtn_right_up"] =
- function () mp.commandv("script-binding", "stats/display-page-4") end
-
- ne.eventresponder["wheel_up_press"] =
- function () mp.commandv("script-binding", "stats/display-page-1") end
- ne.eventresponder["wheel_down_press"] =
- function () mp.commandv("script-binding", "stats/display-page-2") end
-
- -- load layout
- layouts[user_opts.layout]()
-
- -- load window controls
- if window_controls_enabled() then
- window_controls(user_opts.layout == "topbar")
- end
-
- --do something with the elements
- prepare_elements()
-
- update_margins()
-end
-
-function reset_margins()
- if state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- mp.set_property_number(opt[2], 0.0)
- end
- state.using_video_margins = false
- end
-end
-
-function update_margins()
- local margins = osc_param.video_margins
-
- -- Don't use margins if it's visible only temporarily.
- if (not state.osc_visible) or (get_hidetimeout() >= 0) or
- (state.fullscreen and not user_opts.showfullscreen) or
- (not state.fullscreen and not user_opts.showwindowed)
- then
- margins = {l = 0, r = 0, t = 0, b = 0}
- end
-
- if user_opts.boxvideo then
- -- check whether any margin option has a non-default value
- local margins_used = false
-
- if not state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- if mp.get_property_number(opt[2], 0.0) ~= 0.0 then
- margins_used = true
- end
- end
- end
-
- if not margins_used then
- for _, opt in ipairs(margins_opts) do
- local v = margins[opt[1]]
- if (v ~= 0) or state.using_video_margins then
- mp.set_property_number(opt[2], v)
- state.using_video_margins = true
- end
- end
- end
- else
- reset_margins()
- end
-
- utils.shared_script_property_set("osc-margins",
- string.format("%f,%f,%f,%f", margins.l, margins.r, margins.t, margins.b))
-end
-
-function shutdown()
- reset_margins()
- utils.shared_script_property_set("osc-margins", nil)
-end
-
---
--- Other important stuff
---
-
-
-function show_osc()
- -- show when disabled can happen (e.g. mouse_move) due to async/delayed unbinding
- if not state.enabled then return end
-
- msg.trace("show_osc")
- --remember last time of invocation (mouse move)
- state.showtime = mp.get_time()
-
- osc_visible(true)
-
- if (user_opts.fadeduration > 0) then
- state.anitype = nil
- end
-end
-
-function hide_osc()
- msg.trace("hide_osc")
- if not state.enabled then
- -- typically hide happens at render() from tick(), but now tick() is
- -- no-op and won't render again to remove the osc, so do that manually.
- state.osc_visible = false
- render_wipe()
- elseif (user_opts.fadeduration > 0) then
- if not(state.osc_visible == false) then
- state.anitype = "out"
- request_tick()
- end
- else
- osc_visible(false)
- end
-end
-
-function osc_visible(visible)
- if state.osc_visible ~= visible then
- state.osc_visible = visible
- update_margins()
- end
- request_tick()
-end
-
-function pause_state(name, enabled)
- -- 暂停状态检查
- state.paused = enabled
- mp.add_timeout(0.1, function() state.osd:update() end)
- if user_opts.showonpause then
- if enabled then
- state.lastvisibility = user_opts.visibility
- visibility_mode("always", true)
- show_osc()
- else
- visibility_mode(state.lastvisibility, true)
- end
- end
- request_tick()
-end
-
-function cache_state(name, st)
- state.cache_state = st
- request_tick()
-end
-
--- Request that tick() is called (which typically re-renders the OSC).
--- The tick is then either executed immediately, or rate-limited if it was
--- called a small time ago.
-function request_tick()
- if state.tick_timer == nil then
- state.tick_timer = mp.add_timeout(0, tick)
- end
-
- if not state.tick_timer:is_enabled() then
- local now = mp.get_time()
- local timeout = tick_delay - (now - state.tick_last_time)
- if timeout < 0 then
- timeout = 0
- end
- state.tick_timer.timeout = timeout
- state.tick_timer:resume()
- end
-end
-
-function mouse_leave()
- if get_hidetimeout() >= 0 then
- hide_osc()
- end
- -- reset mouse position
- state.last_mouseX, state.last_mouseY = nil, nil
- state.mouse_in_window = false
-end
-
-function request_init()
- state.initREQ = true
- request_tick()
-end
-
--- Like request_init(), but also request an immediate update
-function request_init_resize()
- request_init()
- -- ensure immediate update
- state.tick_timer:kill()
- state.tick_timer.timeout = 0
- state.tick_timer:resume()
-end
-
-function render_wipe()
- msg.trace("render_wipe()")
- state.osd.data = "" -- allows set_osd to immediately update on enable
- state.osd:remove()
-end
-
-function render()
- msg.trace("rendering")
- local current_screen_sizeX, current_screen_sizeY, aspect = mp.get_osd_size()
- local mouseX, mouseY = get_virt_mouse_pos()
- local now = mp.get_time()
-
- -- check if display changed, if so request reinit
- if not (state.mp_screen_sizeX == current_screen_sizeX
- and state.mp_screen_sizeY == current_screen_sizeY) then
-
- request_init_resize()
-
- state.mp_screen_sizeX = current_screen_sizeX
- state.mp_screen_sizeY = current_screen_sizeY
- end
-
- -- init management
- if state.active_element then
- -- mouse is held down on some element - keep ticking and igore initReq
- -- till it's released, or else the mouse-up (click) will misbehave or
- -- get ignored. that's because osc_init() recreates the osc elements,
- -- but mouse handling depends on the elements staying unmodified
- -- between mouse-down and mouse-up (using the index active_element).
- request_tick()
- elseif state.initREQ then
- osc_init()
- state.initREQ = false
-
- -- store initial mouse position
- if (state.last_mouseX == nil or state.last_mouseY == nil)
- and not (mouseX == nil or mouseY == nil) then
-
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
- end
- end
-
-
- -- fade animation
- if not(state.anitype == nil) then
-
- if (state.anistart == nil) then
- state.anistart = now
- end
-
- if (now < state.anistart + (user_opts.fadeduration/1000)) then
-
- if (state.anitype == "in") then --fade in
- osc_visible(true)
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 255, 0, now)
- elseif (state.anitype == "out") then --fade out
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 0, 255, now)
- end
-
- else
- if (state.anitype == "out") then
- osc_visible(false)
- end
- kill_animation()
- end
- else
- kill_animation()
- end
-
- --mouse show/hide area
- for k,cords in pairs(osc_param.areas["showhide"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide")
- end
- if osc_param.areas["showhide_wc"] then
- for k,cords in pairs(osc_param.areas["showhide_wc"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide_wc")
- end
- else
- set_virt_mouse_area(0, 0, 0, 0, "showhide_wc")
- end
- do_enable_keybindings()
-
- --mouse input area
- local mouse_over_osc = false
-
- for _,cords in ipairs(osc_param.areas["input"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "input")
- end
- if state.osc_visible ~= state.input_enabled then
- if state.osc_visible then
- mp.enable_key_bindings("input")
- else
- mp.disable_key_bindings("input")
- end
- state.input_enabled = state.osc_visible
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
-
- if osc_param.areas["window-controls"] then
- for _,cords in ipairs(osc_param.areas["window-controls"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "window-controls")
- mp.enable_key_bindings("window-controls")
- else
- mp.disable_key_bindings("window-controls")
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- if osc_param.areas["window-controls-title"] then
- for _,cords in ipairs(osc_param.areas["window-controls-title"]) do
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- -- autohide
- if not (state.showtime == nil) and (get_hidetimeout() >= 0) then
- local timeout = state.showtime + (get_hidetimeout()/1000) - now
- if timeout <= 0 then
- if (state.active_element == nil) and not (mouse_over_osc) then
- hide_osc()
- end
- else
- -- the timer is only used to recheck the state and to possibly run
- -- the code above again
- if not state.hide_timer then
- state.hide_timer = mp.add_timeout(0, tick)
- end
- state.hide_timer.timeout = timeout
- -- re-arm
- state.hide_timer:kill()
- state.hide_timer:resume()
- end
- end
-
-
- -- actual rendering
- local ass = assdraw.ass_new()
-
- -- Messages
- render_message(ass)
-
- -- actual OSC
- if state.osc_visible then
- render_elements(ass)
- end
-
- -- submit
- set_osd(osc_param.playresy * osc_param.display_aspect,
- osc_param.playresy, ass.text)
-end
-
---
--- Eventhandling
---
-
-local function element_has_action(element, action)
- return element and element.eventresponder and
- element.eventresponder[action]
-end
-
-function process_event(source, what)
- local action = string.format("%s%s", source,
- what and ("_" .. what) or "")
-
- if what == "down" or what == "press" then
-
- for n = 1, #elements do
-
- if mouse_hit(elements[n]) and
- elements[n].eventresponder and
- (elements[n].eventresponder[source .. "_up"] or
- elements[n].eventresponder[action]) then
-
- if what == "down" then
- state.active_element = n
- state.active_event_source = source
- end
- -- fire the down or press event if the element has one
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
-
- end
- end
-
- elseif what == "up" then
-
- if elements[state.active_element] then
- local n = state.active_element
-
- if n == 0 then
- --click on background (does not work)
- elseif element_has_action(elements[n], action) and
- mouse_hit(elements[n]) then
-
- elements[n].eventresponder[action](elements[n])
- end
-
- --reset active element
- if element_has_action(elements[n], "reset") then
- elements[n].eventresponder["reset"](elements[n])
- end
-
- end
- state.active_element = nil
- state.mouse_down_counter = 0
-
- elseif source == "mouse_move" then
-
- state.mouse_in_window = true
-
- local mouseX, mouseY = get_virt_mouse_pos()
- if (user_opts.minmousemove == 0) or
- (not ((state.last_mouseX == nil) or (state.last_mouseY == nil)) and
- ((math.abs(mouseX - state.last_mouseX) >= user_opts.minmousemove)
- or (math.abs(mouseY - state.last_mouseY) >= user_opts.minmousemove)
- )
- ) then
- show_osc()
- end
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
-
- local n = state.active_element
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
- end
-
- -- ensure rendering after any (mouse) event - icons could change etc
- request_tick()
-end
-
-
-local logo_lines = {
- -- White border
- "{\\c&HE5E5E5&\\p6}m 895 10 b 401 10 0 410 0 905 0 1399 401 1800 895 1800 1390 1800 1790 1399 1790 905 1790 410 1390 10 895 10 {\\p0}",
- -- Purple fill
- "{\\c&H682167&\\p6}m 925 42 b 463 42 87 418 87 880 87 1343 463 1718 925 1718 1388 1718 1763 1343 1763 880 1763 418 1388 42 925 42{\\p0}",
- -- Darker fill
- "{\\c&H430142&\\p6}m 1605 828 b 1605 1175 1324 1456 977 1456 631 1456 349 1175 349 828 349 482 631 200 977 200 1324 200 1605 482 1605 828{\\p0}",
- -- White fill
- "{\\c&HDDDBDD&\\p6}m 1296 910 b 1296 1131 1117 1310 897 1310 676 1310 497 1131 497 910 497 689 676 511 897 511 1117 511 1296 689 1296 910{\\p0}",
- -- Triangle
- "{\\c&H691F69&\\p6}m 762 1113 l 762 708 b 881 776 1000 843 1119 911 1000 978 881 1046 762 1113{\\p0}",
-}
-
-local santa_hat_lines = {
- -- Pompoms
- "{\\c&HC0C0C0&\\p6}m 500 -323 b 491 -322 481 -318 475 -311 465 -312 456 -319 446 -318 434 -314 427 -304 417 -297 410 -290 404 -282 395 -278 390 -274 387 -267 381 -265 377 -261 379 -254 384 -253 397 -244 409 -232 425 -228 437 -228 446 -218 457 -217 462 -216 466 -213 468 -209 471 -205 477 -203 482 -206 491 -211 499 -217 508 -222 532 -235 556 -249 576 -267 584 -272 584 -284 578 -290 569 -305 550 -312 533 -309 523 -310 515 -316 507 -321 505 -323 503 -323 500 -323{\\p0}",
- "{\\c&HE0E0E0&\\p6}m 315 -260 b 286 -258 259 -240 246 -215 235 -210 222 -215 211 -211 204 -188 177 -176 172 -151 170 -139 163 -128 154 -121 143 -103 141 -81 143 -60 139 -46 125 -34 129 -17 132 -1 134 16 142 30 145 56 161 80 181 96 196 114 210 133 231 144 266 153 303 138 328 115 373 79 401 28 423 -24 446 -73 465 -123 483 -174 487 -199 467 -225 442 -227 421 -232 402 -242 384 -254 364 -259 342 -250 322 -260 320 -260 317 -261 315 -260{\\p0}",
- -- Main cap
- "{\\c&H0000F0&\\p6}m 1151 -523 b 1016 -516 891 -458 769 -406 693 -369 624 -319 561 -262 526 -252 465 -235 479 -187 502 -147 551 -135 588 -111 1115 165 1379 232 1909 761 1926 800 1952 834 1987 858 2020 883 2053 912 2065 952 2088 1000 2146 962 2139 919 2162 836 2156 747 2143 662 2131 615 2116 567 2122 517 2120 410 2090 306 2089 199 2092 147 2071 99 2034 64 1987 5 1928 -41 1869 -86 1777 -157 1712 -256 1629 -337 1578 -389 1521 -436 1461 -476 1407 -509 1343 -507 1284 -515 1240 -519 1195 -521 1151 -523{\\p0}",
- -- Cap shadow
- "{\\c&H0000AA&\\p6}m 1657 248 b 1658 254 1659 261 1660 267 1669 276 1680 284 1689 293 1695 302 1700 311 1707 320 1716 325 1726 330 1735 335 1744 347 1752 360 1761 371 1753 352 1754 331 1753 311 1751 237 1751 163 1751 90 1752 64 1752 37 1767 14 1778 -3 1785 -24 1786 -45 1786 -60 1786 -77 1774 -87 1760 -96 1750 -78 1751 -65 1748 -37 1750 -8 1750 20 1734 78 1715 134 1699 192 1694 211 1689 231 1676 246 1671 251 1661 255 1657 248 m 1909 541 b 1914 542 1922 549 1917 539 1919 520 1921 502 1919 483 1918 458 1917 433 1915 407 1930 373 1942 338 1947 301 1952 270 1954 238 1951 207 1946 214 1947 229 1945 239 1939 278 1936 318 1924 356 1923 362 1913 382 1912 364 1906 301 1904 237 1891 175 1887 150 1892 126 1892 101 1892 68 1893 35 1888 2 1884 -9 1871 -20 1859 -14 1851 -6 1854 9 1854 20 1855 58 1864 95 1873 132 1883 179 1894 225 1899 273 1908 362 1910 451 1909 541{\\p0}",
- -- Brim and tip pompom
- "{\\c&HF8F8F8&\\p6}m 626 -191 b 565 -155 486 -196 428 -151 387 -115 327 -101 304 -47 273 2 267 59 249 113 219 157 217 213 215 265 217 309 260 302 285 283 373 264 465 264 555 257 608 252 655 292 709 287 759 294 816 276 863 298 903 340 972 324 1012 367 1061 394 1125 382 1167 424 1213 462 1268 482 1322 506 1385 546 1427 610 1479 662 1510 690 1534 725 1566 752 1611 796 1664 830 1703 880 1740 918 1747 986 1805 1005 1863 991 1897 932 1916 880 1914 823 1945 777 1961 725 1979 673 1957 622 1938 575 1912 534 1862 515 1836 473 1790 417 1755 351 1697 305 1658 266 1633 216 1593 176 1574 138 1539 116 1497 110 1448 101 1402 77 1371 37 1346 -16 1295 15 1254 6 1211 -27 1170 -62 1121 -86 1072 -104 1027 -128 976 -133 914 -130 851 -137 794 -162 740 -181 679 -168 626 -191 m 2051 917 b 1971 932 1929 1017 1919 1091 1912 1149 1923 1214 1970 1254 2000 1279 2027 1314 2066 1325 2139 1338 2212 1295 2254 1238 2281 1203 2287 1158 2282 1116 2292 1061 2273 1006 2229 970 2206 941 2167 938 2138 918{\\p0}",
-}
-
--- called by mpv on every frame
-function tick()
- if state.marginsREQ == true then
- update_margins()
- state.marginsREQ = false
- end
-
- if (not state.enabled) then return end
-
- if (state.idle) then
-
- -- render idle message
- msg.trace("idle message")
- local _, _, display_aspect = mp.get_osd_size()
- if display_aspect == 0 then
- return
- end
- local display_h = 360
- local display_w = display_h * display_aspect
- -- logo is rendered at 2^(6-1) = 32 times resolution with size 1800x1800
- local icon_x, icon_y = (display_w - 1800 / 32) / 2, 140
- local line_prefix = ("{\\rDefault\\an7\\1a&H00&\\bord0\\shad0\\pos(%f,%f)}"):format(icon_x, icon_y)
-
- local ass = assdraw.ass_new()
- -- mpv logo
- if user_opts.idlescreen then
- for i, line in ipairs(logo_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
- end
-
- -- Santa hat
- if is_december and user_opts.idlescreen and not user_opts.greenandgrumpy then
- for i, line in ipairs(santa_hat_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
- end
-
- if user_opts.idlescreen then
- ass:new_event()
- ass:pos(display_w / 2, icon_y + 65)
- ass:an(8)
- ass:append("拖入文件/目录/网址进行播放")
- end
- set_osd(display_w, display_h, ass.text)
-
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- state.showhide_enabled = false
- end
-
-
- elseif (state.fullscreen and user_opts.showfullscreen)
- or (not state.fullscreen and user_opts.showwindowed) then
-
- -- render the OSC
- render()
- else
- -- Flush OSD
- render_wipe()
- end
-
- state.tick_last_time = mp.get_time()
-
- if state.anitype ~= nil then
- -- state.anistart can be nil - animation should now start, or it can
- -- be a timestamp when it started. state.idle has no animation.
- if not state.idle and
- (not state.anistart or
- mp.get_time() < 1 + state.anistart + user_opts.fadeduration/1000)
- then
- -- animating or starting, or still within 1s past the deadline
- request_tick()
- else
- kill_animation()
- end
- end
-end
-
-function do_enable_keybindings()
- if state.enabled then
- if not state.showhide_enabled then
- mp.enable_key_bindings("showhide", "allow-vo-dragging+allow-hide-cursor")
- mp.enable_key_bindings("showhide_wc", "allow-vo-dragging+allow-hide-cursor")
- end
- state.showhide_enabled = true
- end
-end
-
-function enable_osc(enable)
- state.enabled = enable
- if enable then
- do_enable_keybindings()
- else
- hide_osc() -- acts immediately when state.enabled == false
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- end
- state.showhide_enabled = false
- end
-end
-
--- duration is observed for the sole purpose of updating chapter markers
--- positions. live streams with chapters are very rare, and the update is also
--- expensive (with request_init), so it's only observed when we have chapters
--- and the user didn't disable the livemarkers option (update_duration_watch).
-function on_duration() request_init() end
-
-local duration_watched = false
-function update_duration_watch()
- local want_watch = user_opts.livemarkers and
- (mp.get_property_number("chapters", 0) or 0) > 0 and
- true or false -- ensure it's a boolean
-
- if (want_watch ~= duration_watched) then
- if want_watch then
- mp.observe_property("duration", nil, on_duration)
- else
- mp.unobserve_property(on_duration)
- end
- duration_watched = want_watch
- end
-end
-
-validate_user_opts()
-update_duration_watch()
-
-mp.register_event("shutdown", shutdown)
-mp.register_event("start-file", request_init)
-if user_opts.showonstart then mp.register_event("file-loaded", show_osc) end
-if user_opts.showonseek then mp.register_event("seek", show_osc) end
-mp.observe_property("track-list", nil, request_init)
-mp.observe_property("playlist", nil, request_init)
-mp.observe_property("chapter-list", "native", function(_, list)
- list = list or {} -- safety, shouldn't return nil
- table.sort(list, function(a, b) return a.time < b.time end)
- state.chapter_list = list
- update_duration_watch()
- request_init()
-end)
-
-mp.register_script_message("osc-message", show_message)
-mp.register_script_message("osc-chapterlist", function(dur)
- show_message(get_chapterlist(), dur)
-end)
-mp.register_script_message("osc-playlist", function(dur)
- show_message(get_playlist(), dur)
-end)
-mp.register_script_message("osc-tracklist", function(dur)
- local msg = {}
- for k,v in pairs(nicetypes) do
- table.insert(msg, get_tracklist(k))
- end
- show_message(table.concat(msg, '\n\n'), dur)
-end)
-
-mp.observe_property("fullscreen", "bool",
- function(name, val)
- state.fullscreen = val
- state.marginsREQ = true
- request_init_resize()
- end
-)
-mp.observe_property("border", "bool",
- function(name, val)
- state.border = val
- request_init_resize()
- end
-)
-mp.observe_property("window-maximized", "bool",
- function(name, val)
- state.maximized = val
- request_init_resize()
- end
-)
-mp.observe_property("idle-active", "bool",
- function(name, val)
- state.idle = val
- request_tick()
- end
-)
-mp.observe_property("pause", "bool", pause_state)
-mp.observe_property("demuxer-cache-state", "native", cache_state)
-mp.observe_property("vo-configured", "bool", function(name, val)
- request_tick()
-end)
-mp.observe_property("playback-time", "number", function(name, val)
- request_tick()
-end)
-mp.observe_property("osd-dimensions", "native", function(name, val)
- -- (we could use the value instead of re-querying it all the time, but then
- -- we might have to worry about property update ordering)
- request_init_resize()
-end)
-
--- mouse show/hide bindings
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide", "force")
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide_wc", "force")
-do_enable_keybindings()
-
---mouse input bindings
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
- {"shift+mbtn_left", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"mbtn_right", function(e) process_event("mbtn_right", "up") end,
- function(e) process_event("mbtn_right", "down") end},
- -- alias to shift_mbtn_left for single-handed mouse use
- {"mbtn_mid", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"wheel_up", function(e) process_event("wheel_up", "press") end},
- {"wheel_down", function(e) process_event("wheel_down", "press") end},
- {"mbtn_left_dbl", "ignore"},
- {"shift+mbtn_left_dbl", "ignore"},
- {"mbtn_right_dbl", function(e) process_event("mbtn_right_dbl", "press") end},
-}, "input", "force")
-mp.enable_key_bindings("input")
-
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
-}, "window-controls", "force")
-mp.enable_key_bindings("window-controls")
-
-function get_hidetimeout()
- if user_opts.visibility == "always" then
- return -1 -- disable autohide
- end
- return user_opts.hidetimeout
-end
-
-function always_on(val)
- if state.enabled then
- if val then
- show_osc()
- else
- hide_osc()
- end
- end
-end
-
--- mode can be auto/always/never/cycle
--- the modes only affect internal variables and not stored on its own.
-function visibility_mode(mode, no_osd)
- if mode == "cycle" then
- if not state.enabled then
- mode = "auto"
- elseif user_opts.visibility ~= "always" then
- mode = "always"
- else
- mode = "never"
- end
- end
-
- if mode == "auto" then
- always_on(false)
- enable_osc(true)
- elseif mode == "always" then
- enable_osc(true)
- always_on(true)
- elseif mode == "never" then
- enable_osc(false)
- else
- msg.warn("Ignoring unknown visibility mode '" .. mode .. "'")
- return
- end
-
- user_opts.visibility = mode
- utils.shared_script_property_set("osc-visibility", mode)
-
- if not no_osd and tonumber(mp.get_property("osd-level")) >= 1 then
- mp.osd_message("OSC的可见性:" .. mode)
- end
-
- -- Reset the input state on a mode change. The input state will be
- -- recalcuated on the next render cycle, except in 'never' mode where it
- -- will just stay disabled.
- mp.disable_key_bindings("input")
- mp.disable_key_bindings("window-controls")
- state.input_enabled = false
-
- update_margins()
- request_tick()
-end
-
-function idlescreen_visibility(mode, no_osd)
- if mode == "cycle" then
- if user_opts.idlescreen then
- mode = "no"
- else
- mode = "yes"
- end
- end
-
- if mode == "yes" then
- user_opts.idlescreen = true
- else
- user_opts.idlescreen = false
- end
-
- utils.shared_script_property_set("osc-idlescreen", mode)
-
- if not no_osd and tonumber(mp.get_property("osd-level")) >= 1 then
- mp.osd_message("OSC logo visibility: " .. tostring(mode))
- end
-
- request_tick()
-end
-
-visibility_mode(user_opts.visibility, true)
-mp.register_script_message("osc-visibility", visibility_mode)
-mp.add_key_binding(nil, "visibility", function() visibility_mode("cycle") end)
-
-mp.register_script_message("osc-idlescreen", idlescreen_visibility)
-
-mp.register_script_message("thumbfast-info", function(json)
- local data = utils.parse_json(json)
- if type(data) ~= "table" or not data.width or not data.height then
- msg.error("thumbfast-info: received json didn't produce a table with thumbnail information")
- else
- thumbfast = data
- end
-end)
-
-set_virt_mouse_area(0, 0, 0, 0, "input")
-set_virt_mouse_area(0, 0, 0, 0, "window-controls")
diff --git a/osc-style/osc_mod.lua b/osc-style/osc_mod.lua
deleted file mode 100644
index fb5ef6e..0000000
--- a/osc-style/osc_mod.lua
+++ /dev/null
@@ -1,4237 +0,0 @@
---[[
- Copyright (C) 2017 AMM
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see .
-]]--
---[[
- mpv_thumbnail_script.lua 0.4.2 fork - commit 152b0e2 (branch master)
- Original: https://github.com/TheAMM/mpv_thumbnail_script
- Built on 20200520
-]]--
-local assdraw = require 'mp.assdraw'
-local msg = require 'mp.msg'
-local opt = require 'mp.options'
-local utils = require 'mp.utils'
-
--- Determine platform --
-ON_WINDOWS = (package.config:sub(1,1) ~= '/')
-
--- Some helper functions needed to parse the options --
-function isempty(v) return (v == false) or (v == nil) or (v == "") or (v == 0) or (type(v) == "table" and next(v) == nil) end
-
-function divmod (a, b)
- return math.floor(a / b), a % b
-end
-
--- Better modulo
-function bmod( i, N )
- return (i % N + N) % N
-end
-
-function join_paths(...)
- local sep = ON_WINDOWS and "\\" or "/"
- local result = "";
- for i, p in pairs({...}) do
- if p ~= "" then
- if is_absolute_path(p) then
- result = p
- else
- result = (result ~= "") and (result:gsub("[\\"..sep.."]*$", "") .. sep .. p) or p
- end
- end
- end
- return result:gsub("[\\"..sep.."]*$", "")
-end
-
--- /some/path/file.ext -> /some/path, file.ext
-function split_path( path )
- local sep = ON_WINDOWS and "\\" or "/"
- local first_index, last_index = path:find('^.*' .. sep)
-
- if last_index == nil then
- return "", path
- else
- local dir = path:sub(0, last_index-1)
- local file = path:sub(last_index+1, -1)
-
- return dir, file
- end
-end
-
-function is_absolute_path( path )
- local tmp, is_win = path:gsub("^[A-Z]:\\", "")
- local tmp, is_unix = path:gsub("^/", "")
- return (is_win > 0) or (is_unix > 0)
-end
-
-function Set(source)
- local set = {}
- for _, l in ipairs(source) do set[l] = true end
- return set
-end
-
----------------------------
--- More helper functions --
----------------------------
-
--- Removes all keys from a table, without destroying the reference to it
-function clear_table(target)
- for key, value in pairs(target) do
- target[key] = nil
- end
-end
-function shallow_copy(target)
- local copy = {}
- for k, v in pairs(target) do
- copy[k] = v
- end
- return copy
-end
-
--- Rounds to given decimals. eg. round_dec(3.145, 0) => 3
-function round_dec(num, idp)
- local mult = 10^(idp or 0)
- return math.floor(num * mult + 0.5) / mult
-end
-
-function file_exists(name)
- local f = io.open(name, "rb")
- if f ~= nil then
- local ok, err, code = f:read(1)
- io.close(f)
- return code == nil
- else
- return false
- end
-end
-
-function path_exists(name)
- local f = io.open(name, "rb")
- if f ~= nil then
- io.close(f)
- return true
- else
- return false
- end
-end
-
-function create_directories(path)
- local cmd
- if ON_WINDOWS then
- cmd = { args = {"cmd", "/c", "mkdir", path} }
- else
- cmd = { args = {"mkdir", "-p", path} }
- end
- utils.subprocess(cmd)
-end
-
--- Find an executable in PATH or CWD with the given name
-function find_executable(name)
- local delim = ON_WINDOWS and ";" or ":"
-
- local pwd = os.getenv("PWD") or utils.getcwd()
- local path = os.getenv("PATH")
-
- local env_path = pwd .. delim .. path -- Check CWD first
-
- local result, filename
- for path_dir in env_path:gmatch("[^"..delim.."]+") do
- filename = join_paths(path_dir, name)
- if file_exists(filename) then
- result = filename
- break
- end
- end
-
- return result
-end
-
-local ExecutableFinder = { path_cache = {} }
--- Searches for an executable and caches the result if any
-function ExecutableFinder:get_executable_path( name, raw_name )
- name = ON_WINDOWS and not raw_name and (name .. ".exe") or name
-
- if self.path_cache[name] == nil then
- self.path_cache[name] = find_executable(name) or false
- end
- return self.path_cache[name]
-end
-
--- Format seconds to HH.MM.SS.sss
-function format_time(seconds, sep, decimals)
- decimals = decimals == nil and 3 or decimals
- sep = sep and sep or "."
- local s = seconds
- local h, s = divmod(s, 60*60)
- local m, s = divmod(s, 60)
-
- local second_format = string.format("%%0%d.%df", 2+(decimals > 0 and decimals+1 or 0), decimals)
-
- return string.format("%02d"..sep.."%02d"..sep..second_format, h, m, s)
-end
-
--- Format seconds to 1h 2m 3.4s
-function format_time_hms(seconds, sep, decimals, force_full)
- decimals = decimals == nil and 1 or decimals
- sep = sep ~= nil and sep or " "
-
- local s = seconds
- local h, s = divmod(s, 60*60)
- local m, s = divmod(s, 60)
-
- if force_full or h > 0 then
- return string.format("%dh"..sep.."%dm"..sep.."%." .. tostring(decimals) .. "fs", h, m, s)
- elseif m > 0 then
- return string.format("%dm"..sep.."%." .. tostring(decimals) .. "fs", m, s)
- else
- return string.format("%." .. tostring(decimals) .. "fs", s)
- end
-end
-
--- Writes text on OSD and console
-function log_info(txt, timeout)
- timeout = timeout or 1.5
- msg.info(txt)
- mp.osd_message(txt, timeout)
-end
-
--- Join table items, ala ({"a", "b", "c"}, "=", "-", ", ") => "=a-, =b-, =c-"
-function join_table(source, before, after, sep)
- before = before or ""
- after = after or ""
- sep = sep or ", "
- local result = ""
- for i, v in pairs(source) do
- if not isempty(v) then
- local part = before .. v .. after
- if i == 1 then
- result = part
- else
- result = result .. sep .. part
- end
- end
- end
- return result
-end
-
-function wrap(s, char)
- char = char or "'"
- return char .. s .. char
-end
--- Wraps given string into 'string' and escapes any 's in it
-function escape_and_wrap(s, char, replacement)
- char = char or "'"
- replacement = replacement or "\\" .. char
- return wrap(string.gsub(s, char, replacement), char)
-end
--- Escapes single quotes in a string and wraps the input in single quotes
-function escape_single_bash(s)
- return escape_and_wrap(s, "'", "'\\''")
-end
-
--- Returns (a .. b) if b is not empty or nil
-function joined_or_nil(a, b)
- return not isempty(b) and (a .. b) or nil
-end
-
--- Put items from one table into another
-function extend_table(target, source)
- for i, v in pairs(source) do
- table.insert(target, v)
- end
-end
-
--- Creates a handle and filename for a temporary random file (in current directory)
-function create_temporary_file(base, mode, suffix)
- local handle, filename
- suffix = suffix or ""
- while true do
- filename = base .. tostring(math.random(1, 5000)) .. suffix
- handle = io.open(filename, "r")
- if not handle then
- handle = io.open(filename, mode)
- break
- end
- io.close(handle)
- end
- return handle, filename
-end
-
-
-function get_processor_count()
- local proc_count
-
- if ON_WINDOWS then
- proc_count = tonumber(os.getenv("NUMBER_OF_PROCESSORS"))
- else
- local cpuinfo_handle = io.open("/proc/cpuinfo")
- if cpuinfo_handle ~= nil then
- local cpuinfo_contents = cpuinfo_handle:read("*a")
- local _, replace_count = cpuinfo_contents:gsub('processor', '')
- proc_count = replace_count
- end
- end
-
- if proc_count and proc_count > 0 then
- return proc_count
- else
- return nil
- end
-end
-
-function substitute_values(string, values)
- local substitutor = function(match)
- if match == "%" then
- return "%"
- else
- -- nil is discarded by gsub
- return values[match]
- end
- end
-
- local substituted = string:gsub('%%(.)', substitutor)
- return substituted
-end
-
--- ASS HELPERS --
-function round_rect_top( ass, x0, y0, x1, y1, r )
- local c = 0.551915024494 * r -- circle approximation
- ass:move_to(x0 + r, y0)
- ass:line_to(x1 - r, y0) -- top line
- if r > 0 then
- ass:bezier_curve(x1 - r + c, y0, x1, y0 + r - c, x1, y0 + r) -- top right corner
- end
- ass:line_to(x1, y1) -- right line
- ass:line_to(x0, y1) -- bottom line
- ass:line_to(x0, y0 + r) -- left line
- if r > 0 then
- ass:bezier_curve(x0, y0 + r - c, x0 + r - c, y0, x0 + r, y0) -- top left corner
- end
-end
-
-function round_rect(ass, x0, y0, x1, y1, rtl, rtr, rbr, rbl)
- local c = 0.551915024494
- ass:move_to(x0 + rtl, y0)
- ass:line_to(x1 - rtr, y0) -- top line
- if rtr > 0 then
- ass:bezier_curve(x1 - rtr + rtr*c, y0, x1, y0 + rtr - rtr*c, x1, y0 + rtr) -- top right corner
- end
- ass:line_to(x1, y1 - rbr) -- right line
- if rbr > 0 then
- ass:bezier_curve(x1, y1 - rbr + rbr*c, x1 - rbr + rbr*c, y1, x1 - rbr, y1) -- bottom right corner
- end
- ass:line_to(x0 + rbl, y1) -- bottom line
- if rbl > 0 then
- ass:bezier_curve(x0 + rbl - rbl*c, y1, x0, y1 - rbl + rbl*c, x0, y1 - rbl) -- bottom left corner
- end
- ass:line_to(x0, y0 + rtl) -- left line
- if rtl > 0 then
- ass:bezier_curve(x0, y0 + rtl - rtl*c, x0 + rtl - rtl*c, y0, x0 + rtl, y0) -- top left corner
- end
-end
--- $Revision: 1.5 $
--- $Date: 2014-09-10 16:54:25 $
-
--- This module was originally taken from http://cube3d.de/uploads/Main/sha1.txt.
-
--------------------------------------------------------------------------------
--- SHA-1 secure hash computation, and HMAC-SHA1 signature computation,
--- in pure Lua (tested on Lua 5.1)
--- License: MIT
---
--- Usage:
--- local hashAsHex = sha1.hex(message) -- returns a hex string
--- local hashAsData = sha1.bin(message) -- returns raw bytes
---
--- local hmacAsHex = sha1.hmacHex(key, message) -- hex string
--- local hmacAsData = sha1.hmacBin(key, message) -- raw bytes
---
---
--- Pass sha1.hex() a string, and it returns a hash as a 40-character hex string.
--- For example, the call
---
--- local hash = sha1.hex("iNTERFACEWARE")
---
--- puts the 40-character string
---
--- "e76705ffb88a291a0d2f9710a5471936791b4819"
---
--- into the variable 'hash'
---
--- Pass sha1.hmacHex() a key and a message, and it returns the signature as a
--- 40-byte hex string.
---
---
--- The two "bin" versions do the same, but return the 20-byte string of raw
--- data that the 40-byte hex strings represent.
---
--------------------------------------------------------------------------------
---
--- Description
--- Due to the lack of bitwise operations in 5.1, this version uses numbers to
--- represents the 32bit words that we combine with binary operations. The basic
--- operations of byte based "xor", "or", "and" are all cached in a combination
--- table (several 64k large tables are built on startup, which
--- consumes some memory and time). The caching can be switched off through
--- setting the local cfg_caching variable to false.
--- For all binary operations, the 32 bit numbers are split into 8 bit values
--- that are combined and then merged again.
---
--- Algorithm: http://www.itl.nist.gov/fipspubs/fip180-1.htm
---
--------------------------------------------------------------------------------
-
-local sha1 = (function()
-local sha1 = {}
-
--- set this to false if you don't want to build several 64k sized tables when
--- loading this file (takes a while but grants a boost of factor 13)
-local cfg_caching = false
--- local storing of global functions (minor speedup)
-local floor,modf = math.floor,math.modf
-local char,format,rep = string.char,string.format,string.rep
-
--- merge 4 bytes to an 32 bit word
-local function bytes_to_w32 (a,b,c,d) return a*0x1000000+b*0x10000+c*0x100+d end
--- split a 32 bit word into four 8 bit numbers
-local function w32_to_bytes (i)
- return floor(i/0x1000000)%0x100,floor(i/0x10000)%0x100,floor(i/0x100)%0x100,i%0x100
-end
-
--- shift the bits of a 32 bit word. Don't use negative values for "bits"
-local function w32_rot (bits,a)
- local b2 = 2^(32-bits)
- local a,b = modf(a/b2)
- return a+b*b2*(2^(bits))
-end
-
--- caching function for functions that accept 2 arguments, both of values between
--- 0 and 255. The function to be cached is passed, all values are calculated
--- during loading and a function is returned that returns the cached values (only)
-local function cache2arg (fn)
- if not cfg_caching then return fn end
- local lut = {}
- for i=0,0xffff do
- local a,b = floor(i/0x100),i%0x100
- lut[i] = fn(a,b)
- end
- return function (a,b)
- return lut[a*0x100+b]
- end
-end
-
--- splits an 8-bit number into 8 bits, returning all 8 bits as booleans
-local function byte_to_bits (b)
- local b = function (n)
- local b = floor(b/n)
- return b%2==1
- end
- return b(1),b(2),b(4),b(8),b(16),b(32),b(64),b(128)
-end
-
--- builds an 8bit number from 8 booleans
-local function bits_to_byte (a,b,c,d,e,f,g,h)
- local function n(b,x) return b and x or 0 end
- return n(a,1)+n(b,2)+n(c,4)+n(d,8)+n(e,16)+n(f,32)+n(g,64)+n(h,128)
-end
-
--- debug function for visualizing bits in a string
-local function bits_to_string (a,b,c,d,e,f,g,h)
- local function x(b) return b and "1" or "0" end
- return ("%s%s%s%s %s%s%s%s"):format(x(a),x(b),x(c),x(d),x(e),x(f),x(g),x(h))
-end
-
--- debug function for converting a 8-bit number as bit string
-local function byte_to_bit_string (b)
- return bits_to_string(byte_to_bits(b))
-end
-
--- debug function for converting a 32 bit number as bit string
-local function w32_to_bit_string(a)
- if type(a) == "string" then return a end
- local aa,ab,ac,ad = w32_to_bytes(a)
- local s = byte_to_bit_string
- return ("%s %s %s %s"):format(s(aa):reverse(),s(ab):reverse(),s(ac):reverse(),s(ad):reverse()):reverse()
-end
-
--- bitwise "and" function for 2 8bit number
-local band = cache2arg (function(a,b)
- local A,B,C,D,E,F,G,H = byte_to_bits(b)
- local a,b,c,d,e,f,g,h = byte_to_bits(a)
- return bits_to_byte(
- A and a, B and b, C and c, D and d,
- E and e, F and f, G and g, H and h)
- end)
-
--- bitwise "or" function for 2 8bit numbers
-local bor = cache2arg(function(a,b)
- local A,B,C,D,E,F,G,H = byte_to_bits(b)
- local a,b,c,d,e,f,g,h = byte_to_bits(a)
- return bits_to_byte(
- A or a, B or b, C or c, D or d,
- E or e, F or f, G or g, H or h)
- end)
-
--- bitwise "xor" function for 2 8bit numbers
-local bxor = cache2arg(function(a,b)
- local A,B,C,D,E,F,G,H = byte_to_bits(b)
- local a,b,c,d,e,f,g,h = byte_to_bits(a)
- return bits_to_byte(
- A ~= a, B ~= b, C ~= c, D ~= d,
- E ~= e, F ~= f, G ~= g, H ~= h)
- end)
-
--- bitwise complement for one 8bit number
-local function bnot (x)
- return 255-(x % 256)
-end
-
--- creates a function to combine to 32bit numbers using an 8bit combination function
-local function w32_comb(fn)
- return function (a,b)
- local aa,ab,ac,ad = w32_to_bytes(a)
- local ba,bb,bc,bd = w32_to_bytes(b)
- return bytes_to_w32(fn(aa,ba),fn(ab,bb),fn(ac,bc),fn(ad,bd))
- end
-end
-
--- create functions for and, xor and or, all for 2 32bit numbers
-local w32_and = w32_comb(band)
-local w32_xor = w32_comb(bxor)
-local w32_or = w32_comb(bor)
-
--- xor function that may receive a variable number of arguments
-local function w32_xor_n (a,...)
- local aa,ab,ac,ad = w32_to_bytes(a)
- for i=1,select('#',...) do
- local ba,bb,bc,bd = w32_to_bytes(select(i,...))
- aa,ab,ac,ad = bxor(aa,ba),bxor(ab,bb),bxor(ac,bc),bxor(ad,bd)
- end
- return bytes_to_w32(aa,ab,ac,ad)
-end
-
--- combining 3 32bit numbers through binary "or" operation
-local function w32_or3 (a,b,c)
- local aa,ab,ac,ad = w32_to_bytes(a)
- local ba,bb,bc,bd = w32_to_bytes(b)
- local ca,cb,cc,cd = w32_to_bytes(c)
- return bytes_to_w32(
- bor(aa,bor(ba,ca)), bor(ab,bor(bb,cb)), bor(ac,bor(bc,cc)), bor(ad,bor(bd,cd))
- )
-end
-
--- binary complement for 32bit numbers
-local function w32_not (a)
- return 4294967295-(a % 4294967296)
-end
-
--- adding 2 32bit numbers, cutting off the remainder on 33th bit
-local function w32_add (a,b) return (a+b) % 4294967296 end
-
--- adding n 32bit numbers, cutting off the remainder (again)
-local function w32_add_n (a,...)
- for i=1,select('#',...) do
- a = (a+select(i,...)) % 4294967296
- end
- return a
-end
--- converting the number to a hexadecimal string
-local function w32_to_hexstring (w) return format("%08x",w) end
-
--- calculating the SHA1 for some text
-function sha1.hex(msg)
- local H0,H1,H2,H3,H4 = 0x67452301,0xEFCDAB89,0x98BADCFE,0x10325476,0xC3D2E1F0
- local msg_len_in_bits = #msg * 8
-
- local first_append = char(0x80) -- append a '1' bit plus seven '0' bits
-
- local non_zero_message_bytes = #msg +1 +8 -- the +1 is the appended bit 1, the +8 are for the final appended length
- local current_mod = non_zero_message_bytes % 64
- local second_append = current_mod>0 and rep(char(0), 64 - current_mod) or ""
-
- -- now to append the length as a 64-bit number.
- local B1, R1 = modf(msg_len_in_bits / 0x01000000)
- local B2, R2 = modf( 0x01000000 * R1 / 0x00010000)
- local B3, R3 = modf( 0x00010000 * R2 / 0x00000100)
- local B4 = 0x00000100 * R3
-
- local L64 = char( 0) .. char( 0) .. char( 0) .. char( 0) -- high 32 bits
- .. char(B1) .. char(B2) .. char(B3) .. char(B4) -- low 32 bits
-
- msg = msg .. first_append .. second_append .. L64
-
- assert(#msg % 64 == 0)
-
- local chunks = #msg / 64
-
- local W = { }
- local start, A, B, C, D, E, f, K, TEMP
- local chunk = 0
-
- while chunk < chunks do
- --
- -- break chunk up into W[0] through W[15]
- --
- start,chunk = chunk * 64 + 1,chunk + 1
-
- for t = 0, 15 do
- W[t] = bytes_to_w32(msg:byte(start, start + 3))
- start = start + 4
- end
-
- --
- -- build W[16] through W[79]
- --
- for t = 16, 79 do
- -- For t = 16 to 79 let Wt = S1(Wt-3 XOR Wt-8 XOR Wt-14 XOR Wt-16).
- W[t] = w32_rot(1, w32_xor_n(W[t-3], W[t-8], W[t-14], W[t-16]))
- end
-
- A,B,C,D,E = H0,H1,H2,H3,H4
-
- for t = 0, 79 do
- if t <= 19 then
- -- (B AND C) OR ((NOT B) AND D)
- f = w32_or(w32_and(B, C), w32_and(w32_not(B), D))
- K = 0x5A827999
- elseif t <= 39 then
- -- B XOR C XOR D
- f = w32_xor_n(B, C, D)
- K = 0x6ED9EBA1
- elseif t <= 59 then
- -- (B AND C) OR (B AND D) OR (C AND D
- f = w32_or3(w32_and(B, C), w32_and(B, D), w32_and(C, D))
- K = 0x8F1BBCDC
- else
- -- B XOR C XOR D
- f = w32_xor_n(B, C, D)
- K = 0xCA62C1D6
- end
-
- -- TEMP = S5(A) + ft(B,C,D) + E + Wt + Kt;
- A,B,C,D,E = w32_add_n(w32_rot(5, A), f, E, W[t], K),
- A, w32_rot(30, B), C, D
- end
- -- Let H0 = H0 + A, H1 = H1 + B, H2 = H2 + C, H3 = H3 + D, H4 = H4 + E.
- H0,H1,H2,H3,H4 = w32_add(H0, A),w32_add(H1, B),w32_add(H2, C),w32_add(H3, D),w32_add(H4, E)
- end
- local f = w32_to_hexstring
- return f(H0) .. f(H1) .. f(H2) .. f(H3) .. f(H4)
-end
-
-local function hex_to_binary(hex)
- return hex:gsub('..', function(hexval)
- return string.char(tonumber(hexval, 16))
- end)
-end
-
-function sha1.bin(msg)
- return hex_to_binary(sha1.hex(msg))
-end
-
-local xor_with_0x5c = {}
-local xor_with_0x36 = {}
--- building the lookuptables ahead of time (instead of littering the source code
--- with precalculated values)
-for i=0,0xff do
- xor_with_0x5c[char(i)] = char(bxor(i,0x5c))
- xor_with_0x36[char(i)] = char(bxor(i,0x36))
-end
-
-local blocksize = 64 -- 512 bits
-
-function sha1.hmacHex(key, text)
- assert(type(key) == 'string', "key passed to hmacHex should be a string")
- assert(type(text) == 'string', "text passed to hmacHex should be a string")
-
- if #key > blocksize then
- key = sha1.bin(key)
- end
-
- local key_xord_with_0x36 = key:gsub('.', xor_with_0x36) .. string.rep(string.char(0x36), blocksize - #key)
- local key_xord_with_0x5c = key:gsub('.', xor_with_0x5c) .. string.rep(string.char(0x5c), blocksize - #key)
-
- return sha1.hex(key_xord_with_0x5c .. sha1.bin(key_xord_with_0x36 .. text))
-end
-
-function sha1.hmacBin(key, text)
- return hex_to_binary(sha1.hmacHex(key, text))
-end
-
-return sha1
-end)()
-
-local SCRIPT_NAME = "mpv_thumbnail_script"
-
-local default_cache_base = ON_WINDOWS and os.getenv("TEMP") or "/tmp/"
-
-local thumbnailer_options = {
- -- The thumbnail directory
- cache_directory = join_paths(default_cache_base, "mpv_thumbs_cache"),
-
- ------------------------
- -- Generation options --
- ------------------------
-
- -- Automatically generate the thumbnails on video load, without a keypress
- autogenerate = true,
-
- -- Only automatically thumbnail videos shorter than this (seconds)
- autogenerate_max_duration = 3600, -- 1 hour
-
- -- SHA1-sum filenames over this length
- -- It's nice to know what files the thumbnails are (hence directory names)
- -- but long URLs may approach filesystem limits.
- hash_filename_length = 128,
-
- -- Use mpv to generate thumbnail even if ffmpeg is found in PATH
- -- ffmpeg does not handle ordered chapters (MKVs which rely on other MKVs)!
- -- mpv is a bit slower, but has better support overall (eg. subtitles in the previews)
- prefer_mpv = true,
-
- -- Explicitly disable subtitles on the mpv sub-calls
- mpv_no_sub = false,
- -- Add a "--no-config" to the mpv sub-call arguments
- mpv_no_config = false,
- -- Add a "--profile=" to the mpv sub-call arguments
- -- Use "" to disable
- mpv_profile = "",
- -- Output debug logs to .log, ala //000000.bgra.log
- -- The logs are removed after successful encodes, unless you set mpv_keep_logs below
- mpv_logs = true,
- -- Keep all mpv logs, even the succesfull ones
- mpv_keep_logs = false,
-
- -- Disable the built-in keybind ("T") to add your own
- disable_keybinds = false,
-
- ---------------------
- -- Display options --
- ---------------------
-
- -- Move the thumbnail up or down
- -- For example:
- -- topbar/bottombar: 24
- -- rest: 0
- vertical_offset = 80,
-
- -- Adjust background padding
- -- Examples:
- -- topbar: 0, 10, 10, 10
- -- bottombar: 10, 0, 10, 10
- -- slimbox/box: 10, 10, 10, 10
- pad_top = 5,
- pad_bot = 5,
- pad_left = 5,
- pad_right = 5,
-
- -- If true, pad values are screen-pixels. If false, video-pixels.
- pad_in_screenspace = true,
- -- Calculate pad into the offset
- offset_by_pad = true,
-
- -- Background color in BBGGRR
- background_color = "828282",
- -- Alpha: 0 - fully opaque, 255 - transparent
- background_alpha = 100,
-
- -- Keep thumbnail on the screen near left or right side
- constrain_to_screen = true,
-
- -- Do not display the thumbnailing progress
- hide_progress = false,
-
- -----------------------
- -- Thumbnail options --
- -----------------------
-
- -- The maximum dimensions of the thumbnails (pixels)
- thumbnail_width = 200,
- thumbnail_height = 200,
-
- -- The thumbnail count target
- -- (This will result in a thumbnail every ~10 seconds for a 25 minute video)
- thumbnail_count = 150,
-
- -- The above target count will be adjusted by the minimum and
- -- maximum time difference between thumbnails.
- -- The thumbnail_count will be used to calculate a target separation,
- -- and min/max_delta will be used to constrict it.
-
- -- In other words, thumbnails will be:
- -- at least min_delta seconds apart (limiting the amount)
- -- at most max_delta seconds apart (raising the amount if needed)
- min_delta = 5,
- -- 120 seconds aka 2 minutes will add more thumbnails when the video is over 5 hours!
- max_delta = 90,
-
-
- -- Overrides for remote urls (you generally want less thumbnails!)
- -- Thumbnailing network paths will be done with mpv
-
- -- Allow thumbnailing network paths (naive check for "://")
- thumbnail_network = false,
- -- Override thumbnail count, min/max delta
- remote_thumbnail_count = 60,
- remote_min_delta = 15,
- remote_max_delta = 120,
-
- -- Try to grab the raw stream and disable ytdl for the mpv subcalls
- -- Much faster than passing the url to ytdl again, but may cause problems with some sites
- remote_direct_stream = true,
-}
-
-read_options(thumbnailer_options, SCRIPT_NAME)
-local Thumbnailer = {
- cache_directory = thumbnailer_options.cache_directory,
-
- state = {
- ready = false,
- available = false,
- enabled = false,
-
- thumbnail_template = nil,
-
- thumbnail_delta = nil,
- thumbnail_count = 0,
-
- thumbnail_size = nil,
-
- finished_thumbnails = 0,
-
- -- List of thumbnail states (from 1 to thumbnail_count)
- -- ready: 1
- -- in progress: 0
- -- not ready: -1
- thumbnails = {},
-
- worker_input_path = nil,
- -- Extra options for the workers
- worker_extra = {},
- },
- -- Set in register_client
- worker_register_timeout = nil,
- -- A timer used to wait for more workers in case we have none
- worker_wait_timer = nil,
- workers = {}
-}
-
-function Thumbnailer:clear_state()
- clear_table(self.state)
- self.state.ready = false
- self.state.available = false
- self.state.finished_thumbnails = 0
- self.state.thumbnails = {}
- self.state.worker_extra = {}
-end
-
-
-function Thumbnailer:on_file_loaded()
- self:clear_state()
-end
-
-function Thumbnailer:on_thumb_ready(index)
- self.state.thumbnails[index] = 1
-
- -- Full recount instead of a naive increment (let's be safe!)
- self.state.finished_thumbnails = 0
- for i, v in pairs(self.state.thumbnails) do
- if v > 0 then
- self.state.finished_thumbnails = self.state.finished_thumbnails + 1
- end
- end
-end
-
-function Thumbnailer:on_thumb_progress(index)
- self.state.thumbnails[index] = math.max(self.state.thumbnails[index], 0)
-end
-
-function Thumbnailer:on_start_file()
- -- Clear state when a new file is being loaded
- self:clear_state()
-end
-
-function Thumbnailer:on_video_change(params)
- -- Gather a new state when we get proper video-dec-params and our state is empty
- if params ~= nil then
- if not self.state.ready then
- self:update_state()
- end
- end
-end
-
-
-function Thumbnailer:update_state()
- msg.debug("Gathering video/thumbnail state")
-
- self.state.thumbnail_delta = self:get_delta()
- self.state.thumbnail_count = self:get_thumbnail_count(self.state.thumbnail_delta)
-
- -- Prefill individual thumbnail states
- for i = 1, self.state.thumbnail_count do
- self.state.thumbnails[i] = -1
- end
-
- self.state.thumbnail_template, self.state.thumbnail_directory = self:get_thumbnail_template()
- self.state.thumbnail_size = self:get_thumbnail_size()
-
- self.state.ready = true
-
- local file_path = mp.get_property_native("path")
- self.state.is_remote = file_path:find("://") ~= nil
-
- self.state.available = false
-
- -- Make sure the file has video (and not just albumart)
- local track_list = mp.get_property_native("track-list")
- local has_video = false
- for i, track in pairs(track_list) do
- if track.type == "video" and not track.external and not track.albumart then
- has_video = true
- break
- end
- end
-
- if has_video and self.state.thumbnail_delta ~= nil and self.state.thumbnail_size ~= nil and self.state.thumbnail_count > 0 then
- self.state.available = true
- end
-
- msg.debug("Thumbnailer.state:", utils.to_string(self.state))
-
-end
-
-
-function Thumbnailer:get_thumbnail_template()
- local file_path = mp.get_property_native("path")
- local is_remote = file_path:find("://") ~= nil
-
- local filename = mp.get_property_native("filename/no-ext")
- local filesize = mp.get_property_native("file-size", 0)
-
- if is_remote then
- filesize = 0
- end
-
- filename = filename:gsub('[^a-zA-Z0-9_.%-\' ]', '')
- -- Hash overly long filenames (most likely URLs)
- if #filename > thumbnailer_options.hash_filename_length then
- filename = sha1.hex(filename)
- end
-
- local file_key = ("%s-%d"):format(filename, filesize)
-
- local thumbnail_directory = join_paths(self.cache_directory, file_key)
- local file_template = join_paths(thumbnail_directory, "%06d.bgra")
- return file_template, thumbnail_directory
-end
-
-
-function Thumbnailer:get_thumbnail_size()
- local video_dec_params = mp.get_property_native("video-dec-params")
- local video_width = video_dec_params.dw
- local video_height = video_dec_params.dh
- if not (video_width and video_height) then
- return nil
- end
-
- local w, h
- if video_width > video_height then
- w = thumbnailer_options.thumbnail_width
- h = math.floor(video_height * (w / video_width))
- else
- h = thumbnailer_options.thumbnail_height
- w = math.floor(video_width * (h / video_height))
- end
- return { w=w, h=h }
-end
-
-
-function Thumbnailer:get_delta()
- local file_path = mp.get_property_native("path")
- local file_duration = mp.get_property_native("duration")
- local is_seekable = mp.get_property_native("seekable")
-
- -- Naive url check
- local is_remote = file_path:find("://") ~= nil
-
- local remote_and_disallowed = is_remote
- if is_remote and thumbnailer_options.thumbnail_network then
- remote_and_disallowed = false
- end
-
- if remote_and_disallowed or not is_seekable or not file_duration then
- -- Not a local path (or remote thumbnails allowed), not seekable or lacks duration
- return nil
- end
-
- local thumbnail_count = thumbnailer_options.thumbnail_count
- local min_delta = thumbnailer_options.min_delta
- local max_delta = thumbnailer_options.max_delta
-
- if is_remote then
- thumbnail_count = thumbnailer_options.remote_thumbnail_count
- min_delta = thumbnailer_options.remote_min_delta
- max_delta = thumbnailer_options.remote_max_delta
- end
-
- local target_delta = (file_duration / thumbnail_count)
- local delta = math.max(min_delta, math.min(max_delta, target_delta))
-
- return delta
-end
-
-
-function Thumbnailer:get_thumbnail_count(delta)
- if delta == nil then
- return 0
- end
- local file_duration = mp.get_property_native("duration")
-
- return math.ceil(file_duration / delta)
-end
-
-function Thumbnailer:get_closest(thumbnail_index)
- -- Given a 1-based index, find the closest available thumbnail and return it's 1-based index
-
- -- Check the direct thumbnail index first
- if self.state.thumbnails[thumbnail_index] > 0 then
- return thumbnail_index
- end
-
- local min_distance = self.state.thumbnail_count + 1
- local closest = nil
-
- -- Naive, inefficient, lazy. But functional.
- for index, value in pairs(self.state.thumbnails) do
- local distance = math.abs(index - thumbnail_index)
- if distance < min_distance and value > 0 then
- min_distance = distance
- closest = index
- end
- end
- return closest
-end
-
-function Thumbnailer:get_thumbnail_index(time_position)
- -- Returns a 1-based thumbnail index for the given timestamp (between 1 and thumbnail_count, inclusive)
- if self.state.thumbnail_delta and (self.state.thumbnail_count and self.state.thumbnail_count > 0) then
- return math.min(math.floor(time_position / self.state.thumbnail_delta) + 1, self.state.thumbnail_count)
- else
- return nil
- end
-end
-
-function Thumbnailer:get_thumbnail_path(time_position)
- -- Given a timestamp, return:
- -- the closest available thumbnail path (if any)
- -- the 1-based thumbnail index calculated from the timestamp
- -- the 1-based thumbnail index of the closest available (and used) thumbnail
- -- OR nil if thumbnails are not available.
-
- local thumbnail_index = self:get_thumbnail_index(time_position)
- if not thumbnail_index then return nil end
-
- local closest = self:get_closest(thumbnail_index)
-
- if closest ~= nil then
- return self.state.thumbnail_template:format(closest-1), thumbnail_index, closest
- else
- return nil, thumbnail_index, nil
- end
-end
-
-function Thumbnailer:register_client()
- self.worker_register_timeout = mp.get_time() + 2
-
- mp.register_script_message("mpv_thumbnail_script-ready", function(index, path)
- self:on_thumb_ready(tonumber(index), path)
- end)
- mp.register_script_message("mpv_thumbnail_script-progress", function(index, path)
- self:on_thumb_progress(tonumber(index), path)
- end)
-
- mp.register_script_message("mpv_thumbnail_script-worker", function(worker_name)
- if not self.workers[worker_name] then
- msg.debug("Registered worker", worker_name)
- self.workers[worker_name] = true
- mp.commandv("script-message-to", worker_name, "mpv_thumbnail_script-slaved")
- end
- end)
-
- -- Notify workers to generate thumbnails when video loads/changes
- -- This will be executed after the on_video_change (because it's registered after it)
- mp.observe_property("video-dec-params", "native", function()
- local duration = mp.get_property_native("duration")
- local max_duration = thumbnailer_options.autogenerate_max_duration
-
- if duration ~= nil and self.state.available and thumbnailer_options.autogenerate then
- -- Notify if autogenerate is on and video is not too long
- if duration < max_duration or max_duration == 0 then
- self:start_worker_jobs()
- end
- end
- end)
-
- local thumb_script_key = not thumbnailer_options.disable_keybinds and "T" or nil
- mp.add_key_binding(thumb_script_key, "generate-thumbnails", function()
- if self.state.available then
- mp.osd_message("Started thumbnailer jobs")
- self:start_worker_jobs()
- else
- mp.osd_message("Thumbnailing unavailabe")
- end
- end)
-end
-
-function Thumbnailer:_create_thumbnail_job_order()
- -- Returns a list of 1-based thumbnail indices in a job order
- local used_frames = {}
- local work_frames = {}
-
- -- Pick frames in increasing frequency.
- -- This way we can do a quick few passes over the video and then fill in the gaps.
- for x = 6, 0, -1 do
- local nth = (2^x)
-
- for thi = 1, self.state.thumbnail_count, nth do
- if not used_frames[thi] then
- table.insert(work_frames, thi)
- used_frames[thi] = true
- end
- end
- end
- return work_frames
-end
-
-function Thumbnailer:prepare_source_path()
- local file_path = mp.get_property_native("path")
-
- if self.state.is_remote and thumbnailer_options.remote_direct_stream then
- -- Use the direct stream (possibly) provided by ytdl
- -- This skips ytdl on the sub-calls, making the thumbnailing faster
- -- Works well on YouTube, rest not really tested
- file_path = mp.get_property_native("stream-path")
-
- -- edl:// urls can get LONG. In which case, save the path (URL)
- -- to a temporary file and use that instead.
- local playlist_filename = join_paths(self.state.thumbnail_directory, "playlist.txt")
-
- if #file_path > 8000 then
- -- Path is too long for a playlist - just pass the original URL to
- -- workers and allow ytdl
- self.state.worker_extra.enable_ytdl = true
- file_path = mp.get_property_native("path")
- msg.warn("Falling back to original URL and ytdl due to LONG source path. This will be slow.")
-
- elseif #file_path > 1024 then
- local playlist_file = io.open(playlist_filename, "wb")
- if not playlist_file then
- msg.error(("Tried to write a playlist to %s but couldn't!"):format(playlist_file))
- return false
- end
-
- playlist_file:write(file_path .. "\n")
- playlist_file:close()
-
- file_path = "--playlist=" .. playlist_filename
- msg.warn("Using playlist workaround due to long source path")
- end
- end
-
- self.state.worker_input_path = file_path
- return true
-end
-
-function Thumbnailer:start_worker_jobs()
- -- Create directory for the thumbnails, if needed
- local l, err = utils.readdir(self.state.thumbnail_directory)
- if err then
- msg.debug("Creating thumbnail directory", self.state.thumbnail_directory)
- create_directories(self.state.thumbnail_directory)
- end
-
- -- Try to prepare the source path for workers, and bail if unable to do so
- if not self:prepare_source_path() then
- return
- end
-
- local worker_list = {}
- for worker_name in pairs(self.workers) do table.insert(worker_list, worker_name) end
-
- local worker_count = #worker_list
-
- -- In case we have a worker timer created already, clear it
- -- (For example, if the video-dec-params change in quick succession or the user pressed T, etc)
- if self.worker_wait_timer then
- self.worker_wait_timer:stop()
- end
-
- if worker_count == 0 then
- local now = mp.get_time()
- if mp.get_time() > self.worker_register_timeout then
- -- Workers have had their time to register but we have none!
- local err = "No thumbnail workers found. Make sure you are not missing a script!"
- msg.error(err)
- mp.osd_message(err, 3)
-
- else
- -- We may be too early. Delay the work start a bit to try again.
- msg.warn("No workers found. Waiting a bit more for them.")
- -- Wait at least half a second
- local wait_time = math.max(self.worker_register_timeout - now, 0.5)
- self.worker_wait_timer = mp.add_timeout(wait_time, function() self:start_worker_jobs() end)
- end
-
- else
- -- We have at least one worker. This may not be all of them, but they have had
- -- their time to register; we've done our best waiting for them.
- self.state.enabled = true
-
- msg.debug( ("Splitting %d thumbnails amongst %d worker(s)"):format(self.state.thumbnail_count, worker_count) )
-
- local frame_job_order = self:_create_thumbnail_job_order()
- local worker_jobs = {}
- for i = 1, worker_count do worker_jobs[worker_list[i]] = {} end
-
- -- Split frames amongst the workers
- for i, thumbnail_index in ipairs(frame_job_order) do
- local worker_id = worker_list[ ((i-1) % worker_count) + 1 ]
- table.insert(worker_jobs[worker_id], thumbnail_index)
- end
-
- local state_json_string = utils.format_json(self.state)
- msg.debug("Giving workers state:", state_json_string)
-
- for worker_name, worker_frames in pairs(worker_jobs) do
- if #worker_frames > 0 then
- local frames_json_string = utils.format_json(worker_frames)
- msg.debug("Assigning job to", worker_name, frames_json_string)
- mp.commandv("script-message-to", worker_name, "mpv_thumbnail_script-job", state_json_string, frames_json_string)
- end
- end
- end
-end
-
-mp.register_event("start-file", function() Thumbnailer:on_start_file() end)
-mp.observe_property("video-dec-params", "native", function(name, params) Thumbnailer:on_video_change(params) end)
---[[
-This is mpv's original player/lua/osc.lua patched to display thumbnails
-
-Sections are denoted with -- mpv_thumbnail_script.lua --
-Current osc.lua version: 97816bbef0f97cfda7abdbe560707481d5f68ccd
-]]--
-
-local assdraw = require 'mp.assdraw'
-local msg = require 'mp.msg'
-local opt = require 'mp.options'
-local utils = require 'mp.utils'
-
---
--- Parameters
---
--- default user option values
--- do not touch, change them in osc.conf
-local user_opts = {
- showwindowed = true, -- show OSC when windowed?
- showfullscreen = true, -- show OSC when fullscreen?
- scalewindowed = 1, -- scaling of the controller when windowed
- scalefullscreen = 1, -- scaling of the controller when fullscreen
- scaleforcedwindow = 2, -- scaling when rendered on a forced window
- vidscale = true, -- scale the controller with the video?
- valign = 0.8, -- vertical alignment, -1 (top) to 1 (bottom)
- halign = 0, -- horizontal alignment, -1 (left) to 1 (right)
- barmargin = 0, -- vertical margin of top/bottombar
- boxalpha = 80, -- alpha of the background box,
- -- 0 (opaque) to 255 (fully transparent)
- hidetimeout = 500, -- duration in ms until the OSC hides if no
- -- mouse movement. enforced non-negative for the
- -- user, but internally negative is "always-on".
- fadeduration = 200, -- duration of fade out in ms, 0 = no fade
- deadzonesize = 0.5, -- size of deadzone
- minmousemove = 0, -- minimum amount of pixels the mouse has to
- -- move between ticks to make the OSC show up
- iamaprogrammer = false, -- use native mpv values and disable OSC
- -- internal track list management (and some
- -- functions that depend on it)
- layout = "bottombar",
- seekbarstyle = "bar", -- bar, diamond or knob
- seekbarhandlesize = 0.6, -- size ratio of the diamond and knob handle
- seekrangestyle = "inverted",-- bar, line, slider, inverted or none
- seekrangeseparate = true, -- wether the seekranges overlay on the bar-style seekbar
- seekrangealpha = 200, -- transparency of seekranges
- seekbarkeyframes = true, -- use keyframes when dragging the seekbar
- title = "${media-title}", -- string compatible with property-expansion
- -- to be shown as OSC title
- tooltipborder = 1, -- border of tooltip in bottom/topbar
- timetotal = false, -- display total time instead of remaining time?
- timems = false, -- display timecodes with milliseconds?
- visibility = "auto", -- only used at init to set visibility_mode(...)
- boxmaxchars = 99, -- title crop threshold for box layout
- boxvideo = false, -- apply osc_param.video_margins to video
- windowcontrols = "auto", -- whether to show window controls
- windowcontrols_alignment = "right", -- which side to show window controls on
- greenandgrumpy = false, -- disable santa hat
-}
-
--- read options from config and command-line
-opt.read_options(user_opts, "osc", function(list) update_options(list) end)
-
-
--- mpv_thumbnail_script.lua --
-
--- Patch in msg.trace
-if not msg.trace then
- msg.trace = function(...) return mp.log("trace", ...) end
-end
-
--- Patch in utils.format_bytes_humanized
-if not utils.format_bytes_humanized then
- utils.format_bytes_humanized = function(b)
- local d = {"Bytes", "KiB", "MiB", "GiB", "TiB", "PiB"}
- local i = 1
- while b >= 1024 do
- b = b / 1024
- i = i + 1
- end
- return string.format("%0.2f %s", b, d[i] and d[i] or "*1024^" .. (i-1))
- end
-end
-
-Thumbnailer:register_client()
-
-function get_thumbnail_y_offset(thumb_size, msy)
- local layout = user_opts.layout
- local offset = 0
-
- if layout == "bottombar" then
- offset = 15 --+ margin
- elseif layout == "topbar" then
- offset = -(thumb_size.h * msy + 15)
- elseif layout == "box" then
- offset = 15
- elseif layout == "slimbox" then
- offset = 12
- end
-
- return offset / msy
-end
-
-
-local osc_thumb_state = {
- visible = false,
- overlay_id = 1,
-
- last_path = nil,
- last_x = nil,
- last_y = nil,
-}
-
-function hide_thumbnail()
- osc_thumb_state.visible = false
- osc_thumb_state.last_path = nil
- mp.command_native({ "overlay-remove", osc_thumb_state.overlay_id })
-end
-
-function display_thumbnail(pos, value, ass)
- -- If thumbnails are not available, bail
- if not (Thumbnailer.state.enabled and Thumbnailer.state.available) then
- return
- end
-
- local duration = mp.get_property_number("duration", nil)
- if not ((duration == nil) or (value == nil)) then
- target_position = duration * (value / 100)
-
- local msx, msy = get_virt_scale_factor()
- local osd_w, osd_h = mp.get_osd_size()
-
- local thumb_size = Thumbnailer.state.thumbnail_size
- local thumb_path, thumb_index, closest_index = Thumbnailer:get_thumbnail_path(target_position)
-
- local thumbs_ready = Thumbnailer.state.finished_thumbnails
- local thumbs_total = Thumbnailer.state.thumbnail_count
- local perc = math.floor((thumbs_ready / thumbs_total) * 100)
-
- local display_progress = thumbs_ready ~= thumbs_total and not thumbnailer_options.hide_progress
-
- local vertical_offset = thumbnailer_options.vertical_offset
- local padding = thumbnailer_options.background_padding
-
- local pad = {
- l = thumbnailer_options.pad_left, r = thumbnailer_options.pad_right,
- t = thumbnailer_options.pad_top, b = thumbnailer_options.pad_bot
- }
- if thumbnailer_options.pad_in_screenspace then
- pad.l = pad.l * msx
- pad.r = pad.r * msx
- pad.t = pad.t * msy
- pad.b = pad.b * msy
- end
-
- if thumbnailer_options.offset_by_pad then
- vertical_offset = vertical_offset + (user_opts.layout == "topbar" and pad.t or pad.b)
- end
-
- local ass_w = thumb_size.w * msx
- local ass_h = thumb_size.h * msy
- local y_offset = get_thumbnail_y_offset(thumb_size, 1)
-
- -- Constrain thumbnail display to window
- -- (ie. don't let it go off-screen left/right)
- if thumbnailer_options.constrain_to_screen and osd_w > (ass_w + pad.l + pad.r)/msx then
- local padded_left = (pad.l + (ass_w / 2))
- local padded_right = (pad.r + (ass_w / 2))
- if pos.x - padded_left < 0 then
- pos.x = padded_left
- elseif pos.x + padded_right > osd_w*msx then
- pos.x = osd_w*msx - padded_right
- end
- end
-
- local text_h = 30 * msy
- local bg_h = ass_h + (display_progress and text_h or 0)
- local bg_left = pos.x - ass_w/2
- local framegraph_h = 10 * msy
-
- local bg_top = nil
- local text_top = nil
- local framegraph_top = nil
-
- if user_opts.layout == "topbar" then
- bg_top = pos.y - ( y_offset + thumb_size.h ) + vertical_offset
- text_top = bg_top + ass_h + framegraph_h
- framegraph_top = bg_top + ass_h
- vertical_offset = -vertical_offset
- else
- bg_top = pos.y - y_offset - bg_h - vertical_offset
- text_top = bg_top
- framegraph_top = bg_top + 20 * msy
- end
-
- if display_progress then
- if user_opts.layout == "topbar" then
- pad.b = math.max(0, pad.b - 30)
- else
- pad.t = math.max(0, pad.t - 30)
- end
- end
-
-
-
- -- Draw background
- ass:new_event()
- ass:pos(bg_left, bg_top)
- ass:append(("{\\bord0\\1c&H%s&\\1a&H%X&}"):format(thumbnailer_options.background_color, thumbnailer_options.background_alpha))
- ass:draw_start()
- ass:rect_cw(-pad.l, -pad.t, ass_w+pad.r, bg_h+pad.b)
- ass:draw_stop()
-
- if display_progress then
-
- ass:new_event()
- ass:pos(pos.x, text_top)
- ass:an(8)
- -- Scale text to correct size
- ass:append(("{\\fs20\\bord0\\fscx%f\\fscy%f}"):format(100*msx, 100*msy))
- ass:append(("%d%% - %d/%d"):format(perc, thumbs_ready, thumbs_total))
-
- -- Draw the generation progress
- local block_w = thumb_size.w * (Thumbnailer.state.thumbnail_delta / duration) * msy
- local block_max_x = thumb_size.w * msy
-
- -- Draw finished thumbnail blocks (white)
- ass:new_event()
- ass:pos(bg_left, framegraph_top)
- ass:append(("{\\bord0\\1c&HFFFFFF&\\1a&H%X&"):format(0))
- ass:draw_start(2)
- for i, v in pairs(Thumbnailer.state.thumbnails) do
- if i ~= closest_index and v > 0 then
- ass:rect_cw((i-1)*block_w, 0, math.min(block_max_x, i*block_w), framegraph_h)
- end
- end
- ass:draw_stop()
-
- -- Draw in-progress thumbnail blocks (grayish green)
- ass:new_event()
- ass:pos(bg_left, framegraph_top)
- ass:append(("{\\bord0\\1c&H44AA44&\\1a&H%X&"):format(0))
- ass:draw_start(2)
- for i, v in pairs(Thumbnailer.state.thumbnails) do
- if i ~= closest_index and v == 0 then
- ass:rect_cw((i-1)*block_w, 0, math.min(block_max_x, i*block_w), framegraph_h)
- end
- end
- ass:draw_stop()
-
- if closest_index ~= nil then
- ass:new_event()
- ass:pos(bg_left, framegraph_top)
- ass:append(("{\\bord0\\1c&H4444FF&\\1a&H%X&"):format(0))
- ass:draw_start(2)
- ass:rect_cw((closest_index-1)*block_w, 0, math.min(block_max_x, closest_index*block_w), framegraph_h)
- ass:draw_stop()
- end
- end
-
- if thumb_path then
- local overlay_y_offset = get_thumbnail_y_offset(thumb_size, msy)
-
- local thumb_x = math.floor(pos.x / msx - thumb_size.w/2)
- local thumb_y = math.floor(pos.y / msy - thumb_size.h - overlay_y_offset - vertical_offset/msy)
-
- osc_thumb_state.visible = true
- if not (osc_thumb_state.last_path == thumb_path and osc_thumb_state.last_x == thumb_x and osc_thumb_state.last_y == thumb_y) then
- local overlay_add_args = {
- "overlay-add", osc_thumb_state.overlay_id,
- thumb_x, thumb_y,
- thumb_path,
- 0,
- "bgra",
- thumb_size.w, thumb_size.h,
- 4 * thumb_size.w
- }
- mp.command_native(overlay_add_args)
-
- osc_thumb_state.last_path = thumb_path
- osc_thumb_state.last_x = thumb_x
- osc_thumb_state.last_y = thumb_y
- end
- end
- end
-end
-
--- // mpv_thumbnail_script.lua // --
-
-
-local osc_param = { -- calculated by osc_init()
- playresy = 0, -- canvas size Y
- playresx = 0, -- canvas size X
- display_aspect = 1,
- unscaled_y = 0,
- areas = {},
- video_margins = {
- l = 0, r = 0, t = 0, b = 0, -- left/right/top/bottom
- },
-}
-
-local osc_styles = {
- bigButtons = "{\\blur0\\bord0\\1c&HFACE87\\3c&HFACE87\\fs40\\fnmpv-osd-symbols}",
- smallButtonsL = "{\\blur0\\bord0\\1c&H98FB98\\3c&H98FB98\\fs22\\fnmpv-osd-symbols}",
- smallButtonsLlabel = "{\\fscx105\\fscy105\\fn" .. mp.get_property("options/osd-font") .. "}",
- smallButtonsR = "{\\blur0\\bord0\\1c&HCDFAFF\\3c&HCDFAFF\\fs30\\fnmpv-osd-symbols}",
- topButtons = "{\\blur0\\bord0\\1c&HFACE87\\3c&HFACE87\\fs20\\fnmpv-osd-symbols}",
-
- elementDown = "{\\1c&H999999}",
- timecodes = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs20}",
- vidtitle = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs17\\q2}",
- box = "{\\rDefault\\blur0\\bord1\\1c&H828282\\3c&H828282}",
-
- topButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\fnmpv-osd-symbols}",
- smallButtonsBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs28\\fnmpv-osd-symbols}",
- timecodesBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs27}",
- timePosBar = "{\\blur0\\bord".. user_opts.tooltipborder .."\\1c&HFFFFFF\\3c&H000000\\fs30}",
- vidtitleBar = "{\\blur0\\bord0\\1c&HFFFFFF\\3c&HFFFFFF\\fs18\\q2}",
-
- wcButtons = "{\\1c&HFFFFFF\\fs24\\fnmpv-osd-symbols}",
- wcTitle = "{\\1c&HFFFFFF\\fs24\\q2}",
- wcBar = "{\\1c&H000000}",
-}
-
--- internal states, do not touch
-local state = {
- showtime, -- time of last invocation (last mouse move)
- osc_visible = false,
- anistart, -- time when the animation started
- anitype, -- current type of animation
- animation, -- current animation alpha
- mouse_down_counter = 0, -- used for softrepeat
- active_element = nil, -- nil = none, 0 = background, 1+ = see elements[]
- active_event_source = nil, -- the "button" that issued the current event
- rightTC_trem = not user_opts.timetotal, -- if the right timecode should display total or remaining time
- tc_ms = user_opts.timems, -- Should the timecodes display their time with milliseconds
- mp_screen_sizeX, mp_screen_sizeY, -- last screen-resolution, to detect resolution changes to issue reINITs
- initREQ = false, -- is a re-init request pending?
- last_mouseX, last_mouseY, -- last mouse position, to detect significant mouse movement
- mouse_in_window = false,
- message_text,
- message_hide_timer,
- fullscreen = false,
- tick_timer = nil,
- tick_last_time = 0, -- when the last tick() was run
- hide_timer = nil,
- cache_state = nil,
- idle = false,
- enabled = true,
- input_enabled = true,
- showhide_enabled = false,
- dmx_cache = 0,
- using_video_margins = false,
- border = true,
- maximized = false,
- osd = mp.create_osd_overlay("ass-events"),
-}
-
-local window_control_box_width = 80
-local tick_delay = 0.03
-
-local is_december = os.date("*t").month == 12
-
---
--- Helperfunctions
---
-
-function set_osd(res_x, res_y, text)
- if state.osd.res_x == res_x and
- state.osd.res_y == res_y and
- state.osd.data == text then
- return
- end
- state.osd.res_x = res_x
- state.osd.res_y = res_y
- state.osd.data = text
- state.osd.z = 1000
- state.osd:update()
-end
-
-local margins_opts = {
- {"l", "video-margin-ratio-left"},
- {"r", "video-margin-ratio-right"},
- {"t", "video-margin-ratio-top"},
- {"b", "video-margin-ratio-bottom"},
-}
-
--- scale factor for translating between real and virtual ASS coordinates
-function get_virt_scale_factor()
- local w, h = mp.get_osd_size()
- if w <= 0 or h <= 0 then
- return 0, 0
- end
- return osc_param.playresx / w, osc_param.playresy / h
-end
-
--- return mouse position in virtual ASS coordinates (playresx/y)
-function get_virt_mouse_pos()
- if state.mouse_in_window then
- local sx, sy = get_virt_scale_factor()
- local x, y = mp.get_mouse_pos()
- return x * sx, y * sy
- else
- return -1, -1
- end
-end
-
-function set_virt_mouse_area(x0, y0, x1, y1, name)
- local sx, sy = get_virt_scale_factor()
- mp.set_mouse_area(x0 / sx, y0 / sy, x1 / sx, y1 / sy, name)
-end
-
-function scale_value(x0, x1, y0, y1, val)
- local m = (y1 - y0) / (x1 - x0)
- local b = y0 - (m * x0)
- return (m * val) + b
-end
-
--- returns hitbox spanning coordinates (top left, bottom right corner)
--- according to alignment
-function get_hitbox_coords(x, y, an, w, h)
-
- local alignments = {
- [1] = function () return x, y-h, x+w, y end,
- [2] = function () return x-(w/2), y-h, x+(w/2), y end,
- [3] = function () return x-w, y-h, x, y end,
-
- [4] = function () return x, y-(h/2), x+w, y+(h/2) end,
- [5] = function () return x-(w/2), y-(h/2), x+(w/2), y+(h/2) end,
- [6] = function () return x-w, y-(h/2), x, y+(h/2) end,
-
- [7] = function () return x, y, x+w, y+h end,
- [8] = function () return x-(w/2), y, x+(w/2), y+h end,
- [9] = function () return x-w, y, x, y+h end,
- }
-
- return alignments[an]()
-end
-
-function get_hitbox_coords_geo(geometry)
- return get_hitbox_coords(geometry.x, geometry.y, geometry.an,
- geometry.w, geometry.h)
-end
-
-function get_element_hitbox(element)
- return element.hitbox.x1, element.hitbox.y1,
- element.hitbox.x2, element.hitbox.y2
-end
-
-function mouse_hit(element)
- return mouse_hit_coords(get_element_hitbox(element))
-end
-
-function mouse_hit_coords(bX1, bY1, bX2, bY2)
- local mX, mY = get_virt_mouse_pos()
- return (mX >= bX1 and mX <= bX2 and mY >= bY1 and mY <= bY2)
-end
-
-function limit_range(min, max, val)
- if val > max then
- val = max
- elseif val < min then
- val = min
- end
- return val
-end
-
--- translate value into element coordinates
-function get_slider_ele_pos_for(element, val)
-
- local ele_pos = scale_value(
- element.slider.min.value, element.slider.max.value,
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- val)
-
- return limit_range(
- element.slider.min.ele_pos, element.slider.max.ele_pos,
- ele_pos)
-end
-
--- translates global (mouse) coordinates to value
-function get_slider_value_at(element, glob_pos)
-
- local val = scale_value(
- element.slider.min.glob_pos, element.slider.max.glob_pos,
- element.slider.min.value, element.slider.max.value,
- glob_pos)
-
- return limit_range(
- element.slider.min.value, element.slider.max.value,
- val)
-end
-
--- get value at current mouse position
-function get_slider_value(element)
- return get_slider_value_at(element, get_virt_mouse_pos())
-end
-
-function countone(val)
- if not (user_opts.iamaprogrammer) then
- val = val + 1
- end
- return val
-end
-
--- align: -1 .. +1
--- frame: size of the containing area
--- obj: size of the object that should be positioned inside the area
--- margin: min. distance from object to frame (as long as -1 <= align <= +1)
-function get_align(align, frame, obj, margin)
- return (frame / 2) + (((frame / 2) - margin - (obj / 2)) * align)
-end
-
--- multiplies two alpha values, formular can probably be improved
-function mult_alpha(alphaA, alphaB)
- return 255 - (((1-(alphaA/255)) * (1-(alphaB/255))) * 255)
-end
-
-function add_area(name, x1, y1, x2, y2)
- -- create area if needed
- if (osc_param.areas[name] == nil) then
- osc_param.areas[name] = {}
- end
- table.insert(osc_param.areas[name], {x1=x1, y1=y1, x2=x2, y2=y2})
-end
-
-function ass_append_alpha(ass, alpha, modifier)
- local ar = {}
-
- for ai, av in pairs(alpha) do
- av = mult_alpha(av, modifier)
- if state.animation then
- av = mult_alpha(av, state.animation)
- end
- ar[ai] = av
- end
-
- ass:append(string.format("{\\1a&H%X&\\2a&H%X&\\3a&H%X&\\4a&H%X&}",
- ar[1], ar[2], ar[3], ar[4]))
-end
-
-function ass_draw_rr_h_cw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_cw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_cw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-function ass_draw_rr_h_ccw(ass, x0, y0, x1, y1, r1, hexagon, r2)
- if hexagon then
- ass:hexagon_ccw(x0, y0, x1, y1, r1, r2)
- else
- ass:round_rect_ccw(x0, y0, x1, y1, r1, r2)
- end
-end
-
-
---
--- Tracklist Management
---
-
-local nicetypes = {video = "Video", audio = "Audio", sub = "Subtitle"}
-
--- updates the OSC internal playlists, should be run each time the track-layout changes
-function update_tracklist()
- local tracktable = mp.get_property_native("track-list", {})
-
- -- by osc_id
- tracks_osc = {}
- tracks_osc.video, tracks_osc.audio, tracks_osc.sub = {}, {}, {}
- -- by mpv_id
- tracks_mpv = {}
- tracks_mpv.video, tracks_mpv.audio, tracks_mpv.sub = {}, {}, {}
- for n = 1, #tracktable do
- if not (tracktable[n].type == "unknown") then
- local type = tracktable[n].type
- local mpv_id = tonumber(tracktable[n].id)
-
- -- by osc_id
- table.insert(tracks_osc[type], tracktable[n])
-
- -- by mpv_id
- tracks_mpv[type][mpv_id] = tracktable[n]
- tracks_mpv[type][mpv_id].osc_id = #tracks_osc[type]
- end
- end
-end
-
--- return a nice list of tracks of the given type (video, audio, sub)
-function get_tracklist(type)
- local msg = "Available " .. nicetypes[type] .. " Tracks: "
- if #tracks_osc[type] == 0 then
- msg = msg .. "none"
- else
- for n = 1, #tracks_osc[type] do
- local track = tracks_osc[type][n]
- local lang, title, selected = "unknown", "", "○"
- if not(track.lang == nil) then lang = track.lang end
- if not(track.title == nil) then title = track.title end
- if (track.id == tonumber(mp.get_property(type))) then
- selected = "●"
- end
- msg = msg.."\n"..selected.." "..n..": ["..lang.."] "..title
- end
- end
- return msg
-end
-
--- relatively change the track of given by tracks
- --(+1 -> next, -1 -> previous)
-function set_track(type, next)
- local current_track_mpv, current_track_osc
- if (mp.get_property(type) == "no") then
- current_track_osc = 0
- else
- current_track_mpv = tonumber(mp.get_property(type))
- current_track_osc = tracks_mpv[type][current_track_mpv].osc_id
- end
- local new_track_osc = (current_track_osc + next) % (#tracks_osc[type] + 1)
- local new_track_mpv
- if new_track_osc == 0 then
- new_track_mpv = "no"
- else
- new_track_mpv = tracks_osc[type][new_track_osc].id
- end
-
- mp.commandv("set", type, new_track_mpv)
-
- if (new_track_osc == 0) then
- show_message(nicetypes[type] .. " Track: none")
- else
- show_message(nicetypes[type] .. " Track: "
- .. new_track_osc .. "/" .. #tracks_osc[type]
- .. " [".. (tracks_osc[type][new_track_osc].lang or "unknown") .."] "
- .. (tracks_osc[type][new_track_osc].title or ""))
- end
-end
-
--- get the currently selected track of , OSC-style counted
-function get_track(type)
- local track = mp.get_property(type)
- if track ~= "no" and track ~= nil then
- local tr = tracks_mpv[type][tonumber(track)]
- if tr then
- return tr.osc_id
- end
- end
- return 0
-end
-
--- WindowControl helpers
-function window_controls_enabled()
- val = user_opts.windowcontrols
- if val == "auto" then
- return not state.border
- else
- return val ~= "no"
- end
-end
-
-function window_controls_alignment()
- return user_opts.windowcontrols_alignment
-end
-
---
--- Element Management
---
-
-local elements = {}
-
-function prepare_elements()
-
- -- remove elements without layout or invisble
- local elements2 = {}
- for n, element in pairs(elements) do
- if not (element.layout == nil) and (element.visible) then
- table.insert(elements2, element)
- end
- end
- elements = elements2
-
- function elem_compare (a, b)
- return a.layout.layer < b.layout.layer
- end
-
- table.sort(elements, elem_compare)
-
-
- for _,element in pairs(elements) do
-
- local elem_geo = element.layout.geometry
-
- -- Calculate the hitbox
- local bX1, bY1, bX2, bY2 = get_hitbox_coords_geo(elem_geo)
- element.hitbox = {x1 = bX1, y1 = bY1, x2 = bX2, y2 = bY2}
-
- local style_ass = assdraw.ass_new()
-
- -- prepare static elements
- style_ass:append("{}") -- hack to troll new_event into inserting a \n
- style_ass:new_event()
- style_ass:pos(elem_geo.x, elem_geo.y)
- style_ass:an(elem_geo.an)
- style_ass:append(element.layout.style)
-
- element.style_ass = style_ass
-
- local static_ass = assdraw.ass_new()
-
-
- if (element.type == "box") then
- --draw box
- static_ass:draw_start()
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h,
- element.layout.box.radius, element.layout.box.hexagon)
- static_ass:draw_stop()
-
- elseif (element.type == "slider") then
- --draw static slider parts
-
- local r1 = 0
- local r2 = 0
- local slider_lo = element.layout.slider
- -- offset between element outline and drag-area
- local foV = slider_lo.border + slider_lo.gap
-
- -- calculate positions of min and max points
- if (slider_lo.stype ~= "bar") then
- r1 = elem_geo.h / 2
- element.slider.min.ele_pos = elem_geo.h / 2
- element.slider.max.ele_pos = elem_geo.w - (elem_geo.h / 2)
- if (slider_lo.stype == "diamond") then
- r2 = (elem_geo.h - 2 * slider_lo.border) / 2
- elseif (slider_lo.stype == "knob") then
- r2 = r1
- end
- else
- element.slider.min.ele_pos =
- slider_lo.border + slider_lo.gap
- element.slider.max.ele_pos =
- elem_geo.w - (slider_lo.border + slider_lo.gap)
- end
-
- element.slider.min.glob_pos =
- element.hitbox.x1 + element.slider.min.ele_pos
- element.slider.max.glob_pos =
- element.hitbox.x1 + element.slider.max.ele_pos
-
- -- -- --
-
- static_ass:draw_start()
-
- -- the box
- ass_draw_rr_h_cw(static_ass, 0, 0, elem_geo.w, elem_geo.h, r1, slider_lo.stype == "diamond")
-
- -- the "hole"
- ass_draw_rr_h_ccw(static_ass, slider_lo.border, slider_lo.border,
- elem_geo.w - slider_lo.border, elem_geo.h - slider_lo.border,
- r2, slider_lo.stype == "diamond")
-
- -- marker nibbles
- if not (element.slider.markerF == nil) and (slider_lo.gap > 0) then
- local markers = element.slider.markerF()
- for _,marker in pairs(markers) do
- if (marker > element.slider.min.value) and
- (marker < element.slider.max.value) then
-
- local s = get_slider_ele_pos_for(element, marker)
-
- if (slider_lo.gap > 1) then -- draw triangles
-
- local a = slider_lo.gap / 0.5 --0.866
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:move_to(s - (a/2), slider_lo.border)
- static_ass:line_to(s + (a/2), slider_lo.border)
- static_ass:line_to(s, foV)
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:move_to(s - (a/2),
- elem_geo.h - slider_lo.border)
- static_ass:line_to(s,
- elem_geo.h - foV)
- static_ass:line_to(s + (a/2),
- elem_geo.h - slider_lo.border)
- end
-
- else -- draw 2x1px nibbles
-
- --top
- if (slider_lo.nibbles_top) then
- static_ass:rect_cw(s - 1, slider_lo.border,
- s + 1, slider_lo.border + slider_lo.gap);
- end
-
- --bottom
- if (slider_lo.nibbles_bottom) then
- static_ass:rect_cw(s - 1,
- elem_geo.h -slider_lo.border -slider_lo.gap,
- s + 1, elem_geo.h - slider_lo.border);
- end
- end
- end
- end
- end
- end
-
- element.static_ass = static_ass
-
-
- -- if the element is supposed to be disabled,
- -- style it accordingly and kill the eventresponders
- if not (element.enabled) then
- element.layout.alpha[1] = 136
- element.eventresponder = nil
- end
- end
-end
-
-
---
--- Element Rendering
---
-
-function render_elements(master_ass)
-
- for n=1, #elements do
- local element = elements[n]
-
- local style_ass = assdraw.ass_new()
- style_ass:merge(element.style_ass)
- ass_append_alpha(style_ass, element.layout.alpha, 0)
-
- if element.eventresponder and (state.active_element == n) then
-
- -- run render event functions
- if not (element.eventresponder.render == nil) then
- element.eventresponder.render(element)
- end
-
- if mouse_hit(element) then
- -- mouse down styling
- if (element.styledown) then
- style_ass:append(osc_styles.elementDown)
- end
-
- if (element.softrepeat) and (state.mouse_down_counter >= 15
- and state.mouse_down_counter % 5 == 0) then
-
- element.eventresponder[state.active_event_source.."_down"](element)
- end
- state.mouse_down_counter = state.mouse_down_counter + 1
- end
-
- end
-
- local elem_ass = assdraw.ass_new()
-
- elem_ass:merge(style_ass)
-
- if not (element.type == "button") then
- elem_ass:merge(element.static_ass)
- end
-
- if (element.type == "slider") then
-
- local slider_lo = element.layout.slider
- local elem_geo = element.layout.geometry
- local s_min = element.slider.min.value
- local s_max = element.slider.max.value
-
- -- draw pos marker
- local foH, xp
- local pos = element.slider.posF()
- local foV = slider_lo.border + slider_lo.gap
- local innerH = elem_geo.h - (2 * foV)
- local seekRanges = element.slider.seekRangesF()
- local seekRangeLineHeight = innerH / 5
-
- if slider_lo.stype ~= "bar" then
- foH = elem_geo.h / 2
- else
- foH = slider_lo.border + slider_lo.gap
- end
-
- if pos then
- xp = get_slider_ele_pos_for(element, pos)
-
- if slider_lo.stype ~= "bar" then
- local r = (user_opts.seekbarhandlesize * innerH) / 2
- ass_draw_rr_h_cw(elem_ass, xp - r, foH - r,
- xp + r, foH + r,
- r, slider_lo.stype == "diamond")
- else
- local h = 0
- if seekRanges and user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- h = seekRangeLineHeight
- end
- elem_ass:rect_cw(foH, foV, xp, elem_geo.h - foV - h)
-
- if seekRanges and not user_opts.seekrangeseparate and slider_lo.rtype ~= "inverted" then
- -- Punch holes for the seekRanges to be drawn later
- for _,range in pairs(seekRanges) do
- if range["start"] < pos then
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = xp
-
- if pos > range["end"] then
- pend = get_slider_ele_pos_for(element, range["end"])
- end
- elem_ass:rect_ccw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- end
- end
- end
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, foH - innerH / 6, foH - innerH / 6,
- xp, foH + innerH / 6,
- innerH / 6, slider_lo.stype == "diamond", 0)
- ass_draw_rr_h_cw(elem_ass, xp, foH - innerH / 15,
- elem_geo.w - foH + innerH / 15, foH + innerH / 15,
- 0, slider_lo.stype == "diamond", innerH / 15)
- for _,range in pairs(seekRanges or {}) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
- ass_draw_rr_h_ccw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- end
- end
- end
-
- if seekRanges then
- if slider_lo.rtype ~= "inverted" then
- elem_ass:draw_stop()
- elem_ass:merge(element.style_ass)
- ass_append_alpha(elem_ass, element.layout.alpha, user_opts.seekrangealpha)
- elem_ass:merge(element.static_ass)
- end
-
- for _,range in pairs(seekRanges) do
- local pstart = get_slider_ele_pos_for(element, range["start"])
- local pend = get_slider_ele_pos_for(element, range["end"])
-
- if slider_lo.rtype == "slider" then
- ass_draw_rr_h_cw(elem_ass, pstart, foH - innerH / 21,
- pend, foH + innerH / 21,
- innerH / 21, slider_lo.stype == "diamond")
- elseif slider_lo.rtype == "line" then
- if slider_lo.stype == "bar" then
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- else
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 8, foH - innerH / 8,
- pend + innerH / 8, foH + innerH / 8,
- innerH / 8, slider_lo.stype == "diamond")
- end
- elseif slider_lo.rtype == "bar" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_cw(elem_ass, pstart - innerH / 2, foV,
- pend + innerH / 2, foV + innerH,
- innerH / 2, slider_lo.stype == "diamond")
- elseif range["end"] >= (pos or 0) then
- elem_ass:rect_cw(pstart, foV, pend, elem_geo.h - foV)
- else
- elem_ass:rect_cw(pstart, elem_geo.h - foV - seekRangeLineHeight, pend, elem_geo.h - foV)
- end
- elseif slider_lo.rtype == "inverted" then
- if slider_lo.stype ~= "bar" then
- ass_draw_rr_h_ccw(elem_ass, pstart, (elem_geo.h / 2) - 1, pend,
- (elem_geo.h / 2) + 1,
- 1, slider_lo.stype == "diamond")
- else
- elem_ass:rect_ccw(pstart, (elem_geo.h / 2) - 1, pend, (elem_geo.h / 2) + 1)
- end
- end
- end
- end
-
- elem_ass:draw_stop()
-
- -- add tooltip
- if not (element.slider.tooltipF == nil) then
-
- if mouse_hit(element) then
- local sliderpos = get_slider_value(element)
- local tooltiplabel = element.slider.tooltipF(sliderpos)
-
- local an = slider_lo.tooltip_an
-
- local ty
-
- if (an == 2) then
- ty = element.hitbox.y1 - slider_lo.border
- else
- ty = element.hitbox.y1 + elem_geo.h/2
- end
-
- local tx = get_virt_mouse_pos()
- if (slider_lo.adjust_tooltip) then
- if (an == 2) then
- if (sliderpos < (s_min + 3)) then
- an = an - 1
- elseif (sliderpos > (s_max - 3)) then
- an = an + 1
- end
- elseif (sliderpos > (s_max-s_min)/2) then
- an = an + 1
- tx = tx - 5
- else
- an = an - 1
- tx = tx + 10
- end
- end
-
- -- tooltip label
- elem_ass:new_event()
- elem_ass:pos(tx, ty)
- elem_ass:an(an)
- elem_ass:append(slider_lo.tooltip_style)
- ass_append_alpha(elem_ass, slider_lo.alpha, 0)
- elem_ass:append(tooltiplabel)
-
- -- mpv_thumbnail_script.lua --
- display_thumbnail({x=get_virt_mouse_pos(), y=ty, a=an}, sliderpos, elem_ass)
- -- // mpv_thumbnail_script.lua // --
-
- end
- end
-
- elseif (element.type == "button") then
-
- local buttontext
- if type(element.content) == "function" then
- buttontext = element.content() -- function objects
- elseif not (element.content == nil) then
- buttontext = element.content -- text objects
- end
-
- local maxchars = element.layout.button.maxchars
- if not (maxchars == nil) and (#buttontext > maxchars) then
- local max_ratio = 1.25 -- up to 25% more chars while shrinking
- local limit = math.max(0, math.floor(maxchars * max_ratio) - 3)
- if (#buttontext > limit) then
- while (#buttontext > limit) do
- buttontext = buttontext:gsub(".[\128-\191]*$", "")
- end
- buttontext = buttontext .. "..."
- end
- local _, nchars2 = buttontext:gsub(".[\128-\191]*", "")
- local stretch = (maxchars/#buttontext)*100
- buttontext = string.format("{\\fscx%f}",
- (maxchars/#buttontext)*100) .. buttontext
- end
-
- elem_ass:append(buttontext)
- end
-
- master_ass:merge(elem_ass)
- end
-end
-
---
--- Message display
---
-
--- pos is 1 based
-function limited_list(prop, pos)
- local proplist = mp.get_property_native(prop, {})
- local count = #proplist
- if count == 0 then
- return count, proplist
- end
-
- local fs = tonumber(mp.get_property('options/osd-font-size'))
- local max = math.ceil(osc_param.unscaled_y*0.75 / fs)
- if max % 2 == 0 then
- max = max - 1
- end
- local delta = math.ceil(max / 2) - 1
- local begi = math.max(math.min(pos - delta, count - max + 1), 1)
- local endi = math.min(begi + max - 1, count)
-
- local reslist = {}
- for i=begi, endi do
- local item = proplist[i]
- item.current = (i == pos) and true or nil
- table.insert(reslist, item)
- end
- return count, reslist
-end
-
-function get_playlist()
- local pos = mp.get_property_number('playlist-pos', 0) + 1
- local count, limlist = limited_list('playlist', pos)
- if count == 0 then
- return 'Empty playlist.'
- end
-
- local message = string.format('Playlist [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local title = v.title
- local _, filename = utils.split_path(v.filename)
- if title == nil then
- title = filename
- end
- message = string.format('%s %s %s\n', message,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function get_chapterlist()
- local pos = mp.get_property_number('chapter', 0) + 1
- local count, limlist = limited_list('chapter-list', pos)
- if count == 0 then
- return 'No chapters.'
- end
-
- local message = string.format('Chapters [%d/%d]:\n', pos, count)
- for i, v in ipairs(limlist) do
- local time = mp.format_time(v.time)
- local title = v.title
- if title == nil then
- title = string.format('Chapter %02d', i)
- end
- message = string.format('%s[%s] %s %s\n', message, time,
- (v.current and '●' or '○'), title)
- end
- return message
-end
-
-function show_message(text, duration)
-
- --print("text: "..text.." duration: " .. duration)
- if duration == nil then
- duration = tonumber(mp.get_property("options/osd-duration")) / 1000
- elseif not type(duration) == "number" then
- print("duration: " .. duration)
- end
-
- -- cut the text short, otherwise the following functions
- -- may slow down massively on huge input
- text = string.sub(text, 0, 4000)
-
- -- replace actual linebreaks with ASS linebreaks
- text = string.gsub(text, "\n", "\\N")
-
- state.message_text = text
-
- if not state.message_hide_timer then
- state.message_hide_timer = mp.add_timeout(0, request_tick)
- end
- state.message_hide_timer:kill()
- state.message_hide_timer.timeout = duration
- state.message_hide_timer:resume()
- request_tick()
-end
-
-function render_message(ass)
- if state.message_hide_timer and state.message_hide_timer:is_enabled() and
- state.message_text
- then
- local _, lines = string.gsub(state.message_text, "\\N", "")
-
- local fontsize = tonumber(mp.get_property("options/osd-font-size"))
- local outline = tonumber(mp.get_property("options/osd-border-size"))
- local maxlines = math.ceil(osc_param.unscaled_y*0.75 / fontsize)
- local counterscale = osc_param.playresy / osc_param.unscaled_y
-
- fontsize = fontsize * counterscale / math.max(0.65 + math.min(lines/maxlines, 1), 1)
- outline = outline * counterscale / math.max(0.75 + math.min(lines/maxlines, 1)/2, 1)
-
- local style = "{\\bord" .. outline .. "\\fs" .. fontsize .. "}"
-
-
- ass:new_event()
- ass:append(style .. state.message_text)
- else
- state.message_text = nil
- end
-end
-
---
--- Initialisation and Layout
---
-
-function new_element(name, type)
- elements[name] = {}
- elements[name].type = type
-
- -- add default stuff
- elements[name].eventresponder = {}
- elements[name].visible = true
- elements[name].enabled = true
- elements[name].softrepeat = false
- elements[name].styledown = (type == "button")
- elements[name].state = {}
-
- if (type == "slider") then
- elements[name].slider = {min = {value = 0}, max = {value = 100}}
- end
-
-
- return elements[name]
-end
-
-function add_layout(name)
- if not (elements[name] == nil) then
- -- new layout
- elements[name].layout = {}
-
- -- set layout defaults
- elements[name].layout.layer = 50
- elements[name].layout.alpha = {[1] = 0, [2] = 255, [3] = 255, [4] = 255}
-
- if (elements[name].type == "button") then
- elements[name].layout.button = {
- maxchars = nil,
- }
- elseif (elements[name].type == "slider") then
- -- slider defaults
- elements[name].layout.slider = {
- border = 1,
- gap = 1,
- nibbles_top = true,
- nibbles_bottom = true,
- stype = "slider",
- adjust_tooltip = true,
- tooltip_style = "",
- tooltip_an = 2,
- alpha = {[1] = 0, [2] = 255, [3] = 88, [4] = 255},
- }
- elseif (elements[name].type == "box") then
- elements[name].layout.box = {radius = 0, hexagon = false}
- end
-
- return elements[name].layout
- else
- msg.error("Can't add_layout to element \""..name.."\", doesn't exist.")
- end
-end
-
--- Window Controls
-function window_controls(topbar)
- local wc_geo = {
- x = 0,
- y = 30 + user_opts.barmargin,
- an = 1,
- w = osc_param.playresx,
- h = 30,
- }
-
- local alignment = window_controls_alignment()
- local controlbox_w = window_control_box_width
- local titlebox_w = wc_geo.w - controlbox_w
-
- -- Default alignment is "right"
- local controlbox_left = wc_geo.w - controlbox_w
- local titlebox_left = wc_geo.x
- local titlebox_right = wc_geo.w - controlbox_w
-
- if alignment == "left" then
- controlbox_left = wc_geo.x
- titlebox_left = wc_geo.x + controlbox_w
- titlebox_right = wc_geo.w
- end
-
- add_area("window-controls",
- get_hitbox_coords(controlbox_left, wc_geo.y, wc_geo.an,
- controlbox_w, wc_geo.h))
-
- local lo
-
- -- Background Bar
- new_element("wcbar", "box")
- lo = add_layout("wcbar")
- lo.geometry = wc_geo
- lo.layer = 10
- lo.style = osc_styles.wcBar
- lo.alpha[1] = user_opts.boxalpha
-
- local button_y = wc_geo.y - (wc_geo.h / 2)
- local first_geo =
- {x = controlbox_left + 5, y = button_y, an = 4, w = 25, h = 25}
- local second_geo =
- {x = controlbox_left + 30, y = button_y, an = 4, w = 25, h = 25}
- local third_geo =
- {x = controlbox_left + 55, y = button_y, an = 4, w = 25, h = 25}
-
- -- Window control buttons use symbols in the custom mpv osd font
- -- because the official unicode codepoints are sufficiently
- -- exotic that a system might lack an installed font with them,
- -- and libass will complain that they are not present in the
- -- default font, even if another font with them is available.
-
- -- Close: 🗙
- ne = new_element("close", "button")
- ne.content = "\238\132\149"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("quit") end
- lo = add_layout("close")
- lo.geometry = alignment == "left" and first_geo or third_geo
- lo.style = osc_styles.wcButtons
-
- -- Minimize: 🗕
- ne = new_element("minimize", "button")
- ne.content = "\238\132\146"
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "window-minimized") end
- lo = add_layout("minimize")
- lo.geometry = alignment == "left" and second_geo or first_geo
- lo.style = osc_styles.wcButtons
-
- -- Maximize: 🗖 /🗗
- ne = new_element("maximize", "button")
- if state.maximized or state.fullscreen then
- ne.content = "\238\132\148"
- else
- ne.content = "\238\132\147"
- end
- ne.eventresponder["mbtn_left_up"] =
- function ()
- if state.fullscreen then
- mp.commandv("cycle", "fullscreen")
- else
- mp.commandv("cycle", "window-maximized")
- end
- end
- lo = add_layout("maximize")
- lo.geometry = alignment == "left" and third_geo or second_geo
- lo.style = osc_styles.wcButtons
-
- -- deadzone below window controls
- local sh_area_y0, sh_area_y1
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (wc_geo.y + (wc_geo.h / 2)) +
- get_align(1 - (2 * user_opts.deadzonesize),
- osc_param.playresy - (wc_geo.y + (wc_geo.h / 2)), 0, 0)
- add_area("showhide_wc", wc_geo.x, sh_area_y0, wc_geo.w, sh_area_y1)
-
- if topbar then
- -- The title is already there as part of the top bar
- return
- else
- -- Apply boxvideo margins to the control bar
- osc_param.video_margins.t = wc_geo.h / osc_param.playresy
- end
-
- -- Window Title
- ne = new_element("wctitle", "button")
- ne.content = function ()
- local title = mp.command_native({"expand-text", user_opts.title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
- local left_pad = 5
- local right_pad = 10
- lo = add_layout("wctitle")
- lo.geometry =
- { x = titlebox_left + left_pad, y = wc_geo.y - 3, an = 1,
- w = titlebox_w, h = wc_geo.h }
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.wcTitle,
- titlebox_left + left_pad, wc_geo.y - wc_geo.h,
- titlebox_right - right_pad , wc_geo.y + wc_geo.h)
-
- add_area("window-controls-title",
- titlebox_left, 0, titlebox_right, wc_geo.h)
-end
-
---
--- Layouts
---
-
-local layouts = {}
-
--- Classic box layout
-layouts["box"] = function ()
-
- local osc_geo = {
- w = 1000, -- width
- h = 150, -- height
- r = 5, -- corner-radius
- p = 20, -- padding
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w + (2 * osc_geo.p))) then
- osc_param.playresy = (osc_geo.w+(2*osc_geo.p))/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- -- position offset for contents aligned at the borders of the box
- local pos_offsetX = (osc_geo.w - (2*osc_geo.p)) / 2
- local pos_offsetY = (osc_geo.h - (2*osc_geo.p)) / 2
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- -- fetch values
- local osc_w, osc_h, osc_r, osc_p =
- osc_geo.w, osc_geo.h, osc_geo.r, osc_geo.p
-
- local lo
-
- --
- -- Background box
- --
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY, an = 5, w = osc_w, h = osc_h}
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = user_opts.boxalpha
- lo.box.radius = osc_r
-
- --
- -- Title row
- --
-
- local titlerowY = posY - pos_offsetY - 10
-
- lo = add_layout("title")
- lo.geometry = {x = posX, y = titlerowY, an = 8, w = 496, h = 12}
- lo.style = osc_styles.vidtitle
- lo.button.maxchars = user_opts.boxmaxchars
-
- lo = add_layout("pl_prev")
- lo.geometry =
- {x = (posX - pos_offsetX), y = titlerowY, an = 7, w = 12, h = 12}
- lo.style = osc_styles.topButtons
-
- lo = add_layout("pl_next")
- lo.geometry =
- {x = (posX + pos_offsetX), y = titlerowY, an = 9, w = 12, h = 12}
- lo.style = osc_styles.topButtons
-
- --
- -- Big buttons
- --
-
- local bigbtnrowY = posY - pos_offsetY + 35
- local bigbtndist = 60
-
- lo = add_layout("playpause")
- lo.geometry =
- {x = posX, y = bigbtnrowY, an = 5, w = 40, h = 40}
- lo.style = osc_styles.bigButtons
-
- lo = add_layout("skipback")
- lo.geometry =
- {x = posX - bigbtndist, y = bigbtnrowY, an = 5, w = 40, h = 40}
- lo.style = osc_styles.bigButtons
-
- lo = add_layout("skipfrwd")
- lo.geometry =
- {x = posX + bigbtndist, y = bigbtnrowY, an = 5, w = 40, h = 40}
- lo.style = osc_styles.bigButtons
-
- lo = add_layout("ch_prev")
- lo.geometry =
- {x = posX - (bigbtndist * 2), y = bigbtnrowY, an = 5, w = 40, h = 40}
- lo.style = osc_styles.bigButtons
-
- lo = add_layout("ch_next")
- lo.geometry =
- {x = posX + (bigbtndist * 2), y = bigbtnrowY, an = 5, w = 40, h = 40}
- lo.style = osc_styles.bigButtons
-
- lo = add_layout("cy_audio")
- lo.geometry =
- {x = posX - pos_offsetX, y = bigbtnrowY, an = 1, w = 70, h = 18}
- lo.style = osc_styles.smallButtonsL
-
- lo = add_layout("cy_sub")
- lo.geometry =
- {x = posX - pos_offsetX, y = bigbtnrowY, an = 7, w = 70, h = 18}
- lo.style = osc_styles.smallButtonsL
-
- lo = add_layout("tog_fs")
- lo.geometry =
- {x = posX+pos_offsetX - 25, y = bigbtnrowY, an = 4, w = 25, h = 25}
- lo.style = osc_styles.smallButtonsR
-
- lo = add_layout("volume")
- lo.geometry =
- {x = posX+pos_offsetX - (25 * 2) - osc_geo.p,
- y = bigbtnrowY, an = 4, w = 25, h = 25}
- lo.style = osc_styles.smallButtonsR
-
- --
- -- Seekbar
- --
-
- lo = add_layout("seekbar")
- lo.geometry =
- {x = posX, y = posY+pos_offsetY-22, an = 2, w = pos_offsetX*2, h = 15}
- lo.style = osc_styles.timecodes
- lo.slider.tooltip_style = osc_styles.vidtitle
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
- --
- -- Timecodes + Cache
- --
-
- local bottomrowY = posY + pos_offsetY - 5
-
- lo = add_layout("tc_left")
- lo.geometry =
- {x = posX - pos_offsetX, y = bottomrowY, an = 4, w = 110, h = 18}
- lo.style = osc_styles.timecodes
-
- lo = add_layout("tc_right")
- lo.geometry =
- {x = posX + pos_offsetX, y = bottomrowY, an = 6, w = 110, h = 18}
- lo.style = osc_styles.timecodes
-
- lo = add_layout("cache")
- lo.geometry =
- {x = posX, y = bottomrowY, an = 5, w = 110, h = 18}
- lo.style = osc_styles.timecodes
-
-end
-
--- slim box layout
-layouts["slimbox"] = function ()
-
- local osc_geo = {
- w = 660, -- width
- h = 70, -- height
- r = 10, -- corner-radius
- }
-
- -- make sure the OSC actually fits into the video
- if (osc_param.playresx < (osc_geo.w)) then
- osc_param.playresy = (osc_geo.w)/osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- -- position of the controller according to video aspect and valignment
- local posX = math.floor(get_align(user_opts.halign, osc_param.playresx,
- osc_geo.w, 0))
- local posY = math.floor(get_align(user_opts.valign, osc_param.playresy,
- osc_geo.h, 0))
-
- osc_param.areas = {} -- delete areas
-
- -- area for active mouse input
- add_area("input", get_hitbox_coords(posX, posY, 5, osc_geo.w, osc_geo.h))
-
- -- area for show/hide
- local sh_area_y0, sh_area_y1
- if user_opts.valign > 0 then
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- posY - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy
- else
- -- deadzone below OSC
- sh_area_y0 = 0
- sh_area_y1 = (posY + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (posY + (osc_geo.h / 2)), 0, 0)
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo
-
- local tc_w, ele_h, inner_w = 100, 20, osc_geo.w - 100
-
- -- styles
- local styles = {
- box = "{\\rDefault\\blur0\\bord1\\1c&H000000\\3c&HFFFFFF}",
- timecodes = "{\\1c&HFFFFFF\\3c&H000000\\fs20\\bord2\\blur1}",
- tooltip = "{\\1c&HFFFFFF\\3c&H000000\\fs12\\bord1\\blur0.5}",
- }
-
-
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
- lo.alpha[3] = 0
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = osc_geo.r
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
-
- lo = add_layout("seekbar")
- lo.geometry =
- {x = posX, y = posY - 1, an = 2, w = inner_w, h = ele_h}
- lo.style = osc_styles.timecodes
- lo.slider.border = 0
- lo.slider.gap = 1.5
- lo.slider.tooltip_style = styles.tooltip
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
- lo.slider.adjust_tooltip = false
-
- --
- -- Timecodes
- --
-
- lo = add_layout("tc_left")
- lo.geometry =
- {x = posX - (inner_w/2) + osc_geo.r, y = posY + 1,
- an = 7, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- lo = add_layout("tc_right")
- lo.geometry =
- {x = posX + (inner_w/2) - osc_geo.r, y = posY + 1,
- an = 9, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
- -- Cache
-
- lo = add_layout("cache")
- lo.geometry =
- {x = posX, y = posY + 1,
- an = 8, w = tc_w, h = ele_h}
- lo.style = styles.timecodes
- lo.alpha[3] = user_opts.boxalpha
-
-
-end
-
-function bar_layout(direction)
- local osc_geo = {
- x = -2,
- y,
- an = (direction < 0) and 7 or 1,
- w,
- h = 56,
- }
-
- local padX = 9
- local padY = 3
- local buttonW = 27
- local tcW = (state.tc_ms) and 170 or 110
- local tsW = 90
- local minW = (buttonW + padX)*5 + (tcW + padX)*4 + (tsW + padX)*2
-
- -- Special topbar handling when window controls are present
- local padwc_l
- local padwc_r
- if direction < 0 or not window_controls_enabled() then
- padwc_l = 0
- padwc_r = 0
- elseif window_controls_alignment() == "left" then
- padwc_l = window_control_box_width
- padwc_r = 0
- else
- padwc_l = 0
- padwc_r = window_control_box_width
- end
-
- if ((osc_param.display_aspect > 0) and (osc_param.playresx < minW)) then
- osc_param.playresy = minW / osc_param.display_aspect
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
- end
-
- osc_geo.y = direction * (54 + user_opts.barmargin)
- osc_geo.w = osc_param.playresx + 4
- if direction < 0 then
- osc_geo.y = osc_geo.y + osc_param.playresy
- end
-
- local line1 = osc_geo.y - direction * (9 + padY)
- local line2 = osc_geo.y - direction * (36 + padY)
-
- osc_param.areas = {}
-
- add_area("input", get_hitbox_coords(osc_geo.x, osc_geo.y, osc_geo.an,
- osc_geo.w, osc_geo.h))
-
- local sh_area_y0, sh_area_y1
- if direction > 0 then
- -- deadzone below OSC
- sh_area_y0 = user_opts.barmargin
- sh_area_y1 = (osc_geo.y + (osc_geo.h / 2)) +
- get_align(1 - (2*user_opts.deadzonesize),
- osc_param.playresy - (osc_geo.y + (osc_geo.h / 2)), 0, 0)
- else
- -- deadzone above OSC
- sh_area_y0 = get_align(-1 + (2*user_opts.deadzonesize),
- osc_geo.y - (osc_geo.h / 2), 0, 0)
- sh_area_y1 = osc_param.playresy - user_opts.barmargin
- end
- add_area("showhide", 0, sh_area_y0, osc_param.playresx, sh_area_y1)
-
- local lo, geo
-
- -- Background bar
- new_element("bgbox", "box")
- lo = add_layout("bgbox")
-
- lo.geometry = osc_geo
- lo.layer = 10
- lo.style = osc_styles.box
- lo.alpha[1] = user_opts.boxalpha
-
-
- -- Playlist prev/next
- geo = { x = osc_geo.x + padX, y = line1,
- an = 4, w = 18, h = 18 - padY }
- lo = add_layout("pl_prev")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("pl_next")
- lo.geometry = geo
- lo.style = osc_styles.topButtonsBar
-
- local t_l = geo.x + geo.w + padX
-
- -- Cache
- geo = { x = osc_geo.x + osc_geo.w - padX, y = geo.y,
- an = 6, w = 150, h = geo.h }
- lo = add_layout("cache")
- lo.geometry = geo
- lo.style = osc_styles.vidtitleBar
-
- local t_r = geo.x - geo.w - padX*2
-
- -- Title
- geo = { x = t_l, y = geo.y, an = 4,
- w = t_r - t_l, h = geo.h }
- lo = add_layout("title")
- lo.geometry = geo
- lo.style = string.format("%s{\\clip(%f,%f,%f,%f)}",
- osc_styles.vidtitleBar,
- geo.x, geo.y-geo.h, geo.w, geo.y+geo.h)
-
-
- -- Playback control buttons
- geo = { x = osc_geo.x + padX + padwc_l, y = line2, an = 4,
- w = buttonW, h = 36 - padY*2}
- lo = add_layout("playpause")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_prev")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x + geo.w + padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("ch_next")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Left timecode
- geo = { x = geo.x + geo.w + padX + tcW, y = geo.y, an = 6,
- w = tcW, h = geo.h }
- lo = add_layout("tc_left")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_l = geo.x + padX
-
- -- Fullscreen button
- geo = { x = osc_geo.x + osc_geo.w - buttonW - padX - padwc_r, y = geo.y, an = 4,
- w = buttonW, h = geo.h }
- lo = add_layout("tog_fs")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Volume
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("volume")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- -- Track selection buttons
- geo = { x = geo.x - tsW - padX, y = geo.y, an = geo.an, w = tsW, h = geo.h }
- lo = add_layout("cy_sub")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
- geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
- lo = add_layout("cy_audio")
- lo.geometry = geo
- lo.style = osc_styles.smallButtonsBar
-
-
- -- Right timecode
- geo = { x = geo.x - padX - tcW - 10, y = geo.y, an = geo.an,
- w = tcW, h = geo.h }
- lo = add_layout("tc_right")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
-
- local sb_r = geo.x - padX
-
-
- -- Seekbar
- geo = { x = sb_l, y = geo.y, an = geo.an,
- w = math.max(0, sb_r - sb_l), h = geo.h }
- new_element("bgbar1", "box")
- lo = add_layout("bgbar1")
-
- lo.geometry = geo
- lo.layer = 15
- lo.style = osc_styles.timecodesBar
- lo.alpha[1] =
- math.min(255, user_opts.boxalpha + (255 - user_opts.boxalpha)*0.8)
- if not (user_opts["seekbarstyle"] == "bar") then
- lo.box.radius = geo.h / 2
- lo.box.hexagon = user_opts["seekbarstyle"] == "diamond"
- end
-
- lo = add_layout("seekbar")
- lo.geometry = geo
- lo.style = osc_styles.timecodesBar
- lo.slider.border = 0
- lo.slider.gap = 2
- lo.slider.tooltip_style = osc_styles.timePosBar
- lo.slider.tooltip_an = 5
- lo.slider.stype = user_opts["seekbarstyle"]
- lo.slider.rtype = user_opts["seekrangestyle"]
-
- if direction < 0 then
- osc_param.video_margins.b = osc_geo.h / osc_param.playresy
- else
- osc_param.video_margins.t = osc_geo.h / osc_param.playresy
- end
-end
-
-layouts["bottombar"] = function()
- bar_layout(-1)
-end
-
-layouts["topbar"] = function()
- bar_layout(1)
-end
-
--- Validate string type user options
-function validate_user_opts()
- if layouts[user_opts.layout] == nil then
- msg.warn("Invalid setting \""..user_opts.layout.."\" for layout")
- user_opts.layout = "bottombar"
- end
-
- if user_opts.seekbarstyle ~= "bar" and
- user_opts.seekbarstyle ~= "diamond" and
- user_opts.seekbarstyle ~= "knob" then
- msg.warn("Invalid setting \"" .. user_opts.seekbarstyle
- .. "\" for seekbarstyle")
- user_opts.seekbarstyle = "bar"
- end
-
- if user_opts.seekrangestyle ~= "bar" and
- user_opts.seekrangestyle ~= "line" and
- user_opts.seekrangestyle ~= "slider" and
- user_opts.seekrangestyle ~= "inverted" and
- user_opts.seekrangestyle ~= "none" then
- msg.warn("Invalid setting \"" .. user_opts.seekrangestyle
- .. "\" for seekrangestyle")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.seekrangestyle == "slider" and
- user_opts.seekbarstyle == "bar" then
- msg.warn("Using \"slider\" seekrangestyle together with \"bar\" seekbarstyle is not supported")
- user_opts.seekrangestyle = "inverted"
- end
-
- if user_opts.windowcontrols ~= "auto" and
- user_opts.windowcontrols ~= "yes" and
- user_opts.windowcontrols ~= "no" then
- msg.warn("windowcontrols cannot be \"" ..
- user_opts.windowcontrols .. "\". Ignoring.")
- user_opts.windowcontrols = "auto"
- end
- if user_opts.windowcontrols_alignment ~= "right" and
- user_opts.windowcontrols_alignment ~= "left" then
- msg.warn("windowcontrols_alignment cannot be \"" ..
- user_opts.windowcontrols_alignment .. "\". Ignoring.")
- user_opts.windowcontrols_alignment = "right"
- end
-end
-
-function update_options(list)
- validate_user_opts()
- request_tick()
- visibility_mode(user_opts.visibility, true)
- request_init()
-end
-
--- OSC INIT
-function osc_init()
- msg.debug("osc_init")
-
- -- set canvas resolution according to display aspect and scaling setting
- local baseResY = 720
- local display_w, display_h, display_aspect = mp.get_osd_size()
- local scale = 1
-
- if (mp.get_property("video") == "no") then -- dummy/forced window
- scale = user_opts.scaleforcedwindow
- elseif state.fullscreen then
- scale = user_opts.scalefullscreen
- else
- scale = user_opts.scalewindowed
- end
-
- if user_opts.vidscale then
- osc_param.unscaled_y = baseResY
- else
- osc_param.unscaled_y = display_h
- end
- osc_param.playresy = osc_param.unscaled_y / scale
- if (display_aspect > 0) then
- osc_param.display_aspect = display_aspect
- end
- osc_param.playresx = osc_param.playresy * osc_param.display_aspect
-
- -- stop seeking with the slider to prevent skipping files
- state.active_element = nil
-
- osc_param.video_margins = {l = 0, r = 0, t = 0, b = 0}
-
- elements = {}
-
- -- some often needed stuff
- local pl_count = mp.get_property_number("playlist-count", 0)
- local have_pl = (pl_count > 1)
- local pl_pos = mp.get_property_number("playlist-pos", 0) + 1
- local have_ch = (mp.get_property_number("chapters", 0) > 0)
- local loop = mp.get_property("loop-playlist", "no")
-
- local ne
-
- -- title
- ne = new_element("title", "button")
-
- ne.content = function ()
- local title = mp.command_native({"expand-text", user_opts.title})
- -- escape ASS, and strip newlines and trailing slashes
- title = title:gsub("\\n", " "):gsub("\\$", ""):gsub("{","\\{")
- return not (title == "") and title or "mpv"
- end
-
- ne.eventresponder["mbtn_left_up"] = function ()
- local title = mp.get_property_osd("media-title")
- if (have_pl) then
- title = string.format("[%d/%d] %s", countone(pl_pos - 1),
- pl_count, title)
- end
- show_message(title)
- end
-
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(mp.get_property_osd("filename")) end
-
- -- playlist buttons
-
- -- prev
- ne = new_element("pl_prev", "button")
-
- ne.content = "\238\132\144"
- ne.enabled = (pl_pos > 1) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-prev", "weak")
- show_message(get_playlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
- --next
- ne = new_element("pl_next", "button")
-
- ne.content = "\238\132\129"
- ne.enabled = (have_pl and (pl_pos < pl_count)) or (loop ~= "no")
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("playlist-next", "weak")
- show_message(get_playlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_playlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_playlist(), 3) end
-
-
- -- big buttons
-
- --playpause
- ne = new_element("playpause", "button")
-
- ne.content = function ()
- if mp.get_property("pause") == "yes" then
- return ("\238\132\129")
- else
- return ("\238\128\130")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "pause") end
-
- --skipback
- ne = new_element("skipback", "button")
-
- ne.softrepeat = true
- ne.content = "\238\128\132"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", -5, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-back-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", -30, "relative", "keyframes") end
-
- --skipfrwd
- ne = new_element("skipfrwd", "button")
-
- ne.softrepeat = true
- ne.content = "\238\128\133"
- ne.eventresponder["mbtn_left_down"] =
- function () mp.commandv("seek", 10, "relative", "keyframes") end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () mp.commandv("frame-step") end
- ne.eventresponder["mbtn_right_down"] =
- function () mp.commandv("seek", 60, "relative", "keyframes") end
-
- --ch_prev
- ne = new_element("ch_prev", "button")
-
- ne.enabled = have_ch
- ne.content = "\238\132\132"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", -1)
- show_message(get_chapterlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --ch_next
- ne = new_element("ch_next", "button")
-
- ne.enabled = have_ch
- ne.content = "\238\132\133"
- ne.eventresponder["mbtn_left_up"] =
- function ()
- mp.commandv("add", "chapter", 1)
- show_message(get_chapterlist(), 3)
- end
- ne.eventresponder["shift+mbtn_left_up"] =
- function () show_message(get_chapterlist(), 3) end
- ne.eventresponder["mbtn_right_up"] =
- function () show_message(get_chapterlist(), 3) end
-
- --
- update_tracklist()
-
- --cy_audio
- ne = new_element("cy_audio", "button")
-
- ne.enabled = (#tracks_osc.audio > 0)
- ne.content = function ()
- local aid = "–"
- if not (get_track("audio") == 0) then
- aid = get_track("audio")
- end
- return ("\238\132\134" .. osc_styles.smallButtonsLlabel
- .. " " .. aid .. "/" .. #tracks_osc.audio)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("audio", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("audio", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("audio"), 2) end
-
- --cy_sub
- ne = new_element("cy_sub", "button")
-
- ne.enabled = (#tracks_osc.sub > 0)
- ne.content = function ()
- local sid = "–"
- if not (get_track("sub") == 0) then
- sid = get_track("sub")
- end
- return ("\238\132\135" .. osc_styles.smallButtonsLlabel
- .. " " .. sid .. "/" .. #tracks_osc.sub)
- end
- ne.eventresponder["mbtn_left_up"] =
- function () set_track("sub", 1) end
- ne.eventresponder["mbtn_right_up"] =
- function () set_track("sub", -1) end
- ne.eventresponder["shift+mbtn_left_down"] =
- function () show_message(get_tracklist("sub"), 2) end
-
- --tog_fs
- ne = new_element("tog_fs", "button")
- ne.content = function ()
- if (state.fullscreen) then
- return ("\238\132\137")
- else
- return ("\238\132\136")
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "fullscreen") end
-
- --seekbar
- ne = new_element("seekbar", "slider")
-
- ne.enabled = not (mp.get_property("percent-pos") == nil)
- ne.slider.markerF = function ()
- local duration = mp.get_property_number("duration", nil)
- if not (duration == nil) then
- local chapters = mp.get_property_native("chapter-list", {})
- local markers = {}
- for n = 1, #chapters do
- markers[n] = (chapters[n].time / duration * 100)
- end
- return markers
- else
- return {}
- end
- end
- ne.slider.posF =
- function () return mp.get_property_number("percent-pos", nil) end
- ne.slider.tooltipF = function (pos)
- local duration = mp.get_property_number("duration", nil)
- if not ((duration == nil) or (pos == nil)) then
- possec = duration * (pos / 100)
- return mp.format_time(possec)
- else
- return ""
- end
- end
- ne.slider.seekRangesF = function()
- if user_opts.seekrangestyle == "none" then
- return nil
- end
- local cache_state = state.cache_state
- if not cache_state then
- return nil
- end
- local duration = mp.get_property_number("duration", nil)
- if (duration == nil) or duration <= 0 then
- return nil
- end
- local ranges = cache_state["seekable-ranges"]
- if #ranges == 0 then
- return nil
- end
- local nranges = {}
- for _, range in pairs(ranges) do
- nranges[#nranges + 1] = {
- ["start"] = 100 * range["start"] / duration,
- ["end"] = 100 * range["end"] / duration,
- }
- end
- return nranges
- end
- ne.eventresponder["mouse_move"] = --keyframe seeking when mouse is dragged
- function (element)
- -- mouse move events may pile up during seeking and may still get
- -- sent when the user is done seeking, so we need to throw away
- -- identical seeks
- local seekto = get_slider_value(element)
- if (element.state.lastseek == nil) or
- (not (element.state.lastseek == seekto)) then
- local flags = "absolute-percent"
- if not user_opts.seekbarkeyframes then
- flags = flags .. "+exact"
- end
- mp.commandv("seek", seekto, flags)
- element.state.lastseek = seekto
- end
-
- end
- ne.eventresponder["mbtn_left_down"] = --exact seeks on single clicks
- function (element) mp.commandv("seek", get_slider_value(element),
- "absolute-percent", "exact") end
- ne.eventresponder["reset"] =
- function (element) element.state.lastseek = nil end
-
-
- -- tc_left (current pos)
- ne = new_element("tc_left", "button")
-
- ne.content = function ()
- if (state.tc_ms) then
- return (mp.get_property_osd("playback-time/full"))
- else
- return (mp.get_property_osd("playback-time"))
- end
- end
- ne.eventresponder["mbtn_left_up"] = function ()
- state.tc_ms = not state.tc_ms
- request_init()
- end
-
- -- tc_right (total/remaining time)
- ne = new_element("tc_right", "button")
-
- ne.visible = (mp.get_property_number("duration", 0) > 0)
- ne.content = function ()
- if (state.rightTC_trem) then
- if state.tc_ms then
- return ("-"..mp.get_property_osd("playtime-remaining/full"))
- else
- return ("-"..mp.get_property_osd("playtime-remaining"))
- end
- else
- if state.tc_ms then
- return (mp.get_property_osd("duration/full"))
- else
- return (mp.get_property_osd("duration"))
- end
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () state.rightTC_trem = not state.rightTC_trem end
-
- -- cache
- ne = new_element("cache", "button")
-
- ne.content = function ()
- local cache_state = state.cache_state
- if not (cache_state and cache_state["seekable-ranges"] and
- #cache_state["seekable-ranges"] > 0) then
- -- probably not a network stream
- return ""
- end
- local dmx_cache = cache_state and cache_state["cache-duration"]
- local thresh = math.min(state.dmx_cache * 0.05, 5) -- 5% or 5s
- if dmx_cache and math.abs(dmx_cache - state.dmx_cache) >= thresh then
- state.dmx_cache = dmx_cache
- else
- dmx_cache = state.dmx_cache
- end
- local min = math.floor(dmx_cache / 60)
- local sec = dmx_cache % 60
- return "Cache: " .. (min > 0 and
- string.format("%sm%02.0fs", min, sec) or
- string.format("%3.0fs", dmx_cache))
- end
-
- -- volume
- ne = new_element("volume", "button")
-
- ne.content = function()
- local volume = mp.get_property_number("volume", 0)
- local mute = mp.get_property_native("mute")
- local volicon = {"\238\132\139", "\238\132\140",
- "\238\132\141", "\238\132\142"}
- if volume == 0 or mute then
- return "\238\132\138"
- else
- return volicon[math.min(4,math.ceil(volume / (100/3)))]
- end
- end
- ne.eventresponder["mbtn_left_up"] =
- function () mp.commandv("cycle", "mute") end
-
- ne.eventresponder["wheel_up_press"] =
- function () mp.commandv("osd-auto", "add", "volume", 5) end
- ne.eventresponder["wheel_down_press"] =
- function () mp.commandv("osd-auto", "add", "volume", -5) end
-
-
- -- load layout
- layouts[user_opts.layout]()
-
- -- load window controls
- if window_controls_enabled() then
- window_controls(user_opts.layout == "topbar")
- end
-
- --do something with the elements
- prepare_elements()
-
- update_margins()
-end
-
-function reset_margins()
- if state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- mp.set_property_number(opt[2], 0.0)
- end
- state.using_video_margins = false
- end
-end
-
-function update_margins()
- local margins = osc_param.video_margins
-
- -- Don't use margins if it's visible only temporarily.
- if (not state.osc_visible) or (get_hidetimeout() >= 0) then
- margins = {l = 0, r = 0, t = 0, b = 0}
- end
-
- if user_opts.boxvideo then
- -- check whether any margin option has a non-default value
- local margins_used = false
-
- if not state.using_video_margins then
- for _, opt in ipairs(margins_opts) do
- if mp.get_property_number(opt[2], 0.0) ~= 0.0 then
- margins_used = true
- end
- end
- end
-
- if not margins_used then
- for _, opt in ipairs(margins_opts) do
- local v = margins[opt[1]]
- if (v ~= 0) or state.using_video_margins then
- mp.set_property_number(opt[2], v)
- state.using_video_margins = true
- end
- end
- end
- else
- reset_margins()
- end
-
- utils.shared_script_property_set("osc-margins",
- string.format("%f,%f,%f,%f", margins.l, margins.r, margins.t, margins.b))
-end
-
-function shutdown()
- reset_margins()
- utils.shared_script_property_set("osc-margins", nil)
-end
-
---
--- Other important stuff
---
-
-
-function show_osc()
- -- show when disabled can happen (e.g. mouse_move) due to async/delayed unbinding
- if not state.enabled then return end
-
- msg.trace("show_osc")
- --remember last time of invocation (mouse move)
- state.showtime = mp.get_time()
-
- osc_visible(true)
-
- if (user_opts.fadeduration > 0) then
- state.anitype = nil
- end
-end
-
-function hide_osc()
- msg.trace("hide_osc")
- if not state.enabled then
- -- typically hide happens at render() from tick(), but now tick() is
- -- no-op and won't render again to remove the osc, so do that manually.
- state.osc_visible = false
- render_wipe()
- elseif (user_opts.fadeduration > 0) then
- if not(state.osc_visible == false) then
- state.anitype = "out"
- request_tick()
- end
- else
- osc_visible(false)
- end
-end
-
-function osc_visible(visible)
- if state.osc_visible ~= visible then
- state.osc_visible = visible
- update_margins()
- end
- request_tick()
-end
-
-function pause_state(name, enabled)
- state.paused = enabled
- request_tick()
-end
-
-function cache_state(name, st)
- state.cache_state = st
- request_tick()
-end
-
--- Request that tick() is called (which typically re-renders the OSC).
--- The tick is then either executed immediately, or rate-limited if it was
--- called a small time ago.
-function request_tick()
- if state.tick_timer == nil then
- state.tick_timer = mp.add_timeout(0, tick)
- end
-
- if not state.tick_timer:is_enabled() then
- local now = mp.get_time()
- local timeout = tick_delay - (now - state.tick_last_time)
- if timeout < 0 then
- timeout = 0
- end
- state.tick_timer.timeout = timeout
- state.tick_timer:resume()
- end
-end
-
-function mouse_leave()
- if get_hidetimeout() >= 0 then
- hide_osc()
- end
- -- reset mouse position
- state.last_mouseX, state.last_mouseY = nil, nil
- state.mouse_in_window = false
-end
-
-function request_init()
- state.initREQ = true
- request_tick()
-end
-
--- Like request_init(), but also request an immediate update
-function request_init_resize()
- request_init()
- -- ensure immediate update
- state.tick_timer:kill()
- state.tick_timer.timeout = 0
- state.tick_timer:resume()
-end
-
-function render_wipe()
- msg.trace("render_wipe()")
- state.osd:remove()
-end
-
-function render()
- msg.trace("rendering")
- local current_screen_sizeX, current_screen_sizeY, aspect = mp.get_osd_size()
- local mouseX, mouseY = get_virt_mouse_pos()
- local now = mp.get_time()
-
- -- check if display changed, if so request reinit
- if not (state.mp_screen_sizeX == current_screen_sizeX
- and state.mp_screen_sizeY == current_screen_sizeY) then
-
- request_init_resize()
-
- state.mp_screen_sizeX = current_screen_sizeX
- state.mp_screen_sizeY = current_screen_sizeY
- end
-
- -- init management
- if state.initREQ then
- osc_init()
- state.initREQ = false
-
- -- store initial mouse position
- if (state.last_mouseX == nil or state.last_mouseY == nil)
- and not (mouseX == nil or mouseY == nil) then
-
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
- end
- end
-
-
- -- fade animation
- if not(state.anitype == nil) then
-
- if (state.anistart == nil) then
- state.anistart = now
- end
-
- if (now < state.anistart + (user_opts.fadeduration/1000)) then
-
- if (state.anitype == "in") then --fade in
- osc_visible(true)
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 255, 0, now)
- elseif (state.anitype == "out") then --fade out
- state.animation = scale_value(state.anistart,
- (state.anistart + (user_opts.fadeduration/1000)),
- 0, 255, now)
- end
-
- else
- if (state.anitype == "out") then
- osc_visible(false)
- end
- state.anistart = nil
- state.animation = nil
- state.anitype = nil
- end
- else
- state.anistart = nil
- state.animation = nil
- state.anitype = nil
- end
-
- --mouse show/hide area
- for k,cords in pairs(osc_param.areas["showhide"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide")
- end
- if osc_param.areas["showhide_wc"] then
- for k,cords in pairs(osc_param.areas["showhide_wc"]) do
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "showhide_wc")
- end
- else
- set_virt_mouse_area(0, 0, 0, 0, "showhide_wc")
- end
- do_enable_keybindings()
-
- --mouse input area
- local mouse_over_osc = false
-
- for _,cords in ipairs(osc_param.areas["input"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "input")
- end
- if state.osc_visible ~= state.input_enabled then
- if state.osc_visible then
- mp.enable_key_bindings("input")
- else
- mp.disable_key_bindings("input")
- end
- state.input_enabled = state.osc_visible
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
-
- if osc_param.areas["window-controls"] then
- for _,cords in ipairs(osc_param.areas["window-controls"]) do
- if state.osc_visible then -- activate only when OSC is actually visible
- set_virt_mouse_area(cords.x1, cords.y1, cords.x2, cords.y2, "window-controls")
- mp.enable_key_bindings("window-controls")
- else
- mp.disable_key_bindings("window-controls")
- end
-
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- if osc_param.areas["window-controls-title"] then
- for _,cords in ipairs(osc_param.areas["window-controls-title"]) do
- if (mouse_hit_coords(cords.x1, cords.y1, cords.x2, cords.y2)) then
- mouse_over_osc = true
- end
- end
- end
-
- -- autohide
- if not (state.showtime == nil) and (get_hidetimeout() >= 0) then
- local timeout = state.showtime + (get_hidetimeout()/1000) - now
- if timeout <= 0 then
- if (state.active_element == nil) and not (mouse_over_osc) then
- hide_osc()
- end
- else
- -- the timer is only used to recheck the state and to possibly run
- -- the code above again
- if not state.hide_timer then
- state.hide_timer = mp.add_timeout(0, tick)
- end
- state.hide_timer.timeout = timeout
- -- re-arm
- state.hide_timer:kill()
- state.hide_timer:resume()
- end
- end
-
-
- -- actual rendering
- local ass = assdraw.ass_new()
-
- -- Messages
- render_message(ass)
-
- -- mpv_thumbnail_script.lua --
- local thumb_was_visible = osc_thumb_state.visible
- osc_thumb_state.visible = false
- -- // mpv_thumbnail_script.lua // --
-
- -- actual OSC
- if state.osc_visible then
- render_elements(ass)
- end
-
- -- mpv_thumbnail_script.lua --
- if not osc_thumb_state.visible and thumb_was_visible then
- hide_thumbnail()
- end
- -- // mpv_thumbnail_script.lua // --
-
- -- submit
- set_osd(osc_param.playresy * osc_param.display_aspect,
- osc_param.playresy, ass.text)
-end
-
---
--- Eventhandling
---
-
-local function element_has_action(element, action)
- return element and element.eventresponder and
- element.eventresponder[action]
-end
-
-function process_event(source, what)
- local action = string.format("%s%s", source,
- what and ("_" .. what) or "")
-
- if what == "down" or what == "press" then
-
- for n = 1, #elements do
-
- if mouse_hit(elements[n]) and
- elements[n].eventresponder and
- (elements[n].eventresponder[source .. "_up"] or
- elements[n].eventresponder[action]) then
-
- if what == "down" then
- state.active_element = n
- state.active_event_source = source
- end
- -- fire the down or press event if the element has one
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
-
- end
- end
-
- elseif what == "up" then
-
- if elements[state.active_element] then
- local n = state.active_element
-
- if n == 0 then
- --click on background (does not work)
- elseif element_has_action(elements[n], action) and
- mouse_hit(elements[n]) then
-
- elements[n].eventresponder[action](elements[n])
- end
-
- --reset active element
- if element_has_action(elements[n], "reset") then
- elements[n].eventresponder["reset"](elements[n])
- end
-
- end
- state.active_element = nil
- state.mouse_down_counter = 0
-
- elseif source == "mouse_move" then
-
- state.mouse_in_window = true
-
- local mouseX, mouseY = get_virt_mouse_pos()
- if (user_opts.minmousemove == 0) or
- (not ((state.last_mouseX == nil) or (state.last_mouseY == nil)) and
- ((math.abs(mouseX - state.last_mouseX) >= user_opts.minmousemove)
- or (math.abs(mouseY - state.last_mouseY) >= user_opts.minmousemove)
- )
- ) then
- show_osc()
- end
- state.last_mouseX, state.last_mouseY = mouseX, mouseY
-
- local n = state.active_element
- if element_has_action(elements[n], action) then
- elements[n].eventresponder[action](elements[n])
- end
- request_tick()
- end
-end
-
-
-local logo_lines = {
- -- White border
- "{\\c&HE5E5E5&\\p6}m 895 10 b 401 10 0 410 0 905 0 1399 401 1800 895 1800 1390 1800 1790 1399 1790 905 1790 410 1390 10 895 10 {\\p0}",
- -- Purple fill
- "{\\c&H682167&\\p6}m 925 42 b 463 42 87 418 87 880 87 1343 463 1718 925 1718 1388 1718 1763 1343 1763 880 1763 418 1388 42 925 42{\\p0}",
- -- Darker fill
- "{\\c&H430142&\\p6}m 1605 828 b 1605 1175 1324 1456 977 1456 631 1456 349 1175 349 828 349 482 631 200 977 200 1324 200 1605 482 1605 828{\\p0}",
- -- White fill
- "{\\c&HDDDBDD&\\p6}m 1296 910 b 1296 1131 1117 1310 897 1310 676 1310 497 1131 497 910 497 689 676 511 897 511 1117 511 1296 689 1296 910{\\p0}",
- -- Triangle
- "{\\c&H691F69&\\p6}m 762 1113 l 762 708 b 881 776 1000 843 1119 911 1000 978 881 1046 762 1113{\\p0}",
-}
-
-local santa_hat_lines = {
- -- Pompoms
- "{\\c&HC0C0C0&\\p6}m 500 -323 b 491 -322 481 -318 475 -311 465 -312 456 -319 446 -318 434 -314 427 -304 417 -297 410 -290 404 -282 395 -278 390 -274 387 -267 381 -265 377 -261 379 -254 384 -253 397 -244 409 -232 425 -228 437 -228 446 -218 457 -217 462 -216 466 -213 468 -209 471 -205 477 -203 482 -206 491 -211 499 -217 508 -222 532 -235 556 -249 576 -267 584 -272 584 -284 578 -290 569 -305 550 -312 533 -309 523 -310 515 -316 507 -321 505 -323 503 -323 500 -323{\\p0}",
- "{\\c&HE0E0E0&\\p6}m 315 -260 b 286 -258 259 -240 246 -215 235 -210 222 -215 211 -211 204 -188 177 -176 172 -151 170 -139 163 -128 154 -121 143 -103 141 -81 143 -60 139 -46 125 -34 129 -17 132 -1 134 16 142 30 145 56 161 80 181 96 196 114 210 133 231 144 266 153 303 138 328 115 373 79 401 28 423 -24 446 -73 465 -123 483 -174 487 -199 467 -225 442 -227 421 -232 402 -242 384 -254 364 -259 342 -250 322 -260 320 -260 317 -261 315 -260{\\p0}",
- -- Main cap
- "{\\c&H0000F0&\\p6}m 1151 -523 b 1016 -516 891 -458 769 -406 693 -369 624 -319 561 -262 526 -252 465 -235 479 -187 502 -147 551 -135 588 -111 1115 165 1379 232 1909 761 1926 800 1952 834 1987 858 2020 883 2053 912 2065 952 2088 1000 2146 962 2139 919 2162 836 2156 747 2143 662 2131 615 2116 567 2122 517 2120 410 2090 306 2089 199 2092 147 2071 99 2034 64 1987 5 1928 -41 1869 -86 1777 -157 1712 -256 1629 -337 1578 -389 1521 -436 1461 -476 1407 -509 1343 -507 1284 -515 1240 -519 1195 -521 1151 -523{\\p0}",
- -- Cap shadow
- "{\\c&H0000AA&\\p6}m 1657 248 b 1658 254 1659 261 1660 267 1669 276 1680 284 1689 293 1695 302 1700 311 1707 320 1716 325 1726 330 1735 335 1744 347 1752 360 1761 371 1753 352 1754 331 1753 311 1751 237 1751 163 1751 90 1752 64 1752 37 1767 14 1778 -3 1785 -24 1786 -45 1786 -60 1786 -77 1774 -87 1760 -96 1750 -78 1751 -65 1748 -37 1750 -8 1750 20 1734 78 1715 134 1699 192 1694 211 1689 231 1676 246 1671 251 1661 255 1657 248 m 1909 541 b 1914 542 1922 549 1917 539 1919 520 1921 502 1919 483 1918 458 1917 433 1915 407 1930 373 1942 338 1947 301 1952 270 1954 238 1951 207 1946 214 1947 229 1945 239 1939 278 1936 318 1924 356 1923 362 1913 382 1912 364 1906 301 1904 237 1891 175 1887 150 1892 126 1892 101 1892 68 1893 35 1888 2 1884 -9 1871 -20 1859 -14 1851 -6 1854 9 1854 20 1855 58 1864 95 1873 132 1883 179 1894 225 1899 273 1908 362 1910 451 1909 541{\\p0}",
- -- Brim and tip pompom
- "{\\c&HF8F8F8&\\p6}m 626 -191 b 565 -155 486 -196 428 -151 387 -115 327 -101 304 -47 273 2 267 59 249 113 219 157 217 213 215 265 217 309 260 302 285 283 373 264 465 264 555 257 608 252 655 292 709 287 759 294 816 276 863 298 903 340 972 324 1012 367 1061 394 1125 382 1167 424 1213 462 1268 482 1322 506 1385 546 1427 610 1479 662 1510 690 1534 725 1566 752 1611 796 1664 830 1703 880 1740 918 1747 986 1805 1005 1863 991 1897 932 1916 880 1914 823 1945 777 1961 725 1979 673 1957 622 1938 575 1912 534 1862 515 1836 473 1790 417 1755 351 1697 305 1658 266 1633 216 1593 176 1574 138 1539 116 1497 110 1448 101 1402 77 1371 37 1346 -16 1295 15 1254 6 1211 -27 1170 -62 1121 -86 1072 -104 1027 -128 976 -133 914 -130 851 -137 794 -162 740 -181 679 -168 626 -191 m 2051 917 b 1971 932 1929 1017 1919 1091 1912 1149 1923 1214 1970 1254 2000 1279 2027 1314 2066 1325 2139 1338 2212 1295 2254 1238 2281 1203 2287 1158 2282 1116 2292 1061 2273 1006 2229 970 2206 941 2167 938 2138 918{\\p0}",
-}
-
--- called by mpv on every frame
-function tick()
- if (not state.enabled) then return end
-
- if (state.idle) then
-
- -- render idle message
- msg.trace("idle message")
- local icon_x, icon_y = 320 - 26, 140
- local line_prefix = ("{\\rDefault\\an7\\1a&H00&\\bord0\\shad0\\pos(%f,%f)}"):format(icon_x, icon_y)
-
- local ass = assdraw.ass_new()
- -- mpv logo
- for i, line in ipairs(logo_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
-
- -- Santa hat
- if is_december and not user_opts.greenandgrumpy then
- for i, line in ipairs(santa_hat_lines) do
- ass:new_event()
- ass:append(line_prefix .. line)
- end
- end
-
- ass:new_event()
- ass:pos(320, icon_y+65)
- ass:an(8)
- ass:append("Drop files or URLs to play here.")
- set_osd(640, 360, ass.text)
-
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- state.showhide_enabled = false
- end
-
-
- elseif (state.fullscreen and user_opts.showfullscreen)
- or (not state.fullscreen and user_opts.showwindowed) then
-
- -- render the OSC
- render()
- else
- -- Flush OSD
- set_osd(osc_param.playresy, osc_param.playresy, "")
- end
-
- state.tick_last_time = mp.get_time()
-
- if state.anitype ~= nil then
- request_tick()
- end
-end
-
-function do_enable_keybindings()
- if state.enabled then
- if not state.showhide_enabled then
- mp.enable_key_bindings("showhide", "allow-vo-dragging+allow-hide-cursor")
- mp.enable_key_bindings("showhide_wc", "allow-vo-dragging+allow-hide-cursor")
- end
- state.showhide_enabled = true
- end
-end
-
-function enable_osc(enable)
- state.enabled = enable
- if enable then
- do_enable_keybindings()
- else
- hide_osc() -- acts immediately when state.enabled == false
- if state.showhide_enabled then
- mp.disable_key_bindings("showhide")
- mp.disable_key_bindings("showhide_wc")
- end
- state.showhide_enabled = false
- end
-end
-
--- mpv_thumbnail_script.lua --
-
-local builtin_osc_enabled = mp.get_property_native('osc')
-if builtin_osc_enabled then
- local err = "You must disable the built-in OSC with osc=no in your configuration!"
- mp.osd_message(err, 5)
- msg.error(err)
-
- -- This may break, but since we can, let's try to just disable the builtin OSC.
- mp.set_property_native('osc', false)
-end
-
--- // mpv_thumbnail_script.lua // --
-
-
-validate_user_opts()
-
-mp.register_event("shutdown", shutdown)
-mp.register_event("start-file", request_init)
-mp.observe_property("track-list", nil, request_init)
-mp.observe_property("playlist", nil, request_init)
-
-mp.register_script_message("osc-message", show_message)
-mp.register_script_message("osc-chapterlist", function(dur)
- show_message(get_chapterlist(), dur)
-end)
-mp.register_script_message("osc-playlist", function(dur)
- show_message(get_playlist(), dur)
-end)
-mp.register_script_message("osc-tracklist", function(dur)
- local msg = {}
- for k,v in pairs(nicetypes) do
- table.insert(msg, get_tracklist(k))
- end
- show_message(table.concat(msg, '\n\n'), dur)
-end)
-
-mp.observe_property("fullscreen", "bool",
- function(name, val)
- state.fullscreen = val
- request_init_resize()
- end
-)
-mp.observe_property("border", "bool",
- function(name, val)
- state.border = val
- request_init_resize()
- end
-)
-mp.observe_property("window-maximized", "bool",
- function(name, val)
- state.maximized = val
- request_init_resize()
- end
-)
-mp.observe_property("idle-active", "bool",
- function(name, val)
- state.idle = val
- request_tick()
- end
-)
-mp.observe_property("pause", "bool", pause_state)
-mp.observe_property("demuxer-cache-state", "native", cache_state)
-mp.observe_property("vo-configured", "bool", function(name, val)
- request_tick()
-end)
-mp.observe_property("playback-time", "number", function(name, val)
- request_tick()
-end)
-mp.observe_property("osd-dimensions", "native", function(name, val)
- -- (we could use the value instead of re-querying it all the time, but then
- -- we might have to worry about property update ordering)
- request_init_resize()
-end)
-
--- mouse show/hide bindings
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide", "force")
-mp.set_key_bindings({
- {"mouse_move", function(e) process_event("mouse_move", nil) end},
- {"mouse_leave", mouse_leave},
-}, "showhide_wc", "force")
-do_enable_keybindings()
-
---mouse input bindings
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
- {"shift+mbtn_left", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"mbtn_right", function(e) process_event("mbtn_right", "up") end,
- function(e) process_event("mbtn_right", "down") end},
- -- alias to shift_mbtn_left for single-handed mouse use
- {"mbtn_mid", function(e) process_event("shift+mbtn_left", "up") end,
- function(e) process_event("shift+mbtn_left", "down") end},
- {"wheel_up", function(e) process_event("wheel_up", "press") end},
- {"wheel_down", function(e) process_event("wheel_down", "press") end},
- {"mbtn_left_dbl", "ignore"},
- {"shift+mbtn_left_dbl", "ignore"},
- {"mbtn_right_dbl", "ignore"},
-}, "input", "force")
-mp.enable_key_bindings("input")
-
-mp.set_key_bindings({
- {"mbtn_left", function(e) process_event("mbtn_left", "up") end,
- function(e) process_event("mbtn_left", "down") end},
-}, "window-controls", "force")
-mp.enable_key_bindings("window-controls")
-
-function get_hidetimeout()
- if user_opts.visibility == "always" then
- return -1 -- disable autohide
- end
- return user_opts.hidetimeout
-end
-
-function always_on(val)
- if state.enabled then
- if val then
- show_osc()
- else
- hide_osc()
- end
- end
-end
-
--- mode can be auto/always/never/cycle
--- the modes only affect internal variables and not stored on its own.
-function visibility_mode(mode, no_osd)
- if mode == "cycle" then
- if not state.enabled then
- mode = "auto"
- elseif user_opts.visibility ~= "always" then
- mode = "always"
- else
- mode = "never"
- end
- end
-
- if mode == "auto" then
- always_on(false)
- enable_osc(true)
- elseif mode == "always" then
- enable_osc(true)
- always_on(true)
- elseif mode == "never" then
- enable_osc(false)
- else
- msg.warn("Ignoring unknown visibility mode '" .. mode .. "'")
- return
- end
-
- user_opts.visibility = mode
-
- if not no_osd and tonumber(mp.get_property("osd-level")) >= 1 then
- mp.osd_message("OSC visibility: " .. mode)
- end
-
- -- Reset the input state on a mode change. The input state will be
- -- recalcuated on the next render cycle, except in 'never' mode where it
- -- will just stay disabled.
- mp.disable_key_bindings("input")
- mp.disable_key_bindings("window-controls")
- state.input_enabled = false
-
- update_margins()
- request_tick()
-end
-
-visibility_mode(user_opts.visibility, true)
-mp.register_script_message("osc-visibility", visibility_mode)
-mp.add_key_binding(nil, "visibility", function() visibility_mode("cycle") end)
-
-set_virt_mouse_area(0, 0, 0, 0, "input")
-set_virt_mouse_area(0, 0, 0, 0, "window-controls")
diff --git a/script-modules/extended-menu.lua b/script-modules/extended-menu.lua
index 77c56e2..1b8f925 100644
--- a/script-modules/extended-menu.lua
+++ b/script-modules/extended-menu.lua
@@ -1,3 +1,5 @@
+-- https://github.com/Seme4eg/mpv-scripts/blob/master/script-modules/extended-menu.lua
+
local mp = require 'mp'
local utils = require 'mp.utils'
local assdraw = require 'mp.assdraw'
@@ -449,7 +451,7 @@ end
I was too lazy to list all modifications i've done to the script, but if u
rly need to see those - do diff with the original code
]]
- --
+--
-------------------------------------------------------------------------------
-- START ORIGINAL MPV CODE --
@@ -830,58 +832,58 @@ end
-- bindings and readline bindings.
function em:get_bindings()
local bindings = {
- { 'ctrl+[', function() self:set_active(false) end },
- { 'ctrl+g', function() self:set_active(false) end },
- { 'esc', function() self:set_active(false) end },
- { 'enter', function() self:handle_enter() end },
- { 'kp_enter', function() self:handle_enter() end },
- { 'ctrl+m', function() self:handle_enter() end },
- { 'bs', function() self:handle_backspace() end },
- { 'shift+bs', function() self:handle_backspace() end },
- { 'ctrl+h', function() self:handle_backspace() end },
- { 'del', function() self:handle_del() end },
- { 'shift+del', function() self:handle_del() end },
- { 'ins', function() self:handle_ins() end },
- { 'shift+ins', function() self:paste(false) end },
- { 'mbtn_mid', function() self:paste(false) end },
- { 'left', function() self:prev_char() end },
- { 'ctrl+b', function() self:prev_char() end },
- { 'right', function() self:next_char() end },
- { 'ctrl+f', function() self:next_char() end },
- { 'ctrl+k', function() self:change_selected_index(-1) end },
- { 'ctrl+p', function() self:change_selected_index(-1) end },
- { 'ctrl+j', function() self:change_selected_index(1) end },
- { 'ctrl+n', function() self:change_selected_index(1) end },
- { 'up', function() self:move_history(-1) end },
- { 'alt+p', function() self:move_history(-1) end },
- { 'wheel_up', function() self:move_history(-1) end },
- { 'down', function() self:move_history(1) end },
- { 'alt+n', function() self:move_history(1) end },
- { 'wheel_down', function() self:move_history(1) end },
- { 'wheel_left', function() end },
- { 'wheel_right', function() end },
- { 'ctrl+left', function() self:prev_word() end },
- { 'alt+b', function() self:prev_word() end },
- { 'ctrl+right', function() self:next_word() end },
- { 'alt+f', function() self:next_word() end },
- { 'ctrl+a', function() self:go_home() end },
- { 'home', function() self:go_home() end },
- { 'ctrl+e', function() self:go_end() end },
- { 'end', function() self:go_end() end },
- { 'ctrl+shift+f',function() self:handle_pgdown() end },
- { 'ctrl+shift+b',function() self:handle_pgup() end },
- { 'pgdwn', function() self:handle_pgdown() end },
- { 'pgup', function() self:handle_pgup() end },
- { 'ctrl+c', function() self:clear() end },
- { 'ctrl+d', function() self:handle_del() end },
- { 'ctrl+u', function() self:del_to_start() end },
- { 'ctrl+v', function() self:paste(true) end },
- { 'meta+v', function() self:paste(true) end },
- { 'ctrl+bs', function() self:del_word() end },
- { 'ctrl+w', function() self:del_word() end },
- { 'ctrl+del', function() self:del_next_word() end },
- { 'alt+d', function() self:del_next_word() end },
- { 'kp_dec', function() self:handle_char_input('.') end },
+ { 'ctrl+[', function() self:set_active(false) end },
+ { 'ctrl+g', function() self:set_active(false) end },
+ { 'esc', function() self:set_active(false) end },
+ { 'enter', function() self:handle_enter() end },
+ { 'kp_enter', function() self:handle_enter() end },
+ { 'ctrl+m', function() self:handle_enter() end },
+ { 'bs', function() self:handle_backspace() end },
+ { 'shift+bs', function() self:handle_backspace() end },
+ { 'ctrl+h', function() self:handle_backspace() end },
+ { 'del', function() self:handle_del() end },
+ { 'shift+del', function() self:handle_del() end },
+ { 'ins', function() self:handle_ins() end },
+ { 'shift+ins', function() self:paste(false) end },
+ { 'mbtn_mid', function() self:paste(false) end },
+ { 'left', function() self:prev_char() end },
+ { 'ctrl+b', function() self:prev_char() end },
+ { 'right', function() self:next_char() end },
+ { 'ctrl+f', function() self:next_char() end },
+ { 'ctrl+k', function() self:change_selected_index(-1) end },
+ { 'ctrl+p', function() self:change_selected_index(-1) end },
+ { 'ctrl+j', function() self:change_selected_index(1) end },
+ { 'ctrl+n', function() self:change_selected_index(1) end },
+ { 'up', function() self:move_history(-1) end },
+ { 'alt+p', function() self:move_history(-1) end },
+ { 'wheel_up', function() self:move_history(-1) end },
+ { 'down', function() self:move_history(1) end },
+ { 'alt+n', function() self:move_history(1) end },
+ { 'wheel_down', function() self:move_history(1) end },
+ { 'wheel_left', function() end },
+ { 'wheel_right', function() end },
+ { 'ctrl+left', function() self:prev_word() end },
+ { 'alt+b', function() self:prev_word() end },
+ { 'ctrl+right', function() self:next_word() end },
+ { 'alt+f', function() self:next_word() end },
+ { 'ctrl+a', function() self:go_home() end },
+ { 'home', function() self:go_home() end },
+ { 'ctrl+e', function() self:go_end() end },
+ { 'end', function() self:go_end() end },
+ { 'ctrl+shift+f', function() self:handle_pgdown() end },
+ { 'ctrl+shift+b', function() self:handle_pgup() end },
+ { 'pgdwn', function() self:handle_pgdown() end },
+ { 'pgup', function() self:handle_pgup() end },
+ { 'ctrl+c', function() self:clear() end },
+ { 'ctrl+d', function() self:handle_del() end },
+ { 'ctrl+u', function() self:del_to_start() end },
+ { 'ctrl+v', function() self:paste(true) end },
+ { 'meta+v', function() self:paste(true) end },
+ { 'ctrl+bs', function() self:del_word() end },
+ { 'ctrl+w', function() self:del_word() end },
+ { 'ctrl+del', function() self:del_next_word() end },
+ { 'alt+d', function() self:del_next_word() end },
+ { 'kp_dec', function() self:handle_char_input('.') end },
}
for i = 0, 9 do