1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
|
/*
* (c) 2004 by Kalle Wallin <kaw@linux.se>
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "screen.h"
#include "screen_list.h"
#include "screen_utils.h"
#include "config.h"
#include "i18n.h"
#include "support.h"
#include "charset.h"
#include "mpdclient.h"
#include "utils.h"
#include "command.h"
#include "options.h"
#include "colors.h"
#include "strfsong.h"
#include "wreadln.h"
#include <stdlib.h>
#include <unistd.h>
#include <stdarg.h>
#include <string.h>
#include <time.h>
#include <locale.h>
/** welcome message time [s] */
static const unsigned SCREEN_WELCOME_TIME = 10;
/** status message time [s] */
static const unsigned SCREEN_STATUS_MESSAGE_TIME = 3;
/* minumum window size */
static const int SCREEN_MIN_COLS = 14;
static const int SCREEN_MIN_ROWS = 5;
/* screens */
static gboolean welcome = TRUE;
struct screen screen;
static const struct screen_functions *mode_fn = &screen_playlist;
static int seek_id = -1;
static int seek_target_time = 0;
gboolean
screen_is_visible(const struct screen_functions *sf)
{
return sf == mode_fn;
}
void
screen_switch(const struct screen_functions *sf, struct mpdclient *c)
{
assert(sf != NULL);
if (sf == mode_fn)
return;
/* close the old mode */
if (mode_fn->close != NULL)
mode_fn->close();
/* get functions for the new mode */
mode_fn = sf;
/* open the new mode */
if (mode_fn->open != NULL)
mode_fn->open(c);
screen_paint(c);
}
static int
find_configured_screen(const char *name)
{
unsigned i;
for (i = 0; options.screen_list[i] != NULL; ++i)
if (strcmp(options.screen_list[i], name) == 0)
return i;
return -1;
}
static void
screen_next_mode(mpdclient_t *c, int offset)
{
int max = g_strv_length(options.screen_list);
int current, next;
const struct screen_functions *sf;
/* find current screen */
current = find_configured_screen(screen_get_name(mode_fn));
next = current + offset;
if (next<0)
next = max-1;
else if (next>=max)
next = 0;
sf = screen_lookup_name(options.screen_list[next]);
if (sf != NULL)
screen_switch(sf, c);
}
static void
paint_top_window2(const char *header, mpdclient_t *c)
{
char flags[5];
WINDOW *w = screen.top_window.w;
char buf[32];
if (header[0]) {
colors_use(w, COLOR_TITLE_BOLD);
mvwaddstr(w, 0, 0, header);
} else {
colors_use(w, COLOR_TITLE_BOLD);
waddstr(w, get_key_names(CMD_SCREEN_HELP, FALSE));
colors_use(w, COLOR_TITLE);
waddstr(w, _(":Help "));
colors_use(w, COLOR_TITLE_BOLD);
waddstr(w, get_key_names(CMD_SCREEN_PLAY, FALSE));
colors_use(w, COLOR_TITLE);
waddstr(w, _(":Playlist "));
colors_use(w, COLOR_TITLE_BOLD);
waddstr(w, get_key_names(CMD_SCREEN_FILE, FALSE));
colors_use(w, COLOR_TITLE);
waddstr(w, _(":Browse "));
#ifdef ENABLE_ARTIST_SCREEN
colors_use(w, COLOR_TITLE_BOLD);
waddstr(w, get_key_names(CMD_SCREEN_ARTIST, FALSE));
colors_use(w, COLOR_TITLE);
waddstr(w, _(":Artist "));
#endif
#ifdef ENABLE_SEARCH_SCREEN
colors_use(w, COLOR_TITLE_BOLD);
waddstr(w, get_key_names(CMD_SCREEN_SEARCH, FALSE));
colors_use(w, COLOR_TITLE);
waddstr(w, _(":Search "));
#endif
#ifdef ENABLE_LYRICS_SCREEN
colors_use(w, COLOR_TITLE_BOLD);
waddstr(w, get_key_names(CMD_SCREEN_LYRICS, FALSE));
colors_use(w, COLOR_TITLE);
waddstr(w, _(":Lyrics "));
#endif
}
if (c->status == NULL || c->status->volume == MPD_STATUS_NO_VOLUME) {
g_snprintf(buf, 32, _("Volume n/a "));
} else {
g_snprintf(buf, 32, _(" Volume %d%%"), c->status->volume);
}
colors_use(w, COLOR_TITLE);
mvwaddstr(w, 0, screen.top_window.cols - utf8_width(buf), buf);
flags[0] = 0;
if (c->status != NULL) {
if (c->status->repeat)
g_strlcat(flags, "r", sizeof(flags));
if (c->status->random)
g_strlcat(flags, "z", sizeof(flags));;
if (c->status->crossfade)
g_strlcat(flags, "x", sizeof(flags));
if (c->status->updatingDb)
g_strlcat(flags, "U", sizeof(flags));
}
colors_use(w, COLOR_LINE);
mvwhline(w, 1, 0, ACS_HLINE, screen.top_window.cols);
if (flags[0]) {
wmove(w,1,screen.top_window.cols-strlen(flags)-3);
waddch(w, '[');
colors_use(w, COLOR_LINE_BOLD);
waddstr(w, flags);
colors_use(w, COLOR_LINE);
waddch(w, ']');
}
wnoutrefresh(w);
}
static void
paint_top_window(const char *header, mpdclient_t *c, int full_repaint)
{
static int prev_volume = -1;
static unsigned prev_header_len = -1;
WINDOW *w = screen.top_window.w;
if (prev_header_len != utf8_width(header)) {
prev_header_len = utf8_width(header);
full_repaint = 1;
}
if (full_repaint) {
wmove(w, 0, 0);
wclrtoeol(w);
}
if ((c->status != NULL && prev_volume != c->status->volume) ||
full_repaint)
paint_top_window2(header, c);
}
static void
paint_progress_window(mpdclient_t *c)
{
double p;
int width;
int elapsedTime;
if (c->status==NULL || IS_STOPPED(c->status->state)) {
mvwhline(screen.progress_window.w, 0, 0, ACS_HLINE,
screen.progress_window.cols);
wnoutrefresh(screen.progress_window.w);
return;
}
if (c->song && seek_id == c->song->id)
elapsedTime = seek_target_time;
else
elapsedTime = c->status->elapsedTime;
p = ((double) elapsedTime) / ((double) c->status->totalTime);
width = (int) (p * (double) screen.progress_window.cols);
mvwhline(screen.progress_window.w,
0, 0,
ACS_HLINE,
screen.progress_window.cols);
whline(screen.progress_window.w, '=', width-1);
mvwaddch(screen.progress_window.w, 0, width-1, 'O');
wnoutrefresh(screen.progress_window.w);
}
static void
paint_status_window(mpdclient_t *c)
{
WINDOW *w = screen.status_window.w;
mpd_Status *status = c->status;
mpd_Song *song = c->song;
int elapsedTime = 0;
char bitrate[16];
const char *str = NULL;
int x = 0;
if( time(NULL) - screen.status_timestamp <= SCREEN_STATUS_MESSAGE_TIME )
return;
wmove(w, 0, 0);
wclrtoeol(w);
colors_use(w, COLOR_STATUS_BOLD);
switch (status == NULL ? MPD_STATUS_STATE_STOP : status->state) {
case MPD_STATUS_STATE_PLAY:
str = _("Playing:");
break;
case MPD_STATUS_STATE_PAUSE:
str = _("[Paused]");
break;
case MPD_STATUS_STATE_STOP:
default:
break;
}
if (str) {
waddstr(w, str);
x += utf8_width(str) + 1;
}
/* create time string */
memset(screen.buf, 0, screen.buf_size);
if (status != NULL && (IS_PLAYING(status->state) ||
IS_PAUSED(status->state))) {
if (status->totalTime > 0) {
/*checks the conf to see whether to display elapsed or remaining time */
if(!strcmp(options.timedisplay_type,"elapsed"))
elapsedTime = c->status->elapsedTime;
else if(!strcmp(options.timedisplay_type,"remaining"))
elapsedTime = (c->status->totalTime - c->status->elapsedTime);
if( c->song && seek_id == c->song->id )
elapsedTime = seek_target_time;
/* display bitrate if visible-bitrate is true */
if (options.visible_bitrate) {
g_snprintf(bitrate, 16,
" [%d kbps]", status->bitRate);
} else {
bitrate[0] = '\0';
}
/*write out the time, using hours if time over 60 minutes*/
if (c->status->totalTime > 3600) {
g_snprintf(screen.buf, screen.buf_size,
"%s [%i:%02i:%02i/%i:%02i:%02i]",
bitrate, elapsedTime/3600, (elapsedTime%3600)/60, elapsedTime%60,
status->totalTime/3600, (status->totalTime%3600)/60, status->totalTime%60);
} else {
g_snprintf(screen.buf, screen.buf_size,
"%s [%i:%02i/%i:%02i]",
bitrate, elapsedTime/60, elapsedTime%60,
status->totalTime/60, status->totalTime%60 );
}
} else {
g_snprintf(screen.buf, screen.buf_size,
" [%d kbps]", status->bitRate );
}
} else {
time_t timep;
time(&timep);
strftime(screen.buf, screen.buf_size, "%X ",localtime(&timep));
}
/* display song */
if (status != NULL && (IS_PLAYING(status->state) ||
IS_PAUSED(status->state))) {
char songname[MAX_SONGNAME_LENGTH];
int width = COLS - x - utf8_width(screen.buf);
if (song)
strfsong(songname, MAX_SONGNAME_LENGTH,
options.status_format, song);
else
songname[0] = '\0';
colors_use(w, COLOR_STATUS);
/* scroll if the song name is to long */
if (options.scroll && utf8_width(songname) > (unsigned)width) {
static scroll_state_t st = { 0, 0 };
char *tmp = strscroll(songname, options.scroll_sep, width, &st);
g_strlcpy(songname, tmp, MAX_SONGNAME_LENGTH);
g_free(tmp);
}
//mvwaddnstr(w, 0, x, songname, width);
mvwaddstr(w, 0, x, songname);
}
/* display time string */
if (screen.buf[0]) {
x = screen.status_window.cols - strlen(screen.buf);
colors_use(w, COLOR_STATUS_TIME);
mvwaddstr(w, 0, x, screen.buf);
}
wnoutrefresh(w);
}
void
screen_exit(void)
{
if (mode_fn->close != NULL)
mode_fn->close();
screen_list_exit();
string_list_free(screen.find_history);
g_free(screen.buf);
g_free(screen.findbuf);
}
void
screen_resize(struct mpdclient *c)
{
if (COLS<SCREEN_MIN_COLS || LINES<SCREEN_MIN_ROWS) {
screen_exit();
fprintf(stderr, _("Error: Screen to small!\n"));
exit(EXIT_FAILURE);
}
resizeterm(LINES, COLS);
screen.cols = COLS;
screen.rows = LINES;
/* top window */
screen.top_window.cols = screen.cols;
wresize(screen.top_window.w, 2, screen.cols);
/* main window */
screen.main_window.cols = screen.cols;
screen.main_window.rows = screen.rows-4;
wresize(screen.main_window.w, screen.main_window.rows, screen.cols);
wclear(screen.main_window.w);
/* progress window */
screen.progress_window.cols = screen.cols;
wresize(screen.progress_window.w, 1, screen.cols);
mvwin(screen.progress_window.w, screen.rows-2, 0);
/* status window */
screen.status_window.cols = screen.cols;
wresize(screen.status_window.w, 1, screen.cols);
mvwin(screen.status_window.w, screen.rows-1, 0);
screen.buf_size = screen.cols;
g_free(screen.buf);
screen.buf = g_malloc(screen.cols);
/* resize all screens */
screen_list_resize(screen.main_window.cols, screen.main_window.rows);
/* ? - without this the cursor becomes visible with aterm & Eterm */
curs_set(1);
curs_set(0);
screen_paint(c);
}
void
screen_status_message(const char *msg)
{
WINDOW *w = screen.status_window.w;
wmove(w, 0, 0);
wclrtoeol(w);
colors_use(w, COLOR_STATUS_ALERT);
waddstr(w, msg);
wnoutrefresh(w);
screen.status_timestamp = time(NULL);
}
void
screen_status_printf(const char *format, ...)
{
char *msg;
va_list ap;
va_start(ap,format);
msg = g_strdup_vprintf(format,ap);
va_end(ap);
screen_status_message(msg);
g_free(msg);
}
void
screen_init(mpdclient_t *c)
{
if (COLS < SCREEN_MIN_COLS || LINES < SCREEN_MIN_ROWS) {
fprintf(stderr, _("Error: Screen to small!\n"));
exit(EXIT_FAILURE);
}
screen.cols = COLS;
screen.rows = LINES;
screen.buf = g_malloc(screen.cols);
screen.buf_size = screen.cols;
screen.findbuf = NULL;
screen.start_timestamp = time(NULL);
screen.last_cmd = CMD_NONE;
/* create top window */
screen.top_window.rows = 2;
screen.top_window.cols = screen.cols;
screen.top_window.w = newwin(screen.top_window.rows,
screen.top_window.cols,
0, 0);
leaveok(screen.top_window.w, TRUE);
keypad(screen.top_window.w, TRUE);
/* create main window */
screen.main_window.rows = screen.rows-4;
screen.main_window.cols = screen.cols;
screen.main_window.w = newwin(screen.main_window.rows,
screen.main_window.cols,
2,
0);
// leaveok(screen.main_window.w, TRUE); temporary disabled
keypad(screen.main_window.w, TRUE);
/* create progress window */
screen.progress_window.rows = 1;
screen.progress_window.cols = screen.cols;
screen.progress_window.w = newwin(screen.progress_window.rows,
screen.progress_window.cols,
screen.rows-2,
0);
leaveok(screen.progress_window.w, TRUE);
/* create status window */
screen.status_window.rows = 1;
screen.status_window.cols = screen.cols;
screen.status_window.w = newwin(screen.status_window.rows,
screen.status_window.cols,
screen.rows-1,
0);
leaveok(screen.status_window.w, FALSE);
keypad(screen.status_window.w, TRUE);
#ifdef ENABLE_COLORS
if (options.enable_colors) {
/* set background attributes */
wbkgd(stdscr, COLOR_PAIR(COLOR_LIST));
wbkgd(screen.main_window.w, COLOR_PAIR(COLOR_LIST));
wbkgd(screen.top_window.w, COLOR_PAIR(COLOR_TITLE));
wbkgd(screen.progress_window.w, COLOR_PAIR(COLOR_PROGRESSBAR));
wbkgd(screen.status_window.w, COLOR_PAIR(COLOR_STATUS));
colors_use(screen.progress_window.w, COLOR_PROGRESSBAR);
}
#endif
refresh();
/* initialize screens */
screen_list_init(screen.main_window.w,
screen.main_window.cols, screen.main_window.rows);
if (mode_fn->open != NULL)
mode_fn->open(c);
/* initialize wreadln */
wrln_wgetch = my_wgetch;
wrln_max_history_length = 16;
}
void
screen_paint(mpdclient_t *c)
{
const char *title = NULL;
if (mode_fn->get_title != NULL)
title = mode_fn->get_title(screen.buf, screen.buf_size);
/* paint the title/header window */
if( title )
paint_top_window(title, c, 1);
else
paint_top_window("", c, 1);
/* paint the main window */
wclear(screen.main_window.w);
if (mode_fn->paint != NULL)
mode_fn->paint();
paint_progress_window(c);
paint_status_window(c);
wmove(screen.main_window.w, 0, 0);
wnoutrefresh(screen.main_window.w);
/* tell curses to update */
doupdate();
}
void
screen_update(mpdclient_t *c)
{
static int repeat = -1;
static int random_enabled = -1;
static int crossfade = -1;
static int dbupdate = -1;
/* print a message if mpd status has changed */
if (c->status != NULL) {
if (repeat < 0) {
repeat = c->status->repeat;
random_enabled = c->status->random;
crossfade = c->status->crossfade;
dbupdate = c->status->updatingDb;
}
if (repeat != c->status->repeat)
screen_status_printf(c->status->repeat ?
_("Repeat is on") :
_("Repeat is off"));
if (random_enabled != c->status->random)
screen_status_printf(c->status->random ?
_("Random is on") :
_("Random is off"));
if (crossfade != c->status->crossfade)
screen_status_printf(_("Crossfade %d seconds"), c->status->crossfade);
if (dbupdate && dbupdate != c->status->updatingDb) {
screen_status_printf(_("Database updated!"));
mpdclient_browse_callback(c, BROWSE_DB_UPDATED, NULL);
}
repeat = c->status->repeat;
random_enabled = c->status->random;
crossfade = c->status->crossfade;
dbupdate = c->status->updatingDb;
}
/* update title/header window */
if (welcome && options.welcome_screen_list &&
screen.last_cmd==CMD_NONE &&
time(NULL)-screen.start_timestamp <= SCREEN_WELCOME_TIME)
paint_top_window("", c, 0);
else if (mode_fn->get_title != NULL) {
paint_top_window(mode_fn->get_title(screen.buf,screen.buf_size), c, 0);
welcome = FALSE;
} else
paint_top_window("", c, 0);
/* update the main window */
if (mode_fn->update != NULL)
mode_fn->update(c);
/* update progress window */
paint_progress_window(c);
/* update status window */
paint_status_window(c);
/* move the cursor to the origin */
wmove(screen.main_window.w, 0, 0);
wnoutrefresh(screen.main_window.w);
/* tell curses to update */
doupdate();
}
void
screen_idle(mpdclient_t *c)
{
if (c->song && seek_id == c->song->id &&
(screen.last_cmd == CMD_SEEK_FORWARD ||
screen.last_cmd == CMD_SEEK_BACKWARD))
mpdclient_cmd_seek(c, seek_id, seek_target_time);
screen.last_cmd = CMD_NONE;
seek_id = -1;
}
#ifdef HAVE_GETMOUSE
int
screen_get_mouse_event(mpdclient_t *c, unsigned long *bstate, int *row)
{
MEVENT event;
/* retreive the mouse event from ncurses */
getmouse(&event);
/* calculate the selected row in the list window */
*row = event.y - screen.top_window.rows;
/* copy button state bits */
*bstate = event.bstate;
/* if button 2 was pressed switch screen */
if (event.bstate & BUTTON2_CLICKED) {
screen_cmd(c, CMD_SCREEN_NEXT);
return 1;
}
return 0;
}
#endif
static int
screen_client_cmd(mpdclient_t *c, command_t cmd)
{
if (c->connection == NULL || c->status == NULL)
return 0;
switch(cmd) {
/*
case CMD_PLAY:
mpdclient_cmd_play(c, MPD_PLAY_AT_BEGINNING);
break;
*/
case CMD_PAUSE:
mpdclient_cmd_pause(c, !IS_PAUSED(c->status->state));
break;
case CMD_STOP:
mpdclient_cmd_stop(c);
break;
case CMD_CROP:
mpdclient_cmd_crop(c);
break;
case CMD_SEEK_FORWARD:
if (!IS_STOPPED(c->status->state)) {
if (c->song && seek_id != c->song->id) {
seek_id = c->song->id;
seek_target_time = c->status->elapsedTime;
}
seek_target_time+=options.seek_time;
if (seek_target_time < c->status->totalTime)
break;
seek_target_time = c->status->totalTime;
/* seek_target_time=0; */
}
break;
/* fall through... */
case CMD_TRACK_NEXT:
if (!IS_STOPPED(c->status->state))
mpdclient_cmd_next(c);
break;
case CMD_SEEK_BACKWARD:
if (!IS_STOPPED(c->status->state)) {
if (seek_id != c->song->id) {
seek_id = c->song->id;
seek_target_time = c->status->elapsedTime;
}
seek_target_time-=options.seek_time;
if (seek_target_time < 0)
seek_target_time=0;
}
break;
case CMD_TRACK_PREVIOUS:
if (!IS_STOPPED(c->status->state))
mpdclient_cmd_prev(c);
break;
case CMD_SHUFFLE:
if (mpdclient_cmd_shuffle(c) == 0)
screen_status_message(_("Shuffled playlist!"));
break;
case CMD_CLEAR:
if (mpdclient_cmd_clear(c) == 0)
screen_status_message(_("Cleared playlist!"));
break;
case CMD_REPEAT:
mpdclient_cmd_repeat(c, !c->status->repeat);
break;
case CMD_RANDOM:
mpdclient_cmd_random(c, !c->status->random);
break;
case CMD_CROSSFADE:
if (c->status->crossfade)
mpdclient_cmd_crossfade(c, 0);
else
mpdclient_cmd_crossfade(c, options.crossfade_time);
break;
case CMD_DB_UPDATE:
if (!c->status->updatingDb) {
if( mpdclient_cmd_db_update_utf8(c,NULL)==0 )
screen_status_printf(_("Database update started!"));
} else
screen_status_printf(_("Database update running..."));
break;
case CMD_VOLUME_UP:
if( c->status->volume!=MPD_STATUS_NO_VOLUME && c->status->volume<100 )
mpdclient_cmd_volume(c, ++c->status->volume);
break;
case CMD_VOLUME_DOWN:
if( c->status->volume!=MPD_STATUS_NO_VOLUME && c->status->volume>0 )
mpdclient_cmd_volume(c, --c->status->volume);
break;
default:
return 0;
}
return 1;
}
void
screen_cmd(mpdclient_t *c, command_t cmd)
{
screen.last_cmd = cmd;
welcome = FALSE;
if (mode_fn->cmd != NULL && mode_fn->cmd(c, cmd))
return;
if (screen_client_cmd(c, cmd))
return;
switch(cmd) {
case CMD_TOGGLE_FIND_WRAP:
options.find_wrap = !options.find_wrap;
screen_status_printf(options.find_wrap ?
_("Find mode: Wrapped") :
_("Find mode: Normal"));
break;
case CMD_TOGGLE_AUTOCENTER:
options.auto_center = !options.auto_center;
screen_status_printf(options.auto_center ?
_("Auto center mode: On") :
_("Auto center mode: Off"));
break;
case CMD_SCREEN_UPDATE:
screen_paint(c);
break;
case CMD_SCREEN_PREVIOUS:
screen_next_mode(c, -1);
break;
case CMD_SCREEN_NEXT:
screen_next_mode(c, 1);
break;
case CMD_SCREEN_PLAY:
screen_switch(&screen_playlist, c);
break;
case CMD_SCREEN_FILE:
screen_switch(&screen_browse, c);
break;
case CMD_SCREEN_HELP:
screen_switch(&screen_help, c);
break;
#ifdef ENABLE_SEARCH_SCREEN
case CMD_SCREEN_SEARCH:
screen_switch(&screen_search, c);
break;
#endif
#ifdef ENABLE_ARTIST_SCREEN
case CMD_SCREEN_ARTIST:
screen_switch(&screen_artist, c);
break;
#endif
#ifdef ENABLE_KEYDEF_SCREEN
case CMD_SCREEN_KEYDEF:
screen_switch(&screen_keydef, c);
break;
#endif
#ifdef ENABLE_LYRICS_SCREEN
case CMD_SCREEN_LYRICS:
screen_switch(&screen_lyrics, c);
break;
#endif
default:
break;
}
}
|