1 /* ncmpc (Ncurses MPD Client)
2 * (c) 2004-2010 The Music Player Daemon Project
3 * Project homepage: http://musicpd.org
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.
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.
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.
24 #include "mpdclient.h"
43 #define KEY_CTL(x) ((x) & 0x1f) /* KEY_CTL(A) == ^A == \1 */
45 #define BS KEY_BACKSPACE
50 #define RGHT KEY_RIGHT
53 #define PGDN KEY_NPAGE
54 #define PGUP KEY_PPAGE
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") },
74 { { 'q', 'Q', C('C') }, 0, CMD_QUIT
, "quit",
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",
94 { { PGDN
, 0, 0 }, 0, CMD_LIST_NEXT_PAGE
, "pgdn",
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") },
111 { { '1', F1
, 'h' }, 0, CMD_SCREEN_HELP
, "screen-help",
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",
124 { { 's', BS
, 0 }, 0, CMD_STOP
, "stop",
126 { { 'o', 0, 0 }, 0, CMD_CROP
, "crop",
128 { { '>', 0, 0 }, 0, CMD_TRACK_NEXT
, "next",
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") },
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") },
185 { { 'w', 0, 0 }, 0, CMD_TOGGLE_FIND_WRAP
, "wrap-mode",
186 /* translators: toggle between wrapping and non-wrapping
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") },
196 { { TAB
, 0, 0 }, 0, CMD_SCREEN_NEXT
, "screen-next",
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") },
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 */
221 #ifdef ENABLE_ARTIST_SCREEN
222 { {'4', F4
, 0 }, 0, CMD_SCREEN_ARTIST
, "screen-artist",
223 N_("Artist screen") },
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") },
231 #ifdef ENABLE_SONG_SCREEN
232 { { 'i', 0, 0 }, 0, CMD_SCREEN_SONG
, "view",
233 N_("View the selected and the currently playing song") },
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") },
246 #ifdef ENABLE_OUTPUTS_SCREEN
247 { {'8', F8
, 0 }, 0, CMD_SCREEN_OUTPUTS
, "screen-outputs",
248 N_("Outputs screen") },
252 { { -1, -1, -1 }, 0, CMD_NONE
, NULL
, NULL
}
255 #ifdef ENABLE_KEYDEF_SCREEN
256 command_definition_t
*
257 get_command_definitions(void)
272 return _("Undefined");
278 return _("Backspace");
294 return _("PageDown");
300 return _("Shift+Tab");
306 for (i
= 0; i
<= 63; i
++)
307 if (key
== KEY_F(i
)) {
308 g_snprintf(buf
, 32, "F%d", i
);
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
);
318 g_snprintf(buf
, 32, "0x%03X", key
);
325 command_dump_keys(void)
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
);
339 set_key_flags(command_definition_t
*cp
, command_t command
, int flags
)
344 if (cp
[i
].command
== command
) {
345 cp
[i
].flags
|= flags
;
357 get_key_names(command_t command
, int all
)
361 while (cmds
[i
].description
) {
362 if (cmds
[i
].command
== command
) {
364 static char keystr
[80];
366 g_strlcpy(keystr
, key2str(cmds
[i
].keys
[0]), sizeof(keystr
));
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
));
383 get_key_description(command_t command
)
387 while (cmds
[i
].description
) {
388 if (cmds
[i
].command
== command
)
389 return _(cmds
[i
].description
);
397 get_key_command_name(command_t command
)
401 while (cmds
[i
].name
) {
402 if (cmds
[i
].command
== command
)
410 get_key_command_from_name(char *name
)
414 while (cmds
[i
].name
) {
415 if (strcmp(name
, cmds
[i
].name
) == 0)
416 return cmds
[i
].command
;
424 find_key_command(int key
, command_definition_t
*c
)
428 while (key
&& c
&& c
[i
].name
) {
429 if (c
[i
].keys
[0] == key
||
430 c
[i
].keys
[1] == key
||
440 get_key_command(int key
)
442 return find_key_command(key
, cmds
);
446 get_keyboard_command(void)
450 key
= wgetch(stdscr
);
455 if (key
== KEY_MOUSE
)
456 return CMD_MOUSE_EVENT
;
459 return get_key_command(key
);
463 assign_keys(command_t command
, int keys
[MAX_COMMAND_KEYS
])
467 while (cmds
[i
].name
) {
468 if (cmds
[i
].command
== command
) {
469 memcpy(cmds
[i
].keys
, keys
, sizeof(int)*MAX_COMMAND_KEYS
);
471 cmds
[i
].flags
|= COMMAND_KEY_MODIFIED
;
483 check_key_bindings(command_definition_t
*cp
, char *buf
, size_t bufsize
)
492 cp
[i
].flags
&= ~COMMAND_KEY_CONFLICT
;
501 for(j
=0; j
<MAX_COMMAND_KEYS
; j
++)
503 (cmd
= find_key_command(cp
[i
].keys
[j
],cp
)) != cp
[i
].command
) {
505 g_snprintf(buf
, bufsize
,
506 _("Key %s assigned to %s and %s"),
507 key2str(cp
[i
].keys
[j
]),
508 get_key_command_name(cp
[i
].command
),
509 get_key_command_name(cmd
));
512 _("Key %s assigned to %s and %s"),
513 key2str(cp
[i
].keys
[j
]),
514 get_key_command_name(cp
[i
].command
),
515 get_key_command_name(cmd
));
518 cp
[i
].flags
|= COMMAND_KEY_CONFLICT
;
519 set_key_flags(cp
, cmd
, COMMAND_KEY_CONFLICT
);
528 write_key_bindings(FILE *f
, int flags
)
532 if (flags
& KEYDEF_WRITE_HEADER
)
533 fprintf(f
, "## Key bindings for ncmpc (generated by ncmpc)\n\n");
535 while (cmds
[i
].name
&& !ferror(f
)) {
536 if (cmds
[i
].flags
& COMMAND_KEY_MODIFIED
||
537 flags
& KEYDEF_WRITE_ALL
) {
538 fprintf(f
, "## %s\n", cmds
[i
].description
);
539 if (flags
& KEYDEF_COMMENT_ALL
)
541 fprintf(f
, "key %s = ", cmds
[i
].name
);
542 for (j
= 0; j
< MAX_COMMAND_KEYS
; j
++) {
543 if (j
&& cmds
[i
].keys
[j
])
545 if (!j
|| cmds
[i
].keys
[j
]) {
546 if (cmds
[i
].keys
[j
]<256 && (isalpha(cmds
[i
].keys
[j
]) ||
547 isdigit(cmds
[i
].keys
[j
])))
548 fprintf(f
, "\'%c\'", cmds
[i
].keys
[j
]);
550 fprintf(f
, "%d", cmds
[i
].keys
[j
]);