699 lines
20 KiB
C++
699 lines
20 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2008-2012 by Andrzej Rybczak *
|
|
* electricityispower@gmail.com *
|
|
* *
|
|
* 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 2 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, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
***************************************************************************/
|
|
|
|
#include <cstring>
|
|
#include <sys/time.h>
|
|
|
|
#include <iostream>
|
|
#include <stdexcept>
|
|
|
|
#include "browser.h"
|
|
#include "charset.h"
|
|
#include "global.h"
|
|
#include "helpers.h"
|
|
#include "lyrics.h"
|
|
#include "media_library.h"
|
|
#include "outputs.h"
|
|
#include "playlist.h"
|
|
#include "playlist_editor.h"
|
|
#include "search_engine.h"
|
|
#include "sel_items_adder.h"
|
|
#include "settings.h"
|
|
#include "status.h"
|
|
#include "tag_editor.h"
|
|
#include "visualizer.h"
|
|
|
|
using Global::myScreen;
|
|
using Global::myLockedScreen;
|
|
using Global::myInactiveScreen;
|
|
|
|
using Global::wFooter;
|
|
using Global::wHeader;
|
|
|
|
using Global::Timer;
|
|
using Global::VolumeState;
|
|
|
|
namespace
|
|
{
|
|
time_t time_of_statusbar_lock;
|
|
int lock_statusbar_delay = -1;
|
|
|
|
bool block_statusbar_update = 0;
|
|
bool block_progressbar_update = 0;
|
|
bool allow_statusbar_unlock = 1;
|
|
}
|
|
|
|
#ifndef USE_PDCURSES
|
|
void WindowTitle(const std::string &status)
|
|
{
|
|
if (strcmp(getenv("TERM"), "linux") && Config.set_window_title)
|
|
std::cout << "\033]0;" << status << "\7";
|
|
}
|
|
#endif // !USE_PDCURSES
|
|
|
|
void StatusbarMPDCallback()
|
|
{
|
|
Mpd.OrderDataFetching();
|
|
}
|
|
|
|
void StatusbarGetStringHelper(const std::wstring &)
|
|
{
|
|
TraceMpdStatus();
|
|
}
|
|
|
|
void StatusbarApplyFilterImmediately(Filterable *f, const std::wstring &ws)
|
|
{
|
|
static std::wstring cmp;
|
|
if (cmp != ws)
|
|
{
|
|
cmp = ws;
|
|
f->applyFilter(ToString(cmp));
|
|
myScreen->RefreshWindow();
|
|
}
|
|
TraceMpdStatus();
|
|
}
|
|
|
|
void LockProgressbar()
|
|
{
|
|
block_progressbar_update = 1;
|
|
}
|
|
|
|
void UnlockProgressbar()
|
|
{
|
|
block_progressbar_update = 0;
|
|
}
|
|
|
|
void LockStatusbar()
|
|
{
|
|
if (Config.statusbar_visibility)
|
|
block_statusbar_update = 1;
|
|
else
|
|
block_progressbar_update = 1;
|
|
allow_statusbar_unlock = 0;
|
|
}
|
|
|
|
void UnlockStatusbar()
|
|
{
|
|
allow_statusbar_unlock = 1;
|
|
if (lock_statusbar_delay < 0)
|
|
{
|
|
if (Config.statusbar_visibility)
|
|
block_statusbar_update = 0;
|
|
else
|
|
block_progressbar_update = 0;
|
|
}
|
|
if (!Mpd.isPlaying())
|
|
{
|
|
if (Config.new_design)
|
|
DrawProgressbar(Mpd.GetElapsedTime(), Mpd.GetTotalTime());
|
|
else
|
|
Statusbar() << wclrtoeol;
|
|
wFooter->Refresh();
|
|
}
|
|
}
|
|
|
|
void TraceMpdStatus()
|
|
{
|
|
static timeval past = { 0, 0 };
|
|
|
|
gettimeofday(&Timer, 0);
|
|
if (Mpd.Connected() && (Mpd.SupportsIdle() || Timer.tv_sec > past.tv_sec))
|
|
{
|
|
if (!Mpd.SupportsIdle())
|
|
{
|
|
gettimeofday(&past, 0);
|
|
}
|
|
else if (Config.display_bitrate && Global::Timer.tv_sec > past.tv_sec && Mpd.isPlaying())
|
|
{
|
|
// ncmpcpp doesn't fetch status constantly if mpd supports
|
|
// idle mode so current song's bitrate is never updated.
|
|
// we need to force ncmpcpp to fetch it.
|
|
Mpd.OrderDataFetching();
|
|
gettimeofday(&past, 0);
|
|
}
|
|
Mpd.UpdateStatus();
|
|
}
|
|
|
|
ApplyToVisibleWindows(&BasicScreen::Update);
|
|
|
|
if (isVisible(myPlaylist) && myPlaylist->ActiveWindow() == myPlaylist->Items
|
|
&& Timer.tv_sec == myPlaylist->Timer()+Config.playlist_disable_highlight_delay
|
|
&& myPlaylist->Items->isHighlighted()
|
|
&& Config.playlist_disable_highlight_delay)
|
|
{
|
|
myPlaylist->Items->Highlighting(0);
|
|
myPlaylist->Items->Refresh();
|
|
}
|
|
|
|
if (lock_statusbar_delay > 0)
|
|
{
|
|
if (Timer.tv_sec >= time_of_statusbar_lock+lock_statusbar_delay)
|
|
{
|
|
lock_statusbar_delay = -1;
|
|
|
|
if (Config.statusbar_visibility)
|
|
block_statusbar_update = !allow_statusbar_unlock;
|
|
else
|
|
block_progressbar_update = !allow_statusbar_unlock;
|
|
|
|
if (Mpd.GetState() != MPD::psPlay && !block_statusbar_update && !block_progressbar_update)
|
|
{
|
|
if (Config.new_design)
|
|
DrawProgressbar(Mpd.GetElapsedTime(), Mpd.GetTotalTime());
|
|
else
|
|
Statusbar() << wclrtoeol;
|
|
wFooter->Refresh();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void NcmpcppErrorCallback(MPD::Connection *, int errorid, const char *msg, void *)
|
|
{
|
|
// for errorid:
|
|
// - 0-7 bits define MPD_ERROR_* codes, compare them with (0xff & errorid)
|
|
// - 8-15 bits define MPD_SERVER_ERROR_* codes, compare them with (errorid >> 8)
|
|
if ((errorid >> 8) == MPD_SERVER_ERROR_PERMISSION)
|
|
{
|
|
wFooter->SetGetStringHelper(0);
|
|
Statusbar() << "Password: ";
|
|
Mpd.SetPassword(wFooter->GetString(-1, 0, 1));
|
|
if (Mpd.SendPassword())
|
|
ShowMessage("Password accepted");
|
|
wFooter->SetGetStringHelper(StatusbarGetStringHelper);
|
|
}
|
|
else if ((errorid >> 8) == MPD_SERVER_ERROR_NO_EXIST && myScreen == myBrowser)
|
|
{
|
|
myBrowser->GetDirectory(getParentDirectory(myBrowser->CurrentDir()));
|
|
myBrowser->Refresh();
|
|
}
|
|
else
|
|
ShowMessage("MPD: %s", msg);
|
|
}
|
|
|
|
void NcmpcppStatusChanged(MPD::Connection *, MPD::StatusChanges changed, void *)
|
|
{
|
|
static size_t playing_song_scroll_begin = 0;
|
|
static size_t first_line_scroll_begin = 0;
|
|
static size_t second_line_scroll_begin = 0;
|
|
static std::string player_state;
|
|
static MPD::Song np;
|
|
|
|
int sx = wFooter->X();
|
|
int sy = wFooter->Y();
|
|
|
|
myPlaylist->NowPlaying = Mpd.GetCurrentlyPlayingSongPos();
|
|
|
|
if (changed.Playlist)
|
|
{
|
|
np = Mpd.GetCurrentlyPlayingSong();
|
|
if (!np.empty())
|
|
WindowTitle(np.toString(Config.song_window_title_format));
|
|
|
|
bool is_filtered = myPlaylist->Items->isFiltered();
|
|
myPlaylist->Items->ShowAll();
|
|
|
|
size_t playlist_length = Mpd.GetPlaylistLength();
|
|
if (playlist_length < myPlaylist->Items->Size())
|
|
myPlaylist->Items->ResizeList(playlist_length);
|
|
|
|
Mpd.GetPlaylistChanges(Mpd.GetOldPlaylistID(), [](MPD::Song &&s) {
|
|
int pos = s.getPosition();
|
|
if (pos < int(myPlaylist->Items->Size()))
|
|
{
|
|
// if song's already in playlist, replace it with a new one
|
|
myPlaylist->Items->at(pos).value() = s;
|
|
}
|
|
else
|
|
{
|
|
// otherwise just add it to playlist
|
|
myPlaylist->Items->AddItem(s);
|
|
}
|
|
});
|
|
|
|
if (is_filtered)
|
|
{
|
|
myPlaylist->applyFilter(myPlaylist->currentFilter());
|
|
if (myPlaylist->Items->Empty())
|
|
myPlaylist->Items->ShowAll();
|
|
}
|
|
|
|
Playlist::ReloadTotalLength = true;
|
|
Playlist::ReloadRemaining = true;
|
|
|
|
if (myPlaylist->Items->Empty())
|
|
{
|
|
myPlaylist->Items->Reset();
|
|
myPlaylist->Items->Window::Clear();
|
|
}
|
|
|
|
if (isVisible(myBrowser))
|
|
{
|
|
myBrowser->UpdateItemList();
|
|
}
|
|
else if (isVisible(mySearcher))
|
|
{
|
|
mySearcher->UpdateFoundList();
|
|
}
|
|
else if (isVisible(myLibrary))
|
|
{
|
|
UpdateSongList(myLibrary->Songs);
|
|
}
|
|
else if (isVisible(myPlaylistEditor))
|
|
{
|
|
UpdateSongList(myPlaylistEditor->Content);
|
|
}
|
|
}
|
|
if (changed.Database)
|
|
{
|
|
if (myBrowser->Main())
|
|
{
|
|
if (isVisible(myBrowser))
|
|
myBrowser->GetDirectory(myBrowser->CurrentDir());
|
|
else
|
|
myBrowser->Main()->Clear();
|
|
}
|
|
# ifdef HAVE_TAGLIB_H
|
|
if (myTagEditor->Main())
|
|
{
|
|
myTagEditor->Albums->Clear();
|
|
myTagEditor->Dirs->Clear();
|
|
}
|
|
# endif // HAVE_TAGLIB_H
|
|
if (myLibrary->Main())
|
|
{
|
|
if (myLibrary->Columns() == 2)
|
|
myLibrary->Albums->Clear();
|
|
else
|
|
myLibrary->Artists->Clear();
|
|
}
|
|
if (myPlaylistEditor->Main())
|
|
myPlaylistEditor->Content->Clear();
|
|
changed.DBUpdating = 1;
|
|
}
|
|
if (changed.PlayerState)
|
|
{
|
|
MPD::PlayerState state = Mpd.GetState();
|
|
switch (state)
|
|
{
|
|
case MPD::psUnknown:
|
|
{
|
|
player_state = "[unknown]";
|
|
break;
|
|
}
|
|
case MPD::psPlay:
|
|
{
|
|
if (!np.empty())
|
|
WindowTitle(np.toString(Config.song_window_title_format));
|
|
player_state = Config.new_design ? "[playing]" : "Playing: ";
|
|
Playlist::ReloadRemaining = true;
|
|
if (Mpd.GetOldState() == MPD::psStop) // show track info in status immediately
|
|
changed.ElapsedTime = 1;
|
|
break;
|
|
}
|
|
case MPD::psPause:
|
|
{
|
|
player_state = Config.new_design ? "[paused] " : "[Paused] ";
|
|
break;
|
|
}
|
|
case MPD::psStop:
|
|
{
|
|
WindowTitle("ncmpcpp ver. "VERSION);
|
|
if (!block_progressbar_update)
|
|
DrawProgressbar(0, 0);
|
|
Playlist::ReloadRemaining = true;
|
|
myPlaylist->NowPlaying = -1;
|
|
if (Config.new_design)
|
|
{
|
|
*wHeader << XY(0, 0) << wclrtoeol << XY(0, 1) << wclrtoeol;
|
|
player_state = "[stopped]";
|
|
changed.Volume = 1;
|
|
changed.StatusFlags = 1;
|
|
}
|
|
else
|
|
player_state.clear();
|
|
# ifdef ENABLE_VISUALIZER
|
|
if (isVisible(myVisualizer))
|
|
myVisualizer->Main()->Clear();
|
|
# endif // ENABLE_VISUALIZER
|
|
break;
|
|
}
|
|
}
|
|
# ifdef ENABLE_VISUALIZER
|
|
if (myScreen == myVisualizer)
|
|
wFooter->SetTimeout(state == MPD::psPlay ? Visualizer::WindowTimeout : ncmpcpp_window_timeout);
|
|
# endif // ENABLE_VISUALIZER
|
|
if (Config.new_design)
|
|
{
|
|
*wHeader << XY(0, 1) << fmtBold << player_state << fmtBoldEnd;
|
|
wHeader->Refresh();
|
|
}
|
|
else if (!block_statusbar_update && Config.statusbar_visibility)
|
|
{
|
|
*wFooter << XY(0, 1);
|
|
if (player_state.empty())
|
|
*wFooter << wclrtoeol;
|
|
else
|
|
*wFooter << fmtBold << player_state << fmtBoldEnd;
|
|
}
|
|
}
|
|
if (changed.SongID)
|
|
{
|
|
if (myPlaylist->isPlaying())
|
|
{
|
|
GNUC_UNUSED int res;
|
|
if (!Config.execute_on_song_change.empty())
|
|
res = system(Config.execute_on_song_change.c_str());
|
|
|
|
# ifdef HAVE_CURL_CURL_H
|
|
if (Config.fetch_lyrics_in_background)
|
|
Lyrics::DownloadInBackground(myPlaylist->NowPlayingSong());
|
|
# endif // HAVE_CURL_CURL_H
|
|
|
|
if (Mpd.isPlaying())
|
|
{
|
|
np = Mpd.GetCurrentlyPlayingSong();
|
|
if (!np.empty())
|
|
WindowTitle(np.toString(Config.song_window_title_format));
|
|
}
|
|
|
|
if (Config.autocenter_mode && !myPlaylist->Items->isFiltered())
|
|
myPlaylist->Items->Highlight(myPlaylist->NowPlaying);
|
|
|
|
if (Config.now_playing_lyrics && isVisible(myLyrics) && Global::myOldScreen == myPlaylist)
|
|
myLyrics->ReloadNP = 1;
|
|
}
|
|
Playlist::ReloadRemaining = true;
|
|
playing_song_scroll_begin = 0;
|
|
first_line_scroll_begin = 0;
|
|
second_line_scroll_begin = 0;
|
|
}
|
|
if (changed.ElapsedTime || changed.SongID || Global::RedrawStatusbar)
|
|
{
|
|
if (np.empty())
|
|
{
|
|
np = Mpd.GetCurrentlyPlayingSong();
|
|
if (!np.empty())
|
|
WindowTitle(utf_to_locale_cpy(np.toString(Config.song_window_title_format)));
|
|
}
|
|
if (!np.empty() && Mpd.isPlaying())
|
|
{
|
|
std::string tracklength;
|
|
if (Config.new_design)
|
|
{
|
|
if (Config.display_remaining_time)
|
|
{
|
|
tracklength = "-";
|
|
tracklength += MPD::Song::ShowTime(Mpd.GetTotalTime()-Mpd.GetElapsedTime());
|
|
}
|
|
else
|
|
tracklength = MPD::Song::ShowTime(Mpd.GetElapsedTime());
|
|
if (Mpd.GetTotalTime())
|
|
{
|
|
tracklength += "/";
|
|
tracklength += MPD::Song::ShowTime(Mpd.GetTotalTime());
|
|
}
|
|
// bitrate here doesn't look good, but it can be moved somewhere else later
|
|
if (Config.display_bitrate && Mpd.GetBitrate())
|
|
{
|
|
tracklength += " ";
|
|
tracklength += intTo<std::string>::apply(Mpd.GetBitrate());
|
|
tracklength += " kbps";
|
|
}
|
|
|
|
basic_buffer<my_char_t> first, second;
|
|
String2Buffer(TO_WSTRING(utf_to_locale_cpy(np.toString(Config.new_header_first_line, "$"))), first);
|
|
String2Buffer(TO_WSTRING(utf_to_locale_cpy(np.toString(Config.new_header_second_line, "$"))), second);
|
|
|
|
size_t first_len = Window::Length(first.Str());
|
|
size_t first_margin = (std::max(tracklength.length()+1, VolumeState.length()))*2;
|
|
size_t first_start = first_len < COLS-first_margin ? (COLS-first_len)/2 : tracklength.length()+1;
|
|
|
|
size_t second_len = Window::Length(second.Str());
|
|
size_t second_margin = (std::max(player_state.length(), size_t(8))+1)*2;
|
|
size_t second_start = second_len < COLS-second_margin ? (COLS-second_len)/2 : player_state.length()+1;
|
|
|
|
if (!Global::SeekingInProgress)
|
|
*wHeader << XY(0, 0) << wclrtoeol << tracklength;
|
|
*wHeader << XY(first_start, 0);
|
|
first.Write(*wHeader, first_line_scroll_begin, COLS-tracklength.length()-VolumeState.length()-1, U(" ** "));
|
|
|
|
*wHeader << XY(0, 1) << wclrtoeol << fmtBold << player_state << fmtBoldEnd;
|
|
*wHeader << XY(second_start, 1);
|
|
second.Write(*wHeader, second_line_scroll_begin, COLS-player_state.length()-8-2, U(" ** "));
|
|
|
|
*wHeader << XY(wHeader->GetWidth()-VolumeState.length(), 0) << Config.volume_color << VolumeState << clEnd;
|
|
|
|
changed.StatusFlags = 1;
|
|
}
|
|
else if (!block_statusbar_update && Config.statusbar_visibility)
|
|
{
|
|
if (Config.display_bitrate && Mpd.GetBitrate())
|
|
{
|
|
tracklength += " [";
|
|
tracklength += intTo<std::string>::apply(Mpd.GetBitrate());
|
|
tracklength += " kbps]";
|
|
}
|
|
tracklength += " [";
|
|
if (Mpd.GetTotalTime())
|
|
{
|
|
if (Config.display_remaining_time)
|
|
{
|
|
tracklength += "-";
|
|
tracklength += MPD::Song::ShowTime(Mpd.GetTotalTime()-Mpd.GetElapsedTime());
|
|
}
|
|
else
|
|
tracklength += MPD::Song::ShowTime(Mpd.GetElapsedTime());
|
|
tracklength += "/";
|
|
tracklength += MPD::Song::ShowTime(Mpd.GetTotalTime());
|
|
tracklength += "]";
|
|
}
|
|
else
|
|
{
|
|
tracklength += MPD::Song::ShowTime(Mpd.GetElapsedTime());
|
|
tracklength += "]";
|
|
}
|
|
basic_buffer<my_char_t> np_song;
|
|
String2Buffer(TO_WSTRING(utf_to_locale_cpy(np.toString(Config.song_status_format, "$"))), np_song);
|
|
*wFooter << XY(0, 1) << wclrtoeol << fmtBold << player_state << fmtBoldEnd;
|
|
np_song.Write(*wFooter, playing_song_scroll_begin, wFooter->GetWidth()-player_state.length()-tracklength.length(), U(" ** "));
|
|
*wFooter << fmtBold << XY(wFooter->GetWidth()-tracklength.length(), 1) << tracklength << fmtBoldEnd;
|
|
}
|
|
if (!block_progressbar_update)
|
|
DrawProgressbar(Mpd.GetElapsedTime(), Mpd.GetTotalTime());
|
|
Global::RedrawStatusbar = false;
|
|
}
|
|
else
|
|
{
|
|
if (!block_statusbar_update && Config.statusbar_visibility)
|
|
*wFooter << XY(0, 1) << wclrtoeol;
|
|
}
|
|
}
|
|
|
|
static char mpd_repeat;
|
|
static char mpd_random;
|
|
static char mpd_single;
|
|
static char mpd_consume;
|
|
static char mpd_crossfade;
|
|
static char mpd_db_updating;
|
|
|
|
if (changed.Repeat)
|
|
{
|
|
mpd_repeat = Mpd.GetRepeat() ? 'r' : 0;
|
|
ShowMessage("Repeat mode is %s", !mpd_repeat ? "off" : "on");
|
|
}
|
|
if (changed.Random)
|
|
{
|
|
mpd_random = Mpd.GetRandom() ? 'z' : 0;
|
|
ShowMessage("Random mode is %s", !mpd_random ? "off" : "on");
|
|
}
|
|
if (changed.Single)
|
|
{
|
|
mpd_single = Mpd.GetSingle() ? 's' : 0;
|
|
ShowMessage("Single mode is %s", !mpd_single ? "off" : "on");
|
|
}
|
|
if (changed.Consume)
|
|
{
|
|
mpd_consume = Mpd.GetConsume() ? 'c' : 0;
|
|
ShowMessage("Consume mode is %s", !mpd_consume ? "off" : "on");
|
|
}
|
|
if (changed.Crossfade)
|
|
{
|
|
int crossfade = Mpd.GetCrossfade();
|
|
mpd_crossfade = crossfade ? 'x' : 0;
|
|
ShowMessage("Crossfade set to %d seconds", crossfade);
|
|
}
|
|
if (changed.DBUpdating)
|
|
{
|
|
// mpd-0.{14,15} doesn't support idle notification that dbupdate had
|
|
// finished and nothing changed, so we need to switch it off for them.
|
|
if (!Mpd.SupportsIdle() || Mpd.Version() > 15)
|
|
mpd_db_updating = Mpd.GetDBIsUpdating() ? 'U' : 0;
|
|
ShowMessage(Mpd.GetDBIsUpdating() ? "Database update started!" : "Database update finished!");
|
|
if (changed.Database && myScreen == mySelectedItemsAdder)
|
|
{
|
|
myScreen->SwitchTo(); // switch to previous screen
|
|
ShowMessage("Database has changed, you need to select your item(s) once again");
|
|
}
|
|
}
|
|
if (changed.StatusFlags && (Config.header_visibility || Config.new_design))
|
|
{
|
|
std::string switch_state;
|
|
|
|
if (Config.new_design)
|
|
{
|
|
switch_state += '[';
|
|
switch_state += mpd_repeat ? mpd_repeat : '-';
|
|
switch_state += mpd_random ? mpd_random : '-';
|
|
switch_state += mpd_single ? mpd_single : '-';
|
|
switch_state += mpd_consume ? mpd_consume : '-';
|
|
switch_state += mpd_crossfade ? mpd_crossfade : '-';
|
|
switch_state += mpd_db_updating ? mpd_db_updating : '-';
|
|
switch_state += ']';
|
|
*wHeader << XY(COLS-switch_state.length(), 1) << fmtBold << Config.state_flags_color << switch_state << clEnd << fmtBoldEnd;
|
|
if (Config.new_design && !Config.header_visibility) // in this case also draw separator
|
|
{
|
|
*wHeader << fmtBold << clBlack;
|
|
mvwhline(wHeader->Raw(), 2, 0, 0, COLS);
|
|
*wHeader << clEnd << fmtBoldEnd;
|
|
}
|
|
wHeader->Refresh();
|
|
}
|
|
else
|
|
{
|
|
if (mpd_repeat)
|
|
switch_state += mpd_repeat;
|
|
if (mpd_random)
|
|
switch_state += mpd_random;
|
|
if (mpd_single)
|
|
switch_state += mpd_single;
|
|
if (mpd_consume)
|
|
switch_state += mpd_consume;
|
|
if (mpd_crossfade)
|
|
switch_state += mpd_crossfade;
|
|
if (mpd_db_updating)
|
|
switch_state += mpd_db_updating;
|
|
|
|
// this is done by raw ncurses because creating another
|
|
// window only for handling this is quite silly
|
|
attrset(A_BOLD|COLOR_PAIR(Config.state_line_color));
|
|
mvhline(1, 0, 0, COLS);
|
|
if (!switch_state.empty())
|
|
{
|
|
mvprintw(1, COLS-switch_state.length()-3, "[");
|
|
attroff(COLOR_PAIR(Config.state_line_color));
|
|
attron(COLOR_PAIR(Config.state_flags_color));
|
|
mvprintw(1, COLS-switch_state.length()-2, "%s", switch_state.c_str());
|
|
attroff(COLOR_PAIR(Config.state_flags_color));
|
|
attron(COLOR_PAIR(Config.state_line_color));
|
|
mvprintw(1, COLS-2, "]");
|
|
}
|
|
attroff(A_BOLD|COLOR_PAIR(Config.state_line_color));
|
|
refresh();
|
|
}
|
|
}
|
|
if (changed.Volume && Config.display_volume_level && (Config.header_visibility || Config.new_design))
|
|
{
|
|
VolumeState = Config.new_design ? " Vol: " : " Volume: ";
|
|
int volume = Mpd.GetVolume();
|
|
if (volume < 0)
|
|
VolumeState += "n/a";
|
|
else
|
|
{
|
|
VolumeState += intTo<std::string>::apply(volume);
|
|
VolumeState += "%";
|
|
}
|
|
*wHeader << Config.volume_color;
|
|
*wHeader << XY(wHeader->GetWidth()-VolumeState.length(), 0) << VolumeState;
|
|
*wHeader << clEnd;
|
|
wHeader->Refresh();
|
|
}
|
|
if (changed.Outputs)
|
|
{
|
|
# ifdef ENABLE_OUTPUTS
|
|
myOutputs->FetchList();
|
|
# endif // ENABLE_OUTPUTS
|
|
}
|
|
wFooter->GotoXY(sx, sy);
|
|
if (changed.PlayerState || (changed.ElapsedTime && (!Config.new_design || Mpd.GetState() == MPD::psPlay)))
|
|
wFooter->Refresh();
|
|
if (changed.Playlist || changed.Database || changed.PlayerState || changed.SongID)
|
|
ApplyToVisibleWindows(&BasicScreen::RefreshWindow);
|
|
}
|
|
|
|
Window &Statusbar()
|
|
{
|
|
*wFooter << XY(0, Config.statusbar_visibility) << wclrtoeol;
|
|
return *wFooter;
|
|
}
|
|
|
|
void DrawProgressbar(unsigned elapsed, unsigned time)
|
|
{
|
|
unsigned pb_width = wFooter->GetWidth();
|
|
unsigned howlong = time ? pb_width*elapsed/time : 0;
|
|
if (Config.progressbar_boldness)
|
|
*wFooter << fmtBold;
|
|
*wFooter << Config.progressbar_color;
|
|
if (Config.progressbar[2] != '\0')
|
|
{
|
|
wFooter->GotoXY(0, 0);
|
|
for (unsigned i = 0; i < pb_width; ++i)
|
|
*wFooter << Config.progressbar[2];
|
|
wFooter->GotoXY(0, 0);
|
|
}
|
|
else
|
|
mvwhline(wFooter->Raw(), 0, 0, 0, pb_width);
|
|
if (time)
|
|
{
|
|
*wFooter << Config.progressbar_elapsed_color;
|
|
pb_width = std::min(size_t(howlong), wFooter->GetWidth());
|
|
for (unsigned i = 0; i < pb_width; ++i)
|
|
*wFooter << Config.progressbar[0];
|
|
if (howlong < wFooter->GetWidth())
|
|
*wFooter << Config.progressbar[1];
|
|
*wFooter << clEnd;
|
|
}
|
|
*wFooter << clEnd;
|
|
if (Config.progressbar_boldness)
|
|
*wFooter << fmtBoldEnd;
|
|
}
|
|
|
|
void ShowMessage(const char *format, ...)
|
|
{
|
|
if (Global::ShowMessages && allow_statusbar_unlock)
|
|
{
|
|
time(&time_of_statusbar_lock);
|
|
lock_statusbar_delay = Config.message_delay_time;
|
|
if (Config.statusbar_visibility)
|
|
block_statusbar_update = 1;
|
|
else
|
|
block_progressbar_update = 1;
|
|
wFooter->GotoXY(0, Config.statusbar_visibility);
|
|
*wFooter << fmtBoldEnd;
|
|
va_list list;
|
|
va_start(list, format);
|
|
wmove(wFooter->Raw(), Config.statusbar_visibility, 0);
|
|
vw_printw(wFooter->Raw(), format, list);
|
|
wclrtoeol(wFooter->Raw());
|
|
va_end(list);
|
|
wFooter->Refresh();
|
|
}
|
|
}
|