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"
58 #include "recorder/recording.h"
66 #include "eeprom_settings.h"
67 #include "playlist_catalog.h"
72 #include "buttonbar.h"
73 #include "quickscreen.h"
74 #include "appevents.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 static 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
,
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
)
328 /* use lastfile to determine the selected item (default=0) */
329 for (i
=0; i
< tc
.filesindir
; i
++)
331 struct entry
* dc
= tc
.dircache
;
332 struct entry
* e
= &dc
[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;
393 (tc
.dirfull
|| tc
.filesindir
== global_settings
.max_files_in_dir
) )
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 (global_settings
.show_path_in_browser
&&
420 *(tc
.dirfilter
) == SHOW_PLUGINS
)
423 if (!strcmp(tc
.currdir
, PLUGIN_GAMES_DIR
))
424 title
= str(LANG_PLUGIN_GAMES
);
425 else if (!strcmp(tc
.currdir
, PLUGIN_APPS_DIR
))
426 title
= str(LANG_PLUGIN_APPS
);
427 else if (!strcmp(tc
.currdir
, PLUGIN_DEMOS_DIR
))
428 title
= str(LANG_PLUGIN_DEMOS
);
429 else title
= str(LANG_PLUGINS
);
430 gui_synclist_set_title(&tree_lists
, title
, Icon_Plugin
);
432 else if (global_settings
.show_path_in_browser
== SHOW_PATH_FULL
)
434 gui_synclist_set_title(&tree_lists
, tc
.currdir
,
435 filetype_get_icon(ATTR_DIRECTORY
));
437 else if (global_settings
.show_path_in_browser
== SHOW_PATH_CURRENT
)
439 char *title
= strrchr(tc
.currdir
, '/') + 1;
442 /* Display "Files" for the root dir */
443 gui_synclist_set_title(&tree_lists
, str(LANG_DIR_BROWSER
),
444 filetype_get_icon(ATTR_DIRECTORY
));
447 gui_synclist_set_title(&tree_lists
, title
,
448 filetype_get_icon(ATTR_DIRECTORY
));
452 /* Must clear the title as the list is reused */
453 gui_synclist_set_title(&tree_lists
, NULL
, NOICON
);
458 gui_synclist_set_nb_items(&tree_lists
, tc
.filesindir
);
459 gui_synclist_set_icon_callback(&tree_lists
,
460 global_settings
.show_icons
?tree_get_fileicon
:NULL
);
461 if( tc
.selected_item
>= tc
.filesindir
)
462 tc
.selected_item
=tc
.filesindir
-1;
464 gui_synclist_select_item(&tree_lists
, tc
.selected_item
);
465 #ifdef HAVE_BUTTONBAR
466 if (global_settings
.buttonbar
) {
467 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
468 gui_buttonbar_set(&tree_buttonbar
, str(LANG_SYSFONT_DIRBROWSE_F1
),
469 str(LANG_SYSFONT_DIRBROWSE_F2
),
470 str(LANG_SYSFONT_DIRBROWSE_F3
));
472 gui_buttonbar_set(&tree_buttonbar
, "<<<", "", "");
473 gui_buttonbar_draw(&tree_buttonbar
);
476 gui_synclist_draw(&tree_lists
);
477 gui_synclist_speak_item(&tree_lists
);
478 return tc
.filesindir
;
481 /* load tracks from specified directory to resume play */
482 void resume_directory(const char *dir
)
484 int dirfilter
= *tc
.dirfilter
;
487 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
489 /* make sure the dirfilter is sane. The only time it should be possible
490 * thats its not is when resume playlist is called from a plugin
495 *tc
.dirfilter
= global_settings
.dirfilter
;
496 ret
= ft_load(&tc
, dir
);
497 *tc
.dirfilter
= dirfilter
;
502 ft_build_playlist(&tc
, 0);
510 /* Returns the current working directory and also writes cwd to buf if
511 non-NULL. In case of error, returns NULL. */
512 char *getcwd(char *buf
, int size
)
518 strlcpy(buf
, tc
.currdir
, size
);
525 /* Force a reload of the directory next time directory browser is called */
526 void reload_directory(void)
531 void get_current_file(char* buffer
, int buffer_len
)
534 /* in ID3DB mode it is a bad idea to call this function */
535 /* (only happens with `follow playlist') */
536 if( *tc
.dirfilter
== SHOW_ID3DB
)
540 struct entry
* dc
= tc
.dircache
;
541 struct entry
* e
= &dc
[tc
.selected_item
];
542 snprintf(buffer
, buffer_len
, "%s/%s", getcwd(NULL
,0),
543 tc
.dirlength
? e
->name
: "");
546 /* Allow apps to change our dirfilter directly (required for sub browsers)
547 if they're suddenly going to become a file browser for example */
548 void set_dirfilter(int l_dirfilter
)
550 *tc
.dirfilter
= l_dirfilter
;
553 /* Selects a file and update tree context properly */
554 void set_current_file(char *path
)
560 /* in ID3DB mode it is a bad idea to call this function */
561 /* (only happens with `follow playlist') */
562 if( *tc
.dirfilter
== SHOW_ID3DB
)
566 /* separate directory from filename */
567 /* gets the directory's name and put it into tc.currdir */
568 name
= strrchr(path
+1,'/');
572 strcpy(tc
.currdir
, path
);
578 strcpy(tc
.currdir
, "/");
582 strcpy(lastfile
, name
);
585 /* If we changed dir we must recalculate the dirlevel
586 and adjust the selected history properly */
587 if (strncmp(tc
.currdir
,lastdir
,sizeof(lastdir
)))
590 tc
.selected_item_history
[tc
.dirlevel
] = -1;
592 /* use '/' to calculate dirlevel */
593 for (i
= 1; path
[i
] != '\0'; i
++)
598 tc
.selected_item_history
[tc
.dirlevel
] = -1;
602 if (ft_load(&tc
, NULL
) >= 0)
604 tc
.selected_item
= tree_get_file_position(lastfile
);
609 /* main loop, handles key events */
610 static int dirbrowse()
614 int button
, oldbutton
;
615 bool reload_root
= false;
616 int lastfilter
= *tc
.dirfilter
;
617 bool lastsortcase
= global_settings
.sort_case
;
618 bool exit_func
= false;
620 char* currdir
= tc
.currdir
; /* just a shortcut */
622 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
625 curr_context
=CONTEXT_ID3DB
;
628 curr_context
=CONTEXT_TREE
;
629 if (tc
.selected_item
< 0)
630 tc
.selected_item
= 0;
639 numentries
= update_dir();
641 if (numentries
== -1)
642 return GO_TO_PREVIOUS
; /* currdir is not a directory */
644 if (*tc
.dirfilter
> NUM_FILTER_MODES
&& numentries
==0)
646 splash(HZ
*2, ID2P(LANG_NO_FILES
));
647 return GO_TO_PREVIOUS
; /* No files found for rockbox_browser() */
650 gui_synclist_draw(&tree_lists
);
652 struct entry
*dircache
= tc
.dircache
;
653 bool restore
= false;
655 tc
.dirlevel
= 0; /* shouldnt be needed.. this code needs work! */
658 static const char *lines
[]={ID2P(LANG_BOOT_CHANGED
), ID2P(LANG_REBOOT_NOW
)};
659 static const struct text_message message
={lines
, 2};
660 if(gui_syncyesno_run(&message
, NULL
, NULL
)==YESNO_YES
)
661 rolo_load("/" BOOTFILE
);
663 boot_changed
= false;
666 button
= get_action(CONTEXT_TREE
,
667 list_do_action_timeout(&tree_lists
, HZ
/2));
669 gui_synclist_do_button(&tree_lists
, &button
,LIST_WRAP_UNLESS_HELD
);
670 tc
.selected_item
= gui_synclist_get_sel_pos(&tree_lists
);
673 /* nothing to do if no files to display */
674 if ( numentries
== 0 )
678 switch (id3db
?tagtree_enter(&tc
):ft_enter(&tc
))
680 switch (ft_enter(&tc
))
683 case 1: reload_dir
= true; break;
684 case 2: start_wps
= true; break;
685 case 3: exit_func
= true; break;
691 case ACTION_STD_CANCEL
:
692 if (*tc
.dirfilter
> NUM_FILTER_MODES
&& tc
.dirlevel
< 1) {
696 if ((*tc
.dirfilter
== SHOW_ID3DB
&& tc
.dirlevel
== 0) ||
697 ((*tc
.dirfilter
!= SHOW_ID3DB
&& !strcmp(currdir
,"/"))))
699 #ifdef HAVE_LCD_BITMAP /* charcell doesnt have ACTION_TREE_PGLEFT so this isnt needed */
700 if (oldbutton
== ACTION_TREE_PGLEFT
)
712 if (ft_exit(&tc
) == 3)
718 case ACTION_TREE_STOP
:
719 if (list_stop_handler())
723 case ACTION_STD_MENU
:
727 #ifdef HAVE_RECORDING
729 return GO_TO_RECSCREEN
;
732 case ACTION_TREE_WPS
:
733 return GO_TO_PREVIOUS_MUSIC
;
735 #ifdef HAVE_QUICKSCREEN
736 case ACTION_STD_QUICKSCREEN
:
737 /* don't enter f2 from plugin browser */
738 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
740 if (quick_screen_quick(button
))
748 /* don't enter f3 from plugin browser */
749 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
751 if (quick_screen_f3(ACTION_F3
))
759 case ACTION_TREE_HOTKEY
:
760 if (!global_settings
.hotkey_tree
)
764 case ACTION_STD_CONTEXT
:
766 bool hotkey
= button
== ACTION_TREE_HOTKEY
;
771 onplay_result
= onplay(NULL
, 0, curr_context
, hotkey
);
776 if (tagtree_get_attr(&tc
) == FILE_ATTR_AUDIO
)
778 attr
= FILE_ATTR_AUDIO
;
779 tagtree_get_filename(&tc
, buf
, sizeof(buf
));
782 attr
= ATTR_DIRECTORY
;
787 attr
= dircache
[tc
.selected_item
].attr
;
789 if (currdir
[1]) /* Not in / */
790 snprintf(buf
, sizeof buf
, "%s/%s",
792 dircache
[tc
.selected_item
].name
);
794 snprintf(buf
, sizeof buf
, "/%s",
795 dircache
[tc
.selected_item
].name
);
797 onplay_result
= onplay(buf
, attr
, curr_context
, hotkey
);
799 switch (onplay_result
)
801 case ONPLAY_MAINMENU
:
808 case ONPLAY_RELOAD_DIR
:
812 case ONPLAY_START_PLAY
:
825 /* The 'dir no longer valid' situation will be caught later
826 * by checking the showdir() result. */
831 if (default_event_handler(button
) == SYS_USB_CONNECTED
)
833 if(*tc
.dirfilter
> NUM_FILTER_MODES
)
834 /* leave sub-browsers after usb, doing otherwise
835 might be confusing to the user */
844 if (button
&& !IS_SYSEVENT(button
))
851 /* do we need to rescan dir? */
852 if (reload_dir
|| reload_root
||
853 lastfilter
!= *tc
.dirfilter
||
854 lastsortcase
!= global_settings
.sort_case
)
857 strcpy(currdir
, "/");
870 gui_synclist_select_item(&tree_lists
, 0);
871 gui_synclist_draw(&tree_lists
);
872 tc
.selected_item
= 0;
876 lastfilter
= *tc
.dirfilter
;
877 lastsortcase
= global_settings
.sort_case
;
882 return GO_TO_PREVIOUS
;
884 if (restore
|| reload_dir
) {
885 /* restore display */
886 numentries
= update_dir();
888 if (currdir
[1] && (numentries
< 0))
889 { /* not in root and reload failed */
890 reload_root
= true; /* try root */
898 bool create_playlist(void)
900 char filename
[MAX_PATH
];
902 snprintf(filename
, sizeof filename
, "%s.m3u8",
903 tc
.currdir
[1] ? tc
.currdir
: "/root");
904 splashf(0, "%s %s", str(LANG_CREATING
), filename
);
907 catalog_add_to_a_playlist(tc
.currdir
, ATTR_DIRECTORY
, true, filename
);
913 int rockbox_browse(const char *root
, int dirfilter
)
916 int *last_filter
= tc
.dirfilter
;
917 tc
.dirfilter
= &dirfilter
;
918 tc
.sort_dir
= global_settings
.sort_dir
;
921 if (dirfilter
>= NUM_FILTER_MODES
)
923 static struct tree_context backup
;
924 char current
[MAX_PATH
];
928 tc
.selected_item
= 0;
930 memcpy(tc
.currdir
, root
, sizeof(tc
.currdir
));
932 last_context
= curr_context
;
934 /* Center on the currently loaded language when browsing languages. */
935 if (dirfilter
== SHOW_LNG
)
937 if (global_settings
.lang_file
[0])
939 snprintf(current
, sizeof(current
), LANG_DIR
"/%s.lng",
940 global_settings
.lang_file
);
944 strlcpy(current
, LANG_DIR
"/english.lng", sizeof(current
));
947 /* Center on currently loaded WPS */
948 else if (dirfilter
== SHOW_WPS
)
950 snprintf(current
, sizeof(current
), WPS_DIR
"/%s.wps",
951 global_settings
.wps_file
);
953 #ifdef HAVE_REMOTE_LCD
954 /* Center on currently loaded RWPS */
955 else if (dirfilter
== SHOW_RWPS
)
957 snprintf(current
, sizeof(current
), WPS_DIR
"/%s.rwps",
958 global_settings
.rwps_file
);
960 else if (dirfilter
== SHOW_RSBS
)
962 snprintf(current
, sizeof(current
), SBS_DIR
"/%s.rsbs",
963 global_settings
.rsbs_file
);
966 #ifdef HAVE_LCD_BITMAP
967 /* Center on the currently loaded font when browsing fonts */
968 else if (dirfilter
== SHOW_FONT
)
970 snprintf(current
, sizeof(current
), FONT_DIR
"/%s.fnt",
971 global_settings
.font_file
);
973 else if (dirfilter
== SHOW_SBS
)
975 snprintf(current
, sizeof(current
), SBS_DIR
"/%s.sbs",
976 global_settings
.sbs_file
);
980 /* Center on the currently loaded FM preset when browsing those */
981 else if (dirfilter
== SHOW_FMR
)
983 snprintf(current
, sizeof(current
), FMPRESET_PATH
"/%s.fmr",
984 global_settings
.fmr_file
);
987 else /* reset current[] */
990 /* If we've found a file to center on, do it */
991 if (current
[0] == '/')
993 set_current_file(current
);
994 /* set_current_file changes dirlevel, change it back */
998 ret_val
= dirbrowse();
1000 curr_context
= last_context
;
1004 static char buf
[MAX_PATH
];
1005 if (dirfilter
!= SHOW_ID3DB
)
1006 tc
.dirfilter
= &global_settings
.dirfilter
;
1008 set_current_file(buf
);
1009 ret_val
= dirbrowse();
1011 tc
.dirfilter
= last_filter
;
1015 void tree_mem_init(void)
1017 /* We copy the settings value in case it is changed by the user. We can't
1018 use it until the next reboot. */
1019 max_files
= global_settings
.max_files_in_dir
;
1021 /* initialize tree context struct */
1022 memset(&tc
, 0, sizeof(tc
));
1023 tc
.dirfilter
= &global_settings
.dirfilter
;
1024 tc
.sort_dir
= global_settings
.sort_dir
;
1026 tc
.name_buffer_size
= AVERAGE_FILENAME_LENGTH
* max_files
;
1027 tc
.name_buffer
= buffer_alloc(tc
.name_buffer_size
);
1029 tc
.dircache_size
= max_files
* sizeof(struct entry
);
1030 tc
.dircache
= buffer_alloc(tc
.dircache_size
);
1031 tree_get_filetypes(&filetypes
, &filetypes_count
);
1034 bool bookmark_play(char *resume_file
, int index
, int offset
, int seed
,
1038 char* suffix
= strrchr(resume_file
, '.');
1039 bool started
= false;
1041 if (suffix
!= NULL
&&
1042 (!strcasecmp(suffix
, ".m3u") || !strcasecmp(suffix
, ".m3u8")))
1044 /* Playlist playback */
1046 /* check that the file exists */
1047 if(!file_exists(resume_file
))
1050 slash
= strrchr(resume_file
,'/');
1060 if (playlist_create(cp
, slash
+1) != -1)
1062 if (global_settings
.playlist_shuffle
)
1063 playlist_shuffle(seed
, -1);
1064 playlist_start(index
,offset
);
1072 /* Directory playback */
1074 if (playlist_create(resume_file
, NULL
) != -1)
1076 const char* peek_filename
;
1077 resume_directory(resume_file
);
1078 if (global_settings
.playlist_shuffle
)
1079 playlist_shuffle(seed
, -1);
1081 /* Check if the file is at the same spot in the directory,
1082 else search for it */
1083 peek_filename
= playlist_peek(index
);
1085 if (peek_filename
== NULL
)
1087 /* playlist has shrunk, search from the top */
1089 peek_filename
= playlist_peek(index
);
1090 if (peek_filename
== NULL
)
1094 if (strcmp(strrchr(peek_filename
, '/') + 1, filename
))
1096 for ( i
=0; i
< playlist_amount(); i
++ )
1098 peek_filename
= playlist_peek(i
);
1100 if (peek_filename
== NULL
)
1103 if (!strcmp(strrchr(peek_filename
, '/') + 1, filename
))
1106 if (i
< playlist_amount())
1111 playlist_start(index
,offset
);
1121 static void say_filetype(int attr
)
1123 /* try to find a voice ID for the extension, if known */
1125 attr
&= FILE_ATTR_MASK
; /* file type */
1126 for (j
=0; j
<filetypes_count
; j
++)
1127 if (attr
== filetypes
[j
].tree_attr
)
1129 talk_id(filetypes
[j
].voiceclip
, true);
1134 static int ft_play_dirname(char* name
)
1136 #if CONFIG_CODEC != SWCODEC
1137 if (audio_status() & AUDIO_STATUS_PLAY
)
1141 if(talk_file(tc
.currdir
, name
, dir_thumbnail_name
, NULL
,
1144 if(global_settings
.talk_filetype
)
1145 talk_id(VOICE_DIR
, true);
1152 static void ft_play_filename(char *dir
, char *file
)
1154 #if CONFIG_CODEC != SWCODEC
1155 if (audio_status() & AUDIO_STATUS_PLAY
)
1159 if (strlen(file
) >= strlen(file_thumbnail_ext
)
1160 && strcasecmp(&file
[strlen(file
) - strlen(file_thumbnail_ext
)],
1161 file_thumbnail_ext
))
1162 /* file has no .talk extension */
1163 talk_file(dir
, NULL
, file
, file_thumbnail_ext
,
1166 /* it already is a .talk file, play this directly, but prefix it. */
1167 talk_file(dir
, NULL
, file
, NULL
,
1168 TALK_IDARRAY(LANG_VOICE_DIR_HOVER
), false);
1171 /* These two functions are called by the USB and shutdown handlers */
1172 void tree_flush(void)
1174 #ifdef HAVE_TAGCACHE
1175 tagcache_shutdown();
1178 #ifdef HAVE_TC_RAMCACHE
1179 tagcache_unload_ramcache();
1182 #ifdef HAVE_DIRCACHE
1184 int old_val
= global_status
.dircache_size
;
1185 if (global_settings
.dircache
)
1187 if (!dircache_is_initializing())
1188 global_status
.dircache_size
= dircache_get_cache_size();
1189 # ifdef HAVE_EEPROM_SETTINGS
1190 if (firmware_settings
.initialized
)
1197 global_status
.dircache_size
= 0;
1199 if (old_val
!= global_status
.dircache_size
)
1205 void tree_restore(void)
1207 #ifdef HAVE_EEPROM_SETTINGS
1208 firmware_settings
.disk_clean
= false;
1211 #ifdef HAVE_TC_RAMCACHE
1212 remove(TAGCACHE_STATEFILE
);
1215 #ifdef HAVE_DIRCACHE
1216 remove(DIRCACHE_FILE
);
1217 if (global_settings
.dircache
)
1219 /* Print "Scanning disk..." to the display. */
1220 splash(0, str(LANG_SCANNING_DISK
));
1222 dircache_build(global_status
.dircache_size
);
1225 #ifdef HAVE_TAGCACHE
1226 tagcache_start_scan();