1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2007 Jonathan Gordon
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 "appevents.h"
28 #include "root_menu.h"
36 #include "powermgmt.h"
57 #include "recording.h"
62 #include "playlist_viewer.h"
63 #include "menus/exported_menus.h"
74 int (*function
)(void* param
);
76 const struct menu_item_ex
*context_menu
;
78 static int next_screen
= GO_TO_ROOT
; /* holding info about the upcoming screen
79 * which is the current screen for the
80 * rest of the code after load_screen
82 static int last_screen
= GO_TO_ROOT
; /* unfortunatly needed so we can resume
83 or goto current track based on previous
87 static char current_track_path
[MAX_PATH
];
88 static void rootmenu_track_changed_callback(void* param
)
90 struct mp3entry
*id3
= (struct mp3entry
*)param
;
91 strlcpy(current_track_path
, id3
->path
, MAX_PATH
);
93 static int browser(void* param
)
97 struct tree_context
* tc
= tree_get_context();
99 struct browse_context browse
;
100 int filter
= SHOW_SUPPORTED
;
101 char folder
[MAX_PATH
] = "/";
102 /* stuff needed to remember position in file browser */
103 static char last_folder
[MAX_PATH
] = "/";
104 /* and stuff for the database browser */
106 static int last_db_dirlevel
= 0, last_db_selection
= 0;
109 switch ((intptr_t)param
)
111 case GO_TO_FILEBROWSER
:
112 filter
= global_settings
.dirfilter
;
113 if (global_settings
.browse_current
&&
114 last_screen
== GO_TO_WPS
&&
115 current_track_path
[0])
117 strcpy(folder
, current_track_path
);
119 else if (!strcmp(last_folder
, "/"))
121 strcpy(folder
, global_settings
.start_directory
);
126 bool in_hotswap
= false;
127 /* handle entering an ejected drive */
129 for (i
= 0; i
< NUM_VOLUMES
; i
++)
131 char vol_string
[VOL_ENUM_POS
+ 8];
132 if (!storage_removable(i
))
134 /* VOL_NAMES contains a %d */
135 snprintf(vol_string
, sizeof(vol_string
), "/"VOL_NAMES
, i
);
136 /* test whether we would browse the external card */
137 if (!storage_present(i
) &&
138 (strstr(last_folder
, vol_string
)
139 #ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
143 { /* leave folder as "/" to avoid crash when trying
144 * to access an ejected drive */
152 strcpy(folder
, last_folder
);
156 case GO_TO_DBBROWSER
:
157 if (!tagcache_is_usable())
159 bool reinit_attempted
= false;
161 /* Now display progress until it's ready or the user exits */
162 while(!tagcache_is_usable())
164 struct tagcache_stat
*stat
= tagcache_get_stat();
166 /* Allow user to exit */
167 if (action_userabort(HZ
/2))
170 /* Maybe just needs to reboot due to delayed commit */
171 if (stat
->commit_delayed
)
173 splash(HZ
*2, ID2P(LANG_PLEASE_REBOOT
));
177 /* Check if ready status is known */
178 if (!stat
->readyvalid
)
180 splash(0, str(LANG_TAGCACHE_BUSY
));
184 /* Re-init if required */
185 if (!reinit_attempted
&& !stat
->ready
&&
186 stat
->processed_entries
== 0 && stat
->commit_step
== 0)
188 /* Prompt the user */
189 reinit_attempted
= true;
190 static const char *lines
[]={
191 ID2P(LANG_TAGCACHE_BUSY
), ID2P(LANG_TAGCACHE_FORCE_UPDATE
)};
192 static const struct text_message message
={lines
, 2};
193 if(gui_syncyesno_run(&message
, NULL
, NULL
) == YESNO_NO
)
197 screens
[i
].clear_display();
199 /* Start initialisation */
203 /* Display building progress */
204 static long talked_tick
= 0;
205 if(global_settings
.talk_menu
&&
207 || TIME_AFTER(current_tick
, talked_tick
+7*HZ
)))
209 talked_tick
= current_tick
;
210 if (stat
->commit_step
> 0)
212 talk_id(LANG_TAGCACHE_INIT
, false);
213 talk_number(stat
->commit_step
, true);
214 talk_id(VOICE_OF
, true);
215 talk_number(tagcache_get_max_commit_step(), true);
216 } else if(stat
->processed_entries
)
218 talk_number(stat
->processed_entries
, false);
219 talk_id(LANG_BUILDING_DATABASE
, true);
222 if (stat
->commit_step
> 0)
226 splashf(0, "[%d/%d] %s", stat
->commit_step
,
227 tagcache_get_max_commit_step(),
228 str(LANG_TAGCACHE_INIT
));
232 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT
),
234 tagcache_get_max_commit_step());
239 splashf(0, str(LANG_BUILDING_DATABASE
),
240 stat
->processed_entries
);
244 if (!tagcache_is_usable())
245 return GO_TO_PREVIOUS
;
247 tc
->dirlevel
= last_db_dirlevel
;
248 tc
->selected_item
= last_db_selection
;
253 browse_context_init(&browse
, filter
, 0, NULL
, NOICON
, folder
, NULL
);
254 ret_val
= rockbox_browse(&browse
);
255 switch ((intptr_t)param
)
257 case GO_TO_FILEBROWSER
:
258 if (!get_current_file(last_folder
, MAX_PATH
) ||
259 (!strchr(&last_folder
[1], '/') &&
260 global_settings
.start_directory
[1] != '\0'))
262 last_folder
[0] = '/';
263 last_folder
[1] = '\0';
267 case GO_TO_DBBROWSER
:
268 last_db_dirlevel
= tc
->dirlevel
;
269 last_db_selection
= tc
->selected_item
;
276 static int menu(void* param
)
279 return do_menu(NULL
, 0, NULL
, false);
282 #ifdef HAVE_RECORDING
283 static int recscrn(void* param
)
286 recording_screen(false);
290 static int wpsscrn(void* param
)
292 int ret_val
= GO_TO_PREVIOUS
;
297 ret_val
= gui_wps_show();
299 else if ( global_status
.resume_index
!= -1 )
301 DEBUGF("Resume index %X offset %lX\n",
302 global_status
.resume_index
,
303 (unsigned long)global_status
.resume_offset
);
304 if (playlist_resume() != -1)
306 playlist_start(global_status
.resume_index
,
307 global_status
.resume_offset
);
308 ret_val
= gui_wps_show();
313 splash(HZ
*2, ID2P(LANG_NOTHING_TO_RESUME
));
318 static int radio(void* param
)
326 static int playlist_view(void * param
)
329 switch (playlist_viewer())
331 case PLAYLIST_VIEWER_MAINMENU
:
332 case PLAYLIST_VIEWER_USB
:
334 case PLAYLIST_VIEWER_OK
:
335 return GO_TO_PREVIOUS
;
337 return GO_TO_PREVIOUS
;
340 static int load_bmarks(void* param
)
343 if(bookmark_mrb_load())
345 return GO_TO_PREVIOUS
;
347 static int plugins_menu(void* param
)
350 MENUITEM_STRINGLIST(plugins_menu_items
, ID2P(LANG_PLUGINS
), NULL
,
351 ID2P(LANG_PLUGIN_GAMES
),
352 ID2P(LANG_PLUGIN_APPS
), ID2P(LANG_PLUGIN_DEMOS
));
354 struct browse_context browse
;
356 int retval
= GO_TO_PREVIOUS
;
357 int selection
= 0, current
= 0;
359 while (retval
== GO_TO_PREVIOUS
)
361 selection
= do_menu(&plugins_menu_items
, ¤t
, NULL
, false);
365 folder
= PLUGIN_GAMES_DIR
;
366 title
= str(LANG_PLUGIN_GAMES
);
369 folder
= PLUGIN_APPS_DIR
;
370 title
= str(LANG_PLUGIN_APPS
);
373 folder
= PLUGIN_DEMOS_DIR
;
374 title
= str(LANG_PLUGIN_DEMOS
);
379 browse_context_init(&browse
, SHOW_PLUGINS
, 0,
380 title
, Icon_Plugin
, folder
, NULL
);
381 retval
= rockbox_browse(&browse
);
385 int time_screen(void* ignored
);
387 /* These are all static const'd from apps/menus/ *.c
388 so little hack so we can use them */
389 extern struct menu_item_ex
395 recording_settings_menu
,
397 bookmark_settings_menu
,
399 static const struct root_items items
[] = {
400 [GO_TO_FILEBROWSER
] = { browser
, (void*)GO_TO_FILEBROWSER
, &file_menu
},
402 [GO_TO_DBBROWSER
] = { browser
, (void*)GO_TO_DBBROWSER
, &tagcache_menu
},
404 [GO_TO_WPS
] = { wpsscrn
, NULL
, &playback_settings
},
405 [GO_TO_MAINMENU
] = { menu
, NULL
, &manage_settings
},
407 #ifdef HAVE_RECORDING
408 [GO_TO_RECSCREEN
] = { recscrn
, NULL
, &recording_settings_menu
},
412 [GO_TO_FM
] = { radio
, NULL
, &radio_settings_menu
},
415 [GO_TO_RECENTBMARKS
] = { load_bmarks
, NULL
, &bookmark_settings_menu
},
416 [GO_TO_BROWSEPLUGINS
] = { plugins_menu
, NULL
, NULL
},
417 [GO_TO_PLAYLIST_VIEWER
] = { playlist_view
, NULL
, NULL
},
420 static const int nb_items
= sizeof(items
)/sizeof(*items
);
422 static int item_callback(int action
, const struct menu_item_ex
*this_item
) ;
424 MENUITEM_RETURNVALUE(file_browser
, ID2P(LANG_DIR_BROWSER
), GO_TO_FILEBROWSER
,
425 NULL
, Icon_file_view_menu
);
427 MENUITEM_RETURNVALUE(db_browser
, ID2P(LANG_TAGCACHE
), GO_TO_DBBROWSER
,
430 MENUITEM_RETURNVALUE(rocks_browser
, ID2P(LANG_PLUGINS
), GO_TO_BROWSEPLUGINS
,
432 static char *get_wps_item_name(int selected_item
, void * data
, char *buffer
)
434 (void)selected_item
; (void)data
; (void)buffer
;
436 return ID2P(LANG_NOW_PLAYING
);
437 return ID2P(LANG_RESUME_PLAYBACK
);
439 MENUITEM_RETURNVALUE_DYNTEXT(wps_item
, GO_TO_WPS
, NULL
, get_wps_item_name
,
440 NULL
, NULL
, Icon_Playback_menu
);
441 #ifdef HAVE_RECORDING
442 MENUITEM_RETURNVALUE(rec
, ID2P(LANG_RECORDING
), GO_TO_RECSCREEN
,
443 NULL
, Icon_Recording
);
446 MENUITEM_RETURNVALUE(fm
, ID2P(LANG_FM_RADIO
), GO_TO_FM
,
447 item_callback
, Icon_Radio_screen
);
449 MENUITEM_RETURNVALUE(menu_
, ID2P(LANG_SETTINGS
), GO_TO_MAINMENU
,
450 NULL
, Icon_Submenu_Entered
);
451 MENUITEM_RETURNVALUE(bookmarks
, ID2P(LANG_BOOKMARK_MENU_RECENT_BOOKMARKS
),
452 GO_TO_RECENTBMARKS
, item_callback
,
454 #ifdef HAVE_LCD_CHARCELLS
455 static int do_shutdown(void)
458 if (charger_inserted())
465 MENUITEM_FUNCTION(do_shutdown_item
, 0, ID2P(LANG_SHUTDOWN
),
466 do_shutdown
, NULL
, NULL
, Icon_NOICON
);
468 MAKE_MENU(root_menu_
, ID2P(LANG_ROCKBOX_TITLE
),
469 item_callback
, Icon_Rockbox
,
470 &bookmarks
, &file_browser
,
475 #ifdef HAVE_RECORDING
481 &playlist_options
, &rocks_browser
, &info_menu
483 #ifdef HAVE_LCD_CHARCELLS
488 static int item_callback(int action
, const struct menu_item_ex
*this_item
)
492 case ACTION_TREE_STOP
:
493 return ACTION_REDRAW
;
494 case ACTION_REQUEST_MENUITEM
:
496 if (this_item
== &fm
)
498 if (radio_hardware_present() == 0)
499 return ACTION_EXIT_MENUITEM
;
503 if (this_item
== &bookmarks
)
505 if (global_settings
.usemrb
== 0)
506 return ACTION_EXIT_MENUITEM
;
512 static int get_selection(int last_screen
)
515 int len
= ARRAYLEN(root_menu__
);
516 for(i
=0; i
< len
; i
++)
518 if (((root_menu__
[i
]->flags
&MENU_TYPE_MASK
) == MT_RETURN_VALUE
) &&
519 (root_menu__
[i
]->value
== last_screen
))
527 static inline int load_screen(int screen
)
529 /* set the global_status.last_screen before entering,
530 if we dont we will always return to the wrong screen on boot */
531 int old_previous
= last_screen
;
533 if (screen
<= GO_TO_ROOT
)
535 if (screen
== old_previous
)
536 old_previous
= GO_TO_ROOT
;
537 global_status
.last_screen
= (char)screen
;
539 ret_val
= items
[screen
].function(items
[screen
].param
);
540 last_screen
= screen
;
541 if (ret_val
== GO_TO_PREVIOUS
)
542 last_screen
= old_previous
;
545 static int load_context_screen(int selection
)
547 const struct menu_item_ex
*context_menu
= NULL
;
548 if ((root_menu__
[selection
]->flags
&MENU_TYPE_MASK
) == MT_RETURN_VALUE
)
550 int item
= root_menu__
[selection
]->value
;
551 context_menu
= items
[item
].context_menu
;
554 else if (root_menu__
[selection
] == &info_menu
)
556 context_menu
= &system_menu
;
560 return do_menu(context_menu
, NULL
, NULL
, false);
562 return GO_TO_PREVIOUS
;
565 #ifdef HAVE_PICTUREFLOW_INTEGRATION
566 static int load_plugin_screen(char *plug_path
)
569 int old_previous
= last_screen
;
570 last_screen
= next_screen
;
571 global_status
.last_screen
= (char)next_screen
;
574 switch (plugin_load(plug_path
, NULL
))
576 case PLUGIN_GOTO_WPS
:
580 ret_val
= audio_status() ? GO_TO_PREVIOUS
: GO_TO_ROOT
;
583 ret_val
= GO_TO_PREVIOUS
;
587 if (ret_val
== GO_TO_PREVIOUS
)
588 last_screen
= (old_previous
== next_screen
) ? GO_TO_ROOT
: old_previous
;
593 static int previous_music
= GO_TO_WPS
;
595 void previous_music_is_wps(void)
597 previous_music
= GO_TO_WPS
;
600 int current_screen(void)
607 int previous_browser
= GO_TO_FILEBROWSER
;
610 if (global_settings
.start_in_screen
== 0)
611 next_screen
= (int)global_status
.last_screen
;
612 else next_screen
= global_settings
.start_in_screen
- 2;
613 add_event(PLAYBACK_EVENT_TRACK_CHANGE
, false, rootmenu_track_changed_callback
);
614 #ifdef HAVE_RTC_ALARM
615 if ( rtc_check_alarm_started(true) )
617 rtc_enable_alarm(false);
618 next_screen
= GO_TO_WPS
;
620 if (global_settings
.alarm_wake_up_screen
== ALARM_START_FM
)
621 next_screen
= GO_TO_FM
;
623 #ifdef HAVE_RECORDING
624 if (global_settings
.alarm_wake_up_screen
== ALARM_START_REC
)
626 recording_start_automatic
= true;
627 next_screen
= GO_TO_RECSCREEN
;
631 #endif /* HAVE_RTC_ALARM */
633 #ifdef HAVE_HEADPHONE_DETECTION
634 if (next_screen
== GO_TO_WPS
&&
635 (global_settings
.unplug_autoresume
&& !headphones_inserted() ))
636 next_screen
= GO_TO_ROOT
;
643 case MENU_ATTACHED_USB
:
644 case MENU_SELECTED_EXIT
:
647 if (last_screen
!= GO_TO_ROOT
)
648 selected
= get_selection(last_screen
);
649 #if (CONFIG_PLATFORM&PLATFORM_ANDROID)
650 /* When we are in the main menu we want the hardware BACK
651 * button to be handled by Android instead of rockbox */
652 android_ignore_back_button(true);
654 next_screen
= do_menu(&root_menu_
, &selected
, NULL
, false);
655 #if (CONFIG_PLATFORM&PLATFORM_ANDROID)
656 android_ignore_back_button(false);
658 if (next_screen
!= GO_TO_PREVIOUS
)
659 last_screen
= GO_TO_ROOT
;
663 next_screen
= last_screen
;
666 case GO_TO_PREVIOUS_BROWSER
:
667 next_screen
= previous_browser
;
670 case GO_TO_PREVIOUS_MUSIC
:
671 next_screen
= previous_music
;
673 case GO_TO_ROOTITEM_CONTEXT
:
674 next_screen
= load_context_screen(selected
);
676 #ifdef HAVE_PICTUREFLOW_INTEGRATION
677 case GO_TO_PICTUREFLOW
:
678 while ( !tagcache_is_usable() )
680 splash(0, str(LANG_TAGCACHE_BUSY
));
681 if ( action_userabort(HZ
/5) )
685 char pf_path
[MAX_PATH
];
686 snprintf(pf_path
, sizeof(pf_path
),
687 "%s/pictureflow.rock",
689 next_screen
= load_plugin_screen(pf_path
);
691 previous_browser
= GO_TO_PICTUREFLOW
;
695 if (next_screen
== GO_TO_FILEBROWSER
697 || next_screen
== GO_TO_DBBROWSER
700 previous_browser
= next_screen
;
701 if (next_screen
== GO_TO_WPS
703 || next_screen
== GO_TO_FM
706 previous_music
= next_screen
;
707 next_screen
= load_screen(next_screen
);