1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Björn Stenberg
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
44 #include "playlist_viewer.h"
47 #include "filetypes.h"
53 #include "menus/exported_menus.h"
54 #ifdef HAVE_LCD_BITMAP
57 #include "sound_menu.h"
58 #include "playlist_menu.h"
59 #include "playlist_catalog.h"
64 #include "statusbar-skinned.h"
65 #include "pitchscreen.h"
69 static char* selected_file
= NULL
;
70 static int selected_file_attr
= 0;
71 static int onplay_result
= ONPLAY_OK
;
72 static char clipboard_selection
[MAX_PATH
];
73 static int clipboard_selection_attr
= 0;
74 static bool clipboard_is_copy
= false;
76 /* redefine MAKE_MENU so the MENU_EXITAFTERTHISMENU flag can be added easily */
77 #define MAKE_ONPLAYMENU( name, str, callback, icon, ... ) \
78 static const struct menu_item_ex *name##_[] = {__VA_ARGS__}; \
79 static const struct menu_callback_with_desc name##__ = {callback,str,icon};\
80 static const struct menu_item_ex name = \
81 {MT_MENU|MENU_HAS_DESC|MENU_EXITAFTERTHISMENU| \
82 MENU_ITEM_COUNT(sizeof( name##_)/sizeof(*name##_)), \
83 { (void*)name##_},{.callback_and_desc = & name##__}};
85 /* ----------------------------------------------------------------------- */
86 /* Displays the bookmark menu options for the user to decide. This is an */
87 /* interface function. */
88 /* ----------------------------------------------------------------------- */
90 static int bookmark_menu_callback(int action
,
91 const struct menu_item_ex
*this_item
);
92 MENUITEM_FUNCTION(bookmark_create_menu_item
, 0,
93 ID2P(LANG_BOOKMARK_MENU_CREATE
),
94 bookmark_create_menu
, NULL
, NULL
, Icon_Bookmark
);
95 MENUITEM_FUNCTION(bookmark_load_menu_item
, 0,
96 ID2P(LANG_BOOKMARK_MENU_LIST
),
97 bookmark_load_menu
, NULL
,
98 bookmark_menu_callback
, Icon_Bookmark
);
99 MAKE_ONPLAYMENU(bookmark_menu
, ID2P(LANG_BOOKMARK_MENU
),
100 bookmark_menu_callback
, Icon_Bookmark
,
101 &bookmark_create_menu_item
, &bookmark_load_menu_item
);
102 static int bookmark_menu_callback(int action
,
103 const struct menu_item_ex
*this_item
)
107 case ACTION_REQUEST_MENUITEM
:
108 if (this_item
== &bookmark_load_menu_item
)
110 if (bookmark_exist() == 0)
111 return ACTION_EXIT_MENUITEM
;
113 /* hide the bookmark menu if there is no playback */
114 else if ((audio_status() & AUDIO_STATUS_PLAY
) == 0)
115 return ACTION_EXIT_MENUITEM
;
117 #ifdef HAVE_LCD_CHARCELLS
118 case ACTION_ENTER_MENUITEM
:
119 status_set_param(true);
122 case ACTION_EXIT_MENUITEM
:
123 #ifdef HAVE_LCD_CHARCELLS
124 status_set_param(false);
132 /* CONTEXT_WPS playlist options */
133 static bool shuffle_playlist(void)
135 playlist_sort(NULL
, true);
136 playlist_randomise(NULL
, current_tick
, true);
140 static bool save_playlist(void)
142 save_playlist_screen(NULL
);
146 extern struct menu_item_ex view_cur_playlist
; /* from playlist_menu.c */
147 MENUITEM_FUNCTION(search_playlist_item
, 0, ID2P(LANG_SEARCH_IN_PLAYLIST
),
148 search_playlist
, NULL
, NULL
, Icon_Playlist
);
149 MENUITEM_FUNCTION(playlist_save_item
, 0, ID2P(LANG_SAVE_DYNAMIC_PLAYLIST
),
150 save_playlist
, NULL
, NULL
, Icon_Playlist
);
151 MENUITEM_FUNCTION(reshuffle_item
, 0, ID2P(LANG_SHUFFLE_PLAYLIST
),
152 shuffle_playlist
, NULL
, NULL
, Icon_Playlist
);
153 MAKE_ONPLAYMENU( wps_playlist_menu
, ID2P(LANG_PLAYLIST
),
155 &view_cur_playlist
, &search_playlist_item
,
156 &playlist_save_item
, &reshuffle_item
159 /* CONTEXT_[TREE|ID3DB] playlist options */
160 static bool add_to_playlist(int position
, bool queue
)
162 bool new_playlist
= !(audio_status() & AUDIO_STATUS_PLAY
);
163 const char *lines
[] = {
164 ID2P(LANG_RECURSE_DIRECTORY_QUESTION
),
167 const struct text_message message
={lines
, 2};
169 splash(0, ID2P(LANG_WAIT
));
172 playlist_create(NULL
, NULL
);
174 /* always set seed before inserting shuffled */
175 if (position
== PLAYLIST_INSERT_SHUFFLED
||
176 position
== PLAYLIST_INSERT_LAST_SHUFFLED
)
179 if (position
== PLAYLIST_INSERT_LAST_SHUFFLED
)
180 playlist_set_last_shuffled_start();
184 if (context
== CONTEXT_ID3DB
)
186 tagtree_insert_selection_playlist(position
, queue
);
191 if ((selected_file_attr
& FILE_ATTR_MASK
) == FILE_ATTR_AUDIO
)
192 playlist_insert_track(NULL
, selected_file
, position
, queue
, true);
193 else if (selected_file_attr
& ATTR_DIRECTORY
)
195 bool recurse
= false;
197 if (global_settings
.recursive_dir_insert
!= RECURSE_ASK
)
198 recurse
= (bool)global_settings
.recursive_dir_insert
;
201 /* Ask if user wants to recurse directory */
202 recurse
= (gui_syncyesno_run(&message
, NULL
, NULL
)==YESNO_YES
);
205 playlist_insert_directory(NULL
, selected_file
, position
, queue
,
208 else if ((selected_file_attr
& FILE_ATTR_MASK
) == FILE_ATTR_M3U
)
209 playlist_insert_playlist(NULL
, selected_file
, position
, queue
);
212 if (new_playlist
&& (playlist_amount() > 0))
214 /* nothing is currently playing so begin playing what we just
216 if (global_settings
.playlist_shuffle
)
217 playlist_shuffle(current_tick
, -1);
219 onplay_result
= ONPLAY_START_PLAY
;
225 static bool view_playlist(void)
227 bool was_playing
= audio_status() & AUDIO_STATUS_PLAY
;
230 result
= playlist_viewer_ex(selected_file
);
232 if (!was_playing
&& (audio_status() & AUDIO_STATUS_PLAY
) &&
233 onplay_result
== ONPLAY_OK
)
234 /* playlist was started from viewer */
235 onplay_result
= ONPLAY_START_PLAY
;
240 static int playlist_insert_func(void *param
)
242 if (((intptr_t)param
== PLAYLIST_REPLACE
) && !warn_on_pl_erase())
244 add_to_playlist((intptr_t)param
, false);
248 static int playlist_queue_func(void *param
)
250 add_to_playlist((intptr_t)param
, true);
254 static int treeplaylist_wplayback_callback(int action
,
255 const struct menu_item_ex
* this_item
)
260 case ACTION_REQUEST_MENUITEM
:
261 if (audio_status() & AUDIO_STATUS_PLAY
)
264 return ACTION_EXIT_MENUITEM
;
270 static int treeplaylist_callback(int action
,
271 const struct menu_item_ex
*this_item
);
274 MENUITEM_FUNCTION(i_pl_item
, MENU_FUNC_USEPARAM
, ID2P(LANG_INSERT
),
275 playlist_insert_func
, (intptr_t*)PLAYLIST_INSERT
,
276 NULL
, Icon_Playlist
);
277 MENUITEM_FUNCTION(i_first_pl_item
, MENU_FUNC_USEPARAM
, ID2P(LANG_INSERT_FIRST
),
278 playlist_insert_func
, (intptr_t*)PLAYLIST_INSERT_FIRST
,
279 treeplaylist_wplayback_callback
, Icon_Playlist
);
280 MENUITEM_FUNCTION(i_last_pl_item
, MENU_FUNC_USEPARAM
, ID2P(LANG_INSERT_LAST
),
281 playlist_insert_func
, (intptr_t*)PLAYLIST_INSERT_LAST
,
282 treeplaylist_wplayback_callback
, Icon_Playlist
);
283 MENUITEM_FUNCTION(i_shuf_pl_item
, MENU_FUNC_USEPARAM
,
284 ID2P(LANG_INSERT_SHUFFLED
), playlist_insert_func
,
285 (intptr_t*)PLAYLIST_INSERT_SHUFFLED
,
286 treeplaylist_callback
, Icon_Playlist
);
287 MENUITEM_FUNCTION(i_last_shuf_pl_item
, MENU_FUNC_USEPARAM
,
288 ID2P(LANG_INSERT_LAST_SHUFFLED
), playlist_insert_func
,
289 (intptr_t*)PLAYLIST_INSERT_LAST_SHUFFLED
,
290 treeplaylist_callback
, Icon_Playlist
);
292 MENUITEM_FUNCTION(q_pl_item
, MENU_FUNC_USEPARAM
, ID2P(LANG_QUEUE
),
293 playlist_queue_func
, (intptr_t*)PLAYLIST_INSERT
,
294 treeplaylist_wplayback_callback
, Icon_Playlist
);
295 MENUITEM_FUNCTION(q_first_pl_item
, MENU_FUNC_USEPARAM
, ID2P(LANG_QUEUE_FIRST
),
296 playlist_queue_func
, (intptr_t*)PLAYLIST_INSERT_FIRST
,
297 treeplaylist_wplayback_callback
, Icon_Playlist
);
298 MENUITEM_FUNCTION(q_last_pl_item
, MENU_FUNC_USEPARAM
, ID2P(LANG_QUEUE_LAST
),
299 playlist_queue_func
, (intptr_t*)PLAYLIST_INSERT_LAST
,
300 treeplaylist_wplayback_callback
, Icon_Playlist
);
301 MENUITEM_FUNCTION(q_shuf_pl_item
, MENU_FUNC_USEPARAM
,
302 ID2P(LANG_QUEUE_SHUFFLED
), playlist_queue_func
,
303 (intptr_t*)PLAYLIST_INSERT_SHUFFLED
,
304 treeplaylist_wplayback_callback
, Icon_Playlist
);
305 MENUITEM_FUNCTION(q_last_shuf_pl_item
, MENU_FUNC_USEPARAM
,
306 ID2P(LANG_QUEUE_LAST_SHUFFLED
), playlist_queue_func
,
307 (intptr_t*)PLAYLIST_INSERT_LAST_SHUFFLED
,
308 treeplaylist_callback
, Icon_Playlist
);
309 /* replace playlist */
310 MENUITEM_FUNCTION(replace_pl_item
, MENU_FUNC_USEPARAM
, ID2P(LANG_REPLACE
),
311 playlist_insert_func
, (intptr_t*)PLAYLIST_REPLACE
,
312 treeplaylist_wplayback_callback
, Icon_Playlist
);
315 MENUITEM_FUNCTION(view_playlist_item
, 0, ID2P(LANG_VIEW
),
317 treeplaylist_callback
, Icon_Playlist
);
319 MAKE_ONPLAYMENU( tree_playlist_menu
, ID2P(LANG_PLAYLIST
),
320 treeplaylist_callback
, Icon_Playlist
,
326 &i_pl_item
, &i_first_pl_item
, &i_last_pl_item
,
327 &i_shuf_pl_item
, &i_last_shuf_pl_item
,
330 &q_pl_item
, &q_first_pl_item
, &q_last_pl_item
,
331 &q_shuf_pl_item
, &q_last_shuf_pl_item
,
336 static int treeplaylist_callback(int action
,
337 const struct menu_item_ex
*this_item
)
341 case ACTION_REQUEST_MENUITEM
:
342 if (this_item
== &tree_playlist_menu
)
344 if (((selected_file_attr
& FILE_ATTR_MASK
) ==
346 ((selected_file_attr
& FILE_ATTR_MASK
) == FILE_ATTR_M3U
)||
347 (selected_file_attr
& ATTR_DIRECTORY
))
352 else if (this_item
== &view_playlist_item
)
354 if ((selected_file_attr
& FILE_ATTR_MASK
) == FILE_ATTR_M3U
&&
355 context
== CONTEXT_TREE
)
360 else if (this_item
== &i_shuf_pl_item
)
362 if ((audio_status() & AUDIO_STATUS_PLAY
) ||
363 (selected_file_attr
& ATTR_DIRECTORY
) ||
364 ((selected_file_attr
& FILE_ATTR_MASK
) == FILE_ATTR_M3U
))
369 else if (this_item
== &i_last_shuf_pl_item
||
370 this_item
== &q_last_shuf_pl_item
)
372 if ((playlist_amount() > 0) &&
373 (audio_status() & AUDIO_STATUS_PLAY
) &&
374 ((selected_file_attr
& ATTR_DIRECTORY
) ||
375 ((selected_file_attr
& FILE_ATTR_MASK
) == FILE_ATTR_M3U
)))
380 return ACTION_EXIT_MENUITEM
;
387 /* playlist catalog options */
388 static bool cat_add_to_a_playlist(void)
390 return catalog_add_to_a_playlist(selected_file
, selected_file_attr
,
394 static bool cat_add_to_a_new_playlist(void)
396 return catalog_add_to_a_playlist(selected_file
, selected_file_attr
,
400 static int cat_playlist_callback(int action
,
401 const struct menu_item_ex
*this_item
);
402 MENUITEM_FUNCTION(cat_view_lists
, 0, ID2P(LANG_CATALOG_VIEW
),
403 catalog_view_playlists
, 0,
404 cat_playlist_callback
, Icon_Playlist
);
405 MENUITEM_FUNCTION(cat_add_to_list
, 0, ID2P(LANG_CATALOG_ADD_TO
),
406 cat_add_to_a_playlist
, 0, NULL
, Icon_Playlist
);
407 MENUITEM_FUNCTION(cat_add_to_new
, 0, ID2P(LANG_CATALOG_ADD_TO_NEW
),
408 cat_add_to_a_new_playlist
, 0, NULL
, Icon_Playlist
);
409 MAKE_ONPLAYMENU(cat_playlist_menu
, ID2P(LANG_CATALOG
),
410 cat_playlist_callback
, Icon_Playlist
,
411 &cat_view_lists
, &cat_add_to_list
, &cat_add_to_new
);
413 static int cat_playlist_callback(int action
,
414 const struct menu_item_ex
*this_item
)
416 if (!selected_file
||
417 (((selected_file_attr
& FILE_ATTR_MASK
) != FILE_ATTR_AUDIO
) &&
418 ((selected_file_attr
& FILE_ATTR_MASK
) != FILE_ATTR_M3U
) &&
419 ((selected_file_attr
& ATTR_DIRECTORY
) == 0)))
421 return ACTION_EXIT_MENUITEM
;
424 if (context
== CONTEXT_ID3DB
&&
425 ((selected_file_attr
& FILE_ATTR_MASK
) != FILE_ATTR_AUDIO
))
427 return ACTION_EXIT_MENUITEM
;
433 case ACTION_REQUEST_MENUITEM
:
434 if (this_item
== &cat_view_lists
)
438 else if ((audio_status() & AUDIO_STATUS_PLAY
) ||
439 context
!= CONTEXT_WPS
)
444 return ACTION_EXIT_MENUITEM
;
450 #ifdef HAVE_LCD_BITMAP
451 static void draw_slider(void)
457 int slider_height
= 2*screens
[i
].getcharheight();
458 viewport_set_defaults(&vp
, i
);
459 screens
[i
].set_viewport(&vp
);
460 show_busy_slider(&screens
[i
], 1, vp
.height
- slider_height
,
461 vp
.width
-2, slider_height
-1);
462 screens
[i
].update_viewport();
463 screens
[i
].set_viewport(NULL
);
467 #define draw_slider()
470 /* helper function to remove a non-empty directory */
471 static int remove_dir(char* dirname
, int len
)
475 int dirlen
= strlen(dirname
);
477 dir
= opendir(dirname
);
479 return -1; /* open error */
483 struct dirent
* entry
;
484 /* walk through the directory content */
485 entry
= readdir(dir
);
489 dirname
[dirlen
] ='\0';
490 /* inform the user which dir we're deleting */
493 /* append name to current directory */
494 snprintf(dirname
+dirlen
, len
-dirlen
, "/%s", entry
->d_name
);
495 if (entry
->attribute
& ATTR_DIRECTORY
)
496 { /* remove a subdirectory */
497 if (!strcmp((char *)entry
->d_name
, ".") ||
498 !strcmp((char *)entry
->d_name
, ".."))
499 continue; /* skip these */
501 result
= remove_dir(dirname
, len
); /* recursion */
503 break; /* or better continue, delete what we can? */
506 { /* remove a file */
508 result
= remove(dirname
);
510 if(ACTION_STD_CANCEL
== get_action(CONTEXT_STD
,TIMEOUT_NOBLOCK
))
512 splash(HZ
, ID2P(LANG_CANCEL
));
520 { /* remove the now empty directory */
521 dirname
[dirlen
] = '\0'; /* terminate to original length */
523 result
= rmdir(dirname
);
530 /* share code for file and directory deletion, saves space */
531 static bool delete_file_dir(void)
533 char file_to_delete
[MAX_PATH
];
534 strcpy(file_to_delete
, selected_file
);
536 const char *lines
[]={
537 ID2P(LANG_REALLY_DELETE
),
540 const char *yes_lines
[]={
545 const struct text_message message
={lines
, 2};
546 const struct text_message yes_message
={yes_lines
, 2};
548 if(gui_syncyesno_run(&message
, &yes_message
, NULL
)!=YESNO_YES
)
551 splash(0, str(LANG_DELETING
));
554 if (selected_file_attr
& ATTR_DIRECTORY
) /* true if directory */
556 char pathname
[MAX_PATH
]; /* space to go deep */
558 strlcpy(pathname
, file_to_delete
, sizeof(pathname
));
559 res
= remove_dir(pathname
, sizeof(pathname
));
563 res
= remove(file_to_delete
);
566 onplay_result
= ONPLAY_RELOAD_DIR
;
571 static bool rename_file(void)
573 char newname
[MAX_PATH
];
574 char* ptr
= strrchr(selected_file
, '/') + 1;
575 int pathlen
= (ptr
- selected_file
);
576 strlcpy(newname
, selected_file
, sizeof(newname
));
577 if (!kbd_input(newname
+ pathlen
, (sizeof newname
)-pathlen
)) {
578 if (!strlen(newname
+ pathlen
) ||
579 (rename(selected_file
, newname
) < 0)) {
580 cond_talk_ids_fq(LANG_RENAME
, LANG_FAILED
);
581 splashf(HZ
*2, "%s %s", str(LANG_RENAME
), str(LANG_FAILED
));
584 onplay_result
= ONPLAY_RELOAD_DIR
;
590 static bool create_dir(void)
592 char dirname
[MAX_PATH
];
597 cwd
= getcwd(NULL
, 0);
598 memset(dirname
, 0, sizeof dirname
);
600 snprintf(dirname
, sizeof dirname
, "%s/", cwd
[1] ? cwd
: "");
602 pathlen
= strlen(dirname
);
603 rc
= kbd_input(dirname
+ pathlen
, (sizeof dirname
)-pathlen
);
609 cond_talk_ids_fq(LANG_CREATE_DIR
, LANG_FAILED
);
610 splashf(HZ
, (unsigned char *)"%s %s", str(LANG_CREATE_DIR
),
613 onplay_result
= ONPLAY_RELOAD_DIR
;
619 /* Store the current selection in the clipboard */
620 static bool clipboard_clip(bool copy
)
622 clipboard_selection
[0] = 0;
623 strlcpy(clipboard_selection
, selected_file
, sizeof(clipboard_selection
));
624 clipboard_selection_attr
= selected_file_attr
;
625 clipboard_is_copy
= copy
;
630 static bool clipboard_cut(void)
632 return clipboard_clip(false);
635 static bool clipboard_copy(void)
637 return clipboard_clip(true);
640 /* Paste a file to a new directory. Will overwrite always. */
641 static bool clipboard_pastefile(const char *src
, const char *target
, bool copy
)
643 int src_fd
, target_fd
;
645 ssize_t size
, bytesread
, byteswritten
;
650 /* See if we can get the plugin buffer for the file copy buffer */
651 buffer
= (char *) plugin_get_buffer(&buffersize
);
652 if (buffer
== NULL
|| buffersize
< 512) {
653 /* Not large enough, try for a disk sector worth of stack
656 buffer
= (char *) __builtin_alloca(buffersize
);
659 if (buffer
== NULL
) {
663 buffersize
&= ~0x1ff; /* Round buffer size to multiple of sector
666 src_fd
= open(src
, O_RDONLY
);
669 target_fd
= creat(target
);
671 if (target_fd
>= 0) {
674 size
= filesize(src_fd
);
681 bytesread
= read(src_fd
, buffer
, buffersize
);
683 if (bytesread
== -1) {
690 while(bytesread
> 0) {
691 byteswritten
= write(target_fd
, buffer
, bytesread
);
693 if (byteswritten
< 0) {
699 bytesread
-= byteswritten
;
706 /* Copy failed. Cleanup. */
715 result
= rename(src
, target
) == 0;
716 #ifdef HAVE_MULTIVOLUME
718 if (errno
== EXDEV
) {
719 /* Failed because cross volume rename doesn't work. Copy
721 result
= clipboard_pastefile(src
, target
, true);
724 result
= remove(src
) == 0;
734 /* Paste a directory to a new location. Designed to be called by
736 static bool clipboard_pastedirectory(char *src
, int srclen
, char *target
,
737 int targetlen
, bool copy
)
740 int srcdirlen
= strlen(src
);
741 int targetdirlen
= strlen(target
);
744 if (!file_exists(target
)) {
746 /* Just move the directory */
747 result
= rename(src
, target
) == 0;
749 #ifdef HAVE_MULTIVOLUME
750 if (!result
&& errno
== EXDEV
) {
751 /* Try a copy as we're going across devices */
752 result
= clipboard_pastedirectory(src
, srclen
, target
,
755 /* If it worked, remove the source directory */
757 remove_dir(src
, srclen
);
763 /* Make a directory to copy things to */
764 result
= mkdir(target
) == 0;
768 /* Check if something went wrong already */
773 srcdir
= opendir(src
);
778 /* This loop will exit as soon as there's a problem */
781 struct dirent
* entry
;
782 /* walk through the directory content */
783 entry
= readdir(srcdir
);
787 /* append name to current directory */
788 snprintf(src
+srcdirlen
, srclen
-srcdirlen
, "/%s", entry
->d_name
);
789 snprintf(target
+targetdirlen
, targetlen
-targetdirlen
, "/%s",
792 DEBUGF("Copy %s to %s\n", src
, target
);
794 if (entry
->attribute
& ATTR_DIRECTORY
)
795 { /* copy/move a subdirectory */
796 if (!strcmp((char *)entry
->d_name
, ".") ||
797 !strcmp((char *)entry
->d_name
, ".."))
798 continue; /* skip these */
800 result
= clipboard_pastedirectory(src
, srclen
, target
, targetlen
,
801 copy
); /* recursion */
804 { /* copy/move a file */
806 result
= clipboard_pastefile(src
, target
, copy
);
813 src
[srcdirlen
] = '\0'; /* terminate to original length */
814 target
[targetdirlen
] = '\0'; /* terminate to original length */
820 /* Paste the clipboard to the current directory */
821 static bool clipboard_paste(void)
823 char target
[MAX_PATH
];
827 static const char *lines
[]={ID2P(LANG_REALLY_OVERWRITE
)};
828 static const struct text_message message
={lines
, 1};
830 /* Get the name of the current directory */
831 cwd
= getcwd(NULL
, 0);
833 /* Figure out the name of the selection */
834 nameptr
= strrchr(clipboard_selection
, '/');
836 /* Final target is current directory plus name of selection */
837 snprintf(target
, sizeof(target
), "%s%s", cwd
[1] ? cwd
: "", nameptr
);
839 /* If the target existed but they choose not to overwite, exit */
840 if (file_exists(target
) &&
841 (gui_syncyesno_run(&message
, NULL
, NULL
) == YESNO_NO
)) {
845 if (clipboard_is_copy
) {
846 splash(0, ID2P(LANG_COPYING
));
850 splash(0, ID2P(LANG_MOVING
));
853 /* Now figure out what we're doing */
855 if (clipboard_selection_attr
& ATTR_DIRECTORY
) {
856 /* Recursion. Set up external stack */
857 char srcpath
[MAX_PATH
];
858 char targetpath
[MAX_PATH
];
859 if (!strncmp(clipboard_selection
, target
, strlen(clipboard_selection
)))
861 /* Do not allow the user to paste a directory into a dir they are
867 strlcpy(srcpath
, clipboard_selection
, sizeof(srcpath
));
868 strlcpy(targetpath
, target
, sizeof(targetpath
));
870 success
= clipboard_pastedirectory(srcpath
, sizeof(srcpath
),
871 target
, sizeof(targetpath
), clipboard_is_copy
);
873 if (success
&& !clipboard_is_copy
)
875 strlcpy(srcpath
, clipboard_selection
, sizeof(srcpath
));
876 remove_dir(srcpath
, sizeof(srcpath
));
880 success
= clipboard_pastefile(clipboard_selection
, target
,
887 /* Reset everything */
888 clipboard_selection
[0] = 0;
889 clipboard_selection_attr
= 0;
890 clipboard_is_copy
= false;
892 /* Force reload of the current directory */
893 onplay_result
= ONPLAY_RELOAD_DIR
;
895 cond_talk_ids_fq(LANG_PASTE
, LANG_FAILED
);
896 splashf(HZ
, (unsigned char *)"%s %s", str(LANG_PASTE
),
904 static int set_rating_inline(void)
906 struct mp3entry
* id3
= audio_current_track();
907 if (id3
&& id3
->tagcache_idx
&& global_settings
.runtimedb
)
909 set_int_ex(str(LANG_MENU_SET_RATING
), "", UNIT_INT
, (void*)(&id3
->rating
),
910 NULL
, 1, 0, 10, NULL
, NULL
);
911 tagcache_update_numeric(id3
->tagcache_idx
-1, tag_rating
, id3
->rating
);
914 splash(HZ
*2, ID2P(LANG_ID3_NO_INFO
));
917 static int ratingitem_callback(int action
,const struct menu_item_ex
*this_item
)
922 case ACTION_REQUEST_MENUITEM
:
923 if (!selected_file
|| !global_settings
.runtimedb
||
924 !tagcache_is_usable())
925 return ACTION_EXIT_MENUITEM
;
930 MENUITEM_FUNCTION(rating_item
, 0, ID2P(LANG_MENU_SET_RATING
),
931 set_rating_inline
, NULL
,
932 ratingitem_callback
, Icon_Questionmark
);
935 static bool view_cue(void)
937 struct mp3entry
* id3
= audio_current_track();
938 if(id3
&& id3
->cuesheet
)
940 browse_cuesheet(id3
->cuesheet
);
944 static int view_cue_item_callback(int action
,
945 const struct menu_item_ex
*this_item
)
948 struct mp3entry
* id3
= audio_current_track();
951 case ACTION_REQUEST_MENUITEM
:
953 || !id3
|| !id3
->cuesheet
)
954 return ACTION_EXIT_MENUITEM
;
959 MENUITEM_FUNCTION(view_cue_item
, 0, ID2P(LANG_BROWSE_CUESHEET
),
960 view_cue
, NULL
, view_cue_item_callback
, Icon_NOICON
);
962 /* CONTEXT_WPS items */
963 MENUITEM_FUNCTION(browse_id3_item
, 0, ID2P(LANG_MENU_SHOW_ID3_INFO
),
964 browse_id3
, NULL
, NULL
, Icon_NOICON
);
965 #ifdef HAVE_PITCHSCREEN
966 MENUITEM_FUNCTION(pitch_screen_item
, 0, ID2P(LANG_PITCH
),
967 gui_syncpitchscreen_run
, NULL
, NULL
, Icon_Audio
);
970 /* CONTEXT_[TREE|ID3DB] items */
971 static int clipboard_callback(int action
,const struct menu_item_ex
*this_item
);
972 MENUITEM_FUNCTION(rename_file_item
, 0, ID2P(LANG_RENAME
),
973 rename_file
, NULL
, clipboard_callback
, Icon_NOICON
);
974 MENUITEM_FUNCTION(clipboard_cut_item
, 0, ID2P(LANG_CUT
),
975 clipboard_cut
, NULL
, clipboard_callback
, Icon_NOICON
);
976 MENUITEM_FUNCTION(clipboard_copy_item
, 0, ID2P(LANG_COPY
),
977 clipboard_copy
, NULL
, clipboard_callback
, Icon_NOICON
);
978 MENUITEM_FUNCTION(clipboard_paste_item
, 0, ID2P(LANG_PASTE
),
979 clipboard_paste
, NULL
, clipboard_callback
, Icon_NOICON
);
980 MENUITEM_FUNCTION(delete_file_item
, 0, ID2P(LANG_DELETE
),
981 delete_file_dir
, NULL
, clipboard_callback
, Icon_NOICON
);
982 MENUITEM_FUNCTION(delete_dir_item
, 0, ID2P(LANG_DELETE_DIR
),
983 delete_file_dir
, NULL
, clipboard_callback
, Icon_NOICON
);
984 MENUITEM_FUNCTION(create_dir_item
, 0, ID2P(LANG_CREATE_DIR
),
985 create_dir
, NULL
, clipboard_callback
, Icon_NOICON
);
988 static bool list_viewers(void)
990 int ret
= filetype_list_viewers(selected_file
);
991 if (ret
== PLUGIN_USB_CONNECTED
)
992 onplay_result
= ONPLAY_RELOAD_DIR
;
996 static bool onplay_load_plugin(void *param
)
998 int ret
= filetype_load_plugin((const char*)param
, selected_file
);
999 if (ret
== PLUGIN_USB_CONNECTED
)
1000 onplay_result
= ONPLAY_RELOAD_DIR
;
1004 MENUITEM_FUNCTION(list_viewers_item
, 0, ID2P(LANG_ONPLAY_OPEN_WITH
),
1005 list_viewers
, NULL
, clipboard_callback
, Icon_NOICON
);
1006 MENUITEM_FUNCTION(properties_item
, MENU_FUNC_USEPARAM
, ID2P(LANG_PROPERTIES
),
1007 onplay_load_plugin
, (void *)"properties",
1008 clipboard_callback
, Icon_NOICON
);
1009 MENUITEM_FUNCTION(add_to_faves_item
, MENU_FUNC_USEPARAM
, ID2P(LANG_ADD_TO_FAVES
),
1010 onplay_load_plugin
, (void *)"shortcuts_append",
1011 clipboard_callback
, Icon_NOICON
);
1014 static bool set_backdrop(void)
1016 /* load the image */
1017 if(sb_set_backdrop(SCREEN_MAIN
, selected_file
)) {
1018 splash(HZ
, str(LANG_BACKDROP_LOADED
));
1019 set_file(selected_file
, (char *)global_settings
.backdrop_file
,
1023 splash(HZ
, str(LANG_BACKDROP_FAILED
));
1028 MENUITEM_FUNCTION(set_backdrop_item
, 0, ID2P(LANG_SET_AS_BACKDROP
),
1029 set_backdrop
, NULL
, clipboard_callback
, Icon_NOICON
);
1031 #ifdef HAVE_RECORDING
1032 static bool set_recdir(void)
1034 strlcpy(global_settings
.rec_directory
, selected_file
, MAX_FILENAME
+1);
1038 MENUITEM_FUNCTION(set_recdir_item
, 0, ID2P(LANG_SET_AS_REC_DIR
),
1039 set_recdir
, NULL
, clipboard_callback
, Icon_Recording
);
1042 static int clipboard_callback(int action
,const struct menu_item_ex
*this_item
)
1046 case ACTION_REQUEST_MENUITEM
:
1047 #ifdef HAVE_MULTIVOLUME
1048 if ((selected_file_attr
& FAT_ATTR_VOLUME
) &&
1049 (this_item
== &rename_file_item
||
1050 this_item
== &delete_dir_item
||
1051 this_item
== &clipboard_cut_item
) )
1052 return ACTION_EXIT_MENUITEM
;
1053 /* no rename+delete for volumes */
1054 if ((selected_file_attr
& ATTR_VOLUME
) &&
1055 (this_item
== &delete_file_item
||
1056 this_item
== &list_viewers_item
))
1057 return ACTION_EXIT_MENUITEM
;
1059 #ifdef HAVE_TAGCACHE
1060 if (context
== CONTEXT_ID3DB
)
1062 if (((selected_file_attr
& FILE_ATTR_MASK
) ==
1064 this_item
== &properties_item
)
1066 return ACTION_EXIT_MENUITEM
;
1069 if (this_item
== &clipboard_paste_item
)
1070 { /* visible if there is something to paste */
1071 return (clipboard_selection
[0] != 0) ?
1072 action
: ACTION_EXIT_MENUITEM
;
1074 else if (this_item
== &create_dir_item
)
1076 /* always visible */
1079 else if (selected_file
)
1081 /* requires an actual file */
1082 if (this_item
== &rename_file_item
||
1083 this_item
== &clipboard_cut_item
||
1084 this_item
== &clipboard_copy_item
||
1085 this_item
== &properties_item
||
1086 this_item
== &add_to_faves_item
)
1090 else if ((selected_file_attr
& ATTR_DIRECTORY
))
1092 /* only for directories */
1093 if (this_item
== &delete_dir_item
1094 #ifdef HAVE_RECORDING
1095 || this_item
== &set_recdir_item
1100 else if (this_item
== &delete_file_item
||
1101 this_item
== &list_viewers_item
)
1103 /* only for files */
1107 else if (this_item
== &set_backdrop_item
)
1109 char *suffix
= strrchr(selected_file
, '.');
1112 if (strcasecmp(suffix
, ".bmp") == 0)
1120 return ACTION_EXIT_MENUITEM
;
1126 static int onplaymenu_callback(int action
,const struct menu_item_ex
*this_item
);
1127 /* used when onplay() is called in the CONTEXT_WPS context */
1128 MAKE_ONPLAYMENU( wps_onplay_menu
, ID2P(LANG_ONPLAY_MENU_TITLE
),
1129 onplaymenu_callback
, Icon_Audio
,
1130 &wps_playlist_menu
, &cat_playlist_menu
,
1131 &sound_settings
, &playback_settings
,
1132 #ifdef HAVE_TAGCACHE
1135 &bookmark_menu
, &browse_id3_item
, &list_viewers_item
,
1136 &delete_file_item
, &view_cue_item
,
1137 #ifdef HAVE_PITCHSCREEN
1141 /* used when onplay() is not called in the CONTEXT_WPS context */
1142 MAKE_ONPLAYMENU( tree_onplay_menu
, ID2P(LANG_ONPLAY_MENU_TITLE
),
1143 onplaymenu_callback
, Icon_file_view_menu
,
1144 &tree_playlist_menu
, &cat_playlist_menu
,
1145 &rename_file_item
, &clipboard_cut_item
, &clipboard_copy_item
,
1146 &clipboard_paste_item
, &delete_file_item
, &delete_dir_item
,
1150 &list_viewers_item
, &create_dir_item
, &properties_item
,
1151 #ifdef HAVE_RECORDING
1156 static int onplaymenu_callback(int action
,const struct menu_item_ex
*this_item
)
1160 case ACTION_TREE_STOP
:
1161 if (this_item
== &wps_onplay_menu
)
1163 list_stop_handler();
1164 return ACTION_STD_CANCEL
;
1167 case ACTION_EXIT_MENUITEM
:
1168 return ACTION_EXIT_AFTER_THIS_MENUITEM
;
1175 /* direct function calls, no need for menu callbacks */
1176 static bool delete_item(void)
1178 #ifdef HAVE_MULTIVOLUME
1179 /* no delete for volumes */
1180 if ((selected_file_attr
& FAT_ATTR_VOLUME
) ||
1181 (selected_file_attr
& ATTR_VOLUME
))
1184 return delete_file_dir();
1187 static bool open_with(void)
1189 /* only open files */
1190 if (selected_file_attr
& ATTR_DIRECTORY
)
1192 #ifdef HAVE_MULTIVOLUME
1193 if (selected_file_attr
& ATTR_VOLUME
)
1196 return list_viewers();
1199 extern const struct menu_item_ex
*selected_menu_item
;
1200 extern bool hotkey_settable_menu
;
1202 #define HOTKEY_ACTION_MASK 0x0FF /* Mask to apply to get the action (enum) */
1203 #define HOTKEY_CTX_WPS 0x100 /* Mask to apply to check whether it's for WPS */
1204 #define HOTKEY_CTX_TREE 0x200 /* Mask to apply to check whether it's for the tree */
1206 /* Any desired hotkey functions go here... */
1207 enum hotkey_action
{
1209 HOTKEY_VIEW_PLAYLIST
= 1,
1210 HOTKEY_SHOW_TRACK_INFO
,
1217 struct hotkey_assignment
{
1218 int item
; /* Bit or'd hotkey_action and HOTKEY_CTX_x */
1219 struct menu_func func
; /* Function to run if this entry is selected */
1220 int return_code
; /* What to return after the function is run */
1221 const struct menu_item_ex
*menu_addr
; /* Must have non-dynamic text, */
1222 /* i.e. have the flag MENU_HAS_DESC. E.g. be a MENUITEM_FUNCTION */
1223 /* For all possibilities see menu.h. */
1226 #define HOTKEY_FUNC(func, param) {{(void *)func}, param}
1228 /* ... and here. Order is not important. */
1229 static struct hotkey_assignment hotkey_items
[] = {
1230 { HOTKEY_VIEW_PLAYLIST
| HOTKEY_CTX_WPS
,
1231 HOTKEY_FUNC(NULL
, NULL
),
1232 ONPLAY_PLAYLIST
, &view_cur_playlist
},
1233 { HOTKEY_SHOW_TRACK_INFO
| HOTKEY_CTX_WPS
,
1234 HOTKEY_FUNC(browse_id3
, NULL
),
1235 ONPLAY_RELOAD_DIR
, &browse_id3_item
},
1236 #ifdef HAVE_PITCHSCREEN
1237 { HOTKEY_PITCHSCREEN
| HOTKEY_CTX_WPS
,
1238 HOTKEY_FUNC(gui_syncpitchscreen_run
, NULL
),
1239 ONPLAY_RELOAD_DIR
, &pitch_screen_item
},
1241 { HOTKEY_OPEN_WITH
| HOTKEY_CTX_WPS
| HOTKEY_CTX_TREE
,
1242 HOTKEY_FUNC(open_with
, NULL
),
1243 ONPLAY_RELOAD_DIR
, &list_viewers_item
},
1244 { HOTKEY_DELETE
| HOTKEY_CTX_WPS
| HOTKEY_CTX_TREE
,
1245 HOTKEY_FUNC(delete_item
, NULL
),
1246 ONPLAY_RELOAD_DIR
, &delete_file_item
},
1247 { HOTKEY_DELETE
| HOTKEY_CTX_TREE
,
1248 HOTKEY_FUNC(delete_item
, NULL
),
1249 ONPLAY_RELOAD_DIR
, &delete_dir_item
},
1250 { HOTKEY_INSERT
| HOTKEY_CTX_TREE
,
1251 HOTKEY_FUNC(playlist_insert_func
, (intptr_t*)PLAYLIST_INSERT
),
1252 ONPLAY_START_PLAY
, &i_pl_item
},
1255 static const int num_hotkey_items
= sizeof(hotkey_items
) / sizeof(hotkey_items
[0]);
1257 /* Return the language ID for the input function */
1258 const char* get_hotkey_desc(int hk_func
)
1261 for (i
= 0; i
< num_hotkey_items
; i
++)
1263 if ((hotkey_items
[i
].item
& HOTKEY_ACTION_MASK
) == hk_func
)
1264 return P2STR(hotkey_items
[i
].menu_addr
->callback_and_desc
->desc
);
1267 return str(LANG_HOTKEY_NOT_SET
);
1270 /* Execute the hotkey function, if listed for this screen */
1271 static int execute_hotkey(bool is_wps
)
1274 struct hotkey_assignment
*this_item
;
1275 const int context
= is_wps
? HOTKEY_CTX_WPS
: HOTKEY_CTX_TREE
;
1276 const int this_hotkey
= (is_wps
? global_settings
.hotkey_wps
:
1277 global_settings
.hotkey_tree
);
1279 /* search assignment struct for a match for the hotkey setting */
1280 for (i
= 0; i
< num_hotkey_items
; i
++)
1282 this_item
= &hotkey_items
[i
];
1283 if ((this_item
->item
& context
) &&
1284 ((this_item
->item
& HOTKEY_ACTION_MASK
) == this_hotkey
))
1286 /* run the associated function (with optional param), if any */
1287 const struct menu_func func
= this_item
->func
;
1288 if (func
.function
!= NULL
)
1290 if (func
.param
!= NULL
)
1291 (*func
.function_w_param
)(func
.param
);
1295 /* return with the associated code */
1296 return this_item
->return_code
;
1300 /* no valid hotkey set */
1301 splash(HZ
, ID2P(LANG_HOTKEY_NOT_SET
));
1302 return ONPLAY_RELOAD_DIR
;
1305 /* Set the hotkey to the current context menu function, if listed */
1306 static void set_hotkey(bool is_wps
)
1309 struct hotkey_assignment
*this_item
;
1310 const int context
= is_wps
? HOTKEY_CTX_WPS
: HOTKEY_CTX_TREE
;
1311 int *hk_func
= is_wps
? &global_settings
.hotkey_wps
:
1312 &global_settings
.hotkey_tree
;
1315 bool match_found
= false;
1317 /* search assignment struct for a function that matches the current menu item */
1318 for (i
= 0; i
< num_hotkey_items
; i
++)
1320 this_item
= &hotkey_items
[i
];
1321 if ((this_item
->item
& context
) &&
1322 (this_item
->menu_addr
== selected_menu_item
))
1324 this_hk
= this_item
->item
& HOTKEY_ACTION_MASK
;
1325 this_desc
= P2STR((selected_menu_item
->callback_and_desc
)->desc
);
1331 /* ignore the hotkey if no match found or no change to setting */
1332 if (!match_found
|| (this_hk
== *hk_func
)) return;
1334 char line1_buf
[100],
1336 char *line1
= line1_buf
,
1338 char **line1_ptr
= &line1
,
1339 **line2_ptr
= &line2
;
1340 const struct text_message message
={(const char **)line1_ptr
, 1};
1341 const struct text_message yes_message
={(const char **)line2_ptr
, 1};
1343 snprintf(line1
, sizeof(line1_buf
), str(LANG_SET_HOTKEY_QUESTION
), this_desc
);
1344 snprintf(line2
, sizeof(line2_buf
), str(LANG_HOTKEY_ASSIGNED
), this_desc
);
1346 /* confirm the hotkey setting change */
1347 if(gui_syncyesno_run(&message
, &yes_message
, NULL
)==YESNO_YES
)
1349 /* store the hotkey settings */
1356 int onplay(char* file
, int attr
, int from
, bool hotkey
)
1358 const struct menu_item_ex
*menu
;
1359 onplay_result
= ONPLAY_OK
;
1361 selected_file
= file
;
1362 selected_file_attr
= attr
;
1366 return execute_hotkey(context
== CONTEXT_WPS
);
1367 hotkey_settable_menu
= true;
1371 if (context
== CONTEXT_WPS
)
1372 menu
= &wps_onplay_menu
;
1374 menu
= &tree_onplay_menu
;
1375 menu_selection
= do_menu(menu
, NULL
, NULL
, false);
1377 hotkey_settable_menu
= false;
1378 switch (menu_selection
)
1380 case MENU_SELECTED_HOTKEY
:
1381 set_hotkey(context
== CONTEXT_WPS
);
1382 return ONPLAY_RELOAD_DIR
;
1384 switch (menu_selection
)
1388 return ONPLAY_START_PLAY
;
1390 case GO_TO_MAINMENU
:
1391 return ONPLAY_MAINMENU
;
1392 case GO_TO_PLAYLIST_VIEWER
:
1393 return ONPLAY_PLAYLIST
;
1395 return onplay_result
;