1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 by Björn Stenberg
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
33 #include "filetypes.h"
46 #include "strnatcmp.h"
47 #ifdef HAVE_LCD_BITMAP
56 static int compare_sort_dir
; /* qsort key for sorting directories */
58 int ft_build_playlist(struct tree_context
* c
, int start_index
)
61 int start
=start_index
;
63 struct entry
*dircache
= c
->dircache
;
65 for(i
= 0;i
< c
->filesindir
;i
++)
67 if((dircache
[i
].attr
& FILE_ATTR_MASK
) == FILE_ATTR_AUDIO
)
69 if (playlist_add(dircache
[i
].name
) < 0)
74 /* Adjust the start index when se skip non-MP3 entries */
83 /* Start playback of a playlist, checking for bookmark autoload, modified
84 * playlists, etc., as required. Returns false if playback wasn't started,
85 * or started via bookmark autoload, true otherwise.
87 * Pointers to both the full pathname and the separated parts needed to
88 * avoid allocating yet another path buffer on the stack (and save some
89 * code; the caller typically needs to create the full pathname anyway)...
91 bool ft_play_playlist(char* pathname
, char* dirname
, char* filename
)
93 if (global_settings
.party_mode
&& audio_status())
95 splash(HZ
, ID2P(LANG_PARTY_MODE
));
99 if (bookmark_autoload(pathname
))
104 splash(0, ID2P(LANG_WAIT
));
106 /* about to create a new current playlist...
107 allow user to cancel the operation */
108 if (!warn_on_pl_erase())
111 if (playlist_create(dirname
, filename
) != -1)
113 if (global_settings
.playlist_shuffle
)
115 playlist_shuffle(current_tick
, -1);
118 playlist_start(0, 0);
125 /* walk a directory and check all dircache entries if a .talk file exists */
126 static void check_file_thumbnails(struct tree_context
* c
)
129 struct dirent
*entry
;
130 struct entry
* dircache
= c
->dircache
;
133 dir
= opendir(c
->currdir
);
136 /* mark all files as non talking, except the .talk ones */
137 for (i
=0; i
< c
->filesindir
; i
++)
139 if (dircache
[i
].attr
& ATTR_DIRECTORY
)
140 continue; /* we're not touching directories */
142 if (strcasecmp(file_thumbnail_ext
,
143 &dircache
[i
].name
[strlen(dircache
[i
].name
)
144 - strlen(file_thumbnail_ext
)]))
145 { /* no .talk file */
146 dircache
[i
].attr
&= ~FILE_ATTR_THUMBNAIL
; /* clear */
149 { /* .talk file, we later let them speak themselves */
150 dircache
[i
].attr
|= FILE_ATTR_THUMBNAIL
; /* set */
154 while((entry
= readdir(dir
)) != 0) /* walk directory */
158 ext_pos
= strlen((char *)entry
->d_name
) - strlen(file_thumbnail_ext
);
159 if (ext_pos
<= 0 /* too short to carry ".talk" */
160 || (entry
->attribute
& ATTR_DIRECTORY
) /* no file */
161 || strcasecmp((char *)&entry
->d_name
[ext_pos
], file_thumbnail_ext
))
162 { /* or doesn't end with ".talk", no candidate */
166 /* terminate the (disposable) name in dir buffer,
167 this truncates off the ".talk" without needing an extra buffer */
168 entry
->d_name
[ext_pos
] = '\0';
170 /* search corresponding file in dir cache */
171 for (i
=0; i
< c
->filesindir
; i
++)
173 if (!strcasecmp(dircache
[i
].name
, (char *)entry
->d_name
))
175 dircache
[i
].attr
|= FILE_ATTR_THUMBNAIL
; /* set the flag */
176 break; /* exit search loop, because we found it */
183 /* support function for qsort() */
184 static int compare(const void* p1
, const void* p2
)
186 struct entry
* e1
= (struct entry
*)p1
;
187 struct entry
* e2
= (struct entry
*)p2
;
190 if (e1
->attr
& ATTR_DIRECTORY
&& e2
->attr
& ATTR_DIRECTORY
)
191 { /* two directories */
192 criteria
= compare_sort_dir
;
194 #ifdef HAVE_MULTIVOLUME
195 if (e1
->attr
& ATTR_VOLUME
|| e2
->attr
& ATTR_VOLUME
)
196 { /* a volume identifier is involved */
197 if (e1
->attr
& ATTR_VOLUME
&& e2
->attr
& ATTR_VOLUME
)
198 criteria
= SORT_ALPHA
; /* two volumes: sort alphabetically */
199 else /* only one is a volume: volume first */
200 return (e2
->attr
& ATTR_VOLUME
) - (e1
->attr
& ATTR_VOLUME
);
205 else if (!(e1
->attr
& ATTR_DIRECTORY
) && !(e2
->attr
& ATTR_DIRECTORY
))
207 criteria
= global_settings
.sort_file
;
209 else /* dir and file, dir goes first */
210 return (e2
->attr
& ATTR_DIRECTORY
) - (e1
->attr
& ATTR_DIRECTORY
);
215 case SORT_TYPE_REVERSED
:
217 int t1
= e1
->attr
& FILE_ATTR_MASK
;
218 int t2
= e2
->attr
& FILE_ATTR_MASK
;
220 if (!t1
) /* unknown type */
221 t1
= INT_MAX
; /* gets a high number, to sort after known */
222 if (!t2
) /* unknown type */
223 t2
= INT_MAX
; /* gets a high number, to sort after known */
225 if (t1
!= t2
) /* if different */
226 return (t1
- t2
) * (criteria
== SORT_TYPE_REVERSED
? -1 : 1);
227 /* else fall through to alphabetical sorting */
231 case SORT_DATE_REVERSED
:
232 /* Ignore SORT_TYPE */
233 if (criteria
== SORT_DATE
|| criteria
== SORT_DATE_REVERSED
)
235 if (e1
->time_write
!= e2
->time_write
)
236 return (e1
->time_write
- e2
->time_write
)
237 * (criteria
== SORT_DATE_REVERSED
? -1 : 1);
238 /* else fall through to alphabetical sorting */
242 case SORT_ALPHA_REVERSED
:
244 if (global_settings
.sort_case
)
246 if (global_settings
.interpret_numbers
== SORT_INTERPRET_AS_NUMBER
)
247 return strnatcmp(e1
->name
, e2
->name
)
248 * (criteria
== SORT_ALPHA_REVERSED
? -1 : 1);
250 return strncmp(e1
->name
, e2
->name
, MAX_PATH
)
251 * (criteria
== SORT_ALPHA_REVERSED
? -1 : 1);
255 if (global_settings
.interpret_numbers
== SORT_INTERPRET_AS_NUMBER
)
256 return strnatcasecmp(e1
->name
, e2
->name
)
257 * (criteria
== SORT_ALPHA_REVERSED
? -1 : 1);
259 return strncasecmp(e1
->name
, e2
->name
, MAX_PATH
)
260 * (criteria
== SORT_ALPHA_REVERSED
? -1 : 1);
265 return 0; /* never reached */
268 /* load and sort directory into dircache. returns NULL on failure. */
269 int ft_load(struct tree_context
* c
, const char* tempdir
)
272 int name_buffer_used
= 0;
276 dir
= opendir(tempdir
);
278 dir
= opendir(c
->currdir
);
280 return -1; /* not a directory */
285 for ( i
=0; i
< global_settings
.max_files_in_dir
; i
++ ) {
287 struct dirent
*entry
= readdir(dir
);
289 (struct entry
*)(c
->dircache
+ i
* sizeof(struct entry
));
293 len
= strlen((char *)entry
->d_name
);
295 /* skip directories . and .. */
296 if ((entry
->attribute
& ATTR_DIRECTORY
) &&
297 (((len
== 1) && (!strncmp((char *)entry
->d_name
, ".", 1))) ||
298 ((len
== 2) && (!strncmp((char *)entry
->d_name
, "..", 2))))) {
303 /* Skip FAT volume ID */
304 if (entry
->attribute
& ATTR_VOLUME_ID
) {
309 /* filter out dotfiles and hidden files */
310 if (*c
->dirfilter
!= SHOW_ALL
&&
311 ((entry
->d_name
[0]=='.') ||
312 (entry
->attribute
& ATTR_HIDDEN
))) {
317 dptr
->attr
= entry
->attribute
;
319 /* check for known file types */
320 if ( !(dptr
->attr
& ATTR_DIRECTORY
) )
321 dptr
->attr
|= filetype_get_attr((char *)entry
->d_name
);
323 /* filter out non-visible files */
324 if ((!(dptr
->attr
& ATTR_DIRECTORY
) && (
325 (*c
->dirfilter
== SHOW_PLAYLIST
&&
326 (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_M3U
) ||
327 ((*c
->dirfilter
== SHOW_MUSIC
&&
328 (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_AUDIO
) &&
329 (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_M3U
) ||
330 (*c
->dirfilter
== SHOW_SUPPORTED
&& !filetype_supported(dptr
->attr
)))) ||
331 (*c
->dirfilter
== SHOW_WPS
&& (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_WPS
) ||
332 #ifdef HAVE_LCD_BITMAP
333 (*c
->dirfilter
== SHOW_FONT
&& (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_FONT
) ||
334 (*c
->dirfilter
== SHOW_SBS
&& (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_SBS
) ||
336 #ifdef HAVE_REMOTE_LCD
337 (*c
->dirfilter
== SHOW_RWPS
&& (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_RWPS
) ||
338 (*c
->dirfilter
== SHOW_RSBS
&& (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_RSBS
) ||
341 (*c
->dirfilter
== SHOW_FMR
&& (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_FMR
) ||
343 (*c
->dirfilter
== SHOW_CFG
&& (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_CFG
) ||
344 (*c
->dirfilter
== SHOW_LNG
&& (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_LNG
) ||
345 (*c
->dirfilter
== SHOW_MOD
&& (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_MOD
) ||
346 (*c
->dirfilter
== SHOW_PLUGINS
&& (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_ROCK
&&
347 (dptr
->attr
& FILE_ATTR_MASK
) != FILE_ATTR_LUA
))
353 if (len
> c
->name_buffer_size
- name_buffer_used
- 1) {
354 /* Tell the world that we ran out of buffer space */
358 dptr
->name
= &c
->name_buffer
[name_buffer_used
];
360 (long)entry
->wrtdate
<<16 |
361 (long)entry
->wrttime
; /* in one # */
362 strcpy(dptr
->name
, (char *)entry
->d_name
);
363 name_buffer_used
+= len
+ 1;
365 if (dptr
->attr
& ATTR_DIRECTORY
) /* count the remaining dirs */
372 compare_sort_dir
= c
->sort_dir
;
373 qsort(c
->dircache
,i
,sizeof(struct entry
),compare
);
375 /* If thumbnail talking is enabled, make an extra run to mark files with
376 associated thumbnails, so we don't do unsuccessful spinups later. */
377 if (global_settings
.talk_file_clip
)
378 check_file_thumbnails(c
); /* map .talk to ours */
382 #ifdef HAVE_LCD_BITMAP
383 static void ft_load_font(char *file
)
386 MENUITEM_STRINGLIST(menu
, ID2P(LANG_CUSTOM_FONT
), NULL
,
387 ID2P(LANG_MAIN_SCREEN
), ID2P(LANG_REMOTE_SCREEN
))
388 switch (do_menu(&menu
, NULL
, NULL
, false))
390 case 0: /* main lcd */
391 splash(0, ID2P(LANG_WAIT
));
392 font_load(NULL
, file
);
393 set_file(file
, (char *)global_settings
.font_file
, MAX_FILENAME
);
396 splash(0, ID2P(LANG_WAIT
));
397 font_load_remoteui(file
);
398 set_file(file
, (char *)global_settings
.remote_font_file
, MAX_FILENAME
);
402 splash(0, ID2P(LANG_WAIT
));
403 font_load(NULL
, file
);
404 set_file(file
, (char *)global_settings
.font_file
, MAX_FILENAME
);
409 int ft_enter(struct tree_context
* c
)
413 struct entry
*dircache
= c
->dircache
;
414 struct entry
* file
= &dircache
[c
->selected_item
];
415 bool reload_dir
= false;
416 bool start_wps
= false;
417 bool exit_func
= false;
420 snprintf(buf
,sizeof(buf
),"%s/%s",c
->currdir
, file
->name
);
422 snprintf(buf
,sizeof(buf
),"/%s",file
->name
);
424 if (file
->attr
& ATTR_DIRECTORY
) {
425 memcpy(c
->currdir
, buf
, sizeof(c
->currdir
));
426 if ( c
->dirlevel
< MAX_DIR_LEVELS
)
427 c
->selected_item_history
[c
->dirlevel
] = c
->selected_item
;
432 int seed
= current_tick
;
436 switch ( file
->attr
& FILE_ATTR_MASK
) {
438 play
= ft_play_playlist(buf
, c
->currdir
, file
->name
);
447 case FILE_ATTR_AUDIO
:
448 if (bookmark_autoload(c
->currdir
))
451 splash(0, ID2P(LANG_WAIT
));
453 /* about to create a new current playlist...
454 allow user to cancel the operation */
455 if (!warn_on_pl_erase())
458 if (global_settings
.party_mode
&& audio_status())
460 playlist_insert_track(NULL
, buf
,
461 PLAYLIST_INSERT_LAST
, true, true);
462 splash(HZ
, ID2P(LANG_QUEUE_LAST
));
464 else if (playlist_create(c
->currdir
, NULL
) != -1)
466 start_index
= ft_build_playlist(c
, c
->selected_item
);
467 if (global_settings
.playlist_shuffle
)
469 start_index
= playlist_shuffle(seed
, start_index
);
471 /* when shuffling dir.: play all files
472 even if the file selected by user is
474 if (!global_settings
.play_selected
)
478 playlist_start(start_index
, 0);
484 /* fmr preset file */
486 splash(0, ID2P(LANG_WAIT
));
488 /* Preset inside the default folder. */
489 if(!strncasecmp(FMPRESET_PATH
, buf
, strlen(FMPRESET_PATH
)))
491 set_file(buf
, global_settings
.fmr_file
, MAX_FILENAME
);
492 radio_load_presets(global_settings
.fmr_file
);
493 if(!in_radio_screen())
497 * Preset outside default folder, we can choose such only
498 * if we are out of the radio screen, so the check for the
499 * radio status isn't neccessary
503 radio_load_presets(buf
);
510 #ifdef HAVE_LCD_BITMAP
512 splash(0, ID2P(LANG_WAIT
));
513 set_file(buf
, (char *)global_settings
.sbs_file
, MAX_FILENAME
);
514 settings_apply_skins();
517 #ifdef HAVE_REMOTE_LCD
519 splash(0, ID2P(LANG_WAIT
));
520 set_file(buf
, (char *)global_settings
.rsbs_file
, MAX_FILENAME
);
521 settings_apply_skins();
524 /* wps config file */
526 splash(0, ID2P(LANG_WAIT
));
527 set_file(buf
, (char *)global_settings
.wps_file
,
529 settings_apply_skins();
532 #if defined(HAVE_REMOTE_LCD) && (NB_SCREENS > 1)
533 /* remote-wps config file */
535 splash(0, ID2P(LANG_WAIT
));
536 set_file(buf
, (char *)global_settings
.rwps_file
,
538 settings_apply_skins();
543 splash(0, ID2P(LANG_WAIT
));
544 if (!settings_load_config(buf
,true))
546 splash(HZ
, ID2P(LANG_SETTINGS_LOADED
));
549 case FILE_ATTR_BMARK
:
550 splash(0, ID2P(LANG_WAIT
));
551 bookmark_load(buf
, false);
556 splash(0, ID2P(LANG_WAIT
));
557 if (lang_core_load(buf
))
559 splash(HZ
, ID2P(LANG_FAILED
));
562 set_file(buf
, (char *)global_settings
.lang_file
,
564 talk_init(); /* use voice of same language */
565 viewportmanager_theme_changed(THEME_LANGUAGE
);
566 settings_apply_skins();
567 splash(HZ
, ID2P(LANG_LANGUAGE_LOADED
));
570 #ifdef HAVE_LCD_BITMAP
576 splash(0, ID2P(LANG_WAIT
));
578 splash(HZ
, ID2P(LANG_KEYBOARD_LOADED
));
579 set_file(buf
, (char *)global_settings
.kbd_file
, MAX_FILENAME
);
586 splash(0, ID2P(LANG_WAIT
));
595 char *plugin
= buf
, *argument
= NULL
;
598 if ((file
->attr
& FILE_ATTR_MASK
) == FILE_ATTR_LUA
) {
599 plugin
= VIEWERS_DIR
"/lua.rock"; /* Use a #define here ? */
603 if (global_settings
.party_mode
&& audio_status()) {
604 splash(HZ
, ID2P(LANG_PARTY_MODE
));
607 ret
= plugin_load(plugin
, argument
);
610 case PLUGIN_GOTO_WPS
:
613 case PLUGIN_USB_CONNECTED
:
614 if(*c
->dirfilter
> NUM_FILTER_MODES
)
615 /* leave sub-browsers after usb, doing
616 otherwise might be confusing to the user */
631 display_cuesheet_content(buf
);
638 if (global_settings
.party_mode
&& audio_status()) {
639 splash(HZ
, ID2P(LANG_PARTY_MODE
));
643 plugin
= filetype_get_plugin(file
);
646 switch (plugin_load(plugin
,buf
))
648 case PLUGIN_USB_CONNECTED
:
651 case PLUGIN_GOTO_WPS
:
667 /* the resume_index must always be the index in the
668 shuffled list in case shuffle is enabled */
669 global_status
.resume_index
= start_index
;
670 global_status
.resume_offset
= 0;
676 if (*c
->dirfilter
> NUM_FILTER_MODES
&&
677 *c
->dirfilter
!= SHOW_CFG
&&
678 *c
->dirfilter
!= SHOW_FONT
&&
679 *c
->dirfilter
!= SHOW_PLUGINS
)
696 int ft_exit(struct tree_context
* c
)
698 extern char lastfile
[]; /* from tree.c */
701 bool exit_func
= false;
703 int i
= strlen(c
->currdir
);
705 while (c
->currdir
[i
-1]!='/')
707 strcpy(buf
,&c
->currdir
[i
]);
713 if (*c
->dirfilter
> NUM_FILTER_MODES
&& c
->dirlevel
< 1)
717 if ( c
->dirlevel
< MAX_DIR_LEVELS
)
718 c
->selected_item
=c
->selected_item_history
[c
->dirlevel
];
722 /* if undefined position */
723 if (c
->selected_item
== -1)
724 strcpy(lastfile
, buf
);
728 if (*c
->dirfilter
> NUM_FILTER_MODES
&& c
->dirlevel
< 1)