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 char lastfile
[MAX_PATH
];
92 static char lastdir
[MAX_PATH
];
94 static int lasttable
, lastextra
, lastfirstpos
;
97 static bool reload_dir
= false;
99 static bool start_wps
= false;
100 static int curr_context
= false;/* id3db or tree*/
102 static int dirbrowse(void);
103 static int ft_play_dirname(char* name
);
104 static void ft_play_filename(char *dir
, char *file
);
105 static void say_filetype(int attr
);
107 static struct entry
* get_entry_at(struct tree_context
*t
, int index
)
109 struct entry
* entries
= t
->cache
.entries
;
110 return &entries
[index
];
113 static const char* tree_get_filename(int selected_item
, void *data
,
114 char *buffer
, size_t buffer_len
)
116 struct tree_context
* local_tc
=(struct tree_context
*)data
;
119 bool stripit
= false;
121 bool id3db
= *(local_tc
->dirfilter
) == SHOW_ID3DB
;
125 return tagtree_get_entry(&tc
, selected_item
)->name
;
130 struct entry
* e
= get_entry_at(local_tc
, selected_item
);
135 if(!(attr
& ATTR_DIRECTORY
))
137 switch(global_settings
.show_filename_ext
)
140 /* show file extension: off */
144 /* show file extension: on */
147 /* show file extension: only unknown types */
148 stripit
= filetype_supported(attr
);
152 /* show file extension: only when viewing all */
153 stripit
= (*(local_tc
->dirfilter
) != SHOW_ID3DB
) &&
154 (*(local_tc
->dirfilter
) != SHOW_ALL
);
161 return(strip_extension(buffer
, buffer_len
, name
));
166 #ifdef HAVE_LCD_COLOR
167 static int tree_get_filecolor(int selected_item
, void * data
)
169 if (*tc
.dirfilter
== SHOW_ID3DB
)
171 struct tree_context
* local_tc
=(struct tree_context
*)data
;
172 struct entry
* e
= get_entry_at(local_tc
, selected_item
);
173 return filetype_get_color(e
->name
, e
->attr
);
177 static enum themable_icons
tree_get_fileicon(int selected_item
, void * data
)
179 struct tree_context
* local_tc
=(struct tree_context
*)data
;
181 bool id3db
= *(local_tc
->dirfilter
) == SHOW_ID3DB
;
183 return tagtree_get_icon(&tc
);
188 struct entry
* e
= get_entry_at(local_tc
, 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
* e
= get_entry_at(local_tc
, 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
,
298 global_settings
.show_icons
?&tree_get_fileicon
:NULL
);
299 #ifdef HAVE_LCD_COLOR
300 gui_synclist_set_color_callback(&tree_lists
, &tree_get_filecolor
);
305 /* drawer function for the GUI_EVENT_REDRAW callback */
306 void tree_drawlists(void)
308 /* band-aid to fix the bar/list redrawing properly after leaving a plugin */
309 send_event(GUI_EVENT_THEME_CHANGED
, NULL
);
311 gui_synclist_draw(&tree_lists
);
315 struct tree_context
* tree_get_context(void)
321 * Returns the position of a given file in the current directory
322 * returns -1 if not found
324 static int tree_get_file_position(char * filename
)
329 /* use lastfile to determine the selected item (default=0) */
330 for (i
=0; i
< tc
.filesindir
; i
++)
332 e
= get_entry_at(&tc
, i
);
333 if (!strcasecmp(e
->name
, filename
))
336 return(-1);/* no file can match, returns undefined */
340 * Called when a new dir is loaded (for example when returning from other apps ...)
341 * also completely redraws the tree
343 static int update_dir(void)
345 bool changed
= false;
347 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
348 /* Checks for changes */
350 if (tc
.currtable
!= lasttable
||
351 tc
.currextra
!= lastextra
||
352 tc
.firstpos
!= lastfirstpos
||
355 if (tagtree_load(&tc
) < 0)
358 lasttable
= tc
.currtable
;
359 lastextra
= tc
.currextra
;
360 lastfirstpos
= tc
.firstpos
;
367 /* if the tc.currdir has been changed, reload it ...*/
368 if (strncmp(tc
.currdir
, lastdir
, sizeof(lastdir
)) || reload_dir
)
370 if (ft_load(&tc
, NULL
) < 0)
372 strcpy(lastdir
, tc
.currdir
);
376 /* if selected item is undefined */
377 if (tc
.selected_item
== -1)
379 /* use lastfile to determine the selected item */
380 tc
.selected_item
= tree_get_file_position(lastfile
);
382 /* If the file doesn't exists, select the first one (default) */
383 if(tc
.selected_item
< 0)
384 tc
.selected_item
= 0;
395 splash(HZ
, ID2P(LANG_SHOWDIR_BUFFER_FULL
));
401 #ifdef HAVE_LCD_BITMAP
402 if (global_settings
.show_path_in_browser
== SHOW_PATH_FULL
403 || global_settings
.show_path_in_browser
== SHOW_PATH_CURRENT
)
405 gui_synclist_set_title(&tree_lists
, tagtree_get_title(&tc
),
406 filetype_get_icon(ATTR_DIRECTORY
));
410 /* Must clear the title as the list is reused */
411 gui_synclist_set_title(&tree_lists
, NULL
, NOICON
);
418 #ifdef HAVE_LCD_BITMAP
419 if (tc
.browse
&& tc
.browse
->title
)
421 int icon
= tc
.browse
->icon
;
423 icon
= filetype_get_icon(ATTR_DIRECTORY
);
424 gui_synclist_set_title(&tree_lists
, tc
.browse
->title
, icon
);
426 else if (global_settings
.show_path_in_browser
== SHOW_PATH_FULL
)
428 gui_synclist_set_title(&tree_lists
, tc
.currdir
,
429 filetype_get_icon(ATTR_DIRECTORY
));
431 else if (global_settings
.show_path_in_browser
== SHOW_PATH_CURRENT
)
433 char *title
= strrchr(tc
.currdir
, '/') + 1;
436 /* Display "Files" for the root dir */
437 gui_synclist_set_title(&tree_lists
, str(LANG_DIR_BROWSER
),
438 filetype_get_icon(ATTR_DIRECTORY
));
441 gui_synclist_set_title(&tree_lists
, title
,
442 filetype_get_icon(ATTR_DIRECTORY
));
446 /* Must clear the title as the list is reused */
447 gui_synclist_set_title(&tree_lists
, NULL
, NOICON
);
452 gui_synclist_set_nb_items(&tree_lists
, tc
.filesindir
);
453 gui_synclist_set_icon_callback(&tree_lists
,
454 global_settings
.show_icons
?tree_get_fileicon
:NULL
);
455 if( tc
.selected_item
>= tc
.filesindir
)
456 tc
.selected_item
=tc
.filesindir
-1;
458 gui_synclist_select_item(&tree_lists
, tc
.selected_item
);
459 #ifdef HAVE_BUTTONBAR
460 if (global_settings
.buttonbar
) {
461 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
462 gui_buttonbar_set(&tree_buttonbar
, str(LANG_SYSFONT_DIRBROWSE_F1
),
463 str(LANG_SYSFONT_DIRBROWSE_F2
),
464 str(LANG_SYSFONT_DIRBROWSE_F3
));
466 gui_buttonbar_set(&tree_buttonbar
, "<<<", "", "");
467 gui_buttonbar_draw(&tree_buttonbar
);
470 gui_synclist_draw(&tree_lists
);
471 gui_synclist_speak_item(&tree_lists
);
472 return tc
.filesindir
;
475 /* load tracks from specified directory to resume play */
476 void resume_directory(const char *dir
)
478 int dirfilter
= *tc
.dirfilter
;
481 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
483 /* make sure the dirfilter is sane. The only time it should be possible
484 * thats its not is when resume playlist is called from a plugin
489 *tc
.dirfilter
= global_settings
.dirfilter
;
490 ret
= ft_load(&tc
, dir
);
491 *tc
.dirfilter
= dirfilter
;
496 ft_build_playlist(&tc
, 0);
504 /* Returns the current working directory and also writes cwd to buf if
505 non-NULL. In case of error, returns NULL. */
506 char *getcwd(char *buf
, getcwd_size_t size
)
512 if ((getcwd_size_t
)strlcpy(buf
, tc
.currdir
, size
) < size
)
515 /* size == 0, or truncation in strlcpy */
519 /* Force a reload of the directory next time directory browser is called */
520 void reload_directory(void)
525 char* get_current_file(char* buffer
, size_t buffer_len
)
528 /* in ID3DB mode it is a bad idea to call this function */
529 /* (only happens with `follow playlist') */
530 if( *tc
.dirfilter
== SHOW_ID3DB
)
534 struct entry
* e
= get_entry_at(&tc
, tc
.selected_item
);
535 if (getcwd(buffer
, buffer_len
))
539 if (buffer
[strlen(buffer
)-1] != '/')
540 strlcat(buffer
, "/", buffer_len
);
541 if (strlcat(buffer
, e
->name
, buffer_len
) >= buffer_len
)
549 /* Allow apps to change our dirfilter directly (required for sub browsers)
550 if they're suddenly going to become a file browser for example */
551 void set_dirfilter(int l_dirfilter
)
553 *tc
.dirfilter
= l_dirfilter
;
556 /* Selects a file and update tree context properly */
557 void set_current_file(const char *path
)
563 /* in ID3DB mode it is a bad idea to call this function */
564 /* (only happens with `follow playlist') */
565 if( *tc
.dirfilter
== SHOW_ID3DB
)
569 /* separate directory from filename */
570 /* gets the directory's name and put it into tc.currdir */
571 name
= strrchr(path
+1,'/');
574 strlcpy(tc
.currdir
, path
, name
- path
+ 1);
579 strcpy(tc
.currdir
, "/");
583 strcpy(lastfile
, name
);
586 /* If we changed dir we must recalculate the dirlevel
587 and adjust the selected history properly */
588 if (strncmp(tc
.currdir
,lastdir
,sizeof(lastdir
)))
591 tc
.selected_item_history
[tc
.dirlevel
] = -1;
593 /* use '/' to calculate dirlevel */
594 for (i
= 1; path
[i
] != '\0'; i
++)
599 tc
.selected_item_history
[tc
.dirlevel
] = -1;
603 if (ft_load(&tc
, NULL
) >= 0)
605 tc
.selected_item
= tree_get_file_position(lastfile
);
610 /* main loop, handles key events */
611 static int dirbrowse(void)
615 int button
, oldbutton
;
616 bool reload_root
= false;
617 int lastfilter
= *tc
.dirfilter
;
618 bool lastsortcase
= global_settings
.sort_case
;
619 bool exit_func
= false;
621 char* currdir
= tc
.currdir
; /* just a shortcut */
623 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
626 curr_context
=CONTEXT_ID3DB
;
629 curr_context
=CONTEXT_TREE
;
630 if (tc
.selected_item
< 0)
631 tc
.selected_item
= 0;
640 numentries
= update_dir();
642 if (numentries
== -1)
643 return GO_TO_PREVIOUS
; /* currdir is not a directory */
645 if (*tc
.dirfilter
> NUM_FILTER_MODES
&& numentries
==0)
647 splash(HZ
*2, ID2P(LANG_NO_FILES
));
648 return GO_TO_PREVIOUS
; /* No files found for rockbox_browse() */
651 gui_synclist_draw(&tree_lists
);
653 struct entry
*entries
= tc
.cache
.entries
;
654 bool restore
= false;
656 tc
.dirlevel
= 0; /* shouldnt be needed.. this code needs work! */
658 button
= get_action(CONTEXT_TREE
,
659 list_do_action_timeout(&tree_lists
, HZ
/2));
661 gui_synclist_do_button(&tree_lists
, &button
,LIST_WRAP_UNLESS_HELD
);
662 tc
.selected_item
= gui_synclist_get_sel_pos(&tree_lists
);
665 /* nothing to do if no files to display */
666 if ( numentries
== 0 )
669 if ((tc
.browse
->flags
& BROWSE_SELECTONLY
) &&
670 !(entries
[tc
.selected_item
].attr
& ATTR_DIRECTORY
))
672 tc
.browse
->flags
|= BROWSE_SELECTED
;
673 get_current_file(tc
.browse
->buf
, tc
.browse
->bufsize
);
674 return GO_TO_PREVIOUS
;
678 switch (id3db
?tagtree_enter(&tc
):ft_enter(&tc
))
680 switch (ft_enter(&tc
))
683 case GO_TO_FILEBROWSER
: reload_dir
= true; break;
690 case GO_TO_ROOT
: exit_func
= true; break;
696 case ACTION_STD_CANCEL
:
697 if (*tc
.dirfilter
> NUM_FILTER_MODES
&& tc
.dirlevel
< 1) {
701 if ((*tc
.dirfilter
== SHOW_ID3DB
&& tc
.dirlevel
== 0) ||
702 ((*tc
.dirfilter
!= SHOW_ID3DB
&& !strcmp(currdir
,"/"))))
704 #ifdef HAVE_LCD_BITMAP /* charcell doesnt have ACTION_TREE_PGLEFT so this isnt needed */
705 if (oldbutton
== ACTION_TREE_PGLEFT
)
717 if (ft_exit(&tc
) == 3)
723 case ACTION_TREE_STOP
:
724 if (list_stop_handler())
728 case ACTION_STD_MENU
:
732 #ifdef HAVE_RECORDING
734 return GO_TO_RECSCREEN
;
737 case ACTION_TREE_WPS
:
738 return GO_TO_PREVIOUS_MUSIC
;
740 #ifdef HAVE_QUICKSCREEN
741 case ACTION_STD_QUICKSCREEN
:
742 /* don't enter f2 from plugin browser */
743 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
745 if (quick_screen_quick(button
))
753 /* don't enter f3 from plugin browser */
754 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
756 if (quick_screen_f3(ACTION_F3
))
764 case ACTION_TREE_HOTKEY
:
765 if (!global_settings
.hotkey_tree
)
769 case ACTION_STD_CONTEXT
:
771 bool hotkey
= button
== ACTION_TREE_HOTKEY
;
775 if (tc
.browse
->flags
& BROWSE_NO_CONTEXT_MENU
)
779 onplay_result
= onplay(NULL
, 0, curr_context
, hotkey
);
784 if (tagtree_get_attr(&tc
) == FILE_ATTR_AUDIO
)
786 attr
= FILE_ATTR_AUDIO
;
787 tagtree_get_filename(&tc
, buf
, sizeof(buf
));
790 attr
= ATTR_DIRECTORY
;
795 attr
= entries
[tc
.selected_item
].attr
;
797 if (currdir
[1]) /* Not in / */
798 snprintf(buf
, sizeof buf
, "%s/%s",
800 entries
[tc
.selected_item
].name
);
802 snprintf(buf
, sizeof buf
, "/%s",
803 entries
[tc
.selected_item
].name
);
805 onplay_result
= onplay(buf
, attr
, curr_context
, hotkey
);
807 switch (onplay_result
)
809 case ONPLAY_MAINMENU
:
816 case ONPLAY_RELOAD_DIR
:
820 case ONPLAY_START_PLAY
:
833 /* The 'dir no longer valid' situation will be caught later
834 * by checking the showdir() result. */
839 if (default_event_handler(button
) == SYS_USB_CONNECTED
)
841 if(*tc
.dirfilter
> NUM_FILTER_MODES
)
842 /* leave sub-browsers after usb, doing otherwise
843 might be confusing to the user */
852 if (button
&& !IS_SYSEVENT(button
))
859 /* do we need to rescan dir? */
860 if (reload_dir
|| reload_root
||
861 lastfilter
!= *tc
.dirfilter
||
862 lastsortcase
!= global_settings
.sort_case
)
865 strcpy(currdir
, "/");
878 gui_synclist_select_item(&tree_lists
, 0);
879 gui_synclist_draw(&tree_lists
);
880 tc
.selected_item
= 0;
884 lastfilter
= *tc
.dirfilter
;
885 lastsortcase
= global_settings
.sort_case
;
890 return GO_TO_PREVIOUS
;
892 if (restore
|| reload_dir
) {
893 /* restore display */
894 numentries
= update_dir();
896 if (currdir
[1] && (numentries
< 0))
897 { /* not in root and reload failed */
898 reload_root
= true; /* try root */
906 bool create_playlist(void)
908 char filename
[MAX_PATH
];
911 snprintf(filename
, sizeof filename
, "%s.m3u8", tc
.currdir
);
913 snprintf(filename
, sizeof filename
, "%s/all.m3u8",
914 catalog_get_directory());
917 if (kbd_input(filename
, MAX_PATH
))
919 splashf(0, "%s %s", str(LANG_CREATING
), filename
);
922 catalog_add_to_a_playlist(tc
.currdir
, ATTR_DIRECTORY
, true, filename
);
928 void browse_context_init(struct browse_context
*browse
,
929 int dirfilter
, unsigned flags
,
930 char *title
, enum themable_icons icon
,
931 const char *root
, const char *selected
)
933 browse
->dirfilter
= dirfilter
;
934 browse
->flags
= flags
;
935 browse
->callback_show_item
= NULL
;
936 browse
->title
= title
;
939 browse
->selected
= selected
;
944 #define NUM_TC_BACKUP 3
945 static struct tree_context backups
[NUM_TC_BACKUP
];
946 /* do not make backup if it is not recursive call */
947 static int backup_count
= -1;
948 int rockbox_browse(struct browse_context
*browse
)
950 static char current
[MAX_PATH
];
952 int dirfilter
= browse
->dirfilter
;
954 if (backup_count
>= NUM_TC_BACKUP
)
955 return GO_TO_PREVIOUS
;
956 if (backup_count
>= 0)
957 backups
[backup_count
] = tc
;
960 tc
.dirfilter
= &dirfilter
;
961 tc
.sort_dir
= global_settings
.sort_dir
;
964 if (*tc
.dirfilter
>= NUM_FILTER_MODES
)
969 tc
.selected_item
= 0;
971 strlcpy(tc
.currdir
, browse
->root
, sizeof(tc
.currdir
));
973 last_context
= curr_context
;
975 if (browse
->selected
)
977 snprintf(current
, sizeof(current
), "%s/%s",
978 browse
->root
, browse
->selected
);
979 set_current_file(current
);
980 /* set_current_file changes dirlevel, change it back */
984 ret_val
= dirbrowse();
985 curr_context
= last_context
;
989 if (dirfilter
!= SHOW_ID3DB
)
990 tc
.dirfilter
= &global_settings
.dirfilter
;
992 strcpy(current
, browse
->root
);
993 set_current_file(current
);
994 ret_val
= dirbrowse();
997 if (backup_count
>= 0)
998 tc
= backups
[backup_count
];
1002 void tree_mem_init(void)
1004 /* initialize tree context struct */
1005 struct tree_cache
* cache
= &tc
.cache
;
1006 memset(&tc
, 0, sizeof(tc
));
1007 tc
.dirfilter
= &global_settings
.dirfilter
;
1008 tc
.sort_dir
= global_settings
.sort_dir
;
1010 cache
->name_buffer_size
= AVERAGE_FILENAME_LENGTH
*
1011 global_settings
.max_files_in_dir
;
1012 cache
->name_buffer
= buffer_alloc(cache
->name_buffer_size
);
1014 cache
->max_entries
= global_settings
.max_files_in_dir
;
1015 cache
->entries
= buffer_alloc(cache
->max_entries
*(sizeof(struct entry
)));
1016 tree_get_filetypes(&filetypes
, &filetypes_count
);
1019 bool bookmark_play(char *resume_file
, int index
, int offset
, int seed
,
1023 char* suffix
= strrchr(resume_file
, '.');
1024 bool started
= false;
1026 if (suffix
!= NULL
&&
1027 (!strcasecmp(suffix
, ".m3u") || !strcasecmp(suffix
, ".m3u8")))
1029 /* Playlist playback */
1031 /* check that the file exists */
1032 if(!file_exists(resume_file
))
1035 slash
= strrchr(resume_file
,'/');
1045 if (playlist_create(cp
, slash
+1) != -1)
1047 if (global_settings
.playlist_shuffle
)
1048 playlist_shuffle(seed
, -1);
1049 playlist_start(index
,offset
);
1057 /* Directory playback */
1059 if (playlist_create(resume_file
, NULL
) != -1)
1061 char filename_buf
[MAX_PATH
+ 1];
1062 const char* peek_filename
;
1063 resume_directory(resume_file
);
1064 if (global_settings
.playlist_shuffle
)
1065 playlist_shuffle(seed
, -1);
1067 /* Check if the file is at the same spot in the directory,
1068 else search for it */
1069 peek_filename
= playlist_peek(index
, filename_buf
,
1070 sizeof(filename_buf
));
1072 if (peek_filename
== NULL
)
1074 /* playlist has shrunk, search from the top */
1076 peek_filename
= playlist_peek(index
, filename_buf
,
1077 sizeof(filename_buf
));
1078 if (peek_filename
== NULL
)
1082 if (strcmp(strrchr(peek_filename
, '/') + 1, filename
))
1084 for ( i
=0; i
< playlist_amount(); i
++ )
1086 peek_filename
= playlist_peek(i
, filename_buf
,
1087 sizeof(filename_buf
));
1089 if (peek_filename
== NULL
)
1092 if (!strcmp(strrchr(peek_filename
, '/') + 1, filename
))
1095 if (i
< playlist_amount())
1100 playlist_start(index
,offset
);
1110 static void say_filetype(int attr
)
1112 /* try to find a voice ID for the extension, if known */
1114 attr
&= FILE_ATTR_MASK
; /* file type */
1115 for (j
=0; j
<filetypes_count
; j
++)
1116 if (attr
== filetypes
[j
].tree_attr
)
1118 talk_id(filetypes
[j
].voiceclip
, true);
1123 static int ft_play_dirname(char* name
)
1125 #if CONFIG_CODEC != SWCODEC
1126 if (audio_status() & AUDIO_STATUS_PLAY
)
1130 if(talk_file(tc
.currdir
, name
, dir_thumbnail_name
, NULL
,
1133 if(global_settings
.talk_filetype
)
1134 talk_id(VOICE_DIR
, true);
1141 static void ft_play_filename(char *dir
, char *file
)
1143 #if CONFIG_CODEC != SWCODEC
1144 if (audio_status() & AUDIO_STATUS_PLAY
)
1148 if (strlen(file
) >= strlen(file_thumbnail_ext
)
1149 && strcasecmp(&file
[strlen(file
) - strlen(file_thumbnail_ext
)],
1150 file_thumbnail_ext
))
1151 /* file has no .talk extension */
1152 talk_file(dir
, NULL
, file
, file_thumbnail_ext
,
1155 /* it already is a .talk file, play this directly, but prefix it. */
1156 talk_file(dir
, NULL
, file
, NULL
,
1157 TALK_IDARRAY(LANG_VOICE_DIR_HOVER
), false);
1160 /* These two functions are called by the USB and shutdown handlers */
1161 void tree_flush(void)
1163 #ifdef HAVE_TAGCACHE
1164 tagcache_shutdown();
1167 #ifdef HAVE_TC_RAMCACHE
1168 tagcache_unload_ramcache();
1171 #ifdef HAVE_DIRCACHE
1173 int old_val
= global_status
.dircache_size
;
1174 if (global_settings
.dircache
)
1176 if (!dircache_is_initializing())
1177 global_status
.dircache_size
= dircache_get_cache_size();
1178 # ifdef HAVE_EEPROM_SETTINGS
1179 if (firmware_settings
.initialized
)
1186 global_status
.dircache_size
= 0;
1188 if (old_val
!= global_status
.dircache_size
)
1194 void tree_restore(void)
1196 #ifdef HAVE_EEPROM_SETTINGS
1197 firmware_settings
.disk_clean
= false;
1200 #ifdef HAVE_TC_RAMCACHE
1201 remove(TAGCACHE_STATEFILE
);
1204 #ifdef HAVE_DIRCACHE
1205 remove(DIRCACHE_FILE
);
1206 if (global_settings
.dircache
)
1208 /* Print "Scanning disk..." to the display. */
1209 splash(0, str(LANG_SCANNING_DISK
));
1211 dircache_build(global_status
.dircache_size
);
1214 #ifdef HAVE_TAGCACHE
1215 tagcache_start_scan();