Skip to content

Commit

Permalink
show playlist pos if limited
Browse files Browse the repository at this point in the history
  • Loading branch information
tsl0922 committed Feb 22, 2024
1 parent f788120 commit 442dd77
Showing 1 changed file with 30 additions and 7 deletions.
37 changes: 30 additions & 7 deletions src/lua/dyn_menu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -374,18 +374,41 @@ local function update_playlist_menu(menu)
local playlist = get('playlist', {})
if #playlist == 0 then return end

for id, item in ipairs(playlist) do
if o.max_playlist_items > 0 and id > o.max_playlist_items then break end
local pos = get('playlist-playing-pos', -1)
if pos == -1 then pos = get('playlist-pos', -1) end
local from, to = 1, #playlist
if o.max_playlist_items > 0 then
if pos + 1 > o.max_playlist_items then
local mid = math.floor(o.max_playlist_items / 2)
from, to = pos + 1 - mid, pos + (o.max_playlist_items - mid)
if from < 1 then from, to = 1, o.max_playlist_items end
if to > #playlist then from, to = #playlist - o.max_playlist_items + 1, #playlist end
else
from, to = 1, o.max_playlist_items
end
end

if from > 1 then
submenu[#submenu + 1] = {
title = build_playlist_title(item, id - 1),
cmd = string.format('playlist-play-index %d', id - 1),
state = item.current and { 'checked' } or {},
title = string.format('...\t[%d]', from - 1),
cmd = has_uosc and 'script-message-to uosc playlist' or 'ignore',
}
end

if o.max_playlist_items > 0 and #playlist > o.max_playlist_items then
for id = from, to do
local item = playlist[id]
if item then
submenu[#submenu + 1] = {
title = build_playlist_title(item, id - 1),
cmd = string.format('playlist-play-index %d', id - 1),
state = (item.playing or item.current) and { 'checked' } or {},
}
end
end

if to < #playlist then
submenu[#submenu + 1] = {
title = string.format('...\t[%d]', #playlist - o.max_playlist_items),
title = string.format('...\t[%d]', #playlist - to),
cmd = has_uosc and 'script-message-to uosc playlist' or 'ignore',
}
end
Expand Down

0 comments on commit 442dd77

Please sign in to comment.