Overhaul jumping to song in playlist editor to clearly show search order

master
Andrzej Rybczak 9 years ago
parent 743290cf0a
commit b0121227e9
  1. 97
      src/screens/playlist_editor.cpp
  2. 1
      src/screens/playlist_editor.h

@ -482,72 +482,61 @@ void PlaylistEditor::locatePlaylist(const MPD::Playlist &playlist)
} }
} }
void PlaylistEditor::gotoSong(size_t playlist_index, size_t song_index)
{
Playlists.highlight(playlist_index);
requestContentsUpdate();
update();
Content.highlight(song_index);
if (isActiveWindow(Playlists))
nextColumn();
else
Playlists.refresh();
}
void PlaylistEditor::locateSong(const MPD::Song &s) void PlaylistEditor::locateSong(const MPD::Song &s)
{ {
if (Playlists.empty())
return;
Content.clearFilter(); Content.clearFilter();
Playlists.clearFilter(); Playlists.clearFilter();
if (!Content.empty()) auto locate_song_in_current_playlist = [this, &s](auto front, auto back) {
{ if (!Content.empty())
auto song_it = std::find(Content.currentV() + 1, Content.endV(), s);
if (song_it != Content.endV())
{ {
Content.highlight(song_it - Content.beginV()); auto it = std::find(front, back, s);
nextColumn(); if (it != back)
return;
}
}
if (!Playlists.empty())
{
Statusbar::print("Jumping to song...");
auto locate_and_switch_playlist = [this, &s](auto pl_it) -> bool {
if (auto song_index = GetSongIndexInPlaylist(*pl_it, s))
{ {
this->gotoSong(pl_it - Playlists.beginV(), *song_index); Content.highlight(it - Content.beginV());
nextColumn();
return true; return true;
} }
return false; }
}; return false;
};
auto begin = Playlists.beginV(), end = Playlists.endV(); auto locate_song_in_playlists = [this, &s](auto front, auto back) {
auto current_successor = ++Playlists.currentV(); for (auto it = front; it != back; ++it)
{
if (auto song_index = GetSongIndexInPlaylist(*it, s))
{
Playlists.highlight(it - Playlists.beginV());
Playlists.refresh();
for (auto pl_it = current_successor; pl_it != end; ++pl_it) requestContentsUpdate();
if (locate_and_switch_playlist(pl_it)) update();
return; Content.highlight(*song_index);
for (auto pl_it = begin; pl_it != Playlists.currentV(); ++pl_it) nextColumn();
if (locate_and_switch_playlist(pl_it))
return;
}
if (!Content.empty()) return true;
{ }
auto song_it = std::find(Content.beginV(), Content.currentV(), s);
if (song_it != Content.currentV())
{
Content.highlight(song_it - Content.beginV());
nextColumn();
return;
} }
} return false;
};
// If the currently highlighted song is what we are looking for, don't show error
if (Content.currentV() == Content.endV() || *Content.currentV() != s) Statusbar::print("Jumping to song...");
Statusbar::print("Song is not from playlists");
if (locate_song_in_current_playlist(Content.currentV() + 1, Content.endV()))
return;
if (locate_song_in_playlists(Playlists.currentV() + 1, Playlists.endV()))
return;
if (locate_song_in_playlists(Playlists.beginV(), Playlists.currentV()))
return;
if (locate_song_in_current_playlist(Content.beginV(), Content.currentV()))
return;
// Highlighted song was skipped, so if that's the one we're looking for, we're
// good.
if (Content.empty() || *Content.currentV() != s)
Statusbar::print("Song was not found in playlists");
} }
namespace { namespace {

@ -80,7 +80,6 @@ struct PlaylistEditor: Screen<NC::Window *>, Filterable, HasColumns, HasSongs, S
void locatePlaylist(const MPD::Playlist &playlist); void locatePlaylist(const MPD::Playlist &playlist);
void locateSong(const MPD::Song &s); void locateSong(const MPD::Song &s);
void gotoSong(size_t playlist_index, size_t song_index);
NC::Menu<MPD::Playlist> Playlists; NC::Menu<MPD::Playlist> Playlists;
SongMenu Content; SongMenu Content;

Loading…
Cancel
Save