Code

Merge remote branches 'jn/cosmetics', 'jn/doxygen' and 'jn/renames'
[ncmpc.git] / src / command.c
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2010 The Music Player Daemon Project
3  * Project homepage: http://musicpd.org
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
20 #include "command.h"
21 #include "config.h"
22 #include "ncmpc.h"
23 #include "i18n.h"
24 #include "mpdclient.h"
25 #include "screen.h"
27 #include <ctype.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <ctype.h>
31 #include <glib.h>
32 #include <signal.h>
33 #include <unistd.h>
35 #undef DEBUG_KEYS
37 #ifdef DEBUG_KEYS
38 #define DK(x) x
39 #else
40 #define DK(x)
41 #endif
43 #define KEY_CTL(x) ((x) & 0x1f) /* KEY_CTL(A) == ^A == \1 */
45 #define BS   KEY_BACKSPACE
46 #define DEL  KEY_DC
47 #define UP   KEY_UP
48 #define DWN  KEY_DOWN
49 #define LEFT KEY_LEFT
50 #define RGHT KEY_RIGHT
51 #define HOME KEY_HOME
52 #define END  KEY_END
53 #define PGDN KEY_NPAGE
54 #define PGUP KEY_PPAGE
55 #define TAB  0x09
56 #define STAB 0x161
57 #define ESC  0x1B
58 #define RET  '\r'
59 #define F1   KEY_F(1)
60 #define F2   KEY_F(2)
61 #define F3   KEY_F(3)
62 #define F4   KEY_F(4)
63 #define F5   KEY_F(5)
64 #define F6   KEY_F(6)
65 #define F7   KEY_F(7)
66 #define F8   KEY_F(8)
67 #define C(x) KEY_CTL(x)
69 static command_definition_t cmds[] = {
70 #ifdef ENABLE_KEYDEF_SCREEN
71         { {'K', 0, 0 }, 0, CMD_SCREEN_KEYDEF, "screen-keyedit",
72           N_("Key configuration screen") },
73 #endif
74         { { 'q', 'Q', C('C') }, 0, CMD_QUIT, "quit",
75           N_("Quit") },
77         /* movement */
78         { { UP, 'k', 0 }, 0, CMD_LIST_PREVIOUS, "up",
79           N_("Move cursor up") },
80         { { DWN, 'j', 0 }, 0, CMD_LIST_NEXT, "down",
81           N_("Move cursor down") },
82         { { 'H', 0, 0 }, 0, CMD_LIST_TOP, "top",
83           N_("Move cursor to the top of screen") },
84         { { 'M', 0, 0 }, 0, CMD_LIST_MIDDLE, "middle",
85           N_("Move cursor to the middle of screen") },
86         { { 'L', 0, 0 }, 0, CMD_LIST_BOTTOM, "bottom",
87           N_("Move cursor to the bottom of screen") },
88         { { HOME, C('A'), 0 }, 0, CMD_LIST_FIRST, "home",
89           N_("Move cursor to the top of the list") },
90         { { END, C('E'), 0 }, 0, CMD_LIST_LAST, "end",
91           N_("Move cursor to the bottom of the list") },
92         { { PGUP, 0, 0 }, 0, CMD_LIST_PREVIOUS_PAGE, "pgup",
93           N_("Page up") },
94         { { PGDN, 0, 0 }, 0, CMD_LIST_NEXT_PAGE, "pgdn",
95           N_("Page down") },
96         { { 'v',  0, 0 }, 0, CMD_LIST_RANGE_SELECT, "range-select",
97           N_("Range selection") },
98         { { C('N'),  0, 0 }, 0, CMD_LIST_SCROLL_DOWN_LINE, "scroll-down-line",
99           N_("Scroll up one line") },
100         { { C('B'),  0, 0 }, 0, CMD_LIST_SCROLL_UP_LINE, "scroll-up-line",
101           N_("Scroll down one line") },
102         { { 'N',  0, 0 }, 0, CMD_LIST_SCROLL_DOWN_HALF, "scroll-down-half",
103           N_("Scroll up half a screen") },
104         { { 'B',  0, 0 }, 0, CMD_LIST_SCROLL_UP_HALF, "scroll-up-half",
105           N_("Scroll down half a screen") },
106         { { 'l', 0, 0 }, 0, CMD_SELECT_PLAYING, "select-playing",
107           N_("Select currently playing song") },
110         /* basic screens */
111         { { '1', F1, 'h' }, 0, CMD_SCREEN_HELP, "screen-help",
112           N_("Help screen") },
113         { { '2', F2, 0 }, 0, CMD_SCREEN_PLAY, "screen-playlist",
114           N_("Playlist screen") },
115         { { '3', F3, 0 }, 0, CMD_SCREEN_FILE, "screen-browse",
116           N_("Browse screen") },
119         /* player commands */
120         { { RET, 0, 0 }, 0, CMD_PLAY, "play",
121           N_("Play/Enter directory") },
122         { { 'P', 0, 0 }, 0, CMD_PAUSE,"pause",
123           N_("Pause") },
124         { { 's', BS, 0 }, 0, CMD_STOP, "stop",
125           N_("Stop") },
126         { { 'o', 0, 0 }, 0, CMD_CROP, "crop",
127           N_("Crop") },
128         { { '>', 0, 0 }, 0, CMD_TRACK_NEXT, "next",
129           N_("Next track") },
130         { { '<', 0, 0 }, 0, CMD_TRACK_PREVIOUS, "prev",
131           N_("Previous track") },
132         { { 'f', 0, 0 }, 0, CMD_SEEK_FORWARD, "seek-forward",
133           N_("Seek forward") },
134         { { 'b', 0, 0 }, 0, CMD_SEEK_BACKWARD, "seek-backward",
135           N_("Seek backward") },
136         { { '+', RGHT, 0 }, 0, CMD_VOLUME_UP, "volume-up",
137           N_("Increase volume") },
138         { { '-', LEFT, 0 }, 0, CMD_VOLUME_DOWN, "volume-down",
139           N_("Decrease volume") },
140         { { ' ', 0, 0 }, 0, CMD_SELECT, "select",
141           N_("Select/deselect song in playlist") },
142         { { 't', 0, 0 }, 0, CMD_SELECT_ALL, "select_all",
143           N_("Select all listed items") },
144         { { DEL, 'd', 0 }, 0, CMD_DELETE, "delete",
145           N_("Delete song from playlist") },
146         { { 'Z', 0, 0 }, 0, CMD_SHUFFLE, "shuffle",
147           N_("Shuffle playlist") },
148         { { 'c', 0, 0 }, 0, CMD_CLEAR, "clear",
149           N_("Clear playlist") },
150         { { 'r', 0, 0 }, 0, CMD_REPEAT, "repeat",
151           N_("Toggle repeat mode") },
152         { { 'z', 0, 0 }, 0, CMD_RANDOM, "random",
153           N_("Toggle random mode") },
154         { { 'y', 0, 0 }, 0, CMD_SINGLE, "single",
155           N_("Toggle single mode") },
156         { { 'C', 0, 0 }, 0, CMD_CONSUME, "consume",
157           N_("Toggle consume mode") },
158         { { 'x', 0, 0 }, 0, CMD_CROSSFADE, "crossfade",
159           N_("Toggle crossfade mode") },
160         { { C('U'), 0, 0 }, 0, CMD_DB_UPDATE, "db-update",
161           N_("Start a music database update") },
162         { { 'S', 0, 0 }, 0, CMD_SAVE_PLAYLIST, "save",
163           N_("Save playlist") },
164         { { 'a', 0, 0 }, 0, CMD_ADD, "add",
165           N_("Add url/file to playlist") },
167         { { '!', 0, 0 }, 0, CMD_GO_ROOT_DIRECTORY, "go-root-directory",
168           N_("Go to root directory") },
169         { { '"', 0, 0 }, 0, CMD_GO_PARENT_DIRECTORY, "go-parent-directory",
170           N_("Go to parent directory") },
172         { { 'G', 0, 0 }, 0, CMD_LOCATE, "locate",
173           N_("Locate song in browser") },
175         /* lists */
176         { { C('K'), 0, 0 }, 0, CMD_LIST_MOVE_UP, "move-up",
177           N_("Move item up") },
178         { { C('J'), 0, 0 }, 0, CMD_LIST_MOVE_DOWN, "move-down",
179           N_("Move item down") },
180         { { C('L'), 0, 0 }, 0, CMD_SCREEN_UPDATE, "update",
181           N_("Refresh screen") },
184         /* ncmpc options */
185         { { 'w', 0, 0 }, 0, CMD_TOGGLE_FIND_WRAP, "wrap-mode",
186           /* translators: toggle between wrapping and non-wrapping
187              search */
188           N_("Toggle find mode") },
189         { { 'U', 0, 0 }, 0, CMD_TOGGLE_AUTOCENTER, "autocenter-mode",
190           /* translators: the auto center mode always centers the song
191              currently being played */
192           N_("Toggle auto center mode") },
195         /* change screen */
196         { { TAB, 0, 0 }, 0, CMD_SCREEN_NEXT, "screen-next",
197           N_("Next screen") },
198         { { STAB, 0, 0 }, 0, CMD_SCREEN_PREVIOUS, "screen-prev",
199           N_("Previous screen") },
200         { { '`', 0, 0 }, 0, CMD_SCREEN_SWAP, "screen-swap",
201           N_("Swap to most recent screen") },
204         /* find */
205         { { '/', 0, 0 }, 0, CMD_LIST_FIND, "find",
206           N_("Forward find") },
207         { { 'n', 0, 0 }, 0, CMD_LIST_FIND_NEXT, "find-next",
208           N_("Forward find next") },
209         { { '?', 0, 0 }, 0, CMD_LIST_RFIND, "rfind",
210           N_("Backward find") },
211         { { 'p', 0, 0 }, 0, CMD_LIST_RFIND_NEXT, "rfind-next",
212           N_("Backward find previous") },
213         { { '.', 0, 0 }, 0, CMD_LIST_JUMP, "jump",
214                 /* translators: this queries the user for a string
215                  * and jumps directly (while the user is typing)
216                  * to the entry which begins with this string */
217           N_("Jump to") },
220         /* extra screens */
221 #ifdef ENABLE_ARTIST_SCREEN
222         { {'4', F4, 0 }, 0, CMD_SCREEN_ARTIST, "screen-artist",
223           N_("Artist screen") },
224 #endif
225 #ifdef ENABLE_SEARCH_SCREEN
226         { {'5', F5, 0 }, 0, CMD_SCREEN_SEARCH, "screen-search",
227           N_("Search screen") },
228         { {'m', 0, 0 }, 0, CMD_SEARCH_MODE, "search-mode",
229           N_("Change search mode") },
230 #endif
231 #ifdef ENABLE_SONG_SCREEN
232         { { 'i', 0, 0 }, 0, CMD_SCREEN_SONG, "view",
233           N_("View the selected and the currently playing song") },
234 #endif
235 #ifdef ENABLE_LYRICS_SCREEN
236         { {'7', F7, 0 }, 0, CMD_SCREEN_LYRICS, "screen-lyrics",
237           N_("Lyrics screen") },
238         { {ESC, 0, 0 }, 0, CMD_INTERRUPT, "lyrics-interrupt",
239           /* translators: interrupt the current background action,
240              e.g. stop loading lyrics from the internet */
241           N_("Interrupt action") },
242         { {'u', 0, 0 }, 0, CMD_LYRICS_UPDATE, "lyrics-update",
243           N_("Update Lyrics") },
244 #endif
246 #ifdef ENABLE_OUTPUTS_SCREEN
247         { {'8', F8, 0 }, 0, CMD_SCREEN_OUTPUTS, "screen-outputs",
248           N_("Outputs screen") },
249 #endif
252         { { -1, -1, -1 }, 0, CMD_NONE, NULL, NULL }
253 };
255 #ifdef ENABLE_KEYDEF_SCREEN
256 command_definition_t *
257 get_command_definitions(void)
259         return cmds;
261 #endif
263 const char *
264 key2str(int key)
266         static char buf[32];
267         int i;
269         buf[0] = 0;
270         switch(key) {
271         case 0:
272                 return _("Undefined");
273         case ' ':
274                 return _("Space");
275         case RET:
276                 return _("Enter");
277         case BS:
278                 return _("Backspace");
279         case DEL:
280                 return _("Delete");
281         case UP:
282                 return _("Up");
283         case DWN:
284                 return _("Down");
285         case LEFT:
286                 return _("Left");
287         case RGHT:
288                 return _("Right");
289         case HOME:
290                 return _("Home");
291         case END:
292                 return _("End");
293         case PGDN:
294                 return _("PageDown");
295         case PGUP:
296                 return _("PageUp");
297         case TAB:
298                 return _("Tab");
299         case STAB:
300                 return _("Shift+Tab");
301         case ESC:
302                 return _("Esc");
303         case KEY_IC:
304                 return _("Insert");
305         default:
306                 for (i = 0; i <= 63; i++)
307                         if (key == KEY_F(i)) {
308                                 g_snprintf(buf, 32, "F%d", i );
309                                 return buf;
310                         }
311                 if (!(key & ~037))
312                         g_snprintf(buf, 32, "Ctrl-%c", 'A'+(key & 037)-1 );
313                 else if ((key & ~037) == 224)
314                         g_snprintf(buf, 32, "Alt-%c", 'A'+(key & 037)-1 );
315                 else if (key > 32 && key < 256)
316                         g_snprintf(buf, 32, "%c", key);
317                 else
318                         g_snprintf(buf, 32, "0x%03X", key);
319         }
321         return buf;
324 void
325 command_dump_keys(void)
327         int i = 0;
329         while (cmds[i].description) {
330                 if (cmds[i].command != CMD_NONE)
331                         printf(" %20s : %s\n", get_key_names(cmds[i].command,1),cmds[i].name);
332                 i++;
333         }
336 #ifndef NCMPC_MINI
338 static int
339 set_key_flags(command_definition_t *cp, command_t command, int flags)
341         int i = 0;
343         while (cp[i].name) {
344                 if (cp[i].command == command) {
345                         cp[i].flags |= flags;
346                         return 0;
347                 }
348                 i++;
349         }
351         return 1;
354 #endif
356 const char *
357 get_key_names(command_t command, int all)
359         int i = 0;
361         while (cmds[i].description) {
362                 if (cmds[i].command == command) {
363                         int j;
364                         static char keystr[80];
366                         g_strlcpy(keystr, key2str(cmds[i].keys[0]), sizeof(keystr));
367                         if (!all)
368                                 return keystr;
369                         j=1;
370                         while (j < MAX_COMMAND_KEYS && cmds[i].keys[j] > 0) {
371                                 g_strlcat(keystr, " ", sizeof(keystr));
372                                 g_strlcat(keystr, key2str(cmds[i].keys[j]), sizeof(keystr));
373                                 j++;
374                         }
375                         return keystr;
376                 }
377                 i++;
378         }
379         return NULL;
382 const char *
383 get_key_description(command_t command)
385         int i = 0;
387         while (cmds[i].description) {
388                 if (cmds[i].command == command)
389                         return _(cmds[i].description);
390                 i++;
391         }
393         return NULL;
396 const char *
397 get_key_command_name(command_t command)
399         int i = 0;
401         while (cmds[i].name) {
402                 if (cmds[i].command == command)
403                         return cmds[i].name;
404                 i++;
405         }
406         return NULL;
409 command_t
410 get_key_command_from_name(char *name)
412         int i = 0;
414         while (cmds[i].name) {
415                 if (strcmp(name, cmds[i].name) == 0)
416                         return cmds[i].command;
417                 i++;
418         }
420         return CMD_NONE;
423 command_t
424 find_key_command(int key, command_definition_t *c)
426         int i = 0;
428         while (key && c && c[i].name) {
429                 if (c[i].keys[0] == key ||
430                     c[i].keys[1] == key ||
431                     c[i].keys[2] == key)
432                         return c[i].command;
433                 i++;
434         }
436         return CMD_NONE;
439 command_t
440 get_key_command(int key)
442         return find_key_command(key, cmds);
445 command_t
446 get_keyboard_command(void)
448         int key;
450         key = wgetch(stdscr);
451         if (key == ERR)
452                 return CMD_NONE;
454 #ifdef HAVE_GETMOUSE
455         if (key == KEY_MOUSE)
456                 return CMD_MOUSE_EVENT;
457 #endif
459         return get_key_command(key);
462 int
463 assign_keys(command_t command, int keys[MAX_COMMAND_KEYS])
465         int i = 0;
467         while (cmds[i].name) {
468                 if (cmds[i].command == command) {
469                         memcpy(cmds[i].keys, keys, sizeof(int)*MAX_COMMAND_KEYS);
470 #ifndef NCMPC_MINI
471                         cmds[i].flags |= COMMAND_KEY_MODIFIED;
472 #endif
473                         return 0;
474                 }
475                 i++;
476         }
477         return -1;
480 #ifndef NCMPC_MINI
482 int
483 check_key_bindings(command_definition_t *cp, char *buf, size_t bufsize)
485         int i;
486         int retval = 0;
488         if (cp == NULL)
489                 cp = cmds;
491         for (i = 0; cp[i].name; i++)
492                 cp[i].flags &= ~COMMAND_KEY_CONFLICT;
494         for (i = 0; cp[i].name; i++) {
495                 int j;
496                 command_t cmd;
498                 for(j=0; j<MAX_COMMAND_KEYS; j++) {
499                         if (cp[i].keys[j] &&
500                             (cmd = find_key_command(cp[i].keys[j],cp)) != cp[i].command) {
501                                 if (buf) {
502                                         g_snprintf(buf, bufsize,
503                                                    _("Key %s assigned to %s and %s"),
504                                                    key2str(cp[i].keys[j]),
505                                                    get_key_command_name(cp[i].command),
506                                                    get_key_command_name(cmd));
507                                 } else {
508                                         fprintf(stderr,
509                                                 _("Key %s assigned to %s and %s"),
510                                                 key2str(cp[i].keys[j]),
511                                                 get_key_command_name(cp[i].command),
512                                                 get_key_command_name(cmd));
513                                         fputc('\n', stderr);
514                                 }
515                                 cp[i].flags |= COMMAND_KEY_CONFLICT;
516                                 set_key_flags(cp, cmd, COMMAND_KEY_CONFLICT);
517                                 retval = -1;
518                         }
519                 }
520         }
522         return retval;
525 int
526 write_key_bindings(FILE *f, int flags)
528         int i = 0, j;
530         if (flags & KEYDEF_WRITE_HEADER)
531                 fprintf(f, "## Key bindings for ncmpc (generated by ncmpc)\n\n");
533         while (cmds[i].name && !ferror(f)) {
534                 if (cmds[i].flags & COMMAND_KEY_MODIFIED ||
535                     flags & KEYDEF_WRITE_ALL) {
536                         fprintf(f, "## %s\n", cmds[i].description);
537                         if (flags & KEYDEF_COMMENT_ALL)
538                                 fprintf(f, "#");
539                         fprintf(f, "key %s = ", cmds[i].name);
540                         for (j = 0; j < MAX_COMMAND_KEYS; j++) {
541                                 if (j && cmds[i].keys[j])
542                                         fprintf(f, ",  ");
543                                 if (!j || cmds[i].keys[j]) {
544                                         if (cmds[i].keys[j]<256 && (isalpha(cmds[i].keys[j]) ||
545                                                                     isdigit(cmds[i].keys[j])))
546                                                 fprintf(f, "\'%c\'", cmds[i].keys[j]);
547                                         else
548                                                 fprintf(f, "%d", cmds[i].keys[j]);
549                                 }
550                         }
551                         fprintf(f,"\n\n");
552                 }
553                 i++;
554         }
556         return ferror(f);
559 #endif