diff options
author | Kalle Wallin <kaw@linux.se> | 2004-03-27 23:14:00 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-03-27 23:14:00 +0000 |
commit | 77992b5b09fb048809922d01a8a25885d2ec2685 (patch) | |
tree | d11b1920354f2f3581f3b8565cda0254047b6a2d | |
parent | a9007c69af2d87006f22e9bdf5da8db9401b2379 (diff) | |
download | mpd-77992b5b09fb048809922d01a8a25885d2ec2685.tar.gz mpd-77992b5b09fb048809922d01a8a25885d2ec2685.tar.xz mpd-77992b5b09fb048809922d01a8a25885d2ec2685.zip |
Moved random,repeat notification from main.c
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@520 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | main.c | 22 | ||||
-rw-r--r-- | screen.c | 18 |
2 files changed, 21 insertions, 19 deletions
@@ -105,8 +105,6 @@ main(int argc, const char *argv[]) while( connected || options->reconnect ) { command_t cmd; - static int repeat = -1; - static int random = -1; if( connected && counter==0 ) { @@ -115,33 +113,18 @@ main(int argc, const char *argv[]) { connected=0; screen_status_printf("Lost connection to %s", options->host); + doupdate(); mpd_closeConnection(mpc->connection); mpc->connection = NULL; } else mpd_finishCommand(mpc->connection); counter=10; - - if( repeat<0 ) - { - repeat = mpc->status->repeat; - random = mpc->status->random; - } - if( repeat != mpc->status->repeat ) - screen_status_printf("Repeat is %s", - mpc->status->repeat ? "On" : "Off"); - if( random != mpc->status->random ) - screen_status_printf("Random is %s", - mpc->status->random ? "On" : "Off"); - - repeat = mpc->status->repeat; - random = mpc->status->random; } + if( connected ) { - - screen_update(mpc); if( (cmd=get_keyboard_command()) != CMD_NONE ) { @@ -163,6 +146,7 @@ main(int argc, const char *argv[]) connected=1; counter=0; } + doupdate(); } if( counter>0 ) @@ -407,9 +407,27 @@ screen_paint(mpd_client_t *c) void screen_update(mpd_client_t *c) { + static int repeat = -1; + static int random = -1; + if( !screen->painted ) return screen_paint(c); + if( repeat<0 ) + { + repeat = c->status->repeat; + random = c->status->random; + } + if( repeat != c->status->repeat ) + screen_status_printf("Repeat is %s", + c->status->repeat ? "On" : "Off"); + if( random != c->status->random ) + screen_status_printf("Random is %s", + c->status->random ? "On" : "Off"); + + repeat = c->status->repeat; + random = c->status->random; + switch(screen->mode) { case SCREEN_PLAY_WINDOW: |