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 ****************************************************************************/
26 #include "applimits.h"
39 #include "skin_engine/skin_engine.h"
54 #include "filetypes.h"
59 #include "recorder/recording.h"
67 #include "eeprom_settings.h"
68 #include "playlist_catalog.h"
73 #include "buttonbar.h"
74 #include "quickscreen.h"
76 #include "root_menu.h"
78 static const struct filetype
*filetypes
;
79 static int filetypes_count
;
81 struct gui_synclist tree_lists
;
83 /* I put it here because other files doesn't use it yet,
84 * but should be elsewhere since it will be used mostly everywhere */
86 struct gui_buttonbar tree_buttonbar
;
88 static struct tree_context tc
;
90 bool boot_changed
= false;
92 char lastfile
[MAX_PATH
];
93 static char lastdir
[MAX_PATH
];
95 static int lasttable
, lastextra
, lastfirstpos
;
97 static int max_files
= 0;
99 static bool reload_dir
= false;
101 static bool start_wps
= false;
102 static int curr_context
= false;/* id3db or tree*/
104 static int dirbrowse(void);
105 static int ft_play_dirname(char* name
);
106 static void ft_play_filename(char *dir
, char *file
);
107 static void say_filetype(int attr
);
109 static const char* tree_get_filename(int selected_item
, void *data
,
110 char *buffer
, size_t buffer_len
)
112 struct tree_context
* local_tc
=(struct tree_context
*)data
;
115 bool stripit
= false;
117 bool id3db
= *(local_tc
->dirfilter
) == SHOW_ID3DB
;
121 return tagtree_get_entry(&tc
, selected_item
)->name
;
126 struct entry
* dc
= local_tc
->dircache
;
127 struct entry
* e
= &dc
[selected_item
];
132 if(!(attr
& ATTR_DIRECTORY
))
134 switch(global_settings
.show_filename_ext
)
137 /* show file extension: off */
141 /* show file extension: on */
144 /* show file extension: only unknown types */
145 stripit
= filetype_supported(attr
);
149 /* show file extension: only when viewing all */
150 stripit
= (*(local_tc
->dirfilter
) != SHOW_ID3DB
) &&
151 (*(local_tc
->dirfilter
) != SHOW_ALL
);
158 return(strip_extension(buffer
, buffer_len
, name
));
163 #ifdef HAVE_LCD_COLOR
164 static int tree_get_filecolor(int selected_item
, void * data
)
166 if (*tc
.dirfilter
== SHOW_ID3DB
)
168 struct tree_context
* local_tc
=(struct tree_context
*)data
;
169 struct entry
* dc
= local_tc
->dircache
;
170 struct entry
* e
= &dc
[selected_item
];
171 return filetype_get_color(e
->name
, e
->attr
);
175 static enum themable_icons
tree_get_fileicon(int selected_item
, void * data
)
177 struct tree_context
* local_tc
=(struct tree_context
*)data
;
179 bool id3db
= *(local_tc
->dirfilter
) == SHOW_ID3DB
;
181 return tagtree_get_icon(&tc
);
186 struct entry
* dc
= local_tc
->dircache
;
187 struct entry
* e
= &dc
[selected_item
];
188 return filetype_get_icon(e
->attr
);
192 static int tree_voice_cb(int selected_item
, void * data
)
194 struct tree_context
* local_tc
=(struct tree_context
*)data
;
198 bool id3db
= *(local_tc
->dirfilter
) == SHOW_ID3DB
;
202 attr
= tagtree_get_attr(local_tc
);
203 name
= tagtree_get_entry(local_tc
, selected_item
)->name
;
208 struct entry
* dc
= local_tc
->dircache
;
209 struct entry
* e
= &dc
[selected_item
];
213 bool is_dir
= (attr
& ATTR_DIRECTORY
);
214 bool did_clip
= false;
215 /* First the .talk clip case */
218 if(global_settings
.talk_dir_clip
)
221 if(ft_play_dirname(name
) <0)
222 /* failed, not existing */
225 } else { /* it's a file */
226 if (global_settings
.talk_file_clip
&& (attr
& FILE_ATTR_THUMBNAIL
))
229 ft_play_filename(local_tc
->currdir
, name
);
234 /* say the number or spell if required or as a fallback */
235 switch (is_dir
? global_settings
.talk_dir
: global_settings
.talk_file
)
237 case 1: /* as numbers */
238 talk_id(is_dir
? VOICE_DIR
: VOICE_FILE
, false);
239 talk_number(selected_item
+1 - (is_dir
? 0 : local_tc
->dirsindir
),
241 if(global_settings
.talk_filetype
242 && !is_dir
&& *local_tc
->dirfilter
< NUM_FILTER_MODES
)
245 case 2: /* spelled */
247 if(global_settings
.talk_filetype
)
250 talk_id(VOICE_DIR
, true);
251 else if(*local_tc
->dirfilter
< NUM_FILTER_MODES
)
254 talk_spell(name
, true);
261 bool check_rockboxdir(void)
263 if(!dir_exists(ROCKBOX_DIR
))
264 { /* No need to localise this message.
265 If .rockbox is missing, it wouldn't work anyway */
268 screens
[i
].clear_display();
269 splash(HZ
*2, "No .rockbox directory");
271 screens
[i
].clear_display();
272 splash(HZ
*2, "Installation incomplete");
278 /* do this really late in the init sequence */
279 void tree_gui_init(void)
283 strcpy(tc
.currdir
, "/");
285 #ifdef HAVE_LCD_CHARCELLS
288 screens
[i
].double_height(false);
290 #ifdef HAVE_BUTTONBAR
291 gui_buttonbar_init(&tree_buttonbar
);
292 /* since archos only have one screen, no need to create more than that */
293 gui_buttonbar_set_display(&tree_buttonbar
, &(screens
[SCREEN_MAIN
]) );
295 gui_synclist_init(&tree_lists
, &tree_get_filename
, &tc
, false, 1, NULL
);
296 gui_synclist_set_voice_callback(&tree_lists
, tree_voice_cb
);
297 gui_synclist_set_icon_callback(&tree_lists
, &tree_get_fileicon
);
298 #ifdef HAVE_LCD_COLOR
299 gui_synclist_set_color_callback(&tree_lists
, &tree_get_filecolor
);
305 struct tree_context
* tree_get_context(void)
311 * Returns the position of a given file in the current directory
312 * returns -1 if not found
314 static int tree_get_file_position(char * filename
)
318 /* use lastfile to determine the selected item (default=0) */
319 for (i
=0; i
< tc
.filesindir
; i
++)
321 struct entry
* dc
= tc
.dircache
;
322 struct entry
* e
= &dc
[i
];
323 if (!strcasecmp(e
->name
, filename
))
326 return(-1);/* no file can match, returns undefined */
330 * Called when a new dir is loaded (for example when returning from other apps ...)
331 * also completely redraws the tree
333 static int update_dir(void)
335 bool changed
= false;
337 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
338 /* Checks for changes */
340 if (tc
.currtable
!= lasttable
||
341 tc
.currextra
!= lastextra
||
342 tc
.firstpos
!= lastfirstpos
||
345 if (tagtree_load(&tc
) < 0)
348 lasttable
= tc
.currtable
;
349 lastextra
= tc
.currextra
;
350 lastfirstpos
= tc
.firstpos
;
357 /* if the tc.currdir has been changed, reload it ...*/
358 if (strncmp(tc
.currdir
, lastdir
, sizeof(lastdir
)) || reload_dir
)
360 if (ft_load(&tc
, NULL
) < 0)
362 strcpy(lastdir
, tc
.currdir
);
366 /* if selected item is undefined */
367 if (tc
.selected_item
== -1)
369 /* use lastfile to determine the selected item */
370 tc
.selected_item
= tree_get_file_position(lastfile
);
372 /* If the file doesn't exists, select the first one (default) */
373 if(tc
.selected_item
< 0)
374 tc
.selected_item
= 0;
383 (tc
.dirfull
|| tc
.filesindir
== global_settings
.max_files_in_dir
) )
385 splash(HZ
, ID2P(LANG_SHOWDIR_BUFFER_FULL
));
391 #ifdef HAVE_LCD_BITMAP
392 if (global_settings
.show_path_in_browser
== SHOW_PATH_FULL
393 || global_settings
.show_path_in_browser
== SHOW_PATH_CURRENT
)
395 gui_synclist_set_title(&tree_lists
, tagtree_get_title(&tc
),
396 filetype_get_icon(ATTR_DIRECTORY
));
400 /* Must clear the title as the list is reused */
401 gui_synclist_set_title(&tree_lists
, NULL
, NOICON
);
408 #ifdef HAVE_LCD_BITMAP
409 if (global_settings
.show_path_in_browser
&&
410 *(tc
.dirfilter
) == SHOW_PLUGINS
)
413 if (!strcmp(tc
.currdir
, PLUGIN_GAMES_DIR
))
414 title
= str(LANG_PLUGIN_GAMES
);
415 else if (!strcmp(tc
.currdir
, PLUGIN_APPS_DIR
))
416 title
= str(LANG_PLUGIN_APPS
);
417 else if (!strcmp(tc
.currdir
, PLUGIN_DEMOS_DIR
))
418 title
= str(LANG_PLUGIN_DEMOS
);
419 else title
= str(LANG_PLUGINS
);
420 gui_synclist_set_title(&tree_lists
, title
, Icon_Plugin
);
422 else if (global_settings
.show_path_in_browser
== SHOW_PATH_FULL
)
424 gui_synclist_set_title(&tree_lists
, tc
.currdir
,
425 filetype_get_icon(ATTR_DIRECTORY
));
427 else if (global_settings
.show_path_in_browser
== SHOW_PATH_CURRENT
)
429 char *title
= strrchr(tc
.currdir
, '/') + 1;
432 /* Display "Files" for the root dir */
433 gui_synclist_set_title(&tree_lists
, str(LANG_DIR_BROWSER
),
434 filetype_get_icon(ATTR_DIRECTORY
));
437 gui_synclist_set_title(&tree_lists
, title
,
438 filetype_get_icon(ATTR_DIRECTORY
));
442 /* Must clear the title as the list is reused */
443 gui_synclist_set_title(&tree_lists
, NULL
, NOICON
);
448 gui_synclist_set_nb_items(&tree_lists
, tc
.filesindir
);
449 gui_synclist_set_icon_callback(&tree_lists
, tree_get_fileicon
);
450 if( tc
.selected_item
>= tc
.filesindir
)
451 tc
.selected_item
=tc
.filesindir
-1;
453 gui_synclist_select_item(&tree_lists
, tc
.selected_item
);
454 #ifdef HAVE_BUTTONBAR
455 if (global_settings
.buttonbar
) {
456 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
457 gui_buttonbar_set(&tree_buttonbar
, str(LANG_SYSFONT_DIRBROWSE_F1
),
458 str(LANG_SYSFONT_DIRBROWSE_F2
),
459 str(LANG_SYSFONT_DIRBROWSE_F3
));
461 gui_buttonbar_set(&tree_buttonbar
, "<<<", "", "");
462 gui_buttonbar_draw(&tree_buttonbar
);
465 gui_synclist_draw(&tree_lists
);
466 gui_synclist_speak_item(&tree_lists
);
467 return tc
.filesindir
;
470 /* load tracks from specified directory to resume play */
471 void resume_directory(const char *dir
)
473 int dirfilter
= *tc
.dirfilter
;
476 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
478 /* make sure the dirfilter is sane. The only time it should be possible
479 * thats its not is when resume playlist is called from a plugin
484 *tc
.dirfilter
= global_settings
.dirfilter
;
485 ret
= ft_load(&tc
, dir
);
486 *tc
.dirfilter
= dirfilter
;
491 ft_build_playlist(&tc
, 0);
499 /* Returns the current working directory and also writes cwd to buf if
500 non-NULL. In case of error, returns NULL. */
501 char *getcwd(char *buf
, int size
)
507 strlcpy(buf
, tc
.currdir
, size
);
514 /* Force a reload of the directory next time directory browser is called */
515 void reload_directory(void)
520 void get_current_file(char* buffer
, int buffer_len
)
523 /* in ID3DB mode it is a bad idea to call this function */
524 /* (only happens with `follow playlist') */
525 if( *tc
.dirfilter
== SHOW_ID3DB
)
529 struct entry
* dc
= tc
.dircache
;
530 struct entry
* e
= &dc
[tc
.selected_item
];
531 snprintf(buffer
, buffer_len
, "%s/%s", getcwd(NULL
,0),
532 tc
.dirlength
? e
->name
: "");
535 /* Allow apps to change our dirfilter directly (required for sub browsers)
536 if they're suddenly going to become a file browser for example */
537 void set_dirfilter(int l_dirfilter
)
539 *tc
.dirfilter
= l_dirfilter
;
542 /* Selects a file and update tree context properly */
543 void set_current_file(char *path
)
549 /* in ID3DB mode it is a bad idea to call this function */
550 /* (only happens with `follow playlist') */
551 if( *tc
.dirfilter
== SHOW_ID3DB
)
555 /* separate directory from filename */
556 /* gets the directory's name and put it into tc.currdir */
557 name
= strrchr(path
+1,'/');
561 strcpy(tc
.currdir
, path
);
567 strcpy(tc
.currdir
, "/");
571 strcpy(lastfile
, name
);
574 /* If we changed dir we must recalculate the dirlevel
575 and adjust the selected history properly */
576 if (strncmp(tc
.currdir
,lastdir
,sizeof(lastdir
)))
579 tc
.selected_item_history
[tc
.dirlevel
] = -1;
581 /* use '/' to calculate dirlevel */
582 for (i
= 1; path
[i
] != '\0'; i
++)
587 tc
.selected_item_history
[tc
.dirlevel
] = -1;
591 if (ft_load(&tc
, NULL
) >= 0)
593 tc
.selected_item
= tree_get_file_position(lastfile
);
598 /* main loop, handles key events */
599 static int dirbrowse()
603 int button
, oldbutton
;
604 bool reload_root
= false;
605 int lastfilter
= *tc
.dirfilter
;
606 bool lastsortcase
= global_settings
.sort_case
;
607 bool exit_func
= false;
609 char* currdir
= tc
.currdir
; /* just a shortcut */
611 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
614 curr_context
=CONTEXT_ID3DB
;
617 curr_context
=CONTEXT_TREE
;
618 if (tc
.selected_item
< 0)
619 tc
.selected_item
= 0;
628 numentries
= update_dir();
630 if (numentries
== -1)
631 return GO_TO_PREVIOUS
; /* currdir is not a directory */
633 if (*tc
.dirfilter
> NUM_FILTER_MODES
&& numentries
==0)
635 splash(HZ
*2, ID2P(LANG_NO_FILES
));
636 return GO_TO_PREVIOUS
; /* No files found for rockbox_browser() */
639 gui_synclist_draw(&tree_lists
);
641 struct entry
*dircache
= tc
.dircache
;
642 bool restore
= false;
644 tc
.dirlevel
= 0; /* shouldnt be needed.. this code needs work! */
647 static const char *lines
[]={ID2P(LANG_BOOT_CHANGED
), ID2P(LANG_REBOOT_NOW
)};
648 static const struct text_message message
={lines
, 2};
649 if(gui_syncyesno_run(&message
, NULL
, NULL
)==YESNO_YES
)
650 rolo_load("/" BOOTFILE
);
652 boot_changed
= false;
655 button
= get_action(CONTEXT_TREE
,
656 list_do_action_timeout(&tree_lists
, HZ
/2));
658 gui_synclist_do_button(&tree_lists
, &button
,LIST_WRAP_UNLESS_HELD
);
659 tc
.selected_item
= gui_synclist_get_sel_pos(&tree_lists
);
662 /* nothing to do if no files to display */
663 if ( numentries
== 0 )
667 switch (id3db
?tagtree_enter(&tc
):ft_enter(&tc
))
669 switch (ft_enter(&tc
))
672 case 1: reload_dir
= true; break;
673 case 2: start_wps
= true; break;
674 case 3: exit_func
= true; break;
680 case ACTION_STD_CANCEL
:
681 if (*tc
.dirfilter
> NUM_FILTER_MODES
&& tc
.dirlevel
< 1) {
685 if ((*tc
.dirfilter
== SHOW_ID3DB
&& tc
.dirlevel
== 0) ||
686 ((*tc
.dirfilter
!= SHOW_ID3DB
&& !strcmp(currdir
,"/"))))
688 #ifdef HAVE_LCD_BITMAP /* charcell doesnt have ACTION_TREE_PGLEFT so this isnt needed */
689 if (oldbutton
== ACTION_TREE_PGLEFT
)
701 if (ft_exit(&tc
) == 3)
707 case ACTION_TREE_STOP
:
708 if (list_stop_handler())
712 case ACTION_STD_MENU
:
716 #ifdef HAVE_RECORDING
718 return GO_TO_RECSCREEN
;
721 case ACTION_TREE_WPS
:
722 return GO_TO_PREVIOUS_MUSIC
;
724 #ifdef HAVE_QUICKSCREEN
725 case ACTION_STD_QUICKSCREEN
:
726 /* don't enter f2 from plugin browser */
727 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
729 if (quick_screen_quick(button
))
737 /* don't enter f3 from plugin browser */
738 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
740 if (quick_screen_f3(ACTION_F3
))
747 case ACTION_STD_CONTEXT
:
753 onplay_result
= onplay(NULL
, 0, curr_context
);
758 if (tagtree_get_attr(&tc
) == FILE_ATTR_AUDIO
)
760 attr
= FILE_ATTR_AUDIO
;
761 tagtree_get_filename(&tc
, buf
, sizeof(buf
));
764 attr
= ATTR_DIRECTORY
;
769 attr
= dircache
[tc
.selected_item
].attr
;
771 if (currdir
[1]) /* Not in / */
772 snprintf(buf
, sizeof buf
, "%s/%s",
774 dircache
[tc
.selected_item
].name
);
776 snprintf(buf
, sizeof buf
, "/%s",
777 dircache
[tc
.selected_item
].name
);
779 onplay_result
= onplay(buf
, attr
, curr_context
);
781 switch (onplay_result
)
783 case ONPLAY_MAINMENU
:
790 case ONPLAY_RELOAD_DIR
:
794 case ONPLAY_START_PLAY
:
807 /* The 'dir no longer valid' situation will be caught later
808 * by checking the showdir() result. */
813 if (default_event_handler(button
) == SYS_USB_CONNECTED
)
815 if(*tc
.dirfilter
> NUM_FILTER_MODES
)
816 /* leave sub-browsers after usb, doing otherwise
817 might be confusing to the user */
826 if (button
&& !IS_SYSEVENT(button
))
833 /* do we need to rescan dir? */
834 if (reload_dir
|| reload_root
||
835 lastfilter
!= *tc
.dirfilter
||
836 lastsortcase
!= global_settings
.sort_case
)
839 strcpy(currdir
, "/");
852 gui_synclist_select_item(&tree_lists
, 0);
853 gui_synclist_draw(&tree_lists
);
854 tc
.selected_item
= 0;
858 lastfilter
= *tc
.dirfilter
;
859 lastsortcase
= global_settings
.sort_case
;
864 return GO_TO_PREVIOUS
;
866 if (restore
|| reload_dir
) {
867 /* restore display */
868 numentries
= update_dir();
870 if (currdir
[1] && (numentries
< 0))
871 { /* not in root and reload failed */
872 reload_root
= true; /* try root */
880 bool create_playlist(void)
882 char filename
[MAX_PATH
];
884 snprintf(filename
, sizeof filename
, "%s.m3u8",
885 tc
.currdir
[1] ? tc
.currdir
: "/root");
886 splashf(0, "%s %s", str(LANG_CREATING
), filename
);
889 catalog_add_to_a_playlist(tc
.currdir
, ATTR_DIRECTORY
, true, filename
);
895 int rockbox_browse(const char *root
, int dirfilter
)
898 int *last_filter
= tc
.dirfilter
;
899 tc
.dirfilter
= &dirfilter
;
900 tc
.sort_dir
= global_settings
.sort_dir
;
903 if (dirfilter
>= NUM_FILTER_MODES
)
905 static struct tree_context backup
;
906 char current
[MAX_PATH
];
910 tc
.selected_item
= 0;
912 memcpy(tc
.currdir
, root
, sizeof(tc
.currdir
));
914 last_context
= curr_context
;
916 /* Center on the currently loaded language when browsing languages. */
917 if (dirfilter
== SHOW_LNG
)
919 if (global_settings
.lang_file
[0])
921 snprintf(current
, sizeof(current
), LANG_DIR
"/%s.lng",
922 global_settings
.lang_file
);
926 strlcpy(current
, LANG_DIR
"/english.lng", sizeof(current
));
929 /* Center on currently loaded WPS */
930 else if (dirfilter
== SHOW_WPS
)
932 snprintf(current
, sizeof(current
), WPS_DIR
"/%s.wps",
933 global_settings
.wps_file
);
935 #ifdef HAVE_REMOTE_LCD
936 /* Center on currently loaded RWPS */
937 else if (dirfilter
== SHOW_RWPS
)
939 snprintf(current
, sizeof(current
), WPS_DIR
"/%s.rwps",
940 global_settings
.rwps_file
);
943 #ifdef HAVE_LCD_BITMAP
944 /* Center on the currently loaded font when browsing fonts */
945 else if (dirfilter
== SHOW_FONT
)
947 snprintf(current
, sizeof(current
), FONT_DIR
"/%s.fnt",
948 global_settings
.font_file
);
952 /* Center on the currently loaded FM preset when browsing those */
953 else if (dirfilter
== SHOW_FMR
)
955 snprintf(current
, sizeof(current
), FMPRESET_PATH
"/%s.fmr",
956 global_settings
.fmr_file
);
959 else /* reset current[] */
962 /* If we've found a file to center on, do it */
963 if (current
[0] == '/')
965 set_current_file(current
);
966 /* set_current_file changes dirlevel, change it back */
970 ret_val
= dirbrowse();
972 curr_context
= last_context
;
976 static char buf
[MAX_PATH
];
977 if (dirfilter
!= SHOW_ID3DB
)
978 tc
.dirfilter
= &global_settings
.dirfilter
;
980 set_current_file(buf
);
981 ret_val
= dirbrowse();
983 tc
.dirfilter
= last_filter
;
987 void tree_mem_init(void)
989 /* We copy the settings value in case it is changed by the user. We can't
990 use it until the next reboot. */
991 max_files
= global_settings
.max_files_in_dir
;
993 /* initialize tree context struct */
994 memset(&tc
, 0, sizeof(tc
));
995 tc
.dirfilter
= &global_settings
.dirfilter
;
996 tc
.sort_dir
= global_settings
.sort_dir
;
998 tc
.name_buffer_size
= AVERAGE_FILENAME_LENGTH
* max_files
;
999 tc
.name_buffer
= buffer_alloc(tc
.name_buffer_size
);
1001 tc
.dircache_size
= max_files
* sizeof(struct entry
);
1002 tc
.dircache
= buffer_alloc(tc
.dircache_size
);
1003 tree_get_filetypes(&filetypes
, &filetypes_count
);
1006 bool bookmark_play(char *resume_file
, int index
, int offset
, int seed
,
1010 char* suffix
= strrchr(resume_file
, '.');
1011 bool started
= false;
1013 if (suffix
!= NULL
&&
1014 (!strcasecmp(suffix
, ".m3u") || !strcasecmp(suffix
, ".m3u8")))
1016 /* Playlist playback */
1018 /* check that the file exists */
1019 if(!file_exists(resume_file
))
1022 slash
= strrchr(resume_file
,'/');
1032 if (playlist_create(cp
, slash
+1) != -1)
1034 if (global_settings
.playlist_shuffle
)
1035 playlist_shuffle(seed
, -1);
1036 playlist_start(index
,offset
);
1044 /* Directory playback */
1046 if (playlist_create(resume_file
, NULL
) != -1)
1048 char* peek_filename
;
1049 resume_directory(resume_file
);
1050 if (global_settings
.playlist_shuffle
)
1051 playlist_shuffle(seed
, -1);
1053 /* Check if the file is at the same spot in the directory,
1054 else search for it */
1055 peek_filename
= playlist_peek(index
);
1057 if (peek_filename
== NULL
)
1060 if (strcmp(strrchr(peek_filename
, '/') + 1, filename
))
1062 for ( i
=0; i
< playlist_amount(); i
++ )
1064 peek_filename
= playlist_peek(i
);
1066 if (peek_filename
== NULL
)
1069 if (!strcmp(strrchr(peek_filename
, '/') + 1, filename
))
1072 if (i
< playlist_amount())
1077 playlist_start(index
,offset
);
1087 static void say_filetype(int attr
)
1089 /* try to find a voice ID for the extension, if known */
1091 attr
&= FILE_ATTR_MASK
; /* file type */
1092 for (j
=0; j
<filetypes_count
; j
++)
1093 if (attr
== filetypes
[j
].tree_attr
)
1095 talk_id(filetypes
[j
].voiceclip
, true);
1100 static int ft_play_dirname(char* name
)
1102 #if CONFIG_CODEC != SWCODEC
1103 if (audio_status() & AUDIO_STATUS_PLAY
)
1107 if(talk_file(tc
.currdir
, name
, dir_thumbnail_name
, NULL
,
1110 if(global_settings
.talk_filetype
)
1111 talk_id(VOICE_DIR
, true);
1118 static void ft_play_filename(char *dir
, char *file
)
1120 #if CONFIG_CODEC != SWCODEC
1121 if (audio_status() & AUDIO_STATUS_PLAY
)
1125 if (strlen(file
) >= strlen(file_thumbnail_ext
)
1126 && strcasecmp(&file
[strlen(file
) - strlen(file_thumbnail_ext
)],
1127 file_thumbnail_ext
))
1128 /* file has no .talk extension */
1129 talk_file(dir
, NULL
, file
, file_thumbnail_ext
,
1132 /* it already is a .talk file, play this directly, but prefix it. */
1133 talk_file(dir
, NULL
, file
, NULL
,
1134 TALK_IDARRAY(LANG_VOICE_DIR_HOVER
), false);
1137 /* These two functions are called by the USB and shutdown handlers */
1138 void tree_flush(void)
1140 #ifdef HAVE_TAGCACHE
1141 tagcache_shutdown();
1144 #ifdef HAVE_TC_RAMCACHE
1145 tagcache_unload_ramcache();
1148 #ifdef HAVE_DIRCACHE
1150 int old_val
= global_status
.dircache_size
;
1151 if (global_settings
.dircache
)
1153 if (!dircache_is_initializing())
1154 global_status
.dircache_size
= dircache_get_cache_size();
1155 # ifdef HAVE_EEPROM_SETTINGS
1156 if (firmware_settings
.initialized
)
1163 global_status
.dircache_size
= 0;
1165 if (old_val
!= global_status
.dircache_size
)
1171 void tree_restore(void)
1173 #ifdef HAVE_EEPROM_SETTINGS
1174 firmware_settings
.disk_clean
= false;
1177 #ifdef HAVE_TC_RAMCACHE
1178 remove(TAGCACHE_STATEFILE
);
1181 #ifdef HAVE_DIRCACHE
1182 remove(DIRCACHE_FILE
);
1183 if (global_settings
.dircache
)
1185 /* Print "Scanning disk..." to the display. */
1186 splash(0, str(LANG_SCANNING_DISK
));
1188 dircache_build(global_status
.dircache_size
);
1191 #ifdef HAVE_TAGCACHE
1192 tagcache_start_scan();