1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Daniel 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 ****************************************************************************/
24 #include "string-extra.h"
26 #include "applimits.h"
38 #include "skin_engine/skin_engine.h"
53 #include "filetypes.h"
55 #include "filefuncs.h"
59 #include "recorder/recording.h"
67 #include "eeprom_settings.h"
68 #include "playlist_catalog.h"
73 #include "buttonbar.h"
74 #include "quickscreen.h"
75 #include "appevents.h"
77 #include "root_menu.h"
79 static const struct filetype
*filetypes
;
80 static int filetypes_count
;
82 struct gui_synclist tree_lists
;
84 /* I put it here because other files doesn't use it yet,
85 * but should be elsewhere since it will be used mostly everywhere */
87 static struct gui_buttonbar tree_buttonbar
;
89 static struct tree_context tc
;
91 bool boot_changed
= false;
93 char lastfile
[MAX_PATH
];
94 static char lastdir
[MAX_PATH
];
96 static int lasttable
, lastextra
, lastfirstpos
;
98 static int max_files
= 0;
100 static bool reload_dir
= false;
102 static bool start_wps
= false;
103 static int curr_context
= false;/* id3db or tree*/
105 static int dirbrowse(void);
106 static int ft_play_dirname(char* name
);
107 static void ft_play_filename(char *dir
, char *file
);
108 static void say_filetype(int attr
);
110 static const char* tree_get_filename(int selected_item
, void *data
,
111 char *buffer
, size_t buffer_len
)
113 struct tree_context
* local_tc
=(struct tree_context
*)data
;
116 bool stripit
= false;
118 bool id3db
= *(local_tc
->dirfilter
) == SHOW_ID3DB
;
122 return tagtree_get_entry(&tc
, selected_item
)->name
;
127 struct entry
* dc
= local_tc
->dircache
;
128 struct entry
* e
= &dc
[selected_item
];
133 if(!(attr
& ATTR_DIRECTORY
))
135 switch(global_settings
.show_filename_ext
)
138 /* show file extension: off */
142 /* show file extension: on */
145 /* show file extension: only unknown types */
146 stripit
= filetype_supported(attr
);
150 /* show file extension: only when viewing all */
151 stripit
= (*(local_tc
->dirfilter
) != SHOW_ID3DB
) &&
152 (*(local_tc
->dirfilter
) != SHOW_ALL
);
159 return(strip_extension(buffer
, buffer_len
, name
));
164 #ifdef HAVE_LCD_COLOR
165 static int tree_get_filecolor(int selected_item
, void * data
)
167 if (*tc
.dirfilter
== SHOW_ID3DB
)
169 struct tree_context
* local_tc
=(struct tree_context
*)data
;
170 struct entry
* dc
= local_tc
->dircache
;
171 struct entry
* e
= &dc
[selected_item
];
172 return filetype_get_color(e
->name
, e
->attr
);
176 static enum themable_icons
tree_get_fileicon(int selected_item
, void * data
)
178 struct tree_context
* local_tc
=(struct tree_context
*)data
;
180 bool id3db
= *(local_tc
->dirfilter
) == SHOW_ID3DB
;
182 return tagtree_get_icon(&tc
);
187 struct entry
* dc
= local_tc
->dircache
;
188 struct entry
* e
= &dc
[selected_item
];
189 return filetype_get_icon(e
->attr
);
193 static int tree_voice_cb(int selected_item
, void * data
)
195 struct tree_context
* local_tc
=(struct tree_context
*)data
;
199 bool id3db
= *(local_tc
->dirfilter
) == SHOW_ID3DB
;
203 attr
= tagtree_get_attr(local_tc
);
204 name
= tagtree_get_entry(local_tc
, selected_item
)->name
;
209 struct entry
* dc
= local_tc
->dircache
;
210 struct entry
* e
= &dc
[selected_item
];
214 bool is_dir
= (attr
& ATTR_DIRECTORY
);
215 bool did_clip
= false;
216 /* First the .talk clip case */
219 if(global_settings
.talk_dir_clip
)
222 if(ft_play_dirname(name
) <0)
223 /* failed, not existing */
226 } else { /* it's a file */
227 if (global_settings
.talk_file_clip
&& (attr
& FILE_ATTR_THUMBNAIL
))
230 ft_play_filename(local_tc
->currdir
, name
);
235 /* say the number or spell if required or as a fallback */
236 switch (is_dir
? global_settings
.talk_dir
: global_settings
.talk_file
)
238 case 1: /* as numbers */
239 talk_id(is_dir
? VOICE_DIR
: VOICE_FILE
, false);
240 talk_number(selected_item
+1 - (is_dir
? 0 : local_tc
->dirsindir
),
242 if(global_settings
.talk_filetype
243 && !is_dir
&& *local_tc
->dirfilter
< NUM_FILTER_MODES
)
246 case 2: /* spelled */
248 if(global_settings
.talk_filetype
)
251 talk_id(VOICE_DIR
, true);
252 else if(*local_tc
->dirfilter
< NUM_FILTER_MODES
)
255 talk_spell(name
, true);
262 bool check_rockboxdir(void)
265 if(!dir_exists(get_user_file_path(ROCKBOX_DIR
, 0, path
, sizeof(path
))))
266 { /* No need to localise this message.
267 If .rockbox is missing, it wouldn't work anyway */
270 screens
[i
].clear_display();
271 splash(HZ
*2, "No .rockbox directory");
273 screens
[i
].clear_display();
274 splash(HZ
*2, "Installation incomplete");
280 /* do this really late in the init sequence */
281 void tree_gui_init(void)
285 strcpy(tc
.currdir
, "/");
287 #ifdef HAVE_LCD_CHARCELLS
290 screens
[i
].double_height(false);
292 #ifdef HAVE_BUTTONBAR
293 gui_buttonbar_init(&tree_buttonbar
);
294 /* since archos only have one screen, no need to create more than that */
295 gui_buttonbar_set_display(&tree_buttonbar
, &(screens
[SCREEN_MAIN
]) );
297 gui_synclist_init(&tree_lists
, &tree_get_filename
, &tc
, false, 1, NULL
);
298 gui_synclist_set_voice_callback(&tree_lists
, tree_voice_cb
);
299 gui_synclist_set_icon_callback(&tree_lists
,
300 global_settings
.show_icons
?&tree_get_fileicon
:NULL
);
301 #ifdef HAVE_LCD_COLOR
302 gui_synclist_set_color_callback(&tree_lists
, &tree_get_filecolor
);
307 /* drawer function for the GUI_EVENT_REDRAW callback */
308 void tree_drawlists(void)
310 /* band-aid to fix the bar/list redrawing properly after leaving a plugin */
311 send_event(GUI_EVENT_THEME_CHANGED
, NULL
);
313 gui_synclist_draw(&tree_lists
);
317 struct tree_context
* tree_get_context(void)
323 * Returns the position of a given file in the current directory
324 * returns -1 if not found
326 static int tree_get_file_position(char * filename
)
330 /* use lastfile to determine the selected item (default=0) */
331 for (i
=0; i
< tc
.filesindir
; i
++)
333 struct entry
* dc
= tc
.dircache
;
334 struct entry
* e
= &dc
[i
];
335 if (!strcasecmp(e
->name
, filename
))
338 return(-1);/* no file can match, returns undefined */
342 * Called when a new dir is loaded (for example when returning from other apps ...)
343 * also completely redraws the tree
345 static int update_dir(void)
347 bool changed
= false;
349 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
350 /* Checks for changes */
352 if (tc
.currtable
!= lasttable
||
353 tc
.currextra
!= lastextra
||
354 tc
.firstpos
!= lastfirstpos
||
357 if (tagtree_load(&tc
) < 0)
360 lasttable
= tc
.currtable
;
361 lastextra
= tc
.currextra
;
362 lastfirstpos
= tc
.firstpos
;
369 /* if the tc.currdir has been changed, reload it ...*/
370 if (strncmp(tc
.currdir
, lastdir
, sizeof(lastdir
)) || reload_dir
)
372 if (ft_load(&tc
, NULL
) < 0)
374 strcpy(lastdir
, tc
.currdir
);
378 /* if selected item is undefined */
379 if (tc
.selected_item
== -1)
381 /* use lastfile to determine the selected item */
382 tc
.selected_item
= tree_get_file_position(lastfile
);
384 /* If the file doesn't exists, select the first one (default) */
385 if(tc
.selected_item
< 0)
386 tc
.selected_item
= 0;
395 (tc
.dirfull
|| tc
.filesindir
== global_settings
.max_files_in_dir
) )
397 splash(HZ
, ID2P(LANG_SHOWDIR_BUFFER_FULL
));
403 #ifdef HAVE_LCD_BITMAP
404 if (global_settings
.show_path_in_browser
== SHOW_PATH_FULL
405 || global_settings
.show_path_in_browser
== SHOW_PATH_CURRENT
)
407 gui_synclist_set_title(&tree_lists
, tagtree_get_title(&tc
),
408 filetype_get_icon(ATTR_DIRECTORY
));
412 /* Must clear the title as the list is reused */
413 gui_synclist_set_title(&tree_lists
, NULL
, NOICON
);
420 #ifdef HAVE_LCD_BITMAP
421 if (global_settings
.show_path_in_browser
&&
422 *(tc
.dirfilter
) == SHOW_PLUGINS
)
425 if (!strcmp(tc
.currdir
, PLUGIN_GAMES_DIR
))
426 title
= str(LANG_PLUGIN_GAMES
);
427 else if (!strcmp(tc
.currdir
, PLUGIN_APPS_DIR
))
428 title
= str(LANG_PLUGIN_APPS
);
429 else if (!strcmp(tc
.currdir
, PLUGIN_DEMOS_DIR
))
430 title
= str(LANG_PLUGIN_DEMOS
);
431 else title
= str(LANG_PLUGINS
);
432 gui_synclist_set_title(&tree_lists
, title
, Icon_Plugin
);
434 else if (global_settings
.show_path_in_browser
== SHOW_PATH_FULL
)
436 gui_synclist_set_title(&tree_lists
, tc
.currdir
,
437 filetype_get_icon(ATTR_DIRECTORY
));
439 else if (global_settings
.show_path_in_browser
== SHOW_PATH_CURRENT
)
441 char *title
= strrchr(tc
.currdir
, '/') + 1;
444 /* Display "Files" for the root dir */
445 gui_synclist_set_title(&tree_lists
, str(LANG_DIR_BROWSER
),
446 filetype_get_icon(ATTR_DIRECTORY
));
449 gui_synclist_set_title(&tree_lists
, title
,
450 filetype_get_icon(ATTR_DIRECTORY
));
454 /* Must clear the title as the list is reused */
455 gui_synclist_set_title(&tree_lists
, NULL
, NOICON
);
460 gui_synclist_set_nb_items(&tree_lists
, tc
.filesindir
);
461 gui_synclist_set_icon_callback(&tree_lists
,
462 global_settings
.show_icons
?tree_get_fileicon
:NULL
);
463 if( tc
.selected_item
>= tc
.filesindir
)
464 tc
.selected_item
=tc
.filesindir
-1;
466 gui_synclist_select_item(&tree_lists
, tc
.selected_item
);
467 #ifdef HAVE_BUTTONBAR
468 if (global_settings
.buttonbar
) {
469 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
470 gui_buttonbar_set(&tree_buttonbar
, str(LANG_SYSFONT_DIRBROWSE_F1
),
471 str(LANG_SYSFONT_DIRBROWSE_F2
),
472 str(LANG_SYSFONT_DIRBROWSE_F3
));
474 gui_buttonbar_set(&tree_buttonbar
, "<<<", "", "");
475 gui_buttonbar_draw(&tree_buttonbar
);
478 gui_synclist_draw(&tree_lists
);
479 gui_synclist_speak_item(&tree_lists
);
480 return tc
.filesindir
;
483 /* load tracks from specified directory to resume play */
484 void resume_directory(const char *dir
)
486 int dirfilter
= *tc
.dirfilter
;
489 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
491 /* make sure the dirfilter is sane. The only time it should be possible
492 * thats its not is when resume playlist is called from a plugin
497 *tc
.dirfilter
= global_settings
.dirfilter
;
498 ret
= ft_load(&tc
, dir
);
499 *tc
.dirfilter
= dirfilter
;
504 ft_build_playlist(&tc
, 0);
512 /* Returns the current working directory and also writes cwd to buf if
513 non-NULL. In case of error, returns NULL. */
514 char *getcwd(char *buf
, int size
)
520 strlcpy(buf
, tc
.currdir
, size
);
527 /* Force a reload of the directory next time directory browser is called */
528 void reload_directory(void)
533 void get_current_file(char* buffer
, int buffer_len
)
536 /* in ID3DB mode it is a bad idea to call this function */
537 /* (only happens with `follow playlist') */
538 if( *tc
.dirfilter
== SHOW_ID3DB
)
542 struct entry
* dc
= tc
.dircache
;
543 struct entry
* e
= &dc
[tc
.selected_item
];
544 snprintf(buffer
, buffer_len
, "%s/%s", getcwd(NULL
,0),
545 tc
.dirlength
? e
->name
: "");
548 /* Allow apps to change our dirfilter directly (required for sub browsers)
549 if they're suddenly going to become a file browser for example */
550 void set_dirfilter(int l_dirfilter
)
552 *tc
.dirfilter
= l_dirfilter
;
555 /* Selects a file and update tree context properly */
556 void set_current_file(char *path
)
562 /* in ID3DB mode it is a bad idea to call this function */
563 /* (only happens with `follow playlist') */
564 if( *tc
.dirfilter
== SHOW_ID3DB
)
568 /* separate directory from filename */
569 /* gets the directory's name and put it into tc.currdir */
570 name
= strrchr(path
+1,'/');
574 strcpy(tc
.currdir
, path
);
580 strcpy(tc
.currdir
, "/");
584 strcpy(lastfile
, name
);
587 /* If we changed dir we must recalculate the dirlevel
588 and adjust the selected history properly */
589 if (strncmp(tc
.currdir
,lastdir
,sizeof(lastdir
)))
592 tc
.selected_item_history
[tc
.dirlevel
] = -1;
594 /* use '/' to calculate dirlevel */
595 for (i
= 1; path
[i
] != '\0'; i
++)
600 tc
.selected_item_history
[tc
.dirlevel
] = -1;
604 if (ft_load(&tc
, NULL
) >= 0)
606 tc
.selected_item
= tree_get_file_position(lastfile
);
611 /* main loop, handles key events */
612 static int dirbrowse()
616 int button
, oldbutton
;
617 bool reload_root
= false;
618 int lastfilter
= *tc
.dirfilter
;
619 bool lastsortcase
= global_settings
.sort_case
;
620 bool exit_func
= false;
622 char* currdir
= tc
.currdir
; /* just a shortcut */
624 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
627 curr_context
=CONTEXT_ID3DB
;
630 curr_context
=CONTEXT_TREE
;
631 if (tc
.selected_item
< 0)
632 tc
.selected_item
= 0;
641 numentries
= update_dir();
643 if (numentries
== -1)
644 return GO_TO_PREVIOUS
; /* currdir is not a directory */
646 if (*tc
.dirfilter
> NUM_FILTER_MODES
&& numentries
==0)
648 splash(HZ
*2, ID2P(LANG_NO_FILES
));
649 return GO_TO_PREVIOUS
; /* No files found for rockbox_browser() */
652 gui_synclist_draw(&tree_lists
);
654 struct entry
*dircache
= tc
.dircache
;
655 bool restore
= false;
657 tc
.dirlevel
= 0; /* shouldnt be needed.. this code needs work! */
660 static const char *lines
[]={ID2P(LANG_BOOT_CHANGED
), ID2P(LANG_REBOOT_NOW
)};
661 static const struct text_message message
={lines
, 2};
662 if(gui_syncyesno_run(&message
, NULL
, NULL
)==YESNO_YES
)
663 rolo_load("/" BOOTFILE
);
665 boot_changed
= false;
668 button
= get_action(CONTEXT_TREE
,
669 list_do_action_timeout(&tree_lists
, HZ
/2));
671 gui_synclist_do_button(&tree_lists
, &button
,LIST_WRAP_UNLESS_HELD
);
672 tc
.selected_item
= gui_synclist_get_sel_pos(&tree_lists
);
675 /* nothing to do if no files to display */
676 if ( numentries
== 0 )
680 switch (id3db
?tagtree_enter(&tc
):ft_enter(&tc
))
682 switch (ft_enter(&tc
))
685 case 1: reload_dir
= true; break;
686 case 2: start_wps
= true; break;
687 case 3: exit_func
= true; break;
693 case ACTION_STD_CANCEL
:
694 if (*tc
.dirfilter
> NUM_FILTER_MODES
&& tc
.dirlevel
< 1) {
698 if ((*tc
.dirfilter
== SHOW_ID3DB
&& tc
.dirlevel
== 0) ||
699 ((*tc
.dirfilter
!= SHOW_ID3DB
&& !strcmp(currdir
,"/"))))
701 #ifdef HAVE_LCD_BITMAP /* charcell doesnt have ACTION_TREE_PGLEFT so this isnt needed */
702 if (oldbutton
== ACTION_TREE_PGLEFT
)
714 if (ft_exit(&tc
) == 3)
720 case ACTION_TREE_STOP
:
721 if (list_stop_handler())
725 case ACTION_STD_MENU
:
729 #ifdef HAVE_RECORDING
731 return GO_TO_RECSCREEN
;
734 case ACTION_TREE_WPS
:
735 return GO_TO_PREVIOUS_MUSIC
;
737 #ifdef HAVE_QUICKSCREEN
738 case ACTION_STD_QUICKSCREEN
:
739 /* don't enter f2 from plugin browser */
740 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
742 if (quick_screen_quick(button
))
750 /* don't enter f3 from plugin browser */
751 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
753 if (quick_screen_f3(ACTION_F3
))
761 case ACTION_TREE_HOTKEY
:
762 if (!global_settings
.hotkey_tree
)
766 case ACTION_STD_CONTEXT
:
768 bool hotkey
= button
== ACTION_TREE_HOTKEY
;
773 onplay_result
= onplay(NULL
, 0, curr_context
, hotkey
);
778 if (tagtree_get_attr(&tc
) == FILE_ATTR_AUDIO
)
780 attr
= FILE_ATTR_AUDIO
;
781 tagtree_get_filename(&tc
, buf
, sizeof(buf
));
784 attr
= ATTR_DIRECTORY
;
789 attr
= dircache
[tc
.selected_item
].attr
;
791 if (currdir
[1]) /* Not in / */
792 snprintf(buf
, sizeof buf
, "%s/%s",
794 dircache
[tc
.selected_item
].name
);
796 snprintf(buf
, sizeof buf
, "/%s",
797 dircache
[tc
.selected_item
].name
);
799 onplay_result
= onplay(buf
, attr
, curr_context
, hotkey
);
801 switch (onplay_result
)
803 case ONPLAY_MAINMENU
:
810 case ONPLAY_RELOAD_DIR
:
814 case ONPLAY_START_PLAY
:
827 /* The 'dir no longer valid' situation will be caught later
828 * by checking the showdir() result. */
833 if (default_event_handler(button
) == SYS_USB_CONNECTED
)
835 if(*tc
.dirfilter
> NUM_FILTER_MODES
)
836 /* leave sub-browsers after usb, doing otherwise
837 might be confusing to the user */
846 if (button
&& !IS_SYSEVENT(button
))
853 /* do we need to rescan dir? */
854 if (reload_dir
|| reload_root
||
855 lastfilter
!= *tc
.dirfilter
||
856 lastsortcase
!= global_settings
.sort_case
)
859 strcpy(currdir
, "/");
872 gui_synclist_select_item(&tree_lists
, 0);
873 gui_synclist_draw(&tree_lists
);
874 tc
.selected_item
= 0;
878 lastfilter
= *tc
.dirfilter
;
879 lastsortcase
= global_settings
.sort_case
;
884 return GO_TO_PREVIOUS
;
886 if (restore
|| reload_dir
) {
887 /* restore display */
888 numentries
= update_dir();
890 if (currdir
[1] && (numentries
< 0))
891 { /* not in root and reload failed */
892 reload_root
= true; /* try root */
900 bool create_playlist(void)
902 char filename
[MAX_PATH
];
904 snprintf(filename
, sizeof filename
, "%s.m3u8",
905 tc
.currdir
[1] ? tc
.currdir
: "/root");
906 splashf(0, "%s %s", str(LANG_CREATING
), filename
);
909 catalog_add_to_a_playlist(tc
.currdir
, ATTR_DIRECTORY
, true, filename
);
915 int rockbox_browse(const char *root
, int dirfilter
)
918 int *last_filter
= tc
.dirfilter
;
919 tc
.dirfilter
= &dirfilter
;
920 tc
.sort_dir
= global_settings
.sort_dir
;
923 if (dirfilter
>= NUM_FILTER_MODES
)
925 static struct tree_context backup
;
927 const char *dir
, *ext
, *setting
= NULL
;
930 tc
.selected_item
= 0;
932 memcpy(tc
.currdir
, root
, sizeof(tc
.currdir
));
934 last_context
= curr_context
;
936 /* if we are in a special settings folder, center the current setting */
942 if (global_settings
.lang_file
[0])
943 setting
= global_settings
.lang_file
;
950 setting
= global_settings
.wps_file
;
952 #ifdef HAVE_REMOTE_LCD
956 setting
= global_settings
.rwps_file
;
961 setting
= global_settings
.rsbs_file
;
964 #ifdef HAVE_LCD_BITMAP
968 setting
= global_settings
.font_file
;
973 setting
= global_settings
.sbs_file
;
980 setting
= global_settings
.fmr_file
;
984 dir
= ext
= setting
= NULL
;
988 /* If we've found a file to center on, do it */
991 char current
[MAX_PATH
], _dir
[MAX_PATH
];
992 /* if setting != NULL, ext and dir are not used uninitialized */
993 snprintf(current
, sizeof(current
), "%s/%s.%s",
994 get_user_file_path(dir
, 0, _dir
, sizeof(_dir
)), setting
, ext
);
995 set_current_file(current
);
996 /* set_current_file changes dirlevel, change it back */
1000 ret_val
= dirbrowse();
1002 curr_context
= last_context
;
1006 static char buf
[MAX_PATH
];
1007 if (dirfilter
!= SHOW_ID3DB
)
1008 tc
.dirfilter
= &global_settings
.dirfilter
;
1010 set_current_file(buf
);
1011 ret_val
= dirbrowse();
1013 tc
.dirfilter
= last_filter
;
1017 void tree_mem_init(void)
1019 /* We copy the settings value in case it is changed by the user. We can't
1020 use it until the next reboot. */
1021 max_files
= global_settings
.max_files_in_dir
;
1023 /* initialize tree context struct */
1024 memset(&tc
, 0, sizeof(tc
));
1025 tc
.dirfilter
= &global_settings
.dirfilter
;
1026 tc
.sort_dir
= global_settings
.sort_dir
;
1028 tc
.name_buffer_size
= AVERAGE_FILENAME_LENGTH
* max_files
;
1029 tc
.name_buffer
= buffer_alloc(tc
.name_buffer_size
);
1031 tc
.dircache_size
= max_files
* sizeof(struct entry
);
1032 tc
.dircache
= buffer_alloc(tc
.dircache_size
);
1033 tree_get_filetypes(&filetypes
, &filetypes_count
);
1036 bool bookmark_play(char *resume_file
, int index
, int offset
, int seed
,
1040 char* suffix
= strrchr(resume_file
, '.');
1041 bool started
= false;
1043 if (suffix
!= NULL
&&
1044 (!strcasecmp(suffix
, ".m3u") || !strcasecmp(suffix
, ".m3u8")))
1046 /* Playlist playback */
1048 /* check that the file exists */
1049 if(!file_exists(resume_file
))
1052 slash
= strrchr(resume_file
,'/');
1062 if (playlist_create(cp
, slash
+1) != -1)
1064 if (global_settings
.playlist_shuffle
)
1065 playlist_shuffle(seed
, -1);
1066 playlist_start(index
,offset
);
1074 /* Directory playback */
1076 if (playlist_create(resume_file
, NULL
) != -1)
1078 char filename_buf
[MAX_PATH
+ 1];
1079 const char* peek_filename
;
1080 resume_directory(resume_file
);
1081 if (global_settings
.playlist_shuffle
)
1082 playlist_shuffle(seed
, -1);
1084 /* Check if the file is at the same spot in the directory,
1085 else search for it */
1086 peek_filename
= playlist_peek(index
, filename_buf
,
1087 sizeof(filename_buf
));
1089 if (peek_filename
== NULL
)
1091 /* playlist has shrunk, search from the top */
1093 peek_filename
= playlist_peek(index
, filename_buf
,
1094 sizeof(filename_buf
));
1095 if (peek_filename
== NULL
)
1099 if (strcmp(strrchr(peek_filename
, '/') + 1, filename
))
1101 for ( i
=0; i
< playlist_amount(); i
++ )
1103 peek_filename
= playlist_peek(i
, filename_buf
,
1104 sizeof(filename_buf
));
1106 if (peek_filename
== NULL
)
1109 if (!strcmp(strrchr(peek_filename
, '/') + 1, filename
))
1112 if (i
< playlist_amount())
1117 playlist_start(index
,offset
);
1127 static void say_filetype(int attr
)
1129 /* try to find a voice ID for the extension, if known */
1131 attr
&= FILE_ATTR_MASK
; /* file type */
1132 for (j
=0; j
<filetypes_count
; j
++)
1133 if (attr
== filetypes
[j
].tree_attr
)
1135 talk_id(filetypes
[j
].voiceclip
, true);
1140 static int ft_play_dirname(char* name
)
1142 #if CONFIG_CODEC != SWCODEC
1143 if (audio_status() & AUDIO_STATUS_PLAY
)
1147 if(talk_file(tc
.currdir
, name
, dir_thumbnail_name
, NULL
,
1150 if(global_settings
.talk_filetype
)
1151 talk_id(VOICE_DIR
, true);
1158 static void ft_play_filename(char *dir
, char *file
)
1160 #if CONFIG_CODEC != SWCODEC
1161 if (audio_status() & AUDIO_STATUS_PLAY
)
1165 if (strlen(file
) >= strlen(file_thumbnail_ext
)
1166 && strcasecmp(&file
[strlen(file
) - strlen(file_thumbnail_ext
)],
1167 file_thumbnail_ext
))
1168 /* file has no .talk extension */
1169 talk_file(dir
, NULL
, file
, file_thumbnail_ext
,
1172 /* it already is a .talk file, play this directly, but prefix it. */
1173 talk_file(dir
, NULL
, file
, NULL
,
1174 TALK_IDARRAY(LANG_VOICE_DIR_HOVER
), false);
1177 /* These two functions are called by the USB and shutdown handlers */
1178 void tree_flush(void)
1180 #ifdef HAVE_TAGCACHE
1181 tagcache_shutdown();
1184 #ifdef HAVE_TC_RAMCACHE
1185 tagcache_unload_ramcache();
1188 #ifdef HAVE_DIRCACHE
1190 int old_val
= global_status
.dircache_size
;
1191 if (global_settings
.dircache
)
1193 if (!dircache_is_initializing())
1194 global_status
.dircache_size
= dircache_get_cache_size();
1195 # ifdef HAVE_EEPROM_SETTINGS
1196 if (firmware_settings
.initialized
)
1203 global_status
.dircache_size
= 0;
1205 if (old_val
!= global_status
.dircache_size
)
1211 void tree_restore(void)
1213 #ifdef HAVE_EEPROM_SETTINGS
1214 firmware_settings
.disk_clean
= false;
1217 #ifdef HAVE_TC_RAMCACHE
1218 remove(TAGCACHE_STATEFILE
);
1221 #ifdef HAVE_DIRCACHE
1222 remove(DIRCACHE_FILE
);
1223 if (global_settings
.dircache
)
1225 /* Print "Scanning disk..." to the display. */
1226 splash(0, str(LANG_SCANNING_DISK
));
1228 dircache_build(global_status
.dircache_size
);
1231 #ifdef HAVE_TAGCACHE
1232 tagcache_start_scan();